  *, *::before, *::after { box-sizing: border-box; }
  h1, h2, h3, p, ul, li, blockquote { margin: 0; padding: 0; }
  ul { list-style: none; }
  a { color: inherit; }
  img { display: block; }

  :root {
    --paper: #faf6ec;
    --paper-deep: #f5e6db;
    --program-bg: #f7e9d4;
    --surface: #ffffff;
    --ink: #2c241d;
    --ink-soft: #5b5042;
    --ink-faint: #948a76;
    --line: #ecdfc3;
    --line-strong: #ddc79c;

    --terracotta: #dd944b;
    --terracotta-deep: #b46b22;
    --terracotta-tint: #fbe8ce;

    --sage: #789353;
    --sage-deep: #566a39;

    --rose: #cf6d59;
    --rose-deep: #a84b38;

    --slate: #5e92ac;
    --slate-deep: #426476;

    --change-bg: #f2f6ed;

    --radius: 6px;

    --serif-jp: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
    --serif-en: 'Cormorant Garamond', Georgia, serif;
    --sans-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 2.15;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, .serif { font-family: var(--serif-jp); font-weight: 600; line-height: 1.5; text-wrap: balance; }

  .container        { max-width: 940px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }
  .container-narrow { max-width: 700px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

  .section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
  .section--alt { background: var(--paper-deep); }
  .section--white { background: var(--surface); }
  .section--program { background: var(--program-bg); }
  .section--change { background: var(--change-bg); }
  .divider { width: 1px; height: 70px; background: var(--line-strong); margin: 0 auto; }
  .center { text-align: center; }

  /* section wayfinding: number + original english label, then a short JP role line */
  .section-kicker { text-align: center; margin-bottom: 1.6rem; }
  .section-kicker .tag-en {
    display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--sans-jp); font-weight: 700;
    font-size: 0.86rem; letter-spacing: 0.16em; color: var(--ink-faint);
  }
  .section-kicker .tag-jp {
    display: block; margin-top: 0.5rem; font-family: var(--sans-jp); font-weight: 700;
    font-size: 1.08rem; color: var(--terracotta-deep); letter-spacing: 0.03em;
  }

  /* simple single-line label, used where a full two-line kicker is too much */
  .section-label-wrap { text-align: center; }
  .section-label {
    display: inline-block; font-family: var(--sans-jp); font-weight: 600; font-size: 0.84rem;
    letter-spacing: 0.16em; color: var(--terracotta-deep); margin-bottom: 1.6rem;
    border-bottom: 2px solid rgba(221,148,75,0.32); padding-bottom: 0.35rem;
  }
  .section-label-lg { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-family: var(--serif-jp); font-weight: 700; letter-spacing: 0.06em; }

  /* plain, clean panel for emphasized body copy - no odd shapes, no random hue tints */
  .copy-card {
    background: var(--surface); border-left: 3px solid var(--terracotta); border-radius: var(--radius);
    padding: clamp(1.8rem, 4vw, 2.3rem) clamp(1.6rem, 4vw, 2.2rem); text-align: center;
  }
  .copy-card--on-white { background: var(--paper); }
  .copy-card p { font-family: var(--serif-jp); font-size: clamp(1.08rem, 2vw, 1.25rem); color: var(--ink); line-height: 2.1; }
  .copy-card p + p { margin-top: 1rem; }
  .copy-card strong { font-weight: 700; }

  header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(250, 246, 236, 0.92); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(221, 199, 156, 0.4); z-index: 100;
  }
  .brand { display: flex; flex-direction: row; align-items: baseline; gap: 1.5rem; text-decoration: none; color: var(--ink); }
  .brand-name { font-family: var(--serif-jp); font-weight: 600; font-size: 1.1rem; letter-spacing: 0.04em; white-space: nowrap; }
  .brand-tagline { font-family: var(--sans-jp); font-size: 0.92rem; letter-spacing: 0.02em; color: var(--ink); font-weight: 700; }
  @media (max-width: 640px) { .brand-tagline { display: none; } }
  .nav-btn {
    font-size: 0.76rem; letter-spacing: 0.12em; padding: 0.62rem 1.4rem; background: var(--terracotta);
    color: #fff; text-decoration: none; border-radius: var(--radius); transition: background 0.25s ease; white-space: nowrap;
  }
  .nav-btn:hover { background: var(--terracotta-deep); }

  .btn {
    display: inline-block; font-size: 0.88rem; letter-spacing: 0.12em; padding: 1.05rem 2.8rem;
    text-decoration: none; border-radius: var(--radius); transition: background 0.25s ease, transform 0.25s ease;
  }
  .btn-primary { background: var(--terracotta); color: #fff; }
  .btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-1px); }
  .btn-lg { padding: 1.25rem 4rem; font-size: 0.95rem; }

  .cta-inline { text-align: center; margin-top: 2.6rem; }

  .media {
    position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.65rem;
    background: repeating-linear-gradient(135deg, rgba(221,148,75,0.07) 0 12px, transparent 12px 24px), var(--terracotta-tint);
    border: 1.5px dashed var(--line-strong); border-radius: var(--radius); color: var(--ink-faint); text-align: center; overflow: hidden;
  }
  .media svg { width: 26px; height: 26px; stroke: var(--terracotta-deep); opacity: 0.7; }
  .media-label { font-family: var(--sans-jp); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.08em; color: var(--ink-soft); }
  .media-sub { font-size: 0.72rem; color: var(--ink-faint); letter-spacing: 0.02em; padding: 0 1.2rem; }

  .media--wide { aspect-ratio: 16 / 9; }
  .media--tall { aspect-ratio: 3 / 4; }
  .media--portrait { aspect-ratio: 4 / 5; }
  .media--square { aspect-ratio: 1 / 1; }

  .photo { border-radius: var(--radius); overflow: hidden; }
  .photo img { width: 100%; height: 100%; object-fit: cover; }

  /* community screenshot, merged into CIRCLE COMMUNITY program-card */
  .community-lead { color: var(--ink-soft); line-height: 2; }
  .ui-shot {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-strong);
    box-shadow: 0 20px 44px -16px rgba(44,36,29,0.22);
  }
  .ui-shot img { width: 100%; display: block; }
  .program-card .ui-shot { margin-top: 1.3rem; }

  /* 2-week cycle steps, inside PROGRAM section */
  .program-cycle { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
  .program-cycle-lead { text-align: center; color: var(--ink-soft); max-width: 640px; margin: 0 auto 2.5rem; line-height: 2; }
  .pc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .pc-step {
    background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line);
    padding: clamp(1.4rem, 3vw, 1.8rem);
  }
  .pc-step-num {
    display: inline-block; font-family: var(--sans-jp); font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.12em; color: var(--terracotta-deep); background: var(--terracotta-tint);
    border-radius: var(--radius); padding: 0.3rem 0.9rem; margin-bottom: 0.9rem;
  }
  .pc-step-title { font-family: var(--serif-jp); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.6rem; }
  .pc-step-kicker { color: var(--terracotta-deep); font-weight: 600; margin-bottom: 0.5rem; font-size: 0.88rem; }
  .pc-step p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.8; }
  @media (max-width: 780px) { .pc-steps { grid-template-columns: 1fr; } }

  .icon-circle { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .icon-circle svg { width: 26px; height: 26px; stroke: currentColor; fill: none; }
  .icon-circle--sm { width: 44px; height: 44px; }
  .icon-circle--sm svg { width: 19px; height: 19px; }
  .ic-terracotta { background: var(--terracotta); color: #fff; }
  .ic-sage       { background: var(--sage); color: #fff; }
  .ic-rose       { background: var(--rose); color: #fff; }
  .ic-slate      { background: var(--slate); color: #fff; }

  /* ============ 01 Hero — full impact, photo edge to edge, hard cut into 02 ============ */
  .hero { position: relative; padding: clamp(11rem, 20vw, 15rem) 0 clamp(6rem, 11vw, 8rem); overflow: hidden; }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('images/family_walking.webp');
    background-size: cover;
    background-position: center 35%;
  }
  .hero-scrim {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at center, rgba(250,246,236,0.86) 0%, rgba(250,246,236,0.58) 48%, rgba(250,246,236,0.12) 78%);
  }
  .hero-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
  .hero-pre { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--ink); margin-bottom: 1.2rem; font-weight: 700; }
  .hero-title { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 700; margin-bottom: 2.3rem; letter-spacing: 0.01em; }
  .hero-lead { font-size: 1.22rem; font-weight: 700; color: var(--ink); line-height: 1.9; max-width: 460px; margin: 0 auto 2.6rem; }

  @media (max-width: 640px) {
    .hero { padding: 7.2rem 0 3.8rem; }
    .hero-title { letter-spacing: 0; }
    .btn-lg { padding: 1.1rem 2.4rem; font-size: 0.86rem; }
  }

  /* ============ 02 PROBLEM ============ */
  .problem-heading { font-size: clamp(1.9rem, 3.8vw, 2.4rem); margin-bottom: 2.2rem; text-align: center; }
  .problem-text { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 1.4rem; text-align: center; }
  .asterisks { text-align: center; color: var(--line-strong); letter-spacing: 0.6em; margin: 0 0 2rem; font-family: var(--serif-en); }

  /* ============ 03 Training cycle ============ */
  .training-intro { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
  .training-intro h2 { font-size: clamp(1.9rem, 3.8vw, 2.4rem); margin-bottom: 1.8rem; }
  .training-intro p { max-width: 600px; margin: 0 auto; color: var(--ink-soft); font-size: 0.98rem; }
  .training-intro p + p { margin-top: 1.3rem; }

  .journey { max-width: 760px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); display: flex; flex-direction: column; align-items: center; }

  .journey-state { width: 100%; max-width: 420px; border-radius: var(--radius); padding: 1.2rem 1.6rem; text-align: center; }
  .journey-before { background: var(--paper-deep); }
  .journey-before p { color: var(--ink-soft); }
  .journey-after { background: var(--terracotta); box-shadow: 0 16px 30px -16px rgba(180,107,34,0.55); }
  .journey-after p { color: #fff; font-weight: 700; }
  .journey-label {
    display: block; font-family: var(--sans-jp); font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.14em; margin-bottom: 0.5rem; color: var(--ink-faint);
  }
  .journey-after .journey-label { color: rgba(255,255,255,0.75); }
  .journey-state p { margin: 0; font-family: var(--serif-jp); font-size: 1.08rem; line-height: 1.5; }

  .journey-connector { color: var(--line-strong); font-family: var(--serif-en); font-size: 1.5rem; line-height: 1; margin: 0.5rem 0; }

  .journey-process {
    width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.2rem, 4vw, 2rem) clamp(1.4rem, 3vw, 2rem);
  }
  .journey-process-label {
    text-align: center; font-family: var(--sans-jp); font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.06em; color: var(--terracotta-deep); margin-bottom: clamp(1.8rem, 4vw, 2.4rem);
  }

  .cycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
  .cycle-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
  .cycle-step-num {
    font-family: var(--sans-jp); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.12em;
    color: var(--ink-faint); margin-bottom: 0.2rem;
  }
  .cycle-title { font-size: 1rem; font-weight: 600; margin-top: 0.2rem; }
  .cycle-en { font-family: var(--sans-jp); font-weight: 600; font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.04em; }
  .cycle-step:not(:last-child)::after {
    content: "→"; position: absolute; right: -1.1rem; top: 2.55rem;
    color: var(--line-strong); font-family: var(--serif-en); font-size: 1.15rem;
  }
  @media (max-width: 640px) {
    .cycle { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
    .cycle-step::after { display: none; }
  }

  .mini-cta {
    background: var(--terracotta-tint); border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 2.8rem) clamp(1.6rem, 4vw, 2.2rem); text-align: center;
  }
  .mini-cta-badge {
    display: inline-block; background: var(--terracotta); color: #fff; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; padding: 0.4rem 1.1rem; border-radius: 999px; margin-bottom: 1.2rem;
  }
  .mini-cta-title { font-size: clamp(1.3rem, 2.8vw, 1.6rem); margin-bottom: 1.2rem; }
  .mini-cta-body { color: var(--ink-soft); font-size: 0.94rem; max-width: 480px; margin: 0 auto 1.2rem; }
  .mini-cta-note { font-size: 0.85rem; color: var(--terracotta-deep); font-weight: 600; margin-bottom: 1.6rem; }
  .mini-cta-gift {
    background: var(--surface); border: 2px solid var(--terracotta); border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2.2rem); margin: 0 auto 1.8rem; max-width: 500px;
    text-align: center; box-shadow: 0 14px 32px -14px rgba(180,107,34,0.35);
  }
  .mini-cta-gift-badge {
    display: inline-block; background: var(--terracotta-deep); color: #fff; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; padding: 0.35rem 1rem; border-radius: 999px; margin-bottom: 1rem;
  }
  .mini-cta-gift-title {
    font-family: var(--serif-jp); font-weight: 700; font-size: clamp(1.15rem, 2.8vw, 1.4rem); color: var(--ink); margin-bottom: 0.8rem;
  }
  .mini-cta-gift-body { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.85; }

  .cycle-mini { display: flex; align-items: center; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin: 1.8rem 0; }
  .cycle-mini-step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; width: 82px; }
  .cycle-mini-en { font-family: var(--sans-jp); font-weight: 600; font-size: 0.66rem; color: var(--ink-soft); }
  .cycle-mini-title { font-size: 0.78rem; font-weight: 600; }
  .cycle-mini-arrow { color: var(--line-strong); font-family: var(--serif-en); font-size: 1rem; }
  .core-badge {
    display: block; text-align: center; margin: 0 auto 0.6rem; width: fit-content;
    font-family: var(--sans-jp); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em;
    color: var(--terracotta-deep); border: 1px solid var(--terracotta); border-radius: var(--radius); padding: 0.35rem 1.2rem;
  }

  /* ============ 04 Approach ============ */
  .approach h2 { font-size: clamp(2rem, 4.2vw, 2.7rem); margin-bottom: 2.8rem; color: var(--ink); text-align: center; }
  .approach-body { font-size: 1.0rem; color: var(--ink-soft); line-height: 2.2; margin-bottom: 2.6rem; text-align: center; }
  .approach-callout p { font-size: clamp(1.15rem, 2.4vw, 1.42rem); }
  .approach-resolve-lead { margin-top: 2.6rem; font-size: 1.0rem; color: var(--ink-soft); text-align: center; }
  .approach-resolve-big {
    margin-top: 0.6rem; text-align: center; font-family: var(--serif-jp); font-weight: 700;
    font-size: clamp(1.75rem, 4.4vw, 2.4rem); color: var(--ink); line-height: 1.5;
    width: 820px; max-width: 92vw; position: relative; left: 50%; transform: translateX(-50%);
  }
  .approach-dash { margin-top: 1.8rem; text-align: center; color: var(--ink-faint); font-size: 1.1rem; letter-spacing: 0.1em; }
  .approach-question { margin-top: 0.8rem; text-align: center; font-family: var(--serif-jp); font-weight: 600; font-size: clamp(1.15rem, 2.6vw, 1.4rem); color: var(--ink-soft); }
  .approach-answer { margin-top: 1rem; text-align: center; color: var(--ink-soft); line-height: 2; font-size: 0.98rem; }

  /* ============ 05 Change ============ */
  .change-header { text-align: center; margin-bottom: 2.2rem; }
  .change-header h2 { font-size: clamp(1.9rem, 3.8vw, 2.4rem); }

  .change-goal { text-align: center; margin-top: clamp(3.5rem, 7vw, 5rem); }
  .change-goal-title { font-size: clamp(1.9rem, 3.8vw, 2.4rem); margin-bottom: 1.4rem; color: var(--ink); }
  .change-goal-body { color: var(--ink-soft); font-size: 1.02rem; max-width: 560px; margin: 0 auto; }
  .change-intro { text-align: center; color: var(--ink-soft); font-size: 0.98rem; max-width: 560px; margin: 0 auto clamp(3.5rem, 7vw, 5rem); }

  .change-block {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3rem) clamp(1.6rem, 4vw, 2.4rem); background: var(--paper);
  }
  .compare-subhead { font-family: var(--sans-jp); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.06em; color: var(--rose-deep); margin-bottom: 1.5rem; text-align: center; }

  .change-block-head { text-align: center; margin-bottom: 2rem; }
  .change-block-label {
    display: block; font-family: var(--sans-jp); font-weight: 700; font-size: 0.78rem;
    letter-spacing: 0.16em; margin-bottom: 0.7rem;
  }
  .change-block-label--child { color: var(--rose-deep); }
  .change-block-label--parent { color: var(--sage-deep); }
  .change-block-title { font-size: clamp(1.5rem, 3.4vw, 1.9rem); font-weight: 700; }

  .axis-statement-plain { text-align: center; margin-bottom: clamp(3rem, 6vw, 4rem); }
  .axis-statement-plain p:first-child { font-family: var(--serif-jp); font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 0.6rem; }
  .axis-statement-plain p:last-child { font-family: var(--serif-jp); font-size: clamp(1.4rem, 2.8vw, 1.75rem); font-weight: 700; color: var(--sage-deep); }

  .child-flow { display: flex; align-items: flex-start; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 2.2rem; }
  .child-flow-step { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; text-align: center; width: 150px; }
  .child-flow-num {
    width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--serif-en); font-size: 1.3rem; color: #fff;
  }
  .child-flow-label { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }
  .child-flow-label strong { color: var(--ink); font-weight: 700; }
  .child-flow-arrow { color: var(--line-strong); font-family: var(--serif-en); font-size: 1.3rem; align-self: center; margin-top: 1.4rem; }
  @media (max-width: 640px) { .child-flow-arrow { transform: rotate(90deg); margin: 0; } }

  .compare-list { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
  .compare-item {
    display: grid; grid-template-columns: 1fr 30px 1fr; align-items: center;
    background: var(--surface); border-radius: var(--radius); padding: 1.1rem 1.4rem;
  }
  .compare-before { color: var(--ink-faint); font-size: 0.9rem; }
  .compare-arrow  { text-align: center; color: var(--terracotta); font-family: var(--serif-en); }
  .compare-after  { color: var(--ink); font-weight: 600; font-size: 0.93rem; }

  .axis-statement p { font-family: var(--serif-jp); }
  .axis-statement p:first-child { font-size: 1.05rem !important; color: var(--ink-soft) !important; font-weight: 400 !important; margin-bottom: 0.6rem; }
  .axis-statement p:last-child { font-size: clamp(1.3rem, 2.6vw, 1.6rem) !important; font-weight: 700 !important; color: var(--sage-deep) !important; }

  @media (max-width: 640px) {
    .compare-item { grid-template-columns: 1fr; gap: 0.3rem; text-align: center; padding: 1.2rem; }
    .compare-arrow { transform: rotate(90deg); margin: 0.1rem 0; }
  }

  /* ============ 06 Program ============ */
  .program-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
  .program-header .lead-line { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.4rem; }
  .program-header h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 0.9rem; }
  .program-header p.sub { color: var(--ink-soft); }

  .core-card {
    background: var(--surface); border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3rem); margin-bottom: 1.4rem; text-align: center;
  }
  .core-card h3 { font-size: 1.4rem; margin-bottom: 1.3rem; }
  .core-card p { color: var(--ink-soft); font-size: 0.95rem; max-width: 560px; margin: 0 auto 1rem; }
  .core-card p:last-of-type { margin-bottom: 0; }
  .core-kicker { font-size: 1.1rem; font-weight: 700; color: var(--terracotta-deep); margin: 1.6rem 0 0.3rem; }
  .core-topic-list {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
    list-style: none; margin: 1.1rem 0; padding: 0;
  }
  .core-topic-list li {
    background: var(--terracotta-tint); color: var(--terracotta-deep); font-size: 0.85rem; font-weight: 700;
    padding: 0.5rem 1.15rem; border-radius: 999px;
  }

  .program-list { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
  .program-card {
    background: var(--surface); border-radius: var(--radius);
    padding: clamp(1.8rem, 4vw, 2.3rem); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
  }
  .program-card h3 { font-size: 1.2rem; }
  .program-card p { color: var(--ink-soft); font-size: 0.93rem; }

  /* ============ 07 Stories ============ */
  .stories-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
  .stories-header h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1rem; }
  .stories-header p { color: var(--terracotta-deep); font-size: 1rem; font-weight: 600; }

  .story-grid-equal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .story-card-equal { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 20px rgba(44,36,29,0.04); }
  .story-card-equal .media { aspect-ratio: 4 / 3; border-radius: 0; }
  .story-card-body { padding: 1.7rem 1.5rem; }
  .member-tag { font-family: var(--sans-jp); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--terracotta-deep); margin-bottom: 0.6rem; }
  .story-quote { font-family: var(--serif-jp); line-height: 1.7; font-size: 1.02rem; margin-bottom: 0.9rem; }
  .story-meta-placeholder { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.6rem; }
  @media (max-width: 780px) { .story-grid-equal { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
  .stories-note { text-align: center; margin-top: 2rem; font-size: 0.8rem; color: var(--rose-deep); font-style: italic; }

  .voice-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .voice-card {
    flex: 1 1 300px; max-width: 336px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(1.8rem, 4vw, 2.1rem) clamp(1.6rem, 4vw, 1.9rem);
    box-shadow: 0 6px 20px rgba(44,36,29,0.04);
  }
  .voice-badge { display: flex; align-items: baseline; gap: 0.55rem; margin-bottom: 1.1rem; }
  .voice-badge-label { font-family: var(--sans-jp); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.16em; color: var(--ink-faint); }
  .voice-badge-num { font-family: var(--serif-en); font-weight: 600; font-size: 1.3rem; color: var(--terracotta-deep); }
  .voice-quote { font-family: var(--serif-jp); font-size: 1.02rem; line-height: 2; color: var(--ink-soft); }
  .voice-quote .hl {
    font-weight: 700; color: var(--ink); background: var(--terracotta-tint);
    padding: 0.05em 0.2em; border-radius: 2px;
    box-decoration-break: clone; -webkit-box-decoration-break: clone;
  }
  @media (max-width: 640px) { .voice-card { flex-basis: 100%; max-width: 420px; } }

  /* ============ 08 Profile ============ */
  .profile-wrap {
    display: grid; grid-template-columns: 250px 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start;
    background: var(--surface); border-radius: var(--radius); box-shadow: 0 10px 36px rgba(44,36,29,0.07);
    padding: clamp(2rem, 5vw, 3rem);
  }
  .profile-info h3 { font-size: 1.85rem; margin-bottom: 0.5rem; }
  .profile-title { font-size: 0.85rem; color: var(--terracotta-deep); margin-bottom: 1.6rem; }
  .profile-outline-label { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
  .profile-outline { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.2rem; }
  .profile-outline li { font-size: 0.92rem; color: var(--ink-soft); padding-left: 1.1rem; position: relative; }
  .profile-outline li::before { content: "―"; position: absolute; left: 0; color: var(--terracotta); }
  .profile-note { margin-top: 1.2rem; font-size: 0.8rem; color: var(--rose-deep); font-style: italic; }
  @media (max-width: 720px) { .profile-wrap { grid-template-columns: 1fr; } .profile-wrap .photo { max-width: 250px; margin: 0 auto; } }

  .theme-table { text-align: left; margin-top: 0.9rem; border-top: 1px solid var(--line); }
  .theme-row { display: flex; align-items: baseline; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  .theme-num { font-family: var(--serif-en); font-weight: 600; font-size: 0.88rem; color: var(--sage-deep); flex-shrink: 0; width: 1.5rem; }
  .theme-title { font-family: var(--sans-jp); font-weight: 700; font-size: 0.92rem; color: var(--ink); }
  .theme-sub { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.25rem; }

  .scs-block { margin-top: clamp(3.5rem, 7vw, 5rem); padding-top: clamp(3.5rem, 7vw, 5rem); border-top: 1px solid var(--line); text-align: center; }
  .scs-block h3 { font-size: clamp(1.8rem, 3.8vw, 2.3rem); margin-bottom: 1.3rem; }
  .scs-block p { color: var(--ink-soft); font-size: 0.95rem; max-width: 620px; margin: 0 auto 0.8rem; }
  .placeholder-note { margin-top: 1.1rem; font-size: 0.78rem; color: var(--rose-deep); font-style: italic; }
  .profile-stat { text-align: center; font-family: var(--serif-jp); font-weight: 700; font-size: clamp(1.5rem, 3.2vw, 2rem); color: var(--terracotta-deep); margin: 0.8rem 0 1.6rem; }
  .profile-books { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
  .profile-books-label { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 0.6rem; }
  .profile-books p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0.6rem; line-height: 1.8; }

  .movie-block { margin-top: clamp(3.5rem, 7vw, 5rem); padding-top: clamp(3.5rem, 7vw, 5rem); border-top: 1px solid var(--line); text-align: center; }
  .movie-block h3 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); margin-bottom: 2rem; }
  .movie-block .media { max-width: 640px; margin: 0 auto; }

  /* ============ 09 Join / CTA ============ */
  .cta { text-align: center; }
  .cta h2 { font-size: clamp(2rem, 4.2vw, 2.6rem); }
  .cta-lead { color: var(--ink-soft); margin-top: 1.4rem; max-width: 600px; margin-left: auto; margin-right: auto; }
  .cta-detail { color: var(--ink-soft); margin-top: 1.8rem; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 0.95rem; }

  .cta-box {
    background: var(--surface); border-radius: var(--radius);
    padding: clamp(2.3rem, 6vw, 3.5rem) clamp(1.6rem, 5vw, 2.8rem); margin-top: clamp(2.8rem, 6vw, 3.8rem);
  }
  .cta-box h3 { font-size: 1.15rem; margin-bottom: 1.1rem; font-family: var(--sans-jp); font-weight: 700; }
  .cta-box p { font-size: 0.9rem; color: var(--ink-soft); }

  .recruit {
    margin-top: clamp(3.5rem, 7vw, 5.5rem); background: var(--surface); border-radius: var(--radius);
    padding: clamp(2rem, 4.5vw, 2.8rem); text-align: left; box-shadow: 0 10px 32px rgba(44,36,29,0.07);
  }
  .recruit-badge {
    display: block; width: fit-content; margin: 0 auto 1.2rem; background: var(--terracotta); color: #fff;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem); font-weight: 700; letter-spacing: 0.1em; padding: 0.65rem 1.6rem; border-radius: 999px;
  }
  .cta h2 .h2-small { display: block; font-size: 0.5em; font-weight: 500; margin-bottom: 0.4rem; }
  .recruit h3 { font-family: var(--serif-jp); font-size: clamp(1.4rem, 3vw, 1.7rem); text-align: center; margin-bottom: 1.8rem; }
  .recruit-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-strong); }
  .recruit-row { display: grid; grid-template-columns: 110px 1fr; padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line-strong); }
  .recruit-row:nth-child(odd) { border-right: 1px solid var(--line-strong); }
  .recruit-label { font-size: 0.76rem; color: var(--ink-faint); letter-spacing: 0.06em; }
  .recruit-value { font-size: 0.93rem; }
  @media (max-width: 640px) { .recruit-grid { grid-template-columns: 1fr; } .recruit-row:nth-child(odd) { border-right: none; } }

  .closing { text-align: center; }
  .closing-pre { margin-top: 0; }
  .closing-pre p { font-size: clamp(1.08rem, 2.1vw, 1.28rem); color: var(--ink-soft); margin-bottom: 0.5rem; }
  .closing-pre p strong { font-weight: 700; color: var(--ink); }
  .closing-brand { margin-top: clamp(3rem, 6vw, 4.5rem); }
  .closing-brand h2 { font-size: clamp(1rem, 1.8vw, 1.1rem); font-weight: 600; margin-bottom: 1.8rem; color: var(--ink-soft); font-family: var(--sans-jp); }
  .closing-brand .headline { font-size: clamp(2rem, 4.2vw, 2.8rem); font-family: var(--serif-jp); }

  footer {
    padding: 2.6rem clamp(1.25rem, 4vw, 3rem); background: var(--ink);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; color: rgba(250,246,236,0.68);
  }

  .reveal { opacity: 1; transform: none; }
  .js-ready .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .js-ready .reveal.is-visible { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .js-ready .reveal { opacity: 1; transform: none; transition: none; } }

  @media (max-width: 480px) { .container, .container-narrow { padding: 0 1.1rem; } }
