:root {
    --ink: #111111;
    --paper: #fbfaf7;
    --white: #ffffff;
    --cyan: #00AEEF;
    --yellow: #FFD400;
    --magenta: #E8388A;
    --red: #E23B3B;
    --blue: #2B4BC7;
    --smoke: #8a8781;
    --serif: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    --sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
    --mono: 'Space Mono', 'Courier New', monospace;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.8; -webkit-font-smoothing: antialiased; }
  img { display: block; max-width: 100%; }
  a { color: inherit; }

  /* ===== 共通パーツ ===== */
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  .mono-label { font-family: var(--mono); font-size: 11px; letter-spacing: 4px; color: var(--smoke); text-transform: uppercase; }
  /* 文節単位の折り返し（単語の途中で改行させない） */
  .nb { display: inline-block; }
  .stripe-bar { display: flex; height: 6px; }
  .stripe-bar span { flex: 1; }
  .stripe-bar span:nth-child(1) { background: var(--yellow); }
  .stripe-bar span:nth-child(2) { background: var(--cyan); }
  .stripe-bar span:nth-child(3) { background: var(--magenta); }
  .stripe-bar span:nth-child(4) { background: var(--red); }
  .stripe-bar span:nth-child(5) { background: var(--blue); }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--ink); color: var(--white); text-decoration: none;
    font-weight: 900; font-size: 17px; letter-spacing: 1px;
    padding: 20px 48px; border-radius: 999px;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 12px 30px -12px rgba(17,17,17,.45);
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(17,17,17,.5); }
  .btn .arrow { font-family: var(--mono); }
  .btn.is-disabled { background: #c9c5bd; color: #fff; pointer-events: none; box-shadow: none; }
  .btn--pay { background: var(--blue); box-shadow: 0 12px 30px -12px rgba(43,75,199,.5); }

  /* JSが動く環境でのみアニメーション（JS無効でも本文は必ず見える） */
  .js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
  .js .reveal.in { opacity: 1; transform: none; }

  /* ===== S1 FV ===== */
  .fv { position: relative; min-height: 100svh; overflow: hidden; background: var(--white); display: flex; align-items: center; }
  .fv-img { position: absolute; inset: 0; }
  /* 人物（画像右側）を切らないよう右アンカー。文字の可読性は下の白グラデーションで担保 */
  .fv-img img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
  .fv-img .sp { display: none; }
  /* 文字ゾーンの可読性を保証する薄い白グラデーション */
  .fv-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,255,255,.88) 0%, rgba(255,255,255,.55) 38%, rgba(255,255,255,0) 62%); }
  .fv-inner { position: relative; z-index: 2; width: 100%; max-width: 1180px; margin: 0 auto; padding: 96px 24px 140px; }
  @media (min-width: 820px) { .fv-inner > * { max-width: 56%; } }
  .fv-topline { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; }
  .rec { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--ink); }
  .rec .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); animation: blink 1.2s infinite; }
  @keyframes blink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: .15; } }
  .fv-copy { font-family: var(--serif); font-weight: 700; line-height: 1.28; letter-spacing: .04em; }
  .fv-copy .l1 { display: block; font-size: clamp(52px, 7vw, 96px); white-space: nowrap; }
  .fv-copy .l2 { display: block; font-size: clamp(26px, 4.4vw, 54px); margin-top: 18px; padding-left: .3em; }
  .fv-copy .period { color: var(--red); }
  .fv-sub { margin-top: 34px; font-size: 15px; font-weight: 700; color: #444; max-width: 30em; }
  .fv-date { margin-top: 42px; font-family: var(--serif); }
  .fv-date .d1 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 700; letter-spacing: .06em; }
  .fv-date .d1 small { font-family: var(--mono); font-size: .38em; letter-spacing: 3px; margin-left: 10px; }
  .fv-date .d2 { font-family: var(--mono); font-size: 12px; letter-spacing: 3px; color: var(--smoke); margin-top: 6px; }
  .fv-date .d2-venue::after { content: ' ／ '; }
  @media (max-width: 819px) { .fv-date .d2-venue::after { content: ''; } .fv-date .d2 span { display: block; } }
  .fv-cta { margin-top: 44px; }
  .fv-bottom-stripe { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }

  /* ===== マーケ要素 ===== */
  /* 実績スタッツ帯 */
  .stats-band { background: var(--white); border-top: 1px solid #eee9e0; }
  .stats-band .inner { max-width: 1080px; margin: 0 auto; padding: 22px 24px; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .stat { text-align: center; }
  .stat .v { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 3.4vw, 30px); letter-spacing: .04em; }
  .stat .v i { font-style: normal; color: var(--red); }
  .stat .k { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: var(--smoke); display: block; margin-top: 2px; }
  .stats-note { text-align: center; font-size: 10px; color: var(--smoke); padding: 0 24px 14px; }

  /* スクロール誘導 */
  .scroll-cue { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: var(--mono); font-size: 9px; letter-spacing: 3px; color: var(--ink); opacity: .65; }
  .scroll-cue .chev { width: 10px; height: 10px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); animation: cue 1.6s infinite; }
  @keyframes cue { 0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .9; } 50% { transform: rotate(45deg) translate(4px, 4px); opacity: .3; } }

  /* 持ち帰りベネフィット */
  .benefits { display: grid; gap: 22px; }
  @media (min-width: 820px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
  .benefit { background: var(--white); border: 1px solid #eae7e0; border-radius: 20px; padding: 32px 28px; }
  /* 番号＋カラーチップ（ヒーロービジュアルのカラーチップ装飾と同じ語彙） */
  .benefit .no { font-family: var(--mono); font-size: 12px; letter-spacing: 3px; color: var(--smoke); display: inline-flex; align-items: center; gap: 9px; }
  .benefit .no::before { content: ''; width: 9px; height: 9px; }
  .benefit:nth-child(1) .no::before { background: var(--cyan); }
  .benefit:nth-child(2) .no::before { background: var(--yellow); }
  .benefit:nth-child(3) .no::before { background: var(--magenta); }
  .benefit h3 { font-size: 18px; font-weight: 900; margin: 14px 0 10px; }
  .benefit p { font-size: 13.5px; color: #555; }

  /* 決済の安心表記 */
  .secure-note { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--smoke); font-weight: 700; }
  .secure-note .lock { display: inline-block; width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 3px; position: relative; }
  .secure-note .lock::before { content: ''; position: absolute; top: -7px; left: 1px; width: 6px; height: 6px; border: 2px solid currentColor; border-bottom: none; border-radius: 5px 5px 0 0; }

  .badge-limited { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-weight: 900; font-size: 13px; letter-spacing: 2px; border-radius: 999px; padding: 8px 20px; }
  .badge-limited .pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: blink 1.2s infinite; }

  .countdown { display: flex; gap: 10px; align-items: flex-end; }
  .countdown .unit { text-align: center; }
  .countdown .num { font-family: var(--mono); font-weight: 700; font-size: clamp(26px, 4vw, 40px); line-height: 1; background: var(--ink); color: #fff; border-radius: 10px; padding: 12px 10px; min-width: 2.2em; display: block; }
  .countdown .lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: var(--smoke); display: block; margin-top: 6px; }
  .countdown.closed { font-weight: 900; color: var(--red); font-size: 20px; }
  .countdown-caption { font-size: 12px; font-weight: 700; color: var(--smoke); margin-bottom: 12px; }

  /* 番組名ティッカー */
  .ticker { background: var(--ink); color: rgba(251,250,247,.85); overflow: hidden; padding: 14px 0; }
  .ticker-track { display: flex; gap: 0; white-space: nowrap; animation: ticker 36s linear infinite; width: max-content; }
  .ticker-track span { font-family: var(--serif); font-size: 15px; letter-spacing: .1em; padding: 0 18px; }
  .ticker-track i { font-style: normal; color: var(--yellow); padding: 0 4px; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* チェックリスト */
  .checklist { display: grid; gap: 14px; max-width: 680px; }
  .check-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid #eae7e0; border-radius: 14px; padding: 20px 24px; font-size: 15.5px; font-weight: 700; }
  /* チェックボックス風（赤ベタよりも編集的な佇まい） */
  .check-item .mark { flex-shrink: 0; width: 24px; height: 24px; border-radius: 5px; background: transparent; border: 2px solid var(--ink); color: var(--red); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; margin-top: 2px; }
  .checklist-close { margin-top: 40px; font-family: var(--serif); font-weight: 700; font-size: clamp(19px, 3vw, 27px); line-height: 1.8; }
  .checklist-close .hl { background: linear-gradient(transparent 62%, var(--yellow) 62%); }

  /* FAQ */
  .faq { max-width: 760px; margin: 0 auto; }
  .faq details { background: var(--white); border: 1px solid #eae7e0; border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
  .faq summary { cursor: pointer; list-style: none; display: flex; gap: 14px; align-items: baseline; padding: 20px 24px; font-weight: 900; font-size: 15px; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .q { font-family: var(--mono); color: var(--red); }
  .faq .a { padding: 0 24px 20px 52px; font-size: 14px; color: #444; }
  .faq details[open] summary { border-bottom: 1px dashed #eae7e0; margin-bottom: 14px; }

  /* 追従バーの情報 */
  .sticky-cta .bar-info { display: flex; justify-content: center; gap: 14px; align-items: center; margin-bottom: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: rgba(251,250,247,.85); }
  .sticky-cta .bar-info .red { color: #ff8a8a; font-weight: 700; }

  .micro-note { display: block; margin-top: 12px; font-size: 11.5px; color: var(--smoke); font-weight: 700; }

  /* ===== セクション共通 ===== */
  section { position: relative; }
  .sec { padding: 110px 0; }
  .sec-head { margin-bottom: 56px; }
  .sec-head .mono-label { display: block; margin-bottom: 14px; }
  .sec-title { font-size: clamp(28px, 4.4vw, 44px); font-weight: 900; line-height: 1.4; letter-spacing: .02em; }
  .sec-title .period { color: var(--red); }

  /* ===== 第2回：第1回開催実績／実写ストーリー ===== */
  .proof { background: var(--white); }
  .story-grid { display: grid; gap: 48px; align-items: center; }
  @media (min-width: 820px) { .story-grid { grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); } }
  .story-photo { position: relative; min-height: 420px; border-radius: 24px; overflow: hidden; background: #e9e5dc; }
  .story-photo img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
  .photo-pending { display: grid; place-items: center; min-height: inherit; padding: 32px; border: 1px dashed #aaa49a; color: #6f6a61; text-align: center; font-family: var(--mono); font-size: 11px; line-height: 2; letter-spacing: 1.5px; background: repeating-linear-gradient(135deg, #f1eee7 0, #f1eee7 14px, #e8e4dc 14px, #e8e4dc 28px); }
  .photo-cap { position: absolute; left: 16px; bottom: 16px; padding: 7px 13px; border-radius: 999px; background: rgba(17,17,17,.76); color: #fff; font-family: var(--mono); font-size: 9px; letter-spacing: 2px; }
  .story-copy .sec-head { margin-bottom: 30px; }
  .story-copy .prose { margin-top: 0; }
  /* PROOF: 4名全景はパノラマ素材のため、トリミングせず全幅で見せる */
  .story-stack { display: block; }
  .story-stack .story-photo { min-height: 0; aspect-ratio: 832 / 326; margin-bottom: 52px; }
  .story-stack .story-copy { display: grid; gap: 30px; align-items: start; }
  @media (min-width: 820px) { .story-stack .story-copy { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; } }
  .story-stack .story-copy .sec-head { margin-bottom: 0; }
  /* LIVE / PROCESS: 素材比率に寄せてトリミングを最小化 */
  .live-section .story-photo { min-height: 0; aspect-ratio: 1774 / 887; }
  /* LIVE は素材が2:1のため、写真側の比率を広げて縦の薄さを補う */
  @media (min-width: 820px) { .live-section .story-grid { grid-template-columns: minmax(0, 1.42fr) minmax(300px, .78fr); } }
  /* FIRST SESSION MEMBERS */
  .members { background: var(--white); }
  /* 登壇メンバーは番組クレジットの表記に寄せ、通し番号と罫線で並べる */
  .member-list { margin-top: 26px; border-top: 1px solid var(--ink); }
  .member-row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: baseline; gap: 8px 20px; padding: 21px 2px; border-bottom: 1px solid #e0dcd3; }
  .member-row .no { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--smoke); }
  .member-row .nm { font-size: 18px; font-weight: 900; letter-spacing: .04em; }
  .member-row .ro { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.5px; color: #6f6a61; text-align: right; }
  @media (max-width: 560px) {
    .member-row { grid-template-columns: auto minmax(0, 1fr); padding: 17px 2px; }
    .member-row .nm { font-size: 16.5px; }
    .member-row .ro { grid-column: 2; text-align: left; }
  }
  .guest { display: grid; gap: 34px; align-items: center; margin-top: 56px; padding: 34px; border: 1px solid #e4e0d8; border-radius: 22px; }
  @media (min-width: 820px) { .guest { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); } }
  .guest-photo { position: relative; aspect-ratio: 555 / 485; border-radius: 16px; overflow: hidden; background: #e9e5dc; }
  .guest-photo img { width: 100%; height: 100%; object-fit: cover; }
  .guest-body .mono-label { display: block; margin-bottom: 14px; }
  .guest-body p { font-size: 14.5px; color: #444; line-height: 2; }
  .guest-body .nm { display: block; margin-top: 18px; font-size: 17px; font-weight: 900; letter-spacing: .04em; }
  .guest-body .ro { display: block; margin-top: 6px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.5px; color: #6f6a61; }
  /* 注記ブロック。色付きの縦罫は使わず、罫線に食い込むモノラベルで見出しを立てる */
  .note-block { position: relative; max-width: 720px; margin: 44px auto 0; padding: 30px 28px 26px; background: var(--white); border: 1px solid #e4e0d8; border-radius: 14px; }
  .note-block .note-label { position: absolute; top: -7px; left: 26px; padding: 0 10px; background: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: 3px; color: var(--smoke); text-transform: uppercase; }
  .note-block .note-title { font-size: 14.5px; font-weight: 900; letter-spacing: .02em; }
  .note-block p { margin-top: 8px; font-size: 13.5px; line-height: 1.9; color: #555; }
  .takeaway-peak { margin-top: 96px; padding: 72px 56px; border-radius: 28px; background: var(--ink); color: var(--paper); }
  .takeaway-peak .mono-label { color: rgba(251,250,247,.45); }
  .takeaway-peak h2 { margin-top: 18px; font-family: var(--serif); font-size: clamp(27px, 4.4vw, 52px); line-height: 1.55; letter-spacing: .03em; }
  .takeaway-peak .accent { color: var(--yellow); }
  .takeaway-peak p { max-width: 680px; margin-top: 30px; color: rgba(251,250,247,.76); font-size: 15px; }
  .live-section { background: #f3f1ec; }
  .live-section .story-grid { direction: rtl; }
  .live-section .story-grid > * { direction: ltr; }
  .next-stage { text-align: center; background: var(--white); }
  .next-stage .lead { max-width: 760px; margin: 0 auto; font-family: var(--serif); font-weight: 700; font-size: clamp(34px, 6vw, 66px); line-height: 1.45; }
  .next-stage .prose { margin: 34px auto 0; }
  .speaker.is-pending { display: grid; place-items: center; min-height: 360px; padding: 32px; border: 1px dashed #aaa49a; border-radius: 20px; color: #6f6a61; text-align: center; }
  .pending-fact { color: #d8d2c7; font-style: normal; }
  @media (max-width: 819px) {
    .story-photo { min-height: 280px; }
    .takeaway-peak { margin-top: 64px; padding: 46px 26px; }
  }

  /* ===== S2 問題提起 ===== */
  .quotes { display: grid; gap: 18px; max-width: 720px; }
  .quote-card { background: var(--white); border: 1px solid #eae7e0; border-radius: 18px; padding: 26px 34px; font-family: var(--serif); font-size: clamp(18px, 2.6vw, 24px); font-weight: 600; letter-spacing: .05em; box-shadow: 0 10px 24px -18px rgba(17,17,17,.18); }
  .quote-card:nth-child(2) { transform: translateX(24px); }
  .quote-card:nth-child(3) { transform: translateX(48px); border-color: var(--ink); }
  .prose { margin-top: 52px; max-width: 640px; font-size: 15.5px; color: #333; }
  .prose p + p { margin-top: 1.4em; }
  .emphasis { margin-top: 64px; font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 3.6vw, 34px); line-height: 1.7; letter-spacing: .04em; }
  .emphasis .strike { color: var(--smoke); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px; }
  .emphasis .hl { background: linear-gradient(transparent 62%, var(--yellow) 62%); }

  /* ===== S3 とは（黒） ===== */
  .sec--ink { background: var(--ink); color: var(--paper); }
  /* 黒セクションの背景（サブコン写真を薄く敷く） */
  .sec--ink.has-bg { position: relative; overflow: hidden; }
  .sec--ink.has-bg .bg { position: absolute; inset: 0; }
  .sec--ink.has-bg .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
  .sec--ink.has-bg .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,17,17,.82), rgba(17,17,17,.5) 50%, rgba(17,17,17,.88)); }
  .sec--ink.has-bg .wrap { position: relative; z-index: 1; }
  /* フル幅フォトバンド（雑誌の写真帯。セクションの区切りに使う） */
  .photo-band { width: 100%; overflow: hidden; }
  .photo-band img { width: 100%; height: 230px; object-fit: cover; display: block; }
  @media (max-width: 819px) { .photo-band img { height: 128px; } }
  /* 交流会フォト */
  .party { max-width: 760px; margin: 0 auto 46px; border-radius: 20px; overflow: hidden; position: relative; }
  .party img { width: 100%; display: block; }
  .party .cap { position: absolute; left: 14px; bottom: 14px; font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px; color: #fff; background: rgba(17,17,17,.72); padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(4px); }
  .sec--ink .mono-label { color: rgba(251,250,247,.45); }
  .big-quote { font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 5.4vw, 58px); line-height: 1.55; letter-spacing: .04em; margin: 48px 0; }
  .big-quote .accent { color: var(--yellow); }
  .sec--ink .prose { color: rgba(251,250,247,.78); }
  .deny-list { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
  .deny-list span { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; border: 1px solid rgba(251,250,247,.3); border-radius: 999px; padding: 8px 18px; color: rgba(251,250,247,.75); }

  /* ===== S4 当日の内容 ===== */
  .program { display: grid; gap: 28px; }
  @media (min-width: 820px) { .program { grid-template-columns: 1fr 1fr; } }
  .program-card { background: var(--white); border: 1px solid #eae7e0; border-radius: 22px; overflow: hidden; box-shadow: 0 16px 36px -24px rgba(17,17,17,.25); }
  .program-card .ph { aspect-ratio: 16 / 10; overflow: hidden; }
  .program-card .ph img { width: 100%; height: 100%; object-fit: cover; }
  .program-card .body { padding: 30px 32px 36px; }
  .program-card .no { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; color: var(--smoke); }
  .program-card h3 { font-size: 22px; font-weight: 900; margin: 10px 0 14px; }
  .program-card h3 .tag { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 2px; background: var(--red); color: #fff; border-radius: 4px; padding: 3px 8px; vertical-align: middle; margin-left: 10px; }
  .program-card p { font-size: 14.5px; color: #444; }
  .program-note { margin-top: 44px; background: var(--ink); color: var(--paper); border-radius: 16px; padding: 26px 34px; font-family: var(--serif); font-size: clamp(16px, 2.4vw, 21px); font-weight: 600; letter-spacing: .04em; text-align: center; }
  .program-note .accent { color: var(--yellow); }

  /* ===== S5 登壇者 ===== */
  .speakers { display: grid; gap: 26px; }
  @media (min-width: 820px) { .speakers { grid-template-columns: repeat(3, 1fr); } }
  .speaker { background: var(--white); border: 1px solid #eae7e0; border-radius: 22px; padding: 36px 28px; text-align: center; }
  .speaker .ph { width: 128px; height: 128px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; border: 3px solid var(--ink); }
  .speaker .ph img { width: 100%; height: 100%; object-fit: cover; }
  .speaker .role { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; color: var(--red); }
  .speaker h3 { font-size: 21px; font-weight: 900; margin: 8px 0 4px; }
  .speaker .title { font-size: 13px; font-weight: 700; color: var(--smoke); }
  .speaker .works { margin-top: 14px; font-size: 12.5px; color: #555; line-height: 1.7; }

  /* ===== S6 コメント ===== */
  .comment { max-width: 760px; margin: 0 auto; position: relative; padding: 24px 0 0 0; }
  .comment .qmark { font-family: var(--serif); font-size: 110px; line-height: 1; color: var(--red); position: absolute; top: -8px; left: -8px; opacity: .18; }
  .comment-body { font-family: var(--serif); font-size: clamp(16px, 2.3vw, 19px); font-weight: 500; line-height: 2.3; letter-spacing: .05em; }
  .comment-body p + p { margin-top: 1.2em; }
  .comment-sign { margin-top: 36px; text-align: right; }
  .comment-sign .role { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; color: var(--smoke); display: block; }
  .comment-sign .name { font-family: var(--serif); font-size: 24px; font-weight: 700; letter-spacing: .2em; }

  /* ===== S7 開催概要 ===== */
  .overview dl { max-width: 760px; margin: 0 auto; }
  .overview .row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 22px 8px; border-bottom: 1px solid rgba(251,250,247,.18); }
  .overview dt { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; color: rgba(251,250,247,.5); padding-top: 5px; }
  .overview dd { font-size: 16px; font-weight: 700; }
  .overview dd .big { font-family: var(--serif); font-size: clamp(22px, 3.4vw, 30px); letter-spacing: .04em; }
  .overview dd small { display: block; font-size: 12.5px; font-weight: 400; color: rgba(251,250,247,.6); margin-top: 4px; }

  /* ===== S8 申込 ===== */
  .apply-steps { display: grid; gap: 24px; max-width: 860px; margin: 0 auto; }
  @media (min-width: 820px) { .apply-steps { grid-template-columns: 1fr 1fr; } }
  .step-card { background: var(--white); border: 2px solid var(--ink); border-radius: 22px; padding: 40px 34px; text-align: center; position: relative; }
  .step-card .step-no { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: 3px; border-radius: 999px; padding: 7px 22px; }
  .step-card h3 { font-size: 20px; font-weight: 900; margin: 12px 0 10px; }
  .step-card p { font-size: 13.5px; color: #555; margin-bottom: 26px; min-height: 3.4em; }
  .apply-note { text-align: center; margin-top: 34px; font-size: 13px; color: #555; }
  .apply-note strong { color: var(--red); }

  /* ===== フッター ===== */
  footer { background: var(--ink); color: var(--paper); padding: 64px 0 110px; }
  .lockup { text-align: center; }
  .lockup .en { font-family: var(--serif); font-size: 30px; font-weight: 700; letter-spacing: .06em; }
  .lockup .ja { font-family: var(--mono); font-size: 10px; letter-spacing: 6px; margin-top: 6px; color: rgba(251,250,247,.6); }
  .footer-info { text-align: center; margin-top: 40px; font-size: 12.5px; color: rgba(251,250,247,.55); line-height: 2.1; }
  .footer-info a { color: rgba(251,250,247,.8); }

  /* 特定商取引法に基づく表記（フッター内の開閉ブロック） */
  .legal { max-width: 760px; margin: 44px auto 0; }
  .legal summary { cursor: pointer; list-style: none; text-align: center; font-size: 12px; color: rgba(251,250,247,.6); text-decoration: underline; text-underline-offset: 3px; padding: 6px; }
  .legal summary::-webkit-details-marker { display: none; }
  .legal summary:hover { color: rgba(251,250,247,.9); }
  .legal-body { margin-top: 20px; border: 1px solid rgba(251,250,247,.18); border-radius: 14px; padding: 26px 26px 10px; text-align: left; }
  .legal-body h3 { font-size: 14px; font-weight: 900; color: rgba(251,250,247,.9); margin-bottom: 16px; text-align: center; }
  .legal-body dl { display: grid; grid-template-columns: 128px 1fr; gap: 0; }
  .legal-body dt { font-size: 11px; color: rgba(251,250,247,.5); padding: 10px 8px 10px 0; border-top: 1px solid rgba(251,250,247,.1); }
  .legal-body dd { font-size: 12px; color: rgba(251,250,247,.8); padding: 10px 0; border-top: 1px solid rgba(251,250,247,.1); line-height: 1.9; }
  @media (max-width: 819px) { .legal-body dl { grid-template-columns: 1fr; } .legal-body dt { border-top: 1px solid rgba(251,250,247,.1); padding-bottom: 0; } .legal-body dd { border-top: none; padding-top: 4px; } }

  /* ===== 追従CTA ===== */
  .sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(17,17,17,.92); backdrop-filter: blur(8px); transform: translateY(110%); transition: transform .35s ease; }
  .sticky-cta.show { transform: none; }
  .sticky-cta .btn { width: 100%; padding: 16px 20px; font-size: 15px; background: var(--red); box-shadow: none; }
  @media (max-width: 819px) { .sticky-cta { display: block; } }

  /* ===== レスポンシブ ===== */
  @media (max-width: 819px) {
    .fv-img .pc { display: none; }
    .fv-img .sp { display: block; }
    .fv-img img { object-position: center bottom; }
    /* FVは1画面完結を狙う: コピー→日付→限定→カウントダウンまでを上部に凝縮し、下は人物 */
    .fv-inner { padding: 64px 22px 40vh; display: flex; flex-direction: column; }
    .fv { align-items: flex-start; }
    .fv-topline { margin-bottom: 22px; }
    .fv-copy .l1 { font-size: clamp(36px, 11vw, 44px); white-space: normal; letter-spacing: 0; }
    .fv-copy .l2 { margin-top: 10px; }
    .fv-sub { font-size: 13px; margin-top: 18px; }
    .fv-date { margin-top: 22px; }
    .fv-badge-row { margin-top: 20px !important; }
    .fv-cd-row { margin-top: 14px !important; }
    .countdown-caption { margin-bottom: 8px; font-size: 11px; }
    /* モバイルはFV内ボタンを出さず、下部追従バーに一本化（人物に被せない） */
    .fv-cta { display: none; }
    .scroll-cue { display: none; }
    .countdown { gap: 6px; }
    .countdown .num { font-size: 19px; padding: 8px 7px; border-radius: 8px; }
    .countdown .lbl { font-size: 8px; margin-top: 4px; }
    .btn { font-size: 14.5px; white-space: nowrap; padding: 18px 34px; }
    .step-card { min-width: 0; padding: 40px 22px; }
    .step-card .btn { width: 100%; white-space: normal; padding-left: 18px; padding-right: 18px; line-height: 1.5; }
    .quote-card { font-size: 16px; padding: 20px 22px; }
    .stats-band .inner { gap: 22px; padding: 18px 16px; }
    .sec { padding: 72px 0; }
    .sec-head { margin-bottom: 40px; }
    .quote-card:nth-child(2) { transform: translateX(12px); }
    .quote-card:nth-child(3) { transform: translateX(24px); }
    .sec { padding: 84px 0; }
    .overview .row { grid-template-columns: 1fr; gap: 6px; }
  }

  /* ===== 申込モーダル（STEP1 / STEP2） ===== */
  .modal-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(17,17,17,.72); backdrop-filter: blur(3px); }
  .modal-overlay.show { display: flex; }
  .modal-box { position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; background: var(--white); border-radius: 20px; padding: 40px 32px 32px; box-shadow: 0 30px 70px -20px rgba(17,17,17,.5); }
  .modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 999px; border: none; background: #f3f1ec; color: var(--ink); font-size: 18px; cursor: pointer; line-height: 1; }
  .modal-title { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
  .modal-sub { font-size: 12.5px; color: var(--smoke); margin-bottom: 26px; line-height: 1.7; }
  .form-field { margin-bottom: 18px; }
  .form-field label { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.5px; color: var(--smoke); text-transform: uppercase; margin-bottom: 6px; }
  .form-field .req { color: var(--red); margin-left: 4px; }
  .form-field input[type="text"], .form-field input[type="email"], .form-field input[type="tel"], .form-field select {
    width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
    border: 1px solid #d9d5cb; border-radius: 10px; padding: 12px 14px; background: var(--paper);
  }
  .form-field input:focus, .form-field select:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
  .form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; line-height: 1.7; color: #444; margin: 22px 0; }
  .form-check input { margin-top: 3px; flex-shrink: 0; }
  .form-submit { width: 100%; border: none; cursor: pointer; }
  .form-submit:disabled { opacity: .55; cursor: not-allowed; }
  .form-msg { font-size: 13px; margin-top: 14px; text-align: center; display: none; }
  .form-msg.show { display: block; }
  .form-msg.error { color: var(--red); }
  .form-msg.soldout { color: var(--ink); font-weight: 700; }
  .form-msg.success { color: var(--ink); font-weight: 700; }
