:root {
  --ink: #121633;
  --paper: #fffaf2;
  --surface: #ffffff;

  --blue: #5b5cff;
  --cyan: #33e6ff;
  --lime: #d9ff38;
  --pink: #ff4fa3;
  --coral: #ff6655;
  --acid: #d9ff38;
  --red: #ff6655;

  --muted: #69708a;
  --line: rgba(18, 22, 51, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 99; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;

  color: #17203a;

  background: rgba(255, 252, 248, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(23, 32, 58, 0.10);
  box-shadow: 0 6px 24px rgba(23, 32, 58, 0.05);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;

  color: #17203A;
}
.logo-mark { display: grid; place-items: center; width: 38px; height: 38px; border: 2px solid currentColor; border-radius: 50%; font-size: 24px; }
.global-nav {
  position: fixed;
  z-index: 51;
  top: 0;
  right: 4vw;
  height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* ナビゲーションの文字 */

.global-nav a {
  color: rgba(23, 32, 58, 0.68);
  text-decoration: none;
  transition: color .25s ease;
}

.global-nav a:hover {
  color: #17203A;
}

.global-nav a.active {
  color: #17203A;
  font-weight: 900;
}

/* ↑↑↑ここまで追加↑↑↑ */

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;

  background: var(--blue);
  color: #ffffff !important;
  box-shadow: 4px 4px 0 var(--ink);

  font-weight: 800;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.nav-cta:hover {
    background: var(--pink);
    color: #ffffff !important;

    transform: translateY(-2px);
    box-shadow: 6px 8px 0 var(--ink);
}

.menu-button { display: none; background: transparent; border: 0; padding: 8px; }
.nav-close { display:none; }
.menu-button span { display: block; width: 28px; height: 2px; background: currentColor; margin: 6px 0; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  padding: 130px 7vw 70px;
  background:
  radial-gradient(
    circle at 82% 18%,
    rgba(51, 230, 255, 0.52) 0%,
    rgba(51, 230, 255, 0) 30%
  ),
  radial-gradient(
    circle at 16% 82%,
    rgba(255, 79, 163, 0.38) 0%,
    rgba(255, 79, 163, 0) 34%
  ),
  linear-gradient(
    135deg,
    #fff8ec 0%,
    #f4ecff 48%,
    #dffcff 100%
  );
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.paper { position: absolute; width: 360px; height: 480px; background: #fffdf5; box-shadow: 0 20px 60px rgba(0,0,0,.2); opacity: .32; }
.paper-one { right: 28%; top: -110px; transform: rotate(18deg); }
.paper-two { left: -80px; bottom: -280px; transform: rotate(-18deg); }
.scribble { position: absolute; right: -2vw; bottom: -12vw; font-size: 28vw; font-family: "Zen Kaku Gothic New"; font-weight: 900; line-height: 1; color: rgba(0,0,0,.07); transform: rotate(-8deg); }
.hero-copy { position: relative; z-index: 2; max-width:650px; }
.eyebrow { margin: 0 0 22px; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
h1,h2,h3,p { margin-top: 0; }
h1 { font-family: "Zen Kaku Gothic New"; font-size: clamp(54px, 8vw, 130px); line-height: .93; letter-spacing: -.07em; margin-bottom: 34px; }
h1 span { display: block; }
h1 .outline {
  color: #ffffff;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow:
    5px 5px 0 var(--blue),
    9px 9px 0 var(--cyan);
}
.hero-lead { max-width: 500px; font-size: clamp(18px, 2vw, 27px); font-weight: 700; line-height: 1.7; margin-top:40px;
    margin-bottom:55px; }
.hero-actions, .eqao-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.story-guide {
  margin-top: 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.story-guide-copy {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}

.story-guide-button {
  min-width: 220px;
}

.final-guide-copy {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.7;
  max-width: 560px;
  margin: 20px 0 30px;
}
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 58px; padding: 0 28px; border: 2px solid var(--ink); border-radius: 100px; font-weight: 900; transition: .25s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 8px 0 var(--ink); }
.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.button-primary:hover {
  background: var(--cyan);
  box-shadow: 3px 3px 0 var(--ink);
}
.button-light { background: white; }
.text-link { font-size: 13px; font-weight: 900; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.phone-stage{

    position:relative;
    display:block;

    animation: phoneFloat 5s ease-in-out infinite;

    transform-style:preserve-3d;

}
.phone { position: relative; width: min(330px, 34vw); aspect-ratio: 9/18.3; padding: 12px; border: 3px solid var(--ink); border-radius: 45px; background: var(--ink); box-shadow: 20px 24px 0 rgba(0,0,0,.18);overflow:hidden; }
.phone::after{

content:"";

position:absolute;

top:-20%;

left:-120%;

width:60%;

height:160%;

background:rgba(255,255,255,.25);

transform:rotate(25deg);

animation:glassLight 5s infinite;

}
.phone-top { position: absolute; top: 19px; left: 50%; transform: translateX(-50%); width: 35%; height: 22px; background: var(--ink); border-radius: 20px; z-index: 3; }
.phone-screen { height: 100%; position: relative; border-radius: 34px; overflow: hidden; background: linear-gradient(160deg,#778cff,#f0cab2 60%,#21284a); }
.screen-video-cover { display:block; width:100%; height:100%; object-fit:cover; object-position:center; }
.screen-journal {
  position:absolute; inset:0; display:flex; flex-direction:column; padding:72px 26px 34px;
  background:radial-gradient(circle at 85% 12%,rgba(217,255,56,.9),transparent 20%),radial-gradient(circle at 8% 82%,rgba(255,79,163,.55),transparent 28%),linear-gradient(155deg,#f8f4ff 0%,#dffbff 52%,#c5c7ff 100%);
  color:var(--ink);
}
.screen-journal small { font-size:10px; font-weight:900; letter-spacing:.16em; }
.journal-count { margin:70px 0 14px; color:var(--blue); font-size:10px; font-weight:900; letter-spacing:.12em; }
.screen-journal strong { font-size:23px; line-height:1.5; letter-spacing:-.04em; }
.journal-lines { display:grid; gap:14px; margin:38px 0 24px; }
.journal-lines span { display:block; height:2px; background:rgba(18,22,51,.22); }
.journal-answer { width:fit-content; margin-top:auto; padding:11px 14px; border:2px solid var(--ink); border-radius:12px; background:white; font-size:13px; font-weight:900; box-shadow:4px 4px 0 var(--ink); transform:rotate(-2deg); }
.journal-progress { display:flex; gap:7px; margin-top:28px; }
.journal-progress i { display:block; width:8px; height:8px; border:1.5px solid var(--ink); border-radius:50%; background:white; }
.journal-progress i:first-child { width:28px; border-radius:999px; background:var(--lime); }
.screen-gradient { position:absolute; inset:0; background: linear-gradient(transparent 45%,rgba(0,0,0,.78)); }
.screen-person { position:absolute; left:50%; bottom:12%; transform:translateX(-50%); width:70%; height:65%; }
.screen-person .head { width:38%; aspect-ratio:1; border-radius:50%; background:#1a1820; margin:auto; }
.screen-person .body { width:90%; height:75%; margin:-2% auto 0; border-radius:48% 48% 10% 10%; background:#e9e2d4; }
.screen-caption { position:absolute; z-index:2; left:25px; right:25px; bottom:35px; color:white; }
.screen-caption small { display:block; margin-bottom:8px; letter-spacing:.12em; }
.screen-caption strong { font-size:20px; line-height:1.45; }
.play-button, .episode-play { position:absolute; z-index:3; display:grid; place-items:center; width:64px; height:64px; left:50%; top:50%; transform:translate(-50%,-50%); border-radius:50%; background:rgba(255,255,255,.85); padding-left:4px; }
.scroll-label { position:absolute; left:4vw; bottom:30px; font-size:10px; letter-spacing:.18em; font-weight:900; writing-mode:vertical-rl; }

.marquee { overflow:hidden; background:var(--ink); color:white; padding:18px 0; transform:rotate(-1deg); width:102%; margin-left:-1%; }
.marquee-track { display:flex; width:max-content; animation:marquee 22s linear infinite; }
.marquee span { font-size:24px; font-weight:900; padding-right:90px; white-space:nowrap; }
@keyframes marquee { to { transform:translateX(-50%); } }

.section { position:relative; padding:140px 7vw; }
.section-number { position:absolute; top:90px; right:7vw; font-size:90px; font-weight:900; color:transparent; -webkit-text-stroke:1px var(--line); }
.section-heading { margin-bottom:80px; }
.section-heading h2 { font-family:"Zen Kaku Gothic New"; font-size:clamp(38px,5.5vw,82px); letter-spacing:-.06em; line-height:1.16; }
.story-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:9vw; align-items:center; }
.story-visual { position:relative; }
.photo-placeholder { min-height:590px; display:flex; align-items:flex-end; padding:30px; background:linear-gradient(150deg,#8390aa,#ead8b2 48%,#554e50); color:white; font-size:12px; letter-spacing:.15em; }
.photo-placeholder::before { content:""; position:absolute; inset:12% 12% 0 30%; background:linear-gradient(#1b1b24 0 18%,#d9d1c5 18%); clip-path:polygon(30% 0,70% 0,78% 20%,100% 100%,0 100%,22% 20%); opacity:.8; }
.vertical-note { position:absolute; top:0; right:-38px; writing-mode:vertical-rl; font-weight:900; letter-spacing:.15em; }
.large-copy { font-family:"Zen Kaku Gothic New"; font-size:clamp(27px,3.4vw,52px); font-weight:900; line-height:1.55; letter-spacing:-.04em; }
.story-text > p:not(.large-copy) { max-width:580px; font-size:16px; line-height:2.2; }

.dark-section { background:var(--ink); color:white; }
.theme-list { border-top:1px solid rgba(255,255,255,.25); }
.theme-card { display:grid; grid-template-columns:90px .35fr 1fr; align-items:center; gap:30px; min-height:160px; border-bottom:1px solid rgba(255,255,255,.25); transition:.25s; }
.theme-card:hover { padding-left:25px; background:var(--acid); color:var(--ink); }
.theme-card span { font-size:13px; }
.theme-card h3 { font-size:clamp(28px,4vw,55px); margin:0; }
.theme-card p { margin:0; font-size:16px; line-height:1.8; }
.heading-row { display:flex; justify-content:space-between; align-items:flex-end; }
.episodes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(255, 79, 163, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 72%,
      rgba(51, 230, 255, 0.28),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #fffaf2 0%,
      #f4efff 52%,
      #eafcff 100%
    );
}

.episodes::before {
  content: "WATCH / FEEL / FIND YOUR WHY";
  position: absolute;
  top: 90px;
  left: -40px;
  color: rgba(18, 22, 51, 0.06);
  font-size: clamp(54px, 9vw, 150px);
  font-weight: 900;
  letter-spacing: -0.06em;
  white-space: nowrap;
  transform: rotate(-4deg);
  pointer-events: none;
}

.episode-slider {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.episode-card {
  position: relative;
  display: block;
  padding: 14px 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.episode-card::after {
  content: "NEW";
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;

  padding: 7px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;

  background: var(--pink);
  color: #ffffff;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 3px 3px 0 var(--ink);
}

.episode-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 12px 14px 0 var(--ink);
}

.episode-image {
  position: relative;
  aspect-ratio: 9 / 14;
  margin-bottom: 20px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
}

.episode-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.episode-card:hover .episode-image img {
  transform: scale(1.035);
}

.episode-one {
  background:
    radial-gradient(circle at 72% 18%, var(--cyan), transparent 28%),
    linear-gradient(150deg, #697cff, #ffc4d9);
}

.episode-two {
  background:
    radial-gradient(circle at 22% 20%, var(--lime), transparent 28%),
    linear-gradient(150deg, #ff6b5e, #6b4eff);
}

.episode-three {
  background:
    radial-gradient(circle at 78% 76%, var(--pink), transparent 27%),
    linear-gradient(150deg, #c8ff70, #48b7c9);
}

.episode-four {
  background:
    radial-gradient(circle at 18% 78%, var(--cyan), transparent 28%),
    linear-gradient(150deg, #ffd889, #bb74ff);
}

.episode-image::before {
  content: none;
}

.episode-play {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;

  width: 58px;
  height: 58px;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);
  border: 2px solid var(--ink);
  border-radius: 50%;

  background: var(--lime);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.episode-card:hover .episode-play {
  transform: translate(-50%, -50%) scale(1.1) rotate(6deg);
  background: var(--cyan);
}

.episode-card small {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.episode-card h3 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

.episode-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.temporary-note {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  font-size: 11px !important;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .episode-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .episode-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -24px;
    padding: 4px 24px 20px 2px;
  }

  .episode-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .episodes::before {
    top: 70px;
    font-size: 72px;
  }
}

.quote-section { min-height:105vh; position:relative; display:grid; place-items:center; padding:120px 7vw; overflow:hidden; background:var(--blue); }
.quote-bg { position:absolute; font-size:47vw; font-weight:900; color:rgba(255,255,255,.08); line-height:1; }
.quote-inner { position:relative; z-index:2; max-width:1050px; }
.quote-inner p { font-size:clamp(25px,4vw,56px); font-weight:700; line-height:1.6; }
.quote-inner strong { display:block; margin-top:48px; font-size:clamp(38px,6vw,88px); line-height:1.25; letter-spacing:-.06em; }
.quote-inner .accent-line { color:var(--acid); }

.eqao-card { display:grid; grid-template-columns:1.2fr .8fr; gap:50px; min-height:590px; padding:75px; background:white; border:2px solid var(--ink); box-shadow:18px 18px 0 var(--ink); }
.eqao-copy h2 { font-size:clamp(35px,4.6vw,68px); line-height:1.3; letter-spacing:-.06em; }
.eqao-copy > p { max-width:680px; line-height:2; }
.eqao-symbol { display:grid; grid-template-columns:1fr 1fr; gap:8px; align-content:center; }
.eqao-symbol span { display:grid; place-items:center; aspect-ratio:1; border-radius:50%; background:var(--ink); color:white; font-size:clamp(40px,6vw,90px); font-weight:900; }
.eqao-symbol span:nth-child(2) { background:var(--red); color:var(--ink); }
.eqao-symbol span:nth-child(3) { background:var(--acid); color:var(--ink); }
.eqao-symbol span:nth-child(4) { background:var(--blue); }
.final-cta { min-height:85vh; display:grid; grid-template-columns:1fr .6fr; align-items:center; padding:100px 8vw; background:var(--acid); overflow:hidden; }
.final-copy h2 { font-family:"Zen Kaku Gothic New"; font-size:clamp(50px,8vw,120px); line-height:1.05; letter-spacing:-.07em; }
.final-question { justify-self:end; font-size:40vw; font-weight:900; line-height:.7; transform:rotate(12deg); color:var(--red); }
footer { display:grid; grid-template-columns:1fr auto; gap:35px; align-items:end; padding:65px 7vw 35px; background:var(--ink); color:white; }
.footer-links { display:flex; gap:30px; font-size:13px; font-weight:700; }
footer > p { grid-column:1/-1; margin:20px 0 0; padding-top:25px; border-top:1px solid rgba(255,255,255,.2); font-size:10px; opacity:.6; }

.reveal { opacity:0; transform:translateY(35px); transition:opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.12s; }.delay-2{transition-delay:.24s}.delay-3{transition-delay:.36s}

@media (max-width: 900px) {
 .site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;

  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(18, 22, 51, 0.06);
}
  .global-nav { position:fixed; inset:0; z-index:-1; display:flex; flex-direction:column; justify-content:center; background:var(--ink); color:white; font-size:22px; opacity:0; visibility:hidden; transition:.25s; mix-blend-mode:normal; }
  .global-nav.open { opacity:1; visibility:visible; z-index:49; }
  .menu-button {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 51;
    width: 48px;
    height: 48px;
    margin-right: -8px;
    color: var(--ink);
    border-radius: 50%;
  }
  .menu-button span { transition: transform .25s ease, background-color .25s ease; }
  .menu-button.is-open { color: white; }
  .menu-button.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns:1fr; padding:120px 24px 80px; }
  .hero-copy { align-self:end; }
  h1 { font-size:clamp(52px,16vw,90px); }
  .phone-stage { position:absolute; width:44vw; right:-7vw; top:17%; opacity:.44; }
  .phone { width:100%; }
  .hero-lead { max-width:70%; font-size:17px; }
  .section { padding:100px 24px; }
  .section-number { top:55px; right:20px; font-size:60px; }
  .section-heading { margin-bottom:55px; }
  .story-grid, .eqao-card { grid-template-columns:1fr; gap:55px; }
  .photo-placeholder { min-height:480px; }
  .vertical-note { right:-15px; }
  .theme-card { grid-template-columns:50px 1fr; padding:25px 0; }
  .theme-card p { grid-column:2; }
  .heading-row { display:block; }
  .heading-row .text-link { display:inline-block; margin-top:20px; }
  .episode-slider { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .eqao-card { padding:40px 25px; box-shadow:10px 10px 0 var(--ink); }
  .final-cta { grid-template-columns:1fr; min-height:80vh; padding:100px 24px; }
  .final-question { position:absolute; right:-10vw; font-size:75vw; opacity:.2; }
}
@media (max-width: 560px) {
  .logo { font-size:10px; }.logo-mark{width:32px;height:32px;font-size:19px}
  .hero-actions, .eqao-actions { align-items:flex-start; flex-direction:column; gap:20px; }
  .button { width:100%; }
  .hero-lead { max-width:85%; }
  .phone-stage { width:54vw; right:-18vw; top:22%; }
  .marquee span { font-size:18px; }
  .section-heading h2 { font-size:38px; }
  .photo-placeholder { min-height:400px; }
  .theme-card h3 { font-size:34px; }
  .episode-slider { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; margin-right:-24px; padding-right:24px; }
  .episode-card { flex:0 0 75vw; scroll-snap-align:start; }
  .quote-section { min-height:90vh; }
  .quote-inner p { font-size:24px; }.quote-inner strong{font-size:42px}
  footer { grid-template-columns:1fr; }
  .footer-links { flex-direction:column; gap:12px; }
}

/* ========================================
   MOBILE READABILITY / TOUCH TARGETS
======================================== */
@media (max-width: 560px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .logo {
    gap: 9px;
    font-size: 11px;
    line-height: 1.25;
  }

  .global-nav {
    gap: 18px;
    padding: 88px 24px 32px;
    font-size: 20px;
  }

  .global-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: white;
  }

  .global-nav .nav-cta {
    width: min(100%, 300px);
    min-height: 54px;
  }

  .hero {
    min-height: 100svh;
    padding: 108px 20px 64px;
  }

  h1 {
    max-width: 94vw;
    margin-bottom: 28px;
    font-size: clamp(46px, 14.5vw, 62px);
    line-height: 1.02;
    letter-spacing: -.065em;
  }

  h1 .outline {
    -webkit-text-stroke-width: 1.5px;
    text-shadow: 3px 3px 0 var(--blue), 6px 6px 0 var(--cyan);
  }

  .hero-lead {
    max-width: 78%;
    margin: 28px 0 34px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions,
  .eqao-actions {
    width: 100%;
    margin-top: 28px;
  }

  .button {
    min-height: 56px;
    padding: 0 22px;
    font-size: 15px;
    line-height: 1.4;
  }

  .text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
  }

  .scroll-label { display: none; }

  .section {
    padding: 80px 20px;
  }

  .section-number {
    top: 34px;
    right: 18px;
    font-size: 50px;
  }

  .section-heading {
    margin-bottom: 42px;
    padding-right: 12px;
  }

  .section-heading h2,
  .eqao-copy h2 {
    font-size: clamp(30px, 9.2vw, 38px);
    line-height: 1.35;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
  }

  .section-heading h2 br,
  .eqao-copy h2 br {
    display: none;
  }

  .story-grid { gap: 48px; }
  .story-visual { width: calc(100% - 8px); }
  .photo-placeholder { min-height: 360px; padding: 20px; }
  .photo-placeholder::after { left: 16px; top: 16px; padding: 8px 11px; font-size: 10px; }
  .vertical-note { top: 24px; right: -10px; font-size: 11px; }

  .story-text { padding: 36px 20px 26px; }
  .large-copy { font-size: 27px; line-height: 1.55; }
  .large-copy br { display: none; }
  .story-text > p:not(.large-copy) { font-size: 15px; line-height: 1.9; }
  .story-text > p + p { margin-top: 18px; }

  .theme-card { gap: 14px; padding: 22px 18px; }
  .theme-card::after { right: 16px; top: 14px; font-size: 26px; }
  .theme-card h3 { padding-right: 24px; font-size: 31px; }
  .theme-card p { font-size: 14px; line-height: 1.7; }

  .episode-slider {
    margin-right: -20px;
    padding: 4px 20px 24px 2px;
    scrollbar-width: thin;
    scrollbar-color: var(--ink) rgba(18, 22, 51, .12);
  }
  .episode-card { flex-basis: 82vw; }
  .episode-card h3 { font-size: 20px; }
  .episode-card p { font-size: 14px; }

  .quote-section { min-height: auto; padding: 88px 20px; }
  .quote-inner p { font-size: 21px; line-height: 1.7; }
  .quote-inner p br { display: none; }
  .quote-inner strong { margin-top: 36px; font-size: 34px; line-height: 1.4; }

  .eqao-card { gap: 36px; padding: 38px 20px 28px; }
  .eqao-copy > p { font-size: 15px; line-height: 1.9; }

  .final-cta { min-height: 70svh; padding: 84px 20px; }
  .final-copy h2 { font-size: clamp(44px, 14vw, 60px); line-height: 1.15; }
  .final-copy h2 br { display: none; }

  footer { padding: 48px 20px 28px; }
  .footer-links a { display: flex; align-items: center; min-height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}
/* ========================================
   STORY SECTION - POP REDESIGN
======================================== */

.story.section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 79, 163, 0.20),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(51, 230, 255, 0.22),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #fffaf2 0%,
      #f6efff 52%,
      #ecfcff 100%
    );
}

.story.section::before {
  content: "STORY / STORY / STORY";
  position: absolute;
  top: 90px;
  left: -30px;
  z-index: 0;

  color: rgba(18, 22, 51, 0.05);
  font-size: clamp(70px, 12vw, 190px);
  font-weight: 900;
  letter-spacing: -0.07em;
  white-space: nowrap;
  transform: rotate(-5deg);

  pointer-events: none;
}

.story-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
}

.story-visual {
  position: relative;
  transform: rotate(-2deg);
}

.photo-placeholder {
  position: relative;
  min-height: 560px;
  padding: 30px;

  display: flex;
  align-items: flex-end;

  border: 3px solid var(--ink);
  border-radius: 32px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(217, 255, 56, 0.95),
      transparent 22%
    ),
    radial-gradient(
      circle at 78% 72%,
      rgba(255, 79, 163, 0.75),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #6478ff 0%,
      #4de6ff 48%,
      #ffd4e6 100%
    );

  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;

  box-shadow: 14px 14px 0 var(--ink);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 16% 16% 0 30%;

  background:
    linear-gradient(
      #1b1b24 0 18%,
      #f0ebe2 18%
    );

  clip-path: polygon(
    30% 0,
    70% 0,
    78% 20%,
    100% 100%,
    0 100%,
    22% 20%
  );

  opacity: 0.88;
}

.photo-placeholder::after {
  content: "まだ、わからなくていい。";
  position: absolute;
  left: 24px;
  top: 24px;

  padding: 10px 16px;

  border: 2px solid var(--ink);
  border-radius: 999px;

  background: var(--lime);
  color: var(--ink);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;

  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-4deg);
}

.vertical-note {
  position: absolute;
  top: 30px;
  right: -38px;

  padding: 14px 9px;

  border: 2px solid var(--ink);
  border-radius: 999px;

  background: var(--pink);
  color: #ffffff;

  writing-mode: vertical-rl;
  font-weight: 900;
  letter-spacing: 0.15em;

  box-shadow: 4px 4px 0 var(--ink);
}

.story-text {
  position: relative;
  padding: clamp(30px, 4vw, 60px);

  border: 2px solid var(--ink);
  border-radius: 34px;

  background: rgba(255, 255, 255, 0.88);
  box-shadow: 10px 10px 0 var(--ink);
}

.story-text::before {
  content: "?";
  position: absolute;
  top: -35px;
  right: 30px;

  display: grid;
  place-items: center;

  width: 74px;
  height: 74px;

  border: 2px solid var(--ink);
  border-radius: 50%;

  background: var(--cyan);
  color: var(--ink);

  font-size: 42px;
  font-weight: 900;

  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(10deg);

  animation: storyFloat 4.5s ease-in-out infinite;
}

.large-copy {
  margin-bottom: 30px;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.05em;
}

.story-text > p:not(.large-copy) {
  max-width: 620px;
  margin-bottom: 0;

  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

@keyframes storyFloat {
  0%,
  100% {
    transform: translateY(0) rotate(10deg);
  }

  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}


/* ========================================
   FOUR QUESTIONS - COLOR CARD REDESIGN
======================================== */

.dark-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 18%,
      rgba(255, 79, 163, 0.32),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 78%,
      rgba(51, 230, 255, 0.32),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #5c5cff 0%,
      #845cff 48%,
      #ff62ad 100%
    );

  color: #ffffff;
}

.dark-section::before {
  content: "WHY? WHY? WHY?";
  position: absolute;
  left: -50px;
  bottom: 10px;

  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(90px, 17vw, 250px);
  font-weight: 900;
  letter-spacing: -0.08em;
  white-space: nowrap;
  transform: rotate(-7deg);

  pointer-events: none;
}

.dark-section .section-heading,
.dark-section .theme-list {
  position: relative;
  z-index: 2;
}

.theme-list {
  display: grid;
  gap: 20px;

  border-top: 0;
}

.theme-card {
  position: relative;

  display: grid;
  grid-template-columns: 80px 0.38fr 1fr;
  align-items: center;
  gap: 30px;

  min-height: 150px;
  padding: 28px 34px;

  border: 2px solid var(--ink);
  border-radius: 26px;

  background: #ffffff;
  color: var(--ink);

  box-shadow: 8px 8px 0 var(--ink);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.theme-card:nth-child(1) {
  background: var(--lime);
  transform: rotate(-1deg);
}

.theme-card:nth-child(2) {
  background: var(--cyan);
  transform: rotate(1deg);
}

.theme-card:nth-child(3) {
  background: #ffb5d5;
  transform: rotate(-1deg);
}

.theme-card:nth-child(4) {
  background: #ffe295;
  transform: rotate(1deg);
}

.theme-card:hover {
  padding-left: 34px;

  color: var(--ink);
  background: #ffffff;

  transform: translateY(-7px) rotate(0deg);
  box-shadow: 14px 16px 0 var(--ink);
}

.theme-card span {
  display: grid;
  place-items: center;

  width: 56px;
  height: 56px;

  border: 2px solid var(--ink);
  border-radius: 50%;

  background: #ffffff;
  color: var(--ink);

  font-size: 13px;
  font-weight: 900;

  box-shadow: 3px 3px 0 var(--ink);
}

.theme-card h3 {
  margin: 0;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.theme-card p {
  margin: 0;

  color: rgba(18, 22, 51, 0.72);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.theme-card::after {
  position: absolute;
  right: 26px;
  top: 18px;

  color: rgba(18, 22, 51, 0.18);
  font-size: 34px;
  font-weight: 900;

  transform: rotate(10deg);
}

.theme-card:nth-child(1)::after {
  content: "→";
}

.theme-card:nth-child(2)::after {
  content: "★";
}

.theme-card:nth-child(3)::after {
  content: "♡";
}

.theme-card:nth-child(4)::after {
  content: "?";
}


/* ========================================
   STORY AND QUESTIONS - MOBILE
======================================== */

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    max-width: 620px;
  }

  .story-text {
    padding: 42px 30px;
  }

  .theme-card {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .theme-card p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .photo-placeholder {
    min-height: 410px;
    border-radius: 24px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .vertical-note {
    right: -8px;
  }

  .story-text {
    padding: 38px 24px 28px;
    border-radius: 26px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .story-text::before {
    top: -25px;
    right: 18px;

    width: 56px;
    height: 56px;

    font-size: 32px;
  }

  .large-copy {
    font-size: 31px;
  }

  .theme-list {
    gap: 16px;
  }

  .theme-card {
    grid-template-columns: 50px 1fr;

    min-height: 0;
    padding: 24px 20px;

    border-radius: 22px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .theme-card:hover {
    padding-left: 20px;
    transform: translateY(-4px);
    box-shadow: 9px 10px 0 var(--ink);
  }

  .theme-card span {
    width: 44px;
    height: 44px;
  }

  .theme-card h3 {
    font-size: 34px;
  }

  .theme-card p {
    font-size: 14px;
  }
}
.photo-placeholder {
  position: relative;
  min-height: 540px;
  padding: 28px;

  display: flex;
  align-items: flex-end;

  border: 3px solid var(--ink);
  border-radius: 30px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(217, 255, 56, 0.95),
      transparent 22%
    ),
    radial-gradient(
      circle at 78% 70%,
      rgba(255, 79, 163, 0.72),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #6677ff 0%,
      #4de6ff 48%,
      #ffd4e6 100%
    );

  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;

  box-shadow: 12px 12px 0 var(--ink);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 14% 12% 0 28%;

  background:
    linear-gradient(
      #1d1d29 0 17%,
      #f1ece4 17% 100%
    );

  clip-path: polygon(
    28% 0,
    72% 0,
    80% 18%,
    100% 100%,
    0 100%,
    20% 18%
  );

  opacity: 0.9;
}

.photo-placeholder::after {
  content: "まだ、わからなくていい。";
  position: absolute;
  top: 24px;
  left: 24px;

  padding: 10px 16px;

  border: 2px solid var(--ink);
  border-radius: 999px;

  background: var(--lime);
  color: var(--ink);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;

  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-4deg);
}

.story-visual::before {
  content: "WHY?";
  position: absolute;
  z-index: 4;
  right: -26px;
  bottom: 50px;

  display: grid;
  place-items: center;

  width: 82px;
  height: 82px;

  border: 2px solid var(--ink);
  border-radius: 50%;

  background: var(--pink);
  color: #ffffff;

  font-size: 22px;
  font-weight: 900;

  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(10deg);

  animation: storyVisualFloat 4.5s ease-in-out infinite;
}

.story-visual::after {
  content: "FIND YOUR WHY";
  position: absolute;
  z-index: 4;
  left: -20px;
  bottom: 28px;

  padding: 10px 16px;

  border: 2px solid var(--ink);
  border-radius: 999px;

  background: var(--cyan);
  color: var(--ink);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;

  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-5deg);
}

@keyframes storyVisualFloat {
  0%,
  100% {
    transform: translateY(0) rotate(10deg);
  }

  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}

@media (max-width: 560px) {
  .photo-placeholder {
    min-height: 410px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .story-visual::before {
    right: -4px;
    bottom: 36px;

    width: 64px;
    height: 64px;

    font-size: 17px;
  }

  .story-visual::after {
    left: 8px;
    bottom: 18px;
  }
}
@keyframes phoneFloat{

0%{
transform:translateY(0px) rotate(-6deg);
}

50%{
transform:translateY(-18px) rotate(-2deg);
}

100%{
transform:translateY(0px) rotate(-6deg);
}

}
@keyframes phoneGlassLight {
  0% {
    left: -120%;
  }

  55% {
    left: -120%;
  }

  100% {
    left: 160%;
  }
}
/* ABOUT THE STORY image interaction */

.story-visual {
  position: relative;
  perspective: 1000px;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.story-visual:hover {
  transform: translateY(-8px) rotate(-1deg);
  filter: drop-shadow(0 18px 24px rgba(18, 22, 51, 0.14));
}

.photo-placeholder {
  background-size: 180% 180%;
  animation: storyGradientMove 10s ease-in-out infinite;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.story-visual:hover .photo-placeholder {
  transform: rotateY(-2deg) rotateX(1deg);
  box-shadow: 16px 18px 0 var(--ink);
}

.photo-placeholder::before {
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.story-visual:hover .photo-placeholder::before {
  transform: translateY(-10px) scale(1.03);
  opacity: 1;
}

.photo-placeholder::after {
  animation: storyStickerMove 4s ease-in-out infinite;
}

.story-visual::before {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.story-visual:hover::before {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-10px) rotate(-5deg) scale(1.08);
}

.story-visual::after {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.story-visual:hover::after {
  background: var(--pink);
  color: #ffffff;
  transform: translateY(-6px) rotate(2deg);
}

@keyframes storyGradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes storyStickerMove {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (max-width: 560px) {
  .story-visual:hover {
    transform: translateY(-4px);
  }

  .story-visual:hover .photo-placeholder {
    transform: none;
    box-shadow: 10px 10px 0 var(--ink);
  }
}
/* ========================================
   MESSAGE / FINAL CTA / EQAO
   NEON POP OVERRIDES
======================================== */

/* ---------- MESSAGE SECTION ---------- */

.quote-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: 100vh;
  padding: 110px 6vw;

  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(255, 79, 163, 0.72),
      transparent 24%
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(51, 230, 255, 0.5),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #161651 0%,
      #4f46ff 42%,
      #9c2cff 72%,
      #ff4fa3 100%
    );

  color: #ffffff;
}

.quote-section::before {
  content: "FIND YOUR WHY";
  position: absolute;
  top: 46px;
  left: 3vw;
  z-index: 1;

  color: var(--lime);
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;

  transform: rotate(-8deg);
  text-shadow: 4px 4px 0 var(--ink);
}

.quote-section::after {
  content: "START FROM ZERO.";
  position: absolute;
  right: 8vw;
  top: 42%;

  display: grid;
  place-items: center;

  width: 150px;
  aspect-ratio: 1;

  padding: 20px;
  border: 3px solid var(--ink);

  background: var(--lime);
  color: var(--ink);

  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;

  clip-path: polygon(
    50% 0%,
    60% 16%,
    78% 7%,
    80% 26%,
    100% 25%,
    88% 42%,
    100% 55%,
    81% 58%,
    84% 78%,
    64% 72%,
    56% 100%,
    44% 78%,
    24% 92%,
    25% 68%,
    3% 66%,
    17% 48%,
    0% 35%,
    22% 31%,
    18% 10%,
    40% 18%
  );

  filter: drop-shadow(7px 8px 0 var(--ink));
  transform: rotate(8deg);
  animation: quoteStickerFloat 4.5s ease-in-out infinite;
}

.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: grid;
  place-items: center;

  color: rgba(255, 255, 255, 0.06);
  font-size: 58vw;
  font-weight: 900;
  line-height: 1;

  transform: rotate(-8deg);
  pointer-events: none;
}

.quote-inner {
  position: relative;
  z-index: 3;

  max-width: 1180px;
  margin: 0 auto;
}

.quote-inner p {
  max-width: 1050px;
  margin: 0 0 24px;

  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(27px, 4.2vw, 66px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.quote-inner strong {
  display: block;
  width: fit-content;
  margin-top: 34px;

  color: #ffffff;
  font-size: clamp(44px, 7vw, 105px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.07em;
}

.quote-inner .accent-line {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-shadow: 3px 3px 0 rgba(18, 22, 51, .42);
}

.quote-inner .accent-line::after {
  content: "";
  position: absolute;
  z-index: -1;

  left: -2%;
  right: -3%;
  bottom: 2%;
  height: 10%;

  background: var(--ink);
  border-radius: 999px;
  transform: rotate(-1deg);
  opacity: .82;
}

@keyframes quoteStickerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}


/* ---------- FINAL CTA ---------- */

.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: 86vh;
  padding: 100px 7vw;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;

  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(255, 79, 163, 0.14),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      #fffaf2 0%,
      #fff6fb 52%,
      #eefcff 100%
    );

  border-top: 3px solid var(--ink);
}

.final-cta::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 14%;

  width: 330px;
  height: 330px;
  border-radius: 50%;

  background-image:
    radial-gradient(var(--pink) 2px, transparent 2px);
  background-size: 13px 13px;

  opacity: 0.42;
  transform: rotate(8deg);
}

.final-copy {
  position: relative;
  z-index: 3;

  max-width: 850px;
  padding: 56px;

  border: 3px solid var(--ink);
  border-radius: 36px;

  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    12px 12px 0 var(--ink),
    20px 20px 0 var(--lime);
}

.final-copy::before {
  content: "JUST EXPLORE.";
  position: absolute;
  top: -28px;
  right: 44px;

  padding: 12px 20px;

  border: 2px solid var(--ink);
  border-radius: 999px;

  background: var(--pink);
  color: var(--ink);

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;

  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(8deg);
}

.final-copy .eyebrow {
  color: var(--blue);
}

.final-copy h2 {
  max-width: 760px;
  margin: 20px 0 40px;

  color: var(--ink);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.08em;
}

.final-copy h2::after {
  content: "";
  display: block;

  width: 58%;
  height: 16px;
  margin-top: -10px;

  background: var(--pink);
  opacity: 0.68;
  transform: rotate(-1deg);
}

.final-question {
  position: relative;
  z-index: 3;

  display: grid;
  place-items: center;

  width: min(32vw, 430px);
  aspect-ratio: 1;
  justify-self: center;

  color: var(--ink);
  font-size: clamp(210px, 26vw, 430px);
  font-weight: 900;
  line-height: 0.75;

  text-shadow:
    10px 10px 0 var(--cyan),
    20px 20px 0 var(--pink);

  animation: finalQuestionFloat 5s ease-in-out infinite;
}

.final-question::before {
  content: "";
  position: absolute;
  inset: -2%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0) 0 42%,
      rgba(91, 92, 255, 0.12) 43% 62%,
      transparent 63%
    );

  z-index: -1;
}

.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 28px;

  border: 3px solid var(--ink);
  border-radius: 999px;

  background: var(--ink);
  color: #ffffff;

  font-size: 15px;
  font-weight: 900;

  box-shadow: 6px 6px 0 var(--lime);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.button-light:hover {
  background: var(--blue);
  color: #ffffff;

  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--lime);
}

@keyframes finalQuestionFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}


/* ---------- EQAO SECTION ---------- */

.eqao.section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 84% 22%,
      rgba(51, 230, 255, 0.17),
      transparent 24%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(217, 255, 56, 0.18),
      transparent 25%
    ),
    #fffdf8;
}

.eqao-card {
  position: relative;
  isolation: isolate;

  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
  align-items: center;

  padding: clamp(48px, 7vw, 100px);

  border: 3px solid var(--ink);
  border-radius: 38px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    14px 14px 0 var(--ink),
    24px 24px 0 var(--cyan);
}

.eqao-card::before {
  content: "YOUR STORY STARTS HERE";
  position: absolute;
  top: 30px;
  right: -30px;

  padding: 11px 22px;

  border: 2px solid var(--ink);
  border-radius: 999px;

  background: var(--pink);
  color: var(--ink);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;

  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(7deg);
}

.eqao-copy {
  position: relative;
  z-index: 3;
}

.eqao-copy h2 {
  margin: 20px 0 34px;

  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 84px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.07em;
}

.eqao-copy h2::after {
  content: "";
  display: block;

  width: 72px;
  height: 8px;
  margin-top: 20px;
  margin-left: 0;

  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-2deg);
}

.eqao-copy > p {
  max-width: 700px;

  color: rgba(18, 22, 51, 0.76);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.eqao-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;

  margin-top: 36px;
}

.eqao-symbol {
  position: relative;
  min-height: 520px;

  display: grid;
  place-items: center;
}

.eqao-symbol::before {
  content: "";
  position: absolute;

  width: 330px;
  height: 330px;
  border-radius: 50%;

  background-image:
    radial-gradient(var(--blue) 2px, transparent 2px);
  background-size: 12px 12px;

  opacity: 0.33;
  animation: eqaoDotsSpin 24s linear infinite;
}

.eqao-symbol span {
  position: absolute;

  display: grid;
  place-items: center;

  border: 3px solid var(--ink);

  color: var(--ink);
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 900;

  box-shadow: 7px 7px 0 var(--ink);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.eqao-symbol span:nth-child(1) {
  top: 6%;
  left: 4%;

  width: 170px;
  height: 170px;
  border-radius: 50%;

  background: var(--ink);
  color: #ffffff;

  transform: rotate(-5deg);
}

.eqao-symbol span:nth-child(2) {
  top: 12%;
  right: 6%;

  border: 0;
  box-shadow: none;
  background: transparent;

  transform: rotate(8deg);
}

.eqao-symbol span:nth-child(3) {
  left: 10%;
  bottom: 7%;

  border: 0;
  box-shadow: none;
  background: transparent;

  transform: rotate(-8deg);
}

.eqao-symbol span:nth-child(4) {
  right: 5%;
  bottom: 1%;

  width: 210px;
  height: 210px;
  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      #834dff
    );

  color: #ffffff;

  transform: rotate(4deg);
}

.eqao-card:hover .eqao-symbol span:nth-child(1) {
  transform: translateY(-10px) rotate(-10deg);
  background: var(--pink);
  color: var(--ink);
}

.eqao-card:hover .eqao-symbol span:nth-child(4) {
  transform: translateY(-14px) rotate(8deg);
  background:
    linear-gradient(
      135deg,
      var(--cyan),
      var(--blue)
    );
}

@keyframes eqaoDotsSpin {
  to {
    transform: rotate(360deg);
  }
}


/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
  .quote-section::after {
    width: 110px;
    right: 4vw;
    top: auto;
    bottom: 50px;

    font-size: 14px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-question {
    width: 300px;
  }

  .eqao-card {
    grid-template-columns: 1fr;
  }

  .eqao-symbol {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .quote-section {
    padding: 90px 24px;
  }

  .quote-section::before {
    top: 24px;
    left: 20px;
  }

  .quote-section::after {
    display: none;
  }

  .quote-inner p {
    font-size: 26px;
  }

  .quote-inner strong {
    font-size: 46px;
  }

  .final-cta {
    padding: 70px 24px;
  }

  .final-copy {
    padding: 42px 24px;
    border-radius: 28px;

    box-shadow:
      8px 8px 0 var(--ink),
      14px 14px 0 var(--lime);
  }

  .final-copy h2 {
    font-size: 54px;
  }

  .final-question {
    width: 210px;
    font-size: 220px;
  }

  .eqao.section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .eqao-card {
    padding: 42px 24px;
    border-radius: 28px;

    box-shadow:
      8px 8px 0 var(--ink),
      14px 14px 0 var(--cyan);
  }

  .eqao-card::before {
    right: 12px;
    top: -26px;
  }

  .eqao-copy h2 {
    font-size: 44px;
  }

  .eqao-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .eqao-actions .button {
    width: 100%;
  }

  .eqao-symbol {
    min-height: 340px;
  }

  .eqao-symbol::before {
    width: 240px;
    height: 240px;
  }

  .eqao-symbol span:nth-child(1) {
    width: 120px;
    height: 120px;
  }

  .eqao-symbol span:nth-child(4) {
    width: 150px;
    height: 150px;
  }
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding: 96px 20px 56px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    position: relative;
    z-index: 5;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .phone-stage {
    width: 100%;
    max-width: 320px;
    margin: 40px auto 0;
  }
}
/* ===== HERO MOBILE FIX ===== */
@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;

    padding:
      calc(68px + 48px)
      22px
      64px;

    overflow: hidden;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    width: 100%;
  }

  .hero .eyebrow {
    margin: 0 0 28px;
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    margin: 0;
    font-size: clamp(54px, 16vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.07em;
  }

  .hero h1 span {
    max-width: 100%;
  }

  .hero h1 .outline {
    margin-top: 8px;
    color: #ffffff;
    -webkit-text-stroke: 2px var(--ink);

    text-shadow:
      4px 4px 0 var(--blue),
      7px 7px 0 var(--cyan);
  }

  .hero-lead {
    position: relative;
    z-index: 6;

    max-width: 88%;
    margin: 34px 0 0;

    font-size: 18px;
    line-height: 1.8;
  }

  .hero-actions {
    position: relative;
    z-index: 7;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;

    margin-top: 28px;
  }

  .phone-stage {
    position: relative;
    z-index: 2;

    width: min(88vw, 340px);
    margin: 72px auto 0;

    justify-self: center;
    transform-origin: center top;
  }

  .phone {
    width: 100%;
    max-width: 340px;
  }

  .hero-bg {
    overflow: hidden;
  }

  .paper-one {
    transform: translateX(25%) rotate(10deg);
    opacity: 0.5;
  }

  .paper-two {
    transform: translateX(-20%) rotate(-8deg);
    opacity: 0.4;
  }

  .scribble {
    display: none;
  }
}
/* ===== REVEAL DISPLAY EMERGENCY FIX ===== */

.reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Final mobile overrides: keep these last so the component redesigns above
   cannot reintroduce oversized type or cramped touch targets. */
@media (max-width: 560px) {
  .site-header { height: 72px; padding: 0 18px; z-index: 1000; }

  .global-nav {
    z-index: 1001;
    justify-content: flex-start;
    gap: 10px;
    padding: 104px 20px 32px;
    overflow-y: auto;
    background:
      radial-gradient(circle at 92% 12%, rgba(51, 230, 255, .3), transparent 27%),
      linear-gradient(155deg, #fffaf2 0%, #f3efff 58%, #e8fbff 100%);
    color: var(--ink);
  }

  .global-nav.open { z-index: 1001; }

  .global-nav > a:not(.nav-cta) {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: stretch;
    width: min(100%, 440px);
    min-height: 72px;
    padding: 13px 18px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: .08em;
    text-align: left;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .global-nav > a:not(.nav-cta)::before {
    content: attr(data-ja);
    grid-column: 1;
    grid-row: 2;
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
  }

  .global-nav > a:not(.nav-cta)::after {
    content: "↓";
    grid-column: 2;
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    font-size: 16px;
  }

  .global-nav > a:nth-child(2)::after { background: var(--cyan); }
  .global-nav > a:nth-child(3)::after { background: #ffb5d5; }
  .global-nav > a:nth-child(4)::after { background: #ffe295; }

  .global-nav .nav-cta {
    width: min(100%, 440px);
    min-height: 58px;
    margin-top: 12px;
    color: #fff;
    font-size: 15px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .menu-button.is-open {
    z-index: 1002;
    color: var(--ink);
    background: rgba(255, 255, 255, .82);
  }

  .hero { padding: 108px 20px 64px; }
  .hero h1 {
    font-size: clamp(46px, 14.5vw, 62px);
    line-height: 1.02;
  }
  .hero h1 .outline {
    -webkit-text-stroke-width: 1.5px;
    text-shadow: 3px 3px 0 var(--blue), 6px 6px 0 var(--cyan);
  }
  .hero-lead { max-width: 88%; font-size: 16px; }
  .phone-stage { width: min(82vw, 310px); margin-top: 56px; }
  .phone-stage::before {
    content: "自分を知る、小さな質問。";
    position: absolute;
    z-index: 5;
    top: -118px;
    left: -8px;
    padding: 11px 16px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--lime);
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    white-space: nowrap;
    box-shadow: 4px 4px 0 var(--ink);
    transform: rotate(-4deg);
  }
  .phone-stage::after {
    content: "↘";
    position: absolute;
    z-index: 5;
    top: -96px;
    right: 2px;
    color: var(--pink);
    font-size: 66px;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 2px var(--ink);
    transform: rotate(8deg);
  }

  .section-heading h2,
  .eqao-copy h2 {
    font-size: clamp(30px, 9.2vw, 38px);
    line-height: 1.35;
    letter-spacing: -.045em;
  }
  .section-heading h2 br,
  .eqao-copy h2 br,
  .large-copy br { display: none; }

  .photo-placeholder { min-height: 360px; padding: 20px; }
  .photo-placeholder::after { top: 16px; left: 16px; padding: 8px 11px; font-size: 10px; }
  .large-copy { font-size: 27px; }
  .story-text { padding: 36px 20px 26px; }

  .theme-card { padding: 22px 18px; gap: 14px; }
  .theme-card h3 { padding-right: 24px; font-size: 31px; }

  .quote-section { min-height: auto; padding: 88px 20px; }
  .quote-inner p { font-size: 21px; line-height: 1.7; }
  .quote-inner p br { display: none; }
  .quote-inner strong { font-size: 34px; line-height: 1.4; }

  .eqao-card { padding: 42px 20px 30px; }
  .eqao-symbol { min-height: 290px; }

  .final-cta { min-height: auto; padding: 84px 20px; }
  .final-copy { padding: 42px 20px; }
  .final-copy h2 {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.16;
    letter-spacing: -.06em;
  }
  .final-copy h2 br { display: none; }
  .final-question { width: 170px; font-size: 180px; }
}

/* The reveal fallback uses !important visibility on page content, so remove
   the page from layout while the mobile menu is open instead of hiding it. */
@media (max-width: 900px) {
  body.menu-open main,
  body.menu-open footer {
    display: none;
  }

  body.menu-open .site-header {
    min-height: 100dvh;
    border-bottom: 0;
    background:
      radial-gradient(circle at 92% 12%, rgba(51, 230, 255, .3), transparent 27%),
      linear-gradient(155deg, #fffaf2 0%, #f3efff 58%, #e8fbff 100%);
  }

  body.menu-open .logo {
    visibility: hidden;
  }
}

/* Actual drama still used in the story visual. */
.photo-placeholder.has-photo {
  isolation: isolate;
  background: var(--ink);
}

.photo-placeholder.has-photo > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.photo-placeholder.has-photo::before {
  content: none;
}

.photo-placeholder.has-photo > span {
  position: relative;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 22, 51, .82);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Story visual: an application sheet instead of another video thumbnail. */
.photo-placeholder.story-form {
  display:grid;
  place-items:center;
  padding:clamp(24px,4vw,46px);
  background:linear-gradient(145deg,#6c7cff 0%,#45def4 52%,#ffd0e2 100%);
}
.photo-placeholder.story-form::before,
.photo-placeholder.story-form::after,
.story-visual.form-visual::after { content:none; }
.story-visual.form-visual .vertical-note { display:none; }
.reason-sheet {
  position:relative;
  z-index:2;
  width:100%;
  min-height:440px;
  padding:clamp(26px,4vw,46px);
  border:2px solid var(--ink);
  border-radius:22px;
  background:#fffdf8;
  color:var(--ink);
  box-shadow:10px 10px 0 var(--ink);
  transform:rotate(-1deg);
}
.sheet-top { display:flex; justify-content:space-between; align-items:center; gap:16px; padding-bottom:18px; border-bottom:2px solid var(--ink); }
.sheet-top small { font-size:10px; font-weight:900; letter-spacing:.14em; }
.sheet-top span { padding:7px 10px; border-radius:999px; background:var(--pink); color:white; font-size:10px; font-weight:900; }
.sheet-label { width:fit-content; margin:30px 0 14px; padding:6px 10px; background:var(--lime); color:var(--ink); font-size:11px; font-weight:900; }
.reason-sheet h3 { margin:0; font-size:clamp(24px,3.2vw,40px); line-height:1.45; letter-spacing:-.04em; }
.sheet-lines { display:grid; gap:20px; margin:34px 0 18px; }
.sheet-lines i { display:block; height:1px; background:rgba(18,22,51,.22); }
.sheet-handwriting { width:fit-content; margin:-54px 0 28px 12px; color:var(--blue); font-family:"Zen Kaku Gothic New",sans-serif; font-size:clamp(18px,2.2vw,28px); font-weight:900; transform:rotate(-3deg); }
.sheet-hints { display:flex; flex-wrap:wrap; gap:8px; }
.sheet-hints span { padding:7px 11px; border:1.5px solid var(--ink); border-radius:999px; background:#fff; color:var(--ink); font-size:10px; font-weight:800; }
.sheet-hints span:nth-child(2) { background:var(--cyan); }
.sheet-hints span:nth-child(3) { background:#ffb5d5; }

@media (max-width:560px) {
  .photo-placeholder.story-form { min-height:390px; padding:20px; }
  .reason-sheet { min-height:330px; padding:24px 20px; box-shadow:7px 7px 0 var(--ink); }
  .sheet-top { align-items:flex-start; }
  .sheet-top small { max-width:90px; line-height:1.5; }
  .reason-sheet h3 { font-size:25px; }
  .sheet-lines { gap:18px; margin-top:28px; }
  .sheet-handwriting { margin-top:-49px; font-size:19px; }
}

/* Keep the hero phone optically centered on narrow screens. */
@media (max-width:560px) {
  .phone-stage {
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    display:flex;
    justify-content:center;
    width:100% !important;
    max-width:none;
    margin:56px 0 0;
    justify-self:stretch;
    animation:none;
    transform:none !important;
  }
  .phone {
    flex:0 0 auto;
    width:min(68vw,250px);
    max-width:250px;
    box-shadow:12px 14px 0 rgba(18,22,51,.18);
  }
  .screen-journal { padding:66px 22px 28px; }
  .journal-count { margin-top:52px; }
  .screen-journal strong { font-size:21px; }
  .journal-lines { margin-top:30px; }
  .journal-answer { margin-top:58px; }
  .journal-progress { margin-top:22px; }
  .phone-stage::before {
    top:-104px;
    left:50%;
    width:max-content;
    max-width:calc(100vw - 48px);
    padding:10px 15px;
    font-size:10px;
    text-align:center;
    transform:translateX(-50%) rotate(-2deg);
    box-shadow:3px 4px 0 var(--ink);
  }
  .phone-stage::after {
    top:-66px;
    right:calc(50% - 112px);
    font-size:50px;
    -webkit-text-stroke-width:1.5px;
    transform:rotate(4deg);
  }
}

@media (max-width:900px) {
  .quote-inner strong {
    word-break:normal;
    overflow-wrap:break-word;
    text-wrap:balance;
  }
}

/* Keep an already-open menu stable while a desktop window is resized. */
body.menu-open .global-nav.open {
  position:fixed;
  inset:0;
  z-index:1001;
  width:100%;
  height:100dvh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  padding:20px 28px 34px;
  overflow-y:auto;
  opacity:1;
  visibility:visible;
  background:radial-gradient(circle at 92% 12%,rgba(51,230,255,.3),transparent 27%),linear-gradient(155deg,#fffaf2 0%,#f3efff 58%,#e8fbff 100%);
  color:var(--ink);
}

body.menu-open .global-nav.open > a:not(.nav-cta) {
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-rows:auto auto;
  align-items:center;
  width:min(100%,460px);
  min-height:66px;
  padding:12px 18px;
  border:2px solid var(--ink);
  border-radius:17px;
  background:rgba(255,255,255,.94);
  color:var(--ink) !important;
  font-size:18px;
  font-weight:900;
  line-height:1.15;
  letter-spacing:.08em;
  text-align:left;
  box-shadow:4px 4px 0 var(--ink);
}

body.menu-open .global-nav.open > a:not(.nav-cta)::before {
  content:attr(data-ja);
  grid-column:1;
  grid-row:2;
  margin-top:4px;
  color:var(--muted);
  font-size:10px;
  font-weight:700;
}

body.menu-open .global-nav.open > a:not(.nav-cta)::after {
  content:"↓";
  grid-column:2;
  grid-row:1 / 3;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--lime);
  color:var(--ink);
}

body.menu-open .global-nav.open .nav-cta {
  width:min(100%,460px);
  min-height:56px;
  margin-top:10px;
  font-size:15px;
}

body.menu-open .global-nav.open .nav-close {
  position:relative;
  display:grid;
  flex:0 0 52px;
  align-self:flex-end;
  place-items:center;
  width:52px;
  height:52px;
  margin:0 0 14px;
  padding:0;
  border:2px solid var(--ink);
  border-radius:50%;
  background:var(--lime);
  color:var(--ink);
  box-shadow:4px 4px 0 var(--ink);
}

body.menu-open .nav-close span {
  position:absolute;
  display:block;
  width:24px;
  height:2px;
  background:currentColor;
}
body.menu-open .nav-close span:first-child { transform:rotate(45deg); }
body.menu-open .nav-close span:last-child { transform:rotate(-45deg); }

/* The vertical scroll cue collides with hero content in narrow desktop tabs. */
@media (max-width:1100px) {
  .scroll-label { display:none; }
}

/* Clear navigation for narrow desktop tabs and mobile screens. */
@media (max-width:900px) {
  .menu-button {
    position:fixed;
    top:18px;
    right:22px;
    z-index:1002;
    margin:0;
  }

  body.menu-open .site-header {
    min-height:86px;
    z-index:1000;
    pointer-events:none;
    background:transparent;
    border:0;
    box-shadow:none;
  }

  .global-nav,
  .global-nav.open {
    inset:0;
    width:100%;
    height:100dvh;
    justify-content:flex-start;
    gap:12px;
    padding:20px 28px 34px;
    overflow-y:auto;
    background:radial-gradient(circle at 92% 12%,rgba(51,230,255,.3),transparent 27%),linear-gradient(155deg,#fffaf2 0%,#f3efff 58%,#e8fbff 100%);
    color:var(--ink);
  }

  .global-nav > a:not(.nav-cta) {
    display:grid;
    grid-template-columns:1fr auto;
    grid-template-rows:auto auto;
    align-items:center;
    width:min(100%,460px);
    min-height:66px;
    padding:12px 18px;
    border:2px solid var(--ink);
    border-radius:17px;
    background:rgba(255,255,255,.94);
    color:var(--ink) !important;
    font-size:18px;
    font-weight:900;
    line-height:1.15;
    letter-spacing:.08em;
    text-align:left;
    box-shadow:4px 4px 0 var(--ink);
  }

  .global-nav > a:not(.nav-cta)::before {
    content:attr(data-ja);
    grid-column:1;
    grid-row:2;
    margin-top:4px;
    color:var(--muted);
    font-size:10px;
    font-weight:700;
    letter-spacing:.05em;
  }

  .global-nav > a:not(.nav-cta)::after {
    content:"↓";
    grid-column:2;
    grid-row:1 / 3;
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--lime);
    color:var(--ink);
  }

  .global-nav .nav-cta {
    width:min(100%,460px);
    min-height:56px;
    margin-top:10px;
    font-size:15px;
  }

  .menu-button.is-open { visibility:hidden; }

  .global-nav.open .nav-close {
    position:relative;
    top:auto;
    right:auto;
    z-index:3;
    display:grid;
    flex:0 0 52px;
    align-self:flex-end;
    place-items:center;
    width:52px;
    height:52px;
    padding:0;
    border:2px solid var(--ink);
    border-radius:50%;
    background:var(--lime);
    color:var(--ink);
    box-shadow:4px 4px 0 var(--ink);
    margin:0 0 14px;
  }

  .nav-close span {
    position:absolute;
    display:block;
    width:24px;
    height:2px;
    background:currentColor;
  }
  .nav-close span:first-child { transform:rotate(45deg); }
  .nav-close span:last-child { transform:rotate(-45deg); }

  .menu-button.is-open {
    position:fixed;
    top:18px;
    right:22px;
    z-index:1002;
    width:52px;
    height:52px;
    margin:0;
    border:2px solid var(--ink);
    border-radius:50%;
    background:var(--lime);
    color:var(--ink);
    box-shadow:4px 4px 0 var(--ink);
  }

  .menu-button.is-open span { width:24px; }
}

@media (max-width:560px) {
  .global-nav,
  .global-nav.open { padding:10px 18px 28px; }
  .menu-button { top:10px; right:14px; }
  .menu-button.is-open { top:10px; right:14px; width:48px; height:48px; }
  .global-nav.open .nav-close { top:auto; right:auto; width:48px; height:48px; flex-basis:48px; margin-bottom:12px; }
}

/* Message section must wrap freely on phones and tablet-sized webviews. */
@media (max-width:900px) {
  .quote-section {
    min-height:auto;
    padding:92px 24px 84px;
  }

  .quote-section::after { display:none; }

  .quote-inner {
    width:100%;
    max-width:680px;
  }

  .quote-inner p {
    max-width:100%;
    font-size:clamp(21px,4.2vw,30px);
    line-height:1.65;
    letter-spacing:-.035em;
    word-break:normal;
    overflow-wrap:break-word;
  }

  .quote-inner strong {
    width:100%;
    max-width:100%;
    margin-top:34px;
    font-size:clamp(34px,7vw,52px);
    line-height:1.3;
    letter-spacing:-.055em;
    word-break:normal;
    overflow-wrap:break-word;
    text-wrap:balance;
  }

  .quote-inner .accent-line::after {
    left:0;
    right:0;
    bottom:3%;
  }
}

@media (max-width:560px) {
  .quote-inner p { font-size:20px; }
  .quote-inner strong { font-size:clamp(30px,9vw,38px); }
}

/* On touch-sized layouts, use a compact card instead of the tall device mockup. */
@media (max-width:900px) {
  .phone-stage {
    position:relative;
    inset:auto;
    left:auto;
    right:auto;
    top:auto;
    width:calc(100% - 8px) !important;
    max-width:none;
    margin:48px auto 0;
    display:block;
    justify-self:stretch;
    opacity:1;
    animation:none;
    transform:none !important;
  }
  .phone-stage::before,
  .phone-stage::after { content:none; }
  .phone {
    width:100%;
    max-width:none;
    aspect-ratio:auto;
    padding:0;
    border:2px solid var(--ink);
    border-radius:26px;
    background:#fff;
    box-shadow:7px 8px 0 var(--ink);
    overflow:hidden;
  }
  .phone::after,
  .phone-top { display:none; }
  .phone-screen {
    height:auto;
    min-height:0;
    border-radius:24px;
  }
  .screen-journal {
    position:relative;
    inset:auto;
    min-height:350px;
    padding:28px 22px 24px;
  }
  .screen-journal::before {
    content:"自分を知る、小さな質問。";
    width:fit-content;
    margin-bottom:34px;
    padding:7px 11px;
    border:1.5px solid var(--ink);
    border-radius:999px;
    background:var(--lime);
    font-size:10px;
    font-weight:900;
    box-shadow:3px 3px 0 var(--ink);
  }
  .journal-count { margin:0 0 12px; }
  .screen-journal strong { font-size:24px; }
  .journal-lines { margin:26px 0 18px; }
  .journal-answer { margin:0; font-size:12px; }
  .journal-progress { margin-top:24px; }
}

/* Natural Japanese line wrapping across desktop and mobile. */
h1,
h2,
h3,
.large-copy,
.quote-inner strong,
.screen-journal strong {
  line-break:strict;
  word-break:auto-phrase;
  text-wrap:balance;
}

p {
  line-break:strict;
  text-wrap:pretty;
}

.hero h1 span {
  width:max-content;
  max-width:100%;
  white-space:nowrap;
}

@media (min-width:901px) and (max-width:980px) {
  .hero h1 { font-size:7vw; }
}

@media (max-width:560px) {
  .hero h1 {
    font-size:clamp(40px,12.8vw,54px);
    letter-spacing:-.06em;
  }

  .section-heading h2,
  .eqao-copy h2 {
    overflow-wrap:normal;
    word-break:auto-phrase;
    text-wrap:balance;
  }

  .episode-card h3 {
    min-height:2.7em;
    display:flex;
    align-items:center;
  }
}

/* Final exception: long message copy must be allowed to wrap. */
@media (max-width:900px) {
  .quote-inner strong {
    word-break:normal;
    overflow-wrap:break-word;
    text-wrap:balance;
  }
}

/* Final menu state: depend only on the menu's own open class. */
.global-nav.open {
  position:fixed !important;
  inset:0 !important;
  z-index:1001 !important;
  width:100% !important;
  height:100dvh !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:12px !important;
  padding:20px 28px 34px !important;
  overflow-y:auto !important;
  opacity:1 !important;
  visibility:visible !important;
  background:radial-gradient(circle at 92% 12%,rgba(51,230,255,.3),transparent 27%),linear-gradient(155deg,#fffaf2 0%,#f3efff 58%,#e8fbff 100%) !important;
  color:var(--ink) !important;
}

.global-nav.open > a:not(.nav-cta) {
  display:grid !important;
  grid-template-columns:1fr auto;
  grid-template-rows:auto auto;
  align-items:center;
  width:min(100%,460px) !important;
  min-height:66px;
  padding:12px 18px;
  border:2px solid var(--ink);
  border-radius:17px;
  background:rgba(255,255,255,.94) !important;
  color:var(--ink) !important;
  font-size:18px;
  text-align:left;
  box-shadow:4px 4px 0 var(--ink);
}

.global-nav.open > a:not(.nav-cta)::before {
  content:attr(data-ja);
  grid-column:1;
  grid-row:2;
  margin-top:4px;
  color:var(--muted);
  font-size:10px;
}

.global-nav.open > a:not(.nav-cta)::after {
  content:"↓";
  grid-column:2;
  grid-row:1 / 3;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--lime);
  color:var(--ink);
}

.global-nav.open .nav-close {
  position:relative !important;
  display:grid !important;
  flex:0 0 52px;
  align-self:flex-end;
  place-items:center;
  width:52px;
  height:52px;
  margin:0 0 14px;
  padding:0;
  border:2px solid var(--ink);
  border-radius:50%;
  background:var(--lime);
  color:var(--ink);
  box-shadow:4px 4px 0 var(--ink);
}

.global-nav.open .nav-close span {
  position:absolute;
  display:block;
  width:24px;
  height:2px;
  background:currentColor;
}
.global-nav.open .nav-close span:first-child { transform:rotate(45deg); }
.global-nav.open .nav-close span:last-child { transform:rotate(-45deg); }
.menu-button.is-open { display:none !important; }

/* ========================================
   FOUR QUESTIONS - 2 COLUMN + HOVER POPUP
======================================== */

.theme-list--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.theme-list--grid .theme-card {
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 22px;

  min-height: 190px;
  padding: 32px 34px;

  cursor: default;
  outline: none;
}

.theme-list--grid .theme-card:hover,
.theme-list--grid .theme-card:focus-visible {
  padding-left: 34px;
}

.theme-list--grid .theme-card:focus-visible {
  color: var(--ink);
  background: #ffffff;
  transform: translateY(-7px) rotate(0deg);
  box-shadow: 14px 16px 0 var(--ink);
}

.theme-list--grid .theme-card h3 {
  font-size: clamp(28px, 3vw, 46px);
  padding-right: 36px;
}

/* 補足テキスト → 吹き出しポップアップ */
.theme-list--grid .theme-pop {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 18px;
  z-index: 3;

  margin: 0;
  padding: 12px 16px;

  border: 2px solid var(--ink);
  border-radius: 14px;

  background: var(--ink);
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;

  box-shadow: 4px 4px 0 rgba(18, 22, 51, 0.25);

  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) rotate(-1.5deg) scale(0.94);
  transform-origin: left bottom;
  transition:
    opacity 0.22s ease,
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 吹き出しのしっぽ（番号バッジの方向へ） */
.theme-list--grid .theme-pop::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -9px;

  width: 14px;
  height: 14px;

  border-left: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  background: var(--ink);

  transform: rotate(45deg);
}

.theme-list--grid .theme-card:hover .theme-pop,
.theme-list--grid .theme-card:focus-visible .theme-pop {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

/* ホバー中は見出しを少し上へ逃がしてポップアップの居場所をつくる */
.theme-list--grid .theme-card h3,
.theme-list--grid .theme-card span {
  transition: transform 0.3s ease;
}

.theme-list--grid .theme-card:hover h3,
.theme-list--grid .theme-card:focus-visible h3,
.theme-list--grid .theme-card:hover span,
.theme-list--grid .theme-card:focus-visible span {
  transform: translateY(-16px);
}

/* 動きを抑えたい環境 */
@media (prefers-reduced-motion: reduce) {
  .theme-list--grid .theme-pop,
  .theme-list--grid .theme-card h3,
  .theme-list--grid .theme-card span {
    transition: none;
  }
}

/* タブレット以下：1カラム */
@media (max-width: 900px) {
  .theme-list--grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .theme-list--grid .theme-card {
    min-height: 170px;
  }
}

/* タッチ端末（hoverなし）：ポップアップを常時表示に切り替え */
@media (hover: none) {
  .theme-list--grid .theme-card {
    grid-template-columns: 50px 1fr;
    min-height: 0;
    padding-bottom: 24px;
  }

  .theme-list--grid .theme-pop {
    position: static;
    grid-column: 2;

    margin-top: 6px;
    padding: 10px 14px;

    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .theme-list--grid .theme-pop::before {
    display: none;
  }

  .theme-list--grid .theme-card:hover h3,
  .theme-list--grid .theme-card:hover span {
    transform: none;
  }
}

/* ========================================
   MESSAGE SECTION - PCで1画面に収める
======================================== */

@media (min-width: 901px) {
  .quote-section {
    min-height: 0;
    padding: 90px 6vw;
  }

  .quote-inner {
    max-width: 1100px;
  }

  .quote-inner p {
    max-width: 100%;
    margin-bottom: 16px;

    font-size: clamp(22px, 2.3vw, 38px);
    line-height: 1.5;
    letter-spacing: -0.03em;
  }

  .quote-inner strong {
    margin-top: 28px;
    font-size: clamp(36px, 4.2vw, 68px);
    line-height: 1.2;
    letter-spacing: -0.05em;
  }

  .quote-inner strong + strong {
    margin-top: 12px;
  }
}

/* ========================================
   RESPONSIVE FIXES (2026-09)
   タブレット・スマホでのはみ出し / 崩れ対策
   ※ 上書き構造のため必ずファイル末尾に置く
======================================== */

/* 横方向のはみ出しを根本から防ぐ（iOS Safari は body の overflow-x:hidden を無視することがある） */
html,
body {
  overflow-x: clip;
}

main {
  overflow-x: clip;
}

/* 文節単位で改行させる（Safari は word-break:auto-phrase 非対応のため HTML 側で区切る） */
.ph {
  display: inline-block;
}

/* ---- 901px〜1280px：iPad 横向き・小さめのPC画面 ---- */
@media (min-width: 901px) and (max-width: 1280px) {
  .hero {
    padding: 120px 5vw 70px;
    column-gap: 3vw;
  }

  .story-grid {
    gap: 5vw;
  }

  .story-text {
    padding: 36px 30px;
  }

  .large-copy {
    font-size: clamp(26px, 3vw, 40px);
  }

  .reason-sheet h3 {
    font-size: clamp(22px, 2.6vw, 30px);
  }

  .episode-slider {
    gap: 18px;
  }

  .episode-card {
    padding: 12px 12px 18px;
  }

  .episode-card h3 {
    font-size: 17px;
  }

  .episode-card p {
    font-size: 12px;
  }

  /* MESSAGE：星型ステッカーが本文に重ならないよう下段へ退避 */
  .quote-section {
    padding: 90px 6vw 170px;
  }

  .quote-inner p {
    font-size: clamp(20px, 2.2vw, 30px);
  }

  .quote-inner strong {
    font-size: clamp(32px, 3.8vw, 52px);
  }

  .quote-section::after {
    top: auto;
    bottom: 28px;
    right: 5vw;
    width: 120px;
    font-size: 14px;
  }

  /* EQAO：見出しが1行数文字ずつにならないよう縮小 */
  .eqao-card {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    padding: clamp(40px, 5vw, 64px);
  }

  .eqao-copy h2 {
    font-size: clamp(32px, 3.9vw, 56px);
  }

  .eqao-symbol {
    min-height: 400px;
  }

  .eqao-symbol::before {
    width: 260px;
    height: 260px;
  }

  .eqao-symbol span {
    font-size: clamp(44px, 5vw, 72px);
  }

  .eqao-symbol span:nth-child(1) {
    width: 130px;
    height: 130px;
  }

  .eqao-symbol span:nth-child(4) {
    width: 160px;
    height: 160px;
  }

  .final-copy {
    padding: 44px;
  }

  .final-copy h2 {
    font-size: clamp(44px, 5.6vw, 84px);
  }

  .final-question {
    width: min(30vw, 360px);
    font-size: clamp(180px, 22vw, 340px);
  }
}

/* ---- 〜360px：小型スマホ（iPhone SE 等） ---- */
@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(34px, 11.5vw, 42px);
  }

  .section-heading h2,
  .eqao-copy h2 {
    font-size: 28px;
  }

  .large-copy {
    font-size: 25px;
  }

  .quote-inner p {
    font-size: 19px;
  }

  .quote-inner strong {
    font-size: 27px;
  }

  .final-copy h2 {
    font-size: 38px;
  }

  .theme-card h3 {
    font-size: 28px;
  }

  .episode-card {
    flex-basis: 86vw;
  }
}
