@import url("https://fonts.googleapis.com/css2?family=Kaisei+Decol:wght@500;700&family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap");

/* ============================================================
   taka｜教育動画LP v2（広告オプトインLPとテイストを統一）
   トークン・レイアウト骨格は 広告オプトインLP/lp.css と共通。
   広告 → オプトインLP → この動画LP まで見た目が地続きになる。

   広告LPとの差分は3つだけ:
   - CTAの色（あちらはLINE緑＝登録先が一目でわかるように。
     こちらは登録後なので、遷移先がフォームであることを色で分ける）
   - カウントダウン / 動画プレイヤー / 特典グリッド / 作成会ステップ を追加
   - FVは画像ではなくコードで組む（文字が常にシャープ、差し替えも一瞬）
   ============================================================ */

:root {
  --navy: #092f62;
  --blue: #075dab;
  --bright: #1687d5;
  --pale: #eaf6ff;
  --mist: #f7fbfe;
  --ink: #10263e;
  --muted: #587087;
  --line: #cfe2ef;
  --yellow: #ffd65a;
  --red: #d44c3f;
  --paper: #fff;
  /* CTA（登録後なのでLINE緑は使わない。濃紺の上でも沈まない山吹） */
  --gold: #ffb020;
  --gold-l: #ffd05a;
  --gold-d: #c8790a;
  --shadow: 0 22px 65px rgba(9, 47, 98, .13);
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --display: "Kaisei Decol", "Yu Mincho", serif;
  --canvas: 780px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(63, 161, 222, .16), transparent 34rem),
    radial-gradient(circle at 88% 96%, rgba(60, 137, 199, .13), transparent 32rem),
    #e9f2f9;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  word-break: auto-phrase;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: .6rem 1rem;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

/* 中央のペーパーカラム（日本式LPの基本形） */
.page {
  width: min(100%, var(--canvas));
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 80px rgba(9, 47, 98, .12);
}

/* ============================================================
   共通パーツ
   ============================================================ */
.inner { width: min(100% - 44px, 660px); margin: 0 auto; }
@media (max-width: 420px) {
  .fv .inner { width: calc(100% - 28px); }
}

.sec { padding: clamp(52px, 9vw, 78px) 0; }
.sec--tint { background: var(--mist); }
.sec--grid {
  background:
    linear-gradient(rgba(16, 99, 166, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 99, 166, .045) 1px, transparent 1px),
    var(--mist);
  background-size: 28px 28px;
}
.sec--deep {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 137, 213, .3), transparent 22rem),
    linear-gradient(150deg, #08284e, #0a3d76);
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 0 0 .9rem;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before,
.eyebrow::after { content: ""; width: 1.6rem; height: 3px; background: currentColor; }
.sec--deep .eyebrow { color: #81c4f3; }

.h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.5rem, 5.6vw, 2.05rem);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: .01em;
  text-align: center;
}
.h2 .mk { background: linear-gradient(transparent 62%, rgba(255, 214, 90, .85) 62%); }
.h2 .em { color: var(--blue); }
.sec--deep .h2 .em { color: var(--yellow); }

/* 濃色の上ではマーカーが沈むので、黄文字＋うっすら帯に切り替える */
.sec--deep .mk,
.turn .mk {
  color: #ffe487;
  background: linear-gradient(transparent 64%, rgba(255, 214, 90, .26) 64%);
}
.h3 {
  margin: 2.4rem 0 1.1rem;
  padding-left: .8rem;
  border-left: 5px solid var(--bright);
  font-size: clamp(1.15rem, 4.2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.6;
}
.lead { margin: 0; font-size: clamp(.98rem, 3.5vw, 1.05rem); line-height: 2.05; }
.lead + .lead { margin-top: 1.1rem; }
.center { text-align: center; }
.note {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.75;
}
.sec--deep .note { color: #9fc7e8; }

/* 画像に置き換えた文章・読み上げ専用テキストはここへ逃がす */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================================================
   FV（ファーストビュー）
   広告LPはヘッダー画像1枚。こちらは登録後で差し替え頻度が高いので、
   同じ配色・同じ骨格のままコードで組む。
   ============================================================ */
.fv {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(22px, 5vw, 40px) 0 clamp(30px, 6vw, 44px);
  background:
    radial-gradient(circle at 16% 8%, rgba(63, 161, 222, .2), transparent 22rem),
    radial-gradient(circle at 92% 62%, rgba(60, 137, 199, .17), transparent 20rem),
    linear-gradient(155deg, #fbfdff, #e8f3fb);
}
.fv::before,
.fv::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 24rem;
  height: 12rem;
  opacity: .2;
  filter: blur(2px);
  background: var(--bright);
  -webkit-mask: radial-gradient(ellipse at center, #000 0 22%, transparent 70%);
  mask: radial-gradient(ellipse at center, #000 0 22%, transparent 70%);
}
.fv::before { top: -4rem; left: -6rem; transform: rotate(-12deg); }
.fv::after { right: -7rem; bottom: -3rem; transform: rotate(16deg); }

/* ヘッダー画像（キャッチ・サブコピーは画像の中。広告LPと同じ扱い） */
.fv-hero {
  margin: calc(-1 * clamp(22px, 5vw, 40px)) 0 0;   /* .fv の上パディングを打ち消して天地いっぱいに */
  line-height: 0;
}
.fv-hero img { width: 100%; height: auto; }

/* 実績帯（広告LPと同じもの） */
.record {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.9rem 0 0;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(120deg, #0a3468, #0d5da3);
  box-shadow: 0 14px 34px rgba(9, 47, 98, .22);
}
.record div { padding: .95rem .4rem 1rem; text-align: center; }
.record div + div { border-left: 1px solid rgba(255, 255, 255, .18); }
.record small {
  display: block;
  color: #a9d5f4;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
}
.record strong {
  display: block;
  margin-top: .15rem;
  color: var(--yellow);
  font-size: clamp(1.05rem, 4.4vw, 1.35rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.01em;
}
@media (max-width: 400px) {
  .record strong { font-size: 1rem; }
}

/* ============================================================
   CTA
   広告LPと同じ形（角丸8px・下に厚み・微振動）。色だけ山吹に変える。
   ============================================================ */
.cta-wrap { margin: clamp(24px, 5vw, 34px) 0 0; text-align: center; }
.sec .cta-wrap { margin-top: clamp(30px, 6vw, 44px); }
.cta {
  display: block;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 1.15rem 1.2rem;
  border-radius: 8px;
  color: #0a2f5e;
  background: linear-gradient(100deg, var(--gold), var(--gold-l));
  box-shadow: 0 9px 0 var(--gold-d), 0 20px 34px rgba(180, 110, 10, .26);
  font-size: clamp(1rem, 4vw, 1.18rem);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  animation: nudge 2.6s ease-in-out infinite;
  transition: transform .18s, box-shadow .18s;
}
.cta .ico {
  display: inline-block;
  margin-right: .45rem;
  padding: .1rem .5rem;
  border-radius: 5px;
  color: #fff;
  background: var(--navy);
  font-size: .7em;
  font-weight: 900;
  letter-spacing: .04em;
  vertical-align: 2px;
}
.cta:hover,
.cta:focus-visible {
  transform: translateY(4px);
  box-shadow: 0 5px 0 var(--gold-d), 0 12px 24px rgba(180, 110, 10, .22);
  animation: none;
}
@keyframes nudge {
  0%, 88%, 100% { transform: translateY(0); }
  92% { transform: translateY(-4px); }
  96% { transform: translateY(-1px); }
}

/* 二次導線（ロードマップ作成会）。主役の山吹と競合させない */
.cta--ghost {
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy);
  box-shadow: 0 9px 0 rgba(9, 47, 98, .22), 0 18px 30px rgba(9, 47, 98, .14);
  animation: none;
}
.cta--ghost:hover,
.cta--ghost:focus-visible {
  box-shadow: 0 5px 0 rgba(9, 47, 98, .22), 0 10px 20px rgba(9, 47, 98, .12);
}
.sec--deep .cta--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 9px 0 rgba(255, 255, 255, .18);
}
.sec--deep .cta--ghost:hover,
.sec--deep .cta--ghost:focus-visible { box-shadow: 0 5px 0 rgba(255, 255, 255, .18); }

.cta-note {
  display: block;
  margin-top: .95rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}
.sec--deep .cta-note { color: #b7d9ef; }

/* CTAが2本並ぶところ */
.cta-pair { display: grid; gap: 14px; }

.sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 -8px 26px rgba(9, 47, 98, .14);
  backdrop-filter: blur(8px);
  transform: translateY(140%);
  transition: transform .35s ease;
}
.sticky.is-on { transform: none; }
.sticky .cta {
  max-width: 540px;
  padding: .85rem 1rem;
  font-size: clamp(.9rem, 3.6vw, 1.02rem);
  box-shadow: 0 6px 0 var(--gold-d), 0 12px 22px rgba(180, 110, 10, .22);
  animation: none;
}
/* 動画を通過したら「見る」→「感想を出す」に入れ替える（JSが data-mode を切り替える） */
.sticky[data-mode="watch"] .sticky-form,
.sticky[data-mode="form"] .sticky-watch { display: none; }

/* ============================================================
   カウントダウン帯
   ============================================================ */
.count {
  padding: clamp(20px, 4.5vw, 28px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 137, 213, .35), transparent 18rem),
    linear-gradient(120deg, #071f3d, #0b3f79);
}
.count-label {
  margin: 0 0 .8rem;
  color: #b9dcf6;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
}
.count-label b { color: var(--yellow); }
.timer {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 3vw, 18px);
}
.timer div {
  flex: 0 1 8.6rem;
  padding: .6rem .3rem .55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  text-align: center;
}
.timer b {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.9rem, 8.6vw, 2.9rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.timer small {
  display: block;
  margin-top: .1rem;
  color: #a9d5f4;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.count-note { margin: .9rem 0 0; color: #9fc7e8; font-size: .68rem; text-align: center; }
/* 終了後は数字を落ち着かせる（JSが is-over を付ける） */
.count.is-over .timer b { color: #d7e7f4; }

/* ============================================================
   ① 動画
   ============================================================ */
.player {
  position: relative;
  margin: 1.8rem 0 0;
  overflow: hidden;
  border-radius: 10px;
  background: #071f3d;
  box-shadow: 0 20px 48px rgba(9, 47, 98, .28);
}
.player-frame { position: relative; aspect-ratio: 16 / 9; }
/* UTAGEの埋め込み（iframe / video）を入れたら、そのまま枠にフィットする */
.player-frame > iframe,
.player-frame > video,
.player-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
/* 埋め込み前のダミー。<div class="player-ph"> ごと差し替える */
.player-ph {
  display: grid;
  position: absolute;
  inset: 0;
  place-content: center;
  gap: .9rem;
  justify-items: center;
  color: #cfe7fa;
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 137, 213, .4), transparent 16rem),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, .04) 0 12px, transparent 12px 24px);
  text-align: center;
}
.player-ph i {
  display: block;
  width: 0;
  height: 0;
  border: 17px solid transparent;
  border-right: 0;
  border-left: 28px solid rgba(255, 255, 255, .82);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .35));
}
.player-ph span { font-size: .74rem; font-weight: 800; letter-spacing: .12em; line-height: 1.7; }
.player-ph b { display: block; color: var(--yellow); font-size: .92rem; }
.player-cap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem .8rem;
  color: #cfe7fa;
  background: rgba(255, 255, 255, .07);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.player-cap i {
  padding: .05rem .45rem;
  border-radius: 3px;
  color: var(--navy);
  background: var(--yellow);
  font-size: .66rem;
  font-style: normal;
  font-weight: 900;
}

/* 注意書き（「あとで見よう」対策） */
.alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin: 1.7rem 0 0;
  padding: clamp(18px, 4.5vw, 24px);
  border: 1px solid #f0c9c2;
  border-radius: 10px;
  background: #fff7f5;
}
.alert i {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 900;
}
.alert h3 {
  margin: .1rem 0 .5rem;
  color: var(--red);
  font-size: clamp(1rem, 4vw, 1.13rem);
  font-weight: 900;
  line-height: 1.6;
}
.alert p { margin: 0; font-size: .92rem; line-height: 1.95; }

/* ============================================================
   ② この25分でわかること
   ============================================================ */
.learn {
  margin: 1.8rem 0 0;
  padding: clamp(20px, 5vw, 30px) clamp(16px, 4.5vw, 30px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(9, 47, 98, .07);
  counter-reset: learn;
  list-style: none;
}
.learn li {
  position: relative;
  padding: .95rem 0 .95rem 3rem;
  font-size: clamp(.95rem, 3.6vw, 1.04rem);
  font-weight: 700;
  line-height: 1.85;
}
.learn li + li { border-top: 1px dashed var(--line); }
.learn li::before {
  counter-increment: learn;
  content: counter(learn, decimal-leading-zero);
  position: absolute;
  top: 1.1rem;
  left: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.learn .mk { background: linear-gradient(transparent 64%, rgba(255, 214, 90, .8) 64%); }

.turn {
  position: relative;
  margin: 2.4rem 0 0;
  padding: clamp(22px, 5vw, 30px);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(140deg, #0b3468, #1071bb);
  font-size: clamp(1.02rem, 4vw, 1.2rem);
  font-weight: 900;
  line-height: 1.85;
  text-align: center;
}
.turn::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  border: 13px solid transparent;
  border-top: 0;
  border-bottom: 14px solid #0b3468;
  transform: translateX(-50%);
}
.turn .mk { background: linear-gradient(transparent 64%, rgba(255, 214, 90, .55) 64%); }

/* ============================================================
   ③ 8大特典
   ============================================================ */
.gift {
  position: relative;
  margin-top: 1.8rem;
  padding: clamp(24px, 5.5vw, 36px) clamp(18px, 5vw, 32px);
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, .14), transparent 12rem),
    linear-gradient(150deg, #0a3468, #1071bb);
  box-shadow: 0 20px 44px rgba(6, 42, 82, .26);
}
.gift-tag {
  display: table;
  margin: 0 auto 1rem;
  padding: .35rem 1.1rem;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
}
/* 「視聴者限定」はキッカー、主役は「8大特典」。大きさで役割を分ける */
.gift-title {
  margin: 0;
  font-size: clamp(.92rem, 3.5vw, 1.02rem);
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.6;
  text-align: center;
}
.gift-title span {
  display: block;
  margin-top: .2rem;
  color: var(--yellow);
  font-size: 2em;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.35;
}
.gift-sub { margin: .9rem 0 0; color: #cfe7fa; font-size: .92rem; line-height: 1.9; text-align: center; }

.gift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 430px) {
  .gift-grid { grid-template-columns: 1fr; }
}
.gift-grid li {
  position: relative;
  padding: 1.1rem .9rem 1rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}
.gift-grid small {
  display: block;
  color: #ffe487;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.5;
}
.gift-grid strong {
  display: block;
  margin-top: .3rem;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.65;
}
/* 通し番号は角に小さく。本文の邪魔をしない */
.gift-grid li::after {
  content: attr(data-no);
  position: absolute;
  top: .5rem;
  right: .6rem;
  color: rgba(255, 255, 255, .3);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

/* 受け取りは2ステップ */
.steps2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 480px) {
  .steps2 { grid-template-columns: 1fr; }
}
.steps2 li {
  padding: 1rem .9rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  text-align: center;
}
.steps2 small {
  display: block;
  color: #ffe487;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.steps2 strong { display: block; margin-top: .2rem; font-size: .95rem; font-weight: 900; line-height: 1.7; }
.steps2 .arrow {
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 1.3rem;
  font-weight: 900;
}
@media (max-width: 480px) {
  .steps2 .arrow { transform: rotate(90deg); }
}

.limit {
  margin: 1.3rem 0 0;
  padding: .8rem 1rem;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  background: #fff7f5;
  font-size: .85rem;
  font-weight: 800;
  text-align: center;
}

/* ============================================================
   ④ 実践者の声（広告LPと同じカード）
   ============================================================ */
.voices { display: grid; gap: 20px; margin-top: 1.9rem; }
.voice {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(9, 47, 98, .08);
}
.voice-head {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 1.1rem 1.2rem;
  color: #fff;
  background: linear-gradient(145deg, #0b386d, #1479bf);
}
.voice-face {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.voice-face img { width: 100%; height: 100%; object-fit: cover; }
.voice-head small { display: block; color: #aedbfa; font-size: .74rem; font-weight: 700; }
.voice-head strong { display: block; margin-top: .1rem; font-size: 1.3rem; font-weight: 900; }
.voice-quote {
  margin: 1.3rem 1.2rem .2rem;
  color: var(--navy);
  font-size: clamp(1.02rem, 4vw, 1.16rem);
  font-weight: 900;
  line-height: 1.7;
}
.voice-quote .mk { background: linear-gradient(transparent 64%, rgba(255, 214, 90, .8) 64%); }
.voice-body { margin: 0; padding: .9rem 1.2rem 0; font-size: .92rem; line-height: 1.95; }
.voice-note { margin: .9rem 1.2rem 1.2rem; color: #93a6b7; font-size: .66rem; }

/* ============================================================
   ⑤ ロードマップ作成会
   ============================================================ */
.flow {
  display: grid;
  gap: 12px;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}
.flow li {
  position: relative;
  padding: 1.15rem 1.2rem 1.1rem 4.2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}
.flow li::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  top: 1.05rem;
  left: 1.2rem;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.flow strong { display: block; font-size: 1.05rem; font-weight: 900; line-height: 1.6; }
.flow p { margin: .3rem 0 0; color: #cfe7fa; font-size: .88rem; line-height: 1.85; }

.meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.meta li {
  padding: .3rem .85rem;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
}

/* ============================================================
   ⑥ 講師からの手紙
   ============================================================ */
.letter {
  position: relative;
  margin-top: 1.7rem;
  padding: clamp(24px, 6vw, 40px);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.letter::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  pointer-events: none;
}
.letter p {
  position: relative;
  margin: 0 0 1.15rem;
  font-size: clamp(.95rem, 3.6vw, 1.02rem);
  line-height: 2.1;
}
.letter p:last-of-type { margin-bottom: 0; }
.letter .big {
  color: var(--navy);
  font-size: clamp(1.05rem, 4.2vw, 1.22rem);
  font-weight: 900;
  line-height: 1.85;
}
.letter .mk { background: linear-gradient(transparent 64%, rgba(255, 214, 90, .8) 64%); }
.sign {
  position: relative;
  margin: 2rem 0 0 !important;
  font-family: var(--display);
  font-size: 1.6rem;
  text-align: right;
}

/* ============================================================
   ⑦ プロフィール
   ============================================================ */
.profile { margin-top: 1.7rem; }
.profile-face {
  position: relative;
  width: min(44%, 168px);
  margin: 0 auto 1.4rem;
  padding: 7px;
  background: #fff;
  box-shadow: var(--shadow);
}
/* height:auto を書かないと HTML の height="400" が効いて縦長のままになる */
.profile-face img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.profile-face::after {
  content: "Taka / Liberte";
  position: absolute;
  right: -10px;
  bottom: -11px;
  padding: .26rem .6rem;
  color: #fff;
  background: var(--navy);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
}
.profile-name {
  margin: 0 0 1.2rem;
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}
.profile-name small { display: block; margin-top: .3rem; color: var(--muted); font-size: .58em; font-weight: 700; }
.profile p { margin: 0 0 1.05rem; font-size: .95rem; line-height: 2.05; }
.profile p:last-child { margin-bottom: 0; }

/* 著書＋6冠（広告LPで見せている実績を、こちらでは1行ぶんだけ再掲） */
.book {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  margin: 1.6rem 0 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.book img { width: 100%; height: auto; border-radius: 2px; box-shadow: 0 10px 24px rgba(9, 47, 98, .26); }
.book small { display: block; color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.book strong { display: block; margin-top: .2rem; font-size: 1rem; font-weight: 900; line-height: 1.6; }
.book p { margin: .35rem 0 0; color: var(--muted); font-size: .72rem; line-height: 1.7; }

/* ============================================================
   ⑧ FAQ
   ============================================================ */
.faq { margin-top: 1.7rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative;
  padding: 1.25rem 2.8rem 1.25rem 2.6rem;
  cursor: pointer;
  font-size: clamp(.96rem, 3.7vw, 1.04rem);
  font-weight: 800;
  line-height: 1.7;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q";
  position: absolute;
  top: 1.05rem;
  left: .3rem;
  color: var(--blue);
  font-family: var(--display);
  font-size: 1.4rem;
}
.faq summary::after {
  content: "";
  position: absolute;
  top: 1.75rem;
  right: .8rem;
  width: .62rem;
  height: .62rem;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq-a {
  position: relative;
  margin: 0;
  padding: 0 1rem 1.4rem 2.6rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.95;
}
.faq-a::before {
  content: "A";
  position: absolute;
  top: -.25rem;
  left: .35rem;
  color: #a9c2d5;
  font-family: var(--display);
  font-size: 1.35rem;
}

/* ============================================================
   ⑨ 最終CTA / フッター
   ============================================================ */
.final-copy {
  margin: 0 0 1.9rem;
  font-size: clamp(1.25rem, 5.2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.75;
  text-align: center;
}
.final-label {
  display: table;
  margin: 0 auto 1.4rem;
  padding: .45rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
}
.final-label b { color: var(--yellow); }
/* 最終セクションのカウントダウンは、帯ではなく中に置く */
.final .count {
  margin: 2rem 0 0;
  padding: 1.2rem 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}
.final .count-note { display: none; }

footer {
  padding: 2.2rem 1rem 6.5rem;
  color: #7d93a8;
  background: #061d38;
  font-size: .7rem;
  line-height: 2.1;
  text-align: center;
}
footer a { color: #a9c2d5; }
footer nav { margin-bottom: .6rem; }
footer nav span { margin: 0 .5rem; opacity: .4; }

/* ============================================================
   アニメーション
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cta { animation: none; }
  .sticky { transition: none; }
}
