/* =============================================
   とやま2035 LP - style.css
   SP first (375px base) / PC breakpoint: 768px
   ============================================= */

/* ------------------------------------------
   CSS Custom Properties
------------------------------------------ */
:root {
  --color-navy:     #002233;
  --color-green:    #00902f;
  --color-sky:      #00aaff;
  --color-orange:   #ff5500;
  --color-yellow:   #ffd500;
  --color-blue:     #0077ff;
  --color-green2:   #00cc44;
  --color-light-blue: #cceeff;
  --color-bg-green: rgba(0, 204, 68, 0.2);

  --font-kaku: 'Zen Kaku Gothic New', sans-serif;
  --font-maru: 'Zen Maru Gothic', sans-serif;

  --header-h-sp: 70px;
  --header-h-pc: 110px;

  --container-inner: 1200px;

  --arrow-mask: url("data:image/svg+xml,%3Csvg width='21' height='23' viewBox='0 0 21 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 9.5459C0.671573 9.5459 0 10.2175 0 11.0459C0 11.8743 0.671573 12.5459 1.5 12.5459V11.0459V9.5459ZM20.5607 12.1066C21.1464 11.5208 21.1464 10.571 20.5607 9.98524L11.0147 0.439297C10.4289 -0.14649 9.47918 -0.14649 8.8934 0.439297C8.30761 1.02508 8.30761 1.97483 8.8934 2.56062L17.3787 11.0459L8.8934 19.5312C8.30761 20.117 8.30761 21.0667 8.8934 21.6525C9.47918 22.2383 10.4289 22.2383 11.0147 21.6525L20.5607 12.1066ZM1.5 11.0459V12.5459H19.5V11.0459V9.5459H1.5V11.0459Z' fill='white'/%3E%3C/svg%3E");
}

/* ------------------------------------------
   Reset & Base
------------------------------------------ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #fff;
  color: var(--color-navy);
  font-family: var(--font-kaku);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ------------------------------------------
   Utilities
------------------------------------------ */
.pc-only      { display: none; }
.sp-only      { display: block; }
.pc-wide-only { display: none; }

.container {
  width: 100%;
  max-width: var(--container-inner);
  margin: 0 auto;
  padding: 0 20px;
}

/* Color helpers */
.t-green  { color: var(--color-green); }
.t-blue   { color: var(--color-blue); }
.t-orange { color: var(--color-orange); }
.t-yellow { color: var(--color-yellow); }
.t-navy   { color: var(--color-navy); }
.t-sky    { color: var(--color-sky); }

/* Underline accent — background-image highlight so the band can overlap the text */
u {
  background-position: 0 96%;
  background-size: 100% 7px;
  background-repeat: no-repeat;
  text-decoration: none;
}
.u-orange { background-image: linear-gradient(rgba(255,  85,   0, 0.45), rgba(255,  85,   0, 0.45)); }
.u-green  { background-image: linear-gradient(rgba(  0, 204,  68, 0.45), rgba(  0, 204,  68, 0.45)); }
.u-blue   { background-image: linear-gradient(rgba(  0, 119, 255, 0.45), rgba(  0, 119, 255, 0.45)); }
.u-yellow { background-image: linear-gradient(rgba(255, 213,   0, 0.45), rgba(255, 213,   0, 0.45)); }

/* ------------------------------------------
   Intro / Splash Screen
------------------------------------------ */
body.intro-active {
  overflow: hidden;
}

.intro-panel {
  position: fixed;
  inset: 0;
  z-index: 900;
  overflow: hidden;
  background: var(--color-yellow);
}

.intro-map-wrap {
  position: absolute;
  top: calc(50% - 125px);
  left: calc(50% - 150px);
  width: 300px;
  transform-origin: center center;
  will-change: transform;
}

.intro-map-img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-ui {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.intro-bubble {
  position: absolute;
  padding: 4px 16px;
  border: 2px solid #fff;
  border-radius: 45px;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-weight: 900;
  font-size: 20px;
  font-family: var(--font-maru);
  white-space: nowrap;
}

.intro-bubble::after {
  position: absolute;
  top: 100%;
  border: 0 solid transparent;
  content: '';
  filter: drop-shadow(2px 0 0 #fff) drop-shadow(0 2px 0 #fff) drop-shadow(-2px 0 0 #fff);
}
.intro-bubble--left::after {
  right: 37px;
  left: auto;
  border-top: 10px solid var(--color-yellow);
  border-left: 10px solid transparent;
}
.intro-bubble--right::after {
  left: 30px;
  border-top: 10px solid var(--color-yellow);
  border-right: 10px solid transparent;
}

.intro-bubble--left {
  top: calc(50% - 175px);
  left: calc(50% - 153px);
}

.intro-bubble--right {
  top: calc(50% - 115px);
  left: calc(50% - 120px);
}

.intro-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-navy);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  font-family: var(--font-maru);
  text-align: center;
  white-space: nowrap;
}

.intro-copy-sp-br { display: inline; }
.intro-copy-gap   { display: block; margin-top: 10px; }

.intro-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: introScrollBounce 1.4s ease-in-out infinite;
}

.intro-scroll-text {
  color: var(--color-navy);
  font-weight: 900;
  font-size: 11px;
  font-family: var(--font-maru);
  letter-spacing: 0.15em;
}

.intro-scroll-arrow {
  display: block;
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
}

@keyframes introScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* PC */
@media (min-width: 768px) {
  .intro-map-wrap {
    top: calc(50% - 250px);
    left: calc(50% - 300px);
    width: 600px;
  }

  .intro-bubble {
    padding: 1px 16px 4px;
    font-size: 24px;
  }

  .intro-bubble--left {
    top: calc(50% - 177px);
    left: calc(50% - 300px);
  }

  .intro-bubble--right {
    top: calc(50% - 110px);
    left: calc(50% - 220px);
  }

  .intro-copy {
    font-size: 24px;
    line-height: 2;
  }

  .intro-copy-sp-br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-panel { display: none; }
  .fv          { opacity: 1; }
}

/* ------------------------------------------
   Arrow Circle (story links & CTA 共通)
------------------------------------------ */
.arrow-circle {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s;
}

.arrow-circle::after {
  -webkit-mask-image: var(--arrow-mask);
  mask-image: var(--arrow-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 24px;
  background-color: #fff;
  content: '';
  transition: background-color 0.25s;
}

.arrow-circle--orange { background: rgba(255,  85,   0, 0.6); }
.arrow-circle--green  { background: rgba(  0, 204,  68, 0.6); }
.arrow-circle--blue   { background: rgba(  0, 119, 255, 0.6); }
.arrow-circle--yellow { background: rgba(255, 213,   0, 0.6); }
.arrow-circle--white  { background: #fff; }
.arrow-circle--white::after { background-color: var(--color-green); }
.arrow-circle--green-outline {
  border: 2px solid var(--color-green);
  background: var(--color-green);
}
.arrow-circle--green-outline::after { background-color: #fff; }

/* CTA button arrows (40px) */
.cta-btn .arrow-circle {
  width: 40px;
  height: 40px;
}
.cta-btn .arrow-circle::after {
  width: 16px;
  height: 17px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ------------------------------------------
   Header
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-h-sp);
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: auto;
  height: 30px;
}

.header-nav { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  padding: 4px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-green);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ------------------------------------------
   SP Navigation
------------------------------------------ */
.sp-nav-overlay {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
}

.sp-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  transform: translateX(100%);
  width: 280px;
  padding: 80px 30px 40px;
  overflow-y: auto;
  background: #fff;
  transition: transform 0.3s ease;
}

.sp-nav.is-open {
  transform: translateX(0);
}

.sp-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  color: var(--color-navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.sp-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sp-nav-link {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-kaku);
}

/* ------------------------------------------
   FV Section
------------------------------------------ */
.fv {
  opacity: 0;
  position: relative;
  padding-top: var(--header-h-sp);
  overflow: hidden;
  background: #fff;
  transition: opacity 0.7s ease;
}

.fv.intro-done {
  opacity: 1;
}

.fv-il {
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.fv-il img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-il--tr { clip-path: url(#cloud-clip-tr); }
.fv-il--tr img { object-position: 50% 30%; }
.fv-il--bl { clip-path: url(#cloud-clip-bl); }
.fv-il--bl img { object-position: 48% 28%; }

.fv-il--tl {
  top: 0;
  left: -40px;
  width: 300px;
  height: 200px;
}
.fv-il--tr {
  top: 110px;
  right: -30px;
  z-index: 1;
  width: 225px;
  height: 150px;
}
.fv-il--bl {
  bottom: 80px;
  left: -40px;
  width: 225px;
  height: 150px;
}
.fv-readmore-group {
  position: absolute;
  right: 15px;
  bottom: 20px;
  z-index: 3;
  width: 150px;
  height: 150px;
}
.fv-il--br-sm {
  position: absolute;
  bottom: 0px;
  left: -112px;
  width: 75px;
  height: 50px;
}

.fv-catch {
  position: absolute;
  top: calc(var(--header-h-sp) + 25px);
  left: 35px;
  z-index: 3;
  color: var(--color-navy);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-kaku);
}

.fv-card {
  position: relative;
  height: 773px;
  margin: 0 10px;
  overflow: hidden;
  border-radius: 10px;
}

.fv-card-slides {
  position: absolute;
  inset: 0;
}

.fv-slide {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease;
  object-fit: cover;
  object-position: center top;
}

.fv-slide.is-active { opacity: 1; }

.fv-il-slide {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease;
  object-fit: cover;
}

.fv-il-slide.is-active { opacity: 1; }

.fv-il--tr .fv-il-slide { object-position: 50% 30%; }
.fv-il--bl .fv-il-slide { object-position: 48% 28%; }

.fv-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 170, 255, 0.2) 0%,
    rgba(0, 34, 51, 0.2) 50%,
    rgba(0, 34, 51, 0.2) 100%
  );
}

/* FV Title overlay */
.fv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -46%);
  width: 90%;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.fv-title-lead {
  margin-bottom: 8px;
  font-weight: 900;
  font-size: 16px;
  font-family: var(--font-maru);
  letter-spacing: 0.1em;
}

.fv-lead-em {
  font-size: 36px;
  line-height: 1;
}

.fv-title-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  line-height: 1.1;
}

.fv-title-toyama {
  display: block;
  font-weight: 900;
  font-size: 52px;
  font-family: var(--font-maru);
  letter-spacing: 0.18em;
}

.fv-title-year {
  display: block;
  font-weight: 900;
  font-size: 60px;
  font-family: var(--font-maru);
  letter-spacing: -0.12em;
  text-indent: -0.3em;
}

.fv-title-sub {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5;
  font-family: var(--font-kaku);
  letter-spacing: 0.05em;
}

.fv-readmore {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #FFD500;
  text-align: center;
  transition: transform 0.2s;
}

.fv-readmore:hover {
  transform: scale(1.05);
}

.fv-readmore-pre {
  display: block;
  color: var(--color-navy);
  font-weight: 900;
  font-size: 9px;
  font-family: var(--font-maru);
}

.fv-readmore-future {
  display: block;
  color: var(--color-navy);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--font-maru);
  letter-spacing: -0.05em;
}

.fv-future-sm { font-size: 15px; }
.fv-future-xs { font-size: 14px; }

.fv-readmore-name {
  display: block;
  color: var(--color-green);
  font-weight: 900;
  font-size: 23px;
  font-family: var(--font-maru);
  letter-spacing: -0.1em;
}

.fv-name-year {
  font-size: 15px;
  letter-spacing: -0.4em;
}

.fv-readmore-cta {
  display: block;
  margin-top: 2px;
  padding: 3px 8px;
  border-radius: 10px;
  background: var(--color-green);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  font-family: var(--font-kaku);
}

.fv-tap {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 35px;
}

.fv-wave {
  height: 40px;
  margin-top: -1px;
  overflow: hidden;
  line-height: 0;
}

/* ------------------------------------------
   Vision Header Section
------------------------------------------ */
.vision-header {
  padding: 40px 20px;
  background: var(--color-sky);
  text-align: center;
}

.vision-header-title {
  margin-bottom: 16px;
  color: #fff;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.3;
  font-family: var(--font-maru);
}

.vision-year {
  display: inline-block;
  letter-spacing: -14.4px;
  text-indent: -0.3em;
}

.vision-year-close {
  margin-left: 0.2em;
}

.vision-header-desc {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  font-family: var(--font-kaku);
}

/* ------------------------------------------
   Vision Boxes Section
------------------------------------------ */
.vision-boxes {
  position: relative;
  z-index: 1;
  margin-top: -40px;
}

.vision-bg {
  position: relative;
  overflow: hidden;
  background: var(--color-sky);
}

.vision-il {
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.vision-il img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vision-il--l {
  top: 314px;
  left: -40px;
  width: 225px;
  height: 150px;
}
.vision-il--r {
  right: -30px;
  bottom: 188px;
  width: 225px;
  height: 150px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 170px);
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  padding: 20px 0 30px;
}

.vision-row {
  display: contents;
}

.vision-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 170px;
  height: 113px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.vision-box:hover {
  animation: vision-box-pop 0.45s ease 0.1s forwards;
}

.vision-box-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-box[data-vision="1"]  .vision-box-img { transform: scale(2);   transform-origin: 100% center; }
.vision-box[data-vision="2"]  .vision-box-img { transform: scale(1.9); transform-origin: 1% 63%; }
.vision-box[data-vision="3"]  .vision-box-img { transform: scale(1.5); transform-origin: center center; }
.vision-box[data-vision="4"]  .vision-box-img { transform: scale(2.4); transform-origin: center 60%; }
.vision-box[data-vision="5"]  .vision-box-img { transform: scale(2.3); transform-origin: center 88%; }
.vision-box[data-vision="6"]  .vision-box-img { transform: scale(1.9); transform-origin: 100% 68%; }
.vision-box[data-vision="7"]  .vision-box-img { transform: scale(2.7); transform-origin: 96% 60%; }
.vision-box[data-vision="8"]  .vision-box-img { transform: scale(1.5); transform-origin: center 73%; }
.vision-box[data-vision="9"]  .vision-box-img { transform: scale(2.2); transform-origin: 95% 55%; }
.vision-box[data-vision="10"] .vision-box-img { transform: scale(1.7); transform-origin: 2% 87%; }

.vision-box-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 34, 51, 0.6);
}

.vision-box-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.35;
  font-family: var(--font-maru);
  letter-spacing: 1.25px;
  text-align: center;
}

.vision-box-arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
}

.vision-box-arrow::after {
  -webkit-mask-image: var(--arrow-mask);
  mask-image: var(--arrow-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 11px;
  background-color: #fff;
  content: '';
}

.vision-box-arrow--orange { background: var(--color-orange); }
.vision-box-arrow--blue   { background: var(--color-blue); }
.vision-box-arrow--green  { background: var(--color-green2); }
.vision-box-arrow--yellow { background: var(--color-yellow); }

.middle-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.middle-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.middle-photo-gradient {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-sky), rgba(0, 170, 255, 0));
}

/* ------------------------------------------
   Story Section
------------------------------------------ */
.story {
  position: relative;
  padding: 80px 0 0;
  background: linear-gradient(
    to bottom,
    var(--color-light-blue) 0%,
    var(--color-light-blue) 10%,
    rgba(204, 238, 255, 0) 55%
  );
}

.story-cards-bg > .container {
  padding-bottom: 80px;
}

.story-cards-bg {
  position: relative;
  background:
    linear-gradient(180deg, #cceeff 0%, transparent 100%),
    repeating-linear-gradient(-45deg, rgba(0, 170, 255, 0.4) 0px, rgba(0, 170, 255, 0.4) 5px, transparent 5px, transparent 10px);
}

.story-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 115px;
  text-align: center;
}

.story-title-sub {
  display: block;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-maru);
}

.story-title-main {
  display: block;
  color: var(--color-navy);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.4;
  font-family: var(--font-maru);
}

.char-card {
  position: relative;
  margin-bottom: 104px;
  padding: 94px 20px 30px;
  border-radius: 20px;
  background: #fff;
}

.char-card:last-child {
  margin-bottom: 0;
}

.char-photo {
  flex-shrink: 0;
  clip-path: inset(0 round 20px);
  position: absolute;
  top: -74px;
  left: 50%;
  transform: translateX(-50%);
  width: 148px;
  height: 148px;
  overflow: hidden;
  border-radius: 20px;
}

.char-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.char-card--orange .char-photo img { transform: scale(2.1); transform-origin: 15% 51%; object-position: 15% 51%; }
.char-card--green  .char-photo img { transform: scale(5);   transform-origin: 74% 37%; object-position: 70% 40%; }
.char-card--blue   .char-photo img { transform: scale(3.3); transform-origin: 55% 69%; object-position: 57% 63%; }
.char-card--yellow .char-photo img { transform: scale(6);   transform-origin: 89% 54%; object-position: 89% 49%; }

.char-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.char-name-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.char-name {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-kaku);
}

.char-profile {
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-kaku);
}

.char-profile--orange { color: var(--color-orange); }
.char-profile--green  { color: var(--color-green2); }
.char-profile--blue   { color: var(--color-blue); }
.char-profile--yellow { color: var(--color-yellow); }

.char-story {
  margin-bottom: 30px;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--font-kaku);
}

.char-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 10px 10px 10px 16px;
  border: 2px solid;
  border-radius: 40px;
  background: #fff;
  transition: background 0.2s;
}

.story-link--orange { border-color: #ff5500; }
.story-link--green  { border-color: #00cc44; }
.story-link--blue   { border-color: #0077ff; }
.story-link--yellow { border-color: #ffd500; }

/* hover: 背景を各カラーで塗りつぶし、テキスト白に反転 */
.story-link--orange:hover { background: rgba(255,  85,   0, 0.6); }
.story-link--green:hover  { background: rgba(  0, 204,  68, 0.6); }
.story-link--blue:hover   { background: rgba(  0, 119, 255, 0.6); }
.story-link--yellow:hover { background: rgba(255, 213,   0, 0.6); }

.story-link--orange:hover .story-link-text,
.story-link--green:hover  .story-link-text,
.story-link--blue:hover   .story-link-text,
.story-link--yellow:hover .story-link-text { color: #fff; }

.story-link--orange:hover .story-link-text u,
.story-link--green:hover  .story-link-text u,
.story-link--blue:hover   .story-link-text u,
.story-link--yellow:hover .story-link-text u { background-image: none; text-decoration: none; }

.story-link--orange:hover .arrow-circle--orange { background: #fff; }
.story-link--green:hover  .arrow-circle--green  { background: #fff; }
.story-link--blue:hover   .arrow-circle--blue   { background: #fff; }
.story-link--yellow:hover .arrow-circle--yellow { background: #fff; }

.story-link--orange:hover .arrow-circle--orange::after { background-color: #ff5500; }
.story-link--green:hover  .arrow-circle--green::after  { background-color: #00cc44; }
.story-link--blue:hover   .arrow-circle--blue::after   { background-color: #0077ff; }
.story-link--yellow:hover .arrow-circle--yellow::after { background-color: #ffd500; }

.story-link-text {
  flex: 1;
  color: var(--color-navy);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-kaku);
  text-align: center;
  transition: color 0.2s;
}

.story-link--orange .story-link-text u { background-image: linear-gradient(rgba(255,  85,   0, 0.45), rgba(255,  85,   0, 0.45)); }
.story-link--green  .story-link-text u { background-image: linear-gradient(rgba(  0, 204,  68, 0.45), rgba(  0, 204,  68, 0.45)); }
.story-link--blue   .story-link-text u { background-image: linear-gradient(rgba(  0, 119, 255, 0.45), rgba(  0, 119, 255, 0.45)); }
.story-link--yellow .story-link-text u { background-image: linear-gradient(rgba(255, 213,   0, 0.45), rgba(255, 213,   0, 0.45)); }

.story-link-arrow {
  flex-shrink: 0;
}

/* ------------------------------------------
   Session Section
------------------------------------------ */
.session {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.session-il {
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.session-il--l {
  clip-path: url(#cloud-clip-session-l);
  top: 200px;
  left: -78px;
  width: 225px;
  height: 150px;
  background-image: repeating-linear-gradient(-45deg, rgba(255,213,0,0.4) 0px, rgba(255,213,0,0.4) 5px, transparent 5px, transparent 10px);
  background-size: 14px 14px;
  background-repeat: repeat;
  background-color: #ffffff;
}
.session-il--r {
  clip-path: url(#cloud-clip-session-r);
  right: -74px;
  bottom: 519px;
  z-index: 3;
  width: 225px;
  height: 150px;
  background-image: repeating-linear-gradient(-45deg, rgba(0,119,255,0.4) 0px, rgba(0,119,255,0.4) 5px, transparent 5px, transparent 10px);
  background-size: 14px 14px;
  background-repeat: repeat;
  background-color: #ffffff;
}
.session-il--sm {
  clip-path: url(#cloud-clip-session-sm);
  bottom: 300px;
  left: -50px;
  z-index: 3;
  width: 150px;
  height: 100px;
  background-image: repeating-linear-gradient(-45deg, rgba(255,85,0,0.4) 0px, rgba(255,85,0,0.4) 5px, transparent 5px, transparent 10px);
  background-size: 14px 14px;
  background-repeat: repeat;
  background-color: #ffffff;
}

.session-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 4;
}

.session-photo {
  flex-shrink: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.session-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.session-photo--r {
  align-self: center;
  width: 350px;
  max-width: 92%;
  margin: 20px auto 0;
  border-radius: 20px;
}

.session-title-block {
  position: relative;
  z-index: 2;
  padding: 40px 20px 20px;
  text-align: center;
}

.session-title-pre {
  margin-bottom: 10px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  font-family: var(--font-kaku);
}

.session-title {
  color: var(--color-green);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.25;
  font-family: var(--font-maru);
}

.session-desc-wrap {
  position: relative;
  z-index: 4;
  padding: 40px 0 60px;
}

.session-desc {
  margin-bottom: 20px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  font-family: var(--font-kaku);
  text-align: center;
}

.session-desc:last-child {
  margin-bottom: 0;
}

.session-cta {
  position: relative;
  z-index: 2;
  padding: 60px 0 40px;
  background: var(--color-bg-green);
}

.session-cta-title {
  margin-bottom: 30px;
  color: var(--color-green);
  font-weight: 900;
  font-size: 24px;
  line-height: 35px;
  font-family: var(--font-kaku);
  text-align: center;
}

.session-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 350px;
  min-height: 60px;
  padding: 10px 12px;
  border-radius: 40px;
  transition: background 0.25s, border-color 0.25s;
}

.cta-btn--fill {
  border: 2px solid #fff;
  background: var(--color-green);
}
.cta-btn--fill:hover {
  border-color: var(--color-green);
  background: #fff;
}
.cta-btn--fill:hover .arrow-circle--white {
  background: var(--color-green);
}
.cta-btn--fill:hover .arrow-circle--white::after {
  background-color: #fff;
}

.cta-btn--outline {
  border: 2px solid var(--color-green);
  background: #fff;
}
.cta-btn--outline:hover {
  border-color: #fff;
  background: var(--color-green);
}
.cta-btn--outline:hover .arrow-circle--green-outline {
  border-color: #fff;
}
.cta-btn--outline:hover .arrow-circle--green-outline::after {
  background-color: #fff;
}

.cta-btn-text {
  flex: 1;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-kaku);
  text-align: center;
  transition: color 0.25s;
}

.cta-btn--fill .cta-btn-text          { color: #fff; }
.cta-btn--fill:hover .cta-btn-text    { color: var(--color-green); }
.cta-btn--outline .cta-btn-text       { color: var(--color-navy); }
.cta-btn--outline:hover .cta-btn-text { color: #fff; }

/* ------------------------------------------
   Footer
------------------------------------------ */
.footer {
  padding: 0 0 30px;
  background: var(--color-bg-green);
  text-align: center;
}

.footer-copy {
  color: var(--color-navy);
  font-weight: 400;
  font-size: 10px;
  font-family: var(--font-kaku);
}

/* =============================================
   PC STYLES (min-width: 768px)
   ============================================= */
@media (min-width: 768px) {
  .pc-only { display: block; }
  .sp-only { display: none; }

  /* ------------------------------------------
     Header (PC)
  ------------------------------------------ */
  .header {
    height: var(--header-h-pc);
  }

  .header-inner {
    margin: 0 auto;
    padding: 0 40px;
  }

  .header-logo {
    flex-shrink: 0;
  }

  .header-logo img {
    height: 30px;
  }

  .header-nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }

  .header-nav-link {
    padding: 4px 20px;
    color: var(--color-navy);
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-kaku);
    white-space: nowrap;
    transition: color 0.2s;
  }

  .header-nav-link:hover {
    color: var(--color-green);
  }

  .hamburger { display: none; }

  /* ------------------------------------------
     FV (PC)
  ------------------------------------------ */
  .fv {
    padding-top: var(--header-h-pc);
  }

  /* PC illustration positions */
  .fv-il--tl {
    top: 0;
    left: -60px;
    width: 450px;
    height: 300px;
  }
  .fv-il--tr {
    top: 150px;
    right: -80px;
    left: auto;
    width: 450px;
    height: 300px;
  }
  .fv-il--bl {
    top: auto;
    bottom: 100px;
    left: -80px;
    width: 450px;
    height: 300px;
  }
  .fv-readmore-group {
    right: 30px;
    bottom: 50px;
    width: 200px;
    height: 200px;
  }
  .fv-il--br-sm {
    bottom: 0px;
    left: -170px;
    width: 150px;
    height: 100px;
  }

  .fv-catch {
    top: calc(var(--header-h-pc) + 20px);
    left: 60px;
    font-size: 24px;
    line-height: 1.5;
  }

  .fv-card {
    height: 722px;
    margin: 0 20px;
    border-radius: 20px;
  }

  .fv-slide {
    object-position: center center;
  }

  .fv-title {
    top: 47%;
    transform: translate(-50%, -47%);
  }

  .fv-title-lead {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .fv-title-toyama {
    font-size: 80px;
    letter-spacing: 0.2em;
  }

  .fv-title-year {
    font-size: 96px;
    letter-spacing: -0.3em;
    text-indent: -0.3em;
  }

  .fv-title-sub {
    font-size: 36px;
    letter-spacing: 0.05em;
  }

  /* PC read more button */
  .fv-readmore {
    gap: 4px;
    padding: 16px;
  }

  .fv-readmore-pre {
    font-size: 12px;
  }
  .fv-readmore-future {
    font-size: 24px;
    letter-spacing: -1.2px;
  }
  .fv-future-sm { font-size: 20px; }
  .fv-future-xs { font-size: 18px; }

  .fv-readmore-name {
    font-size: 30px;
    letter-spacing: -3px;
  }
  .fv-name-year {
    position: relative;
    left: -7px;
    font-size: 32px;
    letter-spacing: -13.6px;
  }
  .fv-readmore-cta {
    margin-top: 4px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
  }

  .fv-tap {
    bottom: -13px;
    left: 5px;
    width: 48px;
    height: 56px;
  }

  /* Wave (PC) */
  .fv-wave {
    height: 60px;
  }

  /* ------------------------------------------
     Vision Header (PC)
  ------------------------------------------ */
  .vision-header {
    padding: 60px 20px 50px;
  }

  .vision-header-title {
    margin-bottom: 20px;
    font-size: 48px;
  }

  .vision-year {
    letter-spacing: -14.4px;
    text-indent: -0.3em;
  }

  .vision-year-close {
    margin-left: 0;
  }

  .vision-header-desc {
    font-size: 24px;
    line-height: 1.7;
  }

  /* ------------------------------------------
     Vision Boxes (PC)
  ------------------------------------------ */
  .vision-boxes {
    margin-top: -100px;
  }

  .vision-il--l {
    top: 220px;
    left: -30px;
    width: 450px;
    height: 300px;
  }
  .vision-il--r {
    right: -80px;
    bottom: 274px;
    width: 450px;
    height: 300px;
  }

  /* PC grid: rows are restored as flex rows */
  .vision-grid {
    display: block;
    padding: 30px 0 40px;
  }

  .vision-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .vision-row:last-child {
    margin-bottom: 0;
  }

  .vision-box {
    width: 240px;
    height: 160px;
    border-radius: 20px;
  }

  .vision-box-label {
    font-size: 22px;
    letter-spacing: normal;
  }

  .vision-box-arrow {
    right: 12px;
    bottom: 12px;
    width: 30px;
    height: 30px;
  }
  .vision-box-arrow::after {
    width: 14px;
    height: 15px;
  }

  /* Middle panoramic photo (PC) */
  .middle-photo {
    height: 300px;
  }

  .middle-photo-gradient {
    height: 75px;
  }

  /* ------------------------------------------
     Story Section (PC)
  ------------------------------------------ */
  .story {
    padding: 120px 0 60px;
    background: linear-gradient(
      to bottom,
      var(--color-light-blue) 0%,
      var(--color-light-blue) 18%,
      rgba(204, 238, 255, 0) 60%
    );
  }

  .story-title {
    gap: 10px;
    margin-bottom: 60px;
  }

  .story-title-sub {
    font-size: 36px;
  }

  .story-title-main {
    font-size: 48px;
  }

  .char-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 40px;
    border-radius: 40px;
  }

  .char-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .char-photo {
    flex-shrink: 0;
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }

  .char-content {
    flex: 1;
    min-width: 0;
  }

  .char-name-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 20px;
  }

  .char-name {
    font-size: 24px;
  }

  .char-profile {
    font-size: 20px;
  }

  .char-story {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
  }

  .story-link-text {
    font-size: 16px;
    text-align: center;
  }

  .story-cards-bg > .container {
    padding-bottom: 120px;
  }

  .char-card--orange .char-links,
  .char-card--blue .char-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .char-card--green .char-links,
  .char-card--yellow .char-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .story-link {
    min-height: 80px;
    padding: 10px;
  }

  /* ------------------------------------------
     Session Section (PC)
  ------------------------------------------ */
  .session-il--l {
    top: 180px;
    left: 40px;
    width: 450px;
    height: 300px;
  }
  .session-il--r {
    top: 456px;
    right: -30px;
    bottom: auto;
    width: 450px;
    height: 300px;
  }
  .session-il--sm {
    top: 633px;
    bottom: auto;
    left: 190px;
    width: 150px;
    height: 100px;
  }

  .session-top {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .session-photo {
    flex-shrink: 0;
    align-self: auto;
    width: 400px;
    max-width: none;
    height: 300px;
    margin: 0;
  }

  .session-photo--l {
    border-radius: 0 40px 40px 0;
  }

  .session-photo--r {
    margin-top: 0;
    border-radius: 40px 0 0 40px;
  }

  .session-title-block {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px 45px;
  }

  .session-title-pre {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .session-title {
    font-size: 64px;
    line-height: 1.25;
  }

  .session-desc-wrap {
    padding: 40px 0 80px;
  }

  .session-desc {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .session-cta {
    padding: 100px 0 60px;
  }

  .session-cta-title {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1.3;
  }

  .session-cta-btns {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .cta-btn {
    max-width: 480px;
    min-height: 70px;
    padding: 12px 14px;
  }

  .cta-btn-text {
    font-size: 16px;
  }

  /* ------------------------------------------
     Footer (PC)
  ------------------------------------------ */
  .footer {
    padding: 16px 20px 40px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

/* ------------------------------------------
   Vision Modal
------------------------------------------ */
.modal-overlay {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  padding: 16px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.72);
  scrollbar-width: none;
  transition: opacity 0.28s ease;
}
.modal-overlay::-webkit-scrollbar { display: none; }

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  position: relative;
  transform: translateY(16px);
  width: 100%;
  max-width: 1280px;
  margin: auto;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.28s ease;
}

.modal-overlay.is-open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 34, 51, 0.12);
  color: var(--color-navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0, 34, 51, 0.22); }

.modal-top {
  display: flex;
  flex-direction: column;
}

.modal-il {
  flex-shrink: 0;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.modal-il-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-content {
  padding: 40px 20px;
}

.modal-title {
  margin-bottom: 10px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  font-family: var(--font-kaku);
}

.modal-char {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 18px;
  font-family: var(--font-kaku);
}
.modal-char--green  { color: var(--color-green2); }
.modal-char--orange { color: var(--color-orange); }
.modal-char--blue   { color: var(--color-blue); }
.modal-char--yellow { color: var(--color-yellow); }

.modal-body {
  color: var(--color-navy);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  font-family: var(--font-kaku);
}
.modal-body p + p { margin-top: 16px; }

.modal-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-kaku);
}
.modal-more-arrow {
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  animation: modalGuideBounce 1.6s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.modal-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 220px;
}

.modal-bg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-bottom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 34, 51, 0.35);
}

.modal-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 50px 20px;
  text-align: center;
}

.modal-cta {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  font-family: var(--font-kaku);
  margin-bottom: -16px;
}

.modal-cta-arrow {
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  animation: modalCtaArrowBounce 1.6s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes modalGuideBounce {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(45deg); }
  50%      { transform: translate3d(0, 4px, 0) rotate(45deg); }
}

@keyframes modalCtaArrowBounce {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(45deg); }
  50%      { transform: translate3d(0, 5px, 0) rotate(45deg); }
}

.modal-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 350px;
  min-height: 56px;
  padding: 10px;
  border: 2px solid;
  border-radius: 40px;
  background: #fff;
  transition: background 0.2s;
}

.modal-btn--green  { border-color: var(--color-green2); }
.modal-btn--orange { border-color: var(--color-orange); }
.modal-btn--blue   { border-color: var(--color-blue); }
.modal-btn--yellow { border-color: var(--color-yellow); }

.modal-btn--green:hover  { background: rgba(  0, 204,  68, 0.6); }
.modal-btn--orange:hover { background: rgba(255,  85,   0, 0.6); }
.modal-btn--blue:hover   { background: rgba(  0, 119, 255, 0.6); }
.modal-btn--yellow:hover { background: rgba(255, 213,   0, 0.6); }

.modal-btn--green:hover  .modal-btn-label,
.modal-btn--orange:hover .modal-btn-label,
.modal-btn--blue:hover   .modal-btn-label,
.modal-btn--yellow:hover .modal-btn-label { color: #fff; }

.modal-btn--green:hover  .modal-btn-arrow,
.modal-btn--orange:hover .modal-btn-arrow,
.modal-btn--blue:hover   .modal-btn-arrow,
.modal-btn--yellow:hover .modal-btn-arrow { background: #fff; }

.modal-btn--green:hover  .modal-btn-arrow::after { background-color: #00cc44; }
.modal-btn--orange:hover .modal-btn-arrow::after { background-color: #ff5500; }
.modal-btn--blue:hover   .modal-btn-arrow::after { background-color: #0077ff; }
.modal-btn--yellow:hover .modal-btn-arrow::after { background-color: #ffd500; }

.modal-btn-label {
  flex: 1;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-kaku);
  text-align: center;
  transition: color 0.2s;
}

.modal-btn-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  transition: background 0.2s;
}
.modal-btn-arrow.arrow-circle--orange { background: #ff5500;  }
.modal-btn-arrow.arrow-circle--green  { background: #00cc44;  }
.modal-btn-arrow.arrow-circle--blue   { background: #0077ff;  }
.modal-btn-arrow.arrow-circle--yellow { background: #ffd500;  }
.modal-btn-arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 12px;
  height: 13px;
}

@media (min-width: 768px) {
  .modal-overlay {
    align-items: center;
    padding: 40px;
  }

  .modal-top {
    flex-direction: row;
    min-height: 480px;
  }

  .modal-il {
    width: 50%;
    height: auto;
    background: #fff;
  }

  .modal-il-img {
    object-fit: contain;
    object-position: center center;
  }

  .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 60px 50px;
  }

  .modal-title {
    margin-bottom: 10px;
    font-size: 32px;
  }

  .modal-char {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .modal-body { font-size: 16px; }

  .modal-more {
    margin-top: 32px;
    font-size: 16px;
  }
  .modal-more-arrow {
    width: 9px;
    height: 9px;
  }

  .modal-bottom { min-height: 352px; }

  .modal-bottom-inner {
    padding: 90px 20px;
  }

  .modal-cta {
    font-size: 22px;
    line-height: 2;
  }

  .modal-btn {
    max-width: 460px;
    padding: 10px;
  }

  .modal-btn-label { font-size: 16px; }

  .modal-close {
    top: 16px;
    right: 16px;
  }
}

/* ------------------------------------------
   Narrow PC (768px〜1199px) 調整
------------------------------------------ */
@media (min-width: 768px) and (max-width: 1199px) {

  /* ヘッダー：ナビを小さくしてロゴが押されないように */
  .header-nav-link {
    padding: 4px 12px;
    font-size: 14px;
  }

  /* セッション：写真幅を縮めてタイトルが縦書きにならないように */
  .session-photo      { width: 280px; }
  .session-title      { font-size: 48px; }
  .session-title-block { padding: 40px 20px; }

}

@media (min-width: 1200px) {
  .pc-wide-only { display: block; }
}

/* ------------------------------------------
   Story SP 戻し（〜1199px）
   768px〜1199px では story を SP レイアウトに
------------------------------------------ */
@media (max-width: 1199px) {

  .story {
    padding: 80px 0 0;
    background: linear-gradient(
      to bottom,
      var(--color-light-blue) 0%,
      var(--color-light-blue) 10%,
      rgba(204, 238, 255, 0) 55%
    );
  }

  .story-title        { gap: 8px; margin-bottom: 115px; }
  .story-title-sub    { font-size: 18px; }
  .story-title-main   { font-size: 36px; }

  .char-card {
    display: block;
    gap: 0;
    position: relative;
    margin-bottom: 104px;
    padding: 94px 20px 30px;
    border-radius: 20px;
  }

  .char-card:last-child { margin-bottom: 0; }

  .char-main { display: block; }

  .char-photo {
    flex-shrink: unset;
    position: absolute;
    top: -74px;
    left: 50%;
    transform: translateX(-50%);
  }

  .char-content { flex: none; min-width: unset; }

  .char-name-row {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
  }

  .char-name    { font-size: 18px; }
  .char-profile { font-size: 14px; }

  .char-story {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .story-link-text { font-size: 14px; }

  .story-cards-bg > .container { padding-bottom: 80px; }

  .char-card--orange .char-links,
  .char-card--blue .char-links,
  .char-card--green .char-links,
  .char-card--yellow .char-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .story-link {
    min-height: 72px;
    padding: 10px 10px 10px 16px;
  }

}

/* ------------------------------------------
   Session SP 戻し（〜929px）
   768px〜929px では session を SP レイアウトに
------------------------------------------ */
@media (max-width: 929px) {

  .session-top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .session-photo {
    width: 100%;
    max-width: none;
    height: 150px;
    margin: 0;
  }

  .session-photo--l {
    border-radius: 0;
  }

  .session-photo--r {
    align-self: center;
    width: 350px;
    max-width: 92%;
    margin: 20px auto 0;
    border-radius: 20px;
  }

  .session-title-block {
    flex: none;
    padding: 40px 20px 20px;
  }

  .session-title-pre {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .session-title { font-size: 48px; }

}

/* ------------------------------------------
   Scroll-in Animations
------------------------------------------ */
.will-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.char-card:nth-child(2).will-animate { transition-delay: 0.05s; }
.char-card:nth-child(3).will-animate { transition-delay: 0.10s; }
.char-card:nth-child(4).will-animate { transition-delay: 0.15s; }

.vision-box.will-animate { transition: opacity 0.6s ease, transform 0.4s ease; }

@keyframes vision-box-pop {
  0%   { transform: scale(1); }
  55%  { transform: scale(1.11); }
  75%  { transform: scale(1.04); }
  100% { transform: scale(1.07); }
}

/* ------------------------------------------
   Hover interactions / Accessibility
------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .will-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
