@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: 17px;   /* 全体的に読みやすく（2026-08-11 CEO指示で16→17） */
  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; }
/* ヘッダー画像の直下に来る動画ブロック。上だけ詰めて「すぐ下」に見せる（2026-08-16） */
.sec--video { padding-top: clamp(28px, 5.5vw, 44px); }
.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: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before,
.eyebrow::after { content: ""; width: 1.8rem; height: 3px; background: currentColor; }
.sec--deep .eyebrow { color: #81c4f3; }

.h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.72rem, 6.6vw, 2.35rem);
  font-weight: 900;
  line-height: 1.55;
  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.25rem, 4.6vw, 1.45rem);
  font-weight: 900;
  line-height: 1.6;
}
.lead { margin: 0; font-size: clamp(1.06rem, 4.1vw, 1.2rem); 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: .78rem;
  line-height: 1.8;
}
.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; }

/* 2026-08-16 CEO指示：FVはヘッダー画像だけになった（実績は下の②へ、冒頭CTAは削除）。
   画像のすぐ下から動画が始まるよう、FVの下パディングを落とす。 */
.fv--bare { padding-bottom: 0; }

/* ============================================================
   実績（ゴールドの受賞メダル＋数字）— 広告オプトインLPと同じもの
   6冠／指導実績450名超／年商4億円（2026-08-11 CEO指示で3点に統一）
   ============================================================ */
.awards { margin: 1.9rem 0 0; }

.medal {
  position: relative;
  display: grid;
  place-items: center;
  width: min(56%, 216px);
  margin: 0 auto;
  aspect-ratio: 1;
  container-type: inline-size;   /* 中の文字を cqw でメダル幅に追従させる */
}
.medal-laurel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 12px rgba(120, 80, 10, .3));
}
.medal-laurel .lf-out { fill: #c8901f; }
.medal-laurel .lf-in { fill: #edc257; }

.medal-core {
  position: relative;
  display: grid;
  place-content: center;
  gap: .1em;
  width: 68%;
  aspect-ratio: 1;
  padding: 0 9%;
  overflow: hidden;
  border-radius: 50%;
  color: #4a2f00;
  background:
    radial-gradient(circle at 33% 25%, rgba(255, 255, 255, .85), transparent 44%),
    conic-gradient(from 208deg, #b8791a, #ffeaad 16%, #e3ab35 32%, #a4670f 50%, #ffe392 68%, #cf9522 84%, #b8791a);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, .55),
    inset 0 0 0 5px rgba(138, 84, 6, .38),
    0 14px 30px rgba(120, 80, 10, .34);
  text-align: center;
}
.medal-core::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(102deg, transparent 40%, rgba(255, 255, 255, .8) 48%, transparent 57%);
  transform: translateX(-120%);
  animation: shine 5s ease-in-out infinite;
}
@keyframes shine {
  0%, 74%, 100% { transform: translateX(-120%); }
  86% { transform: translateX(120%); }
}
.medal-core small {
  font-size: .46rem;
  font-size: 6.2cqw;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.35;
}
.medal-core small span { display: block; }
.medal-core strong {
  display: block;
  color: #2f1d00;
  font-size: 1.15rem;
  font-size: 16cqw;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .55);
}
.medal-core strong b { font-size: 1.85em; letter-spacing: -.03em; }
.medal-core em {
  justify-self: center;
  margin-top: .3em;
  padding: .22em .8em;
  border-radius: 999px;
  color: #fff5d8;
  background: linear-gradient(100deg, #7d4d05, #a86c0c);
  font-size: .44rem;
  font-size: 6.2cqw;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.4;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}
/* 2026-08-16 CEO指示「アマゾンとか450名とかをもっと目立たせたい」で一段大きくした。
   両LP共通なので、片方だけ直さないこと。 */
.stats li {
  position: relative;
  padding: 1.15rem .4rem 1.3rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(125deg, #0a3468, #0d5da3);
  box-shadow: 0 16px 34px rgba(9, 47, 98, .26), inset 0 0 0 1px rgba(255, 255, 255, .18);
  text-align: center;
}
/* 上辺に金の線。数字が「受賞・実績」の側の情報だと、色で分かるようにする */
.stats li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14%;
  left: 14%;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(100deg, #c8901f, #ffeaad 42%, #e3ab35 64%, #ffe392);
}
.stats small {
  display: block;
  color: #b8ddf7;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.5;
}
.stats strong {
  display: block;
  margin-top: .1rem;
  color: var(--yellow);
  font-size: clamp(2.6rem, 11.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
  background: linear-gradient(100deg, #ffeaad, #ffc23c 46%, #fff0c4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats strong i {
  font-size: .42em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  margin-left: .08em;
}


/* 書籍実績のランキング画面は右から左へ流す（2026-08-17 CEO指示）。
   広告オプトインLPの .ranks 一式と同じ値。片方だけ触らないこと。 */
.proof-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 2.4rem 0 .9rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.proof-head span {
  padding: .12rem .6rem;
  border-radius: 999px;
  color: var(--blue);
  background: var(--pale);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 0;
}
/* 右から左へ流れ続ける。両端はマスクでふわっと切る */
.ranks {
  padding: 2px 0 14px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 26px, #000 calc(100% - 26px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 26px, #000 calc(100% - 26px), transparent);
}
@media (max-width: 560px) {
  .ranks { margin-inline: -22px; }
}
.ranks-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: rank-flow 40s linear infinite;
}
/* 触れている / ホバー / フォーカス中は止める */
.ranks:hover .ranks-track,
.ranks:focus-within .ranks-track,
.ranks.is-held .ranks-track { animation-play-state: paused; }

/* 6枚＝1周ぶん（アイテム6個＋その後ろの隙間6個）だけ動かすと継ぎ目が消える。
   トラックの50%は隙間が0.5個ぶん足りないので、gap の半分（6px）を足す。 */
@keyframes rank-flow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}

.rank {
  flex: 0 0 292px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(9, 47, 98, .1);
}
@media (max-width: 420px) {
  .rank { flex-basis: 262px; }
}
.rank figcaption {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem .75rem;
  color: #fff;
  background: linear-gradient(120deg, #0b3468, #1071bb);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.4;
}
.rank figcaption i {
  flex: none;
  padding: .08rem .45rem;
  border-radius: 3px;
  color: #3d2600;
  background: linear-gradient(105deg, #c8901f, #ffeaad 42%, #e3ab35 64%, #ffe392);
  font-size: .74rem;
  font-style: normal;
  font-weight: 900;
}
.rank img { width: 100%; height: auto; }

/* ============================================================
   ② 悩み共感 / ⑥ おすすめ  チェックリスト
   ============================================================ */

/* 2026-08-17 CEO指示「月桂冠のところがスマホででかすぎ」。
   縦に長かった6枚のラベルをやめ、広告オプトインLPと同じ短い証拠カードへ寄せた。
   値は広告LP/lp.css の .top-proof 一式と同じにすること。
   上の .category-awards 一式は未使用（戻すとき用に残してある）。 */
/* 2026-08-17：登録フォームの後に置く、短いAmazon実績カード。
   書影と実画面を見せ、縦に長かった月桂冠6枚・支援実績の数字は出さない。 */
.top-proof {
  margin: clamp(24px, 5vw, 34px) 0 0;
  padding: clamp(16px, 4vw, 24px);
  border: 1px solid rgba(216, 165, 55, .62);
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 34px rgba(9, 47, 98, .12);
}
.top-proof-head {
  display: grid;
  grid-template-columns: minmax(96px, 29%) 1fr;
  gap: clamp(16px, 4vw, 26px);
  align-items: center;
}
.top-proof-book { margin: 0; }
.top-proof-book img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 12px 26px rgba(9, 47, 98, .24);
}
.top-proof-copy p {
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: clamp(.75rem, 2.8vw, .92rem);
  font-weight: 800;
  letter-spacing: .05em;
}
.top-proof-copy p span {
  margin-right: .35em;
  color: #b37508;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18em;
  font-style: italic;
}
.top-proof-copy strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.42rem, 5.8vw, 2rem);
  font-weight: 900;
  line-height: 1.35;
}
.top-proof-copy strong b {
  margin-right: .05em;
  color: #bd7a07;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72em;
  font-style: italic;
  line-height: 1;
}
.top-proof-copy small {
  display: block;
  margin-top: .55rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}
.top-proof-rank {
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid #dfe7ee;
  border-radius: 9px;
  background: #fff;
}
.top-proof-rank img { display: block; width: 100%; height: auto; }
.top-proof-rank figcaption {
  padding: .42rem .7rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  text-align: right;
}
.top-proof-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.top-proof-cats li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: .42rem;
  padding: .48rem .55rem;
  border-radius: 7px;
  color: var(--navy);
  background: #edf5fb;
  font-size: clamp(.69rem, 2.7vw, .8rem);
  font-weight: 800;
  line-height: 1.35;
}
.top-proof-cats i {
  flex: 0 0 auto;
  padding: .12rem .35rem;
  border-radius: 4px;
  color: #fff;
  background: #b7790c;
  font-size: .66rem;
  font-style: normal;
  white-space: nowrap;
}
.top-proof > .note { margin-bottom: 0; text-align: left; }

@media (max-width: 360px) {
  .top-proof { padding-inline: 13px; }
  .top-proof-head { grid-template-columns: 92px 1fr; gap: 13px; }
  .top-proof-cats { grid-template-columns: 1fr; }
}

/* ============================================================
   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.2rem 1.1rem;
  border-radius: 8px;
  color: #3d2600;
  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(1.08rem, 4.4vw, 1.28rem);
  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: .84rem;
  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: .9rem 1rem;
  font-size: clamp(.98rem, 3.9vw, 1.1rem);
  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: #dbecfa;
  font-size: .96rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
}
.count-label b { color: var(--yellow); }

/* 危機感を出すための1行（帯の最上段） */
.count-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin: 0 0 .9rem;
  color: #ffd4cc;
  font-size: clamp(1rem, 4.1vw, 1.15rem);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.count-lead i {
  display: grid;
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
}
.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(2.3rem, 10vw, 3.4rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.timer small {
  display: block;
  margin-top: .15rem;
  color: #a9d5f4;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.count-note { margin: .9rem 0 0; color: #bcd9ef; font-size: .82rem; line-height: 1.8; text-align: center; }
.count-note b { color: #ffb9ac; }
/* 終了後は数字を落ち着かせる（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::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 16, 35, .15), rgba(1, 16, 35, .5));
}
.player-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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 i,
.player-ph span { position: relative; z-index: 1; }
.player-ph span { font-size: .82rem; font-weight: 800; letter-spacing: .12em; line-height: 1.7; }
.player-ph b { display: block; color: var(--yellow); font-size: 1rem; }
.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: .82rem;
  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.2rem;
  font-style: normal;
  font-weight: 900;
}
.alert h3 {
  margin: .1rem 0 .5rem;
  color: var(--red);
  font-size: clamp(1.14rem, 4.6vw, 1.3rem);
  font-weight: 900;
  line-height: 1.6;
}
.alert p { margin: 0; font-size: 1.02rem; 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: 1rem 0 1rem 3.9rem;
  font-size: clamp(1.04rem, 4.1vw, 1.16rem);
  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: .95rem;
  left: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.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.14rem, 4.6vw, 1.36rem);
  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: #3d2600;
  background: linear-gradient(105deg, #c8901f, #ffeaad 42%, #e3ab35 64%, #ffe392);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .06em;
}
/* 「視聴者限定」はキッカー、主役は「8大特典」。大きさで役割を分ける */
.gift-title {
  margin: 0;
  font-size: clamp(1rem, 3.9vw, 1.12rem);
  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: 1.02rem; line-height: 1.9; text-align: center; }

/* 特典の表紙は、広告オプトインLPと同じ「立体の本」に揃えた（2026-08-16 CEO指示）。
   広告LP側は .sec--tint（明るい面）の上なので .bk-name が濃紺。
   こちらは .gift（濃紺の箱）の中なので、文字色だけ白に振っている。
   それ以外の値は広告LP/lp.css の .bk 一式と同じにすること。 */
.bonus-books {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4.5vw, 30px) clamp(12px, 3vw, 22px);
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}
.bk { margin: 0; }
.bk-3d {
  display: grid;
  place-items: center;
  padding: 6px 0 8px;
  perspective: 900px;
}
.bk-face {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  width: min(100%, 210px);
  aspect-ratio: 5 / 7;
  padding: 0;
  overflow: visible;
  border-radius: 2px 5px 5px 2px;
  color: #fff;
  background:
    linear-gradient(102deg, rgba(255, 255, 255, .18), transparent 34%),
    var(--bk, #0a3468);
  box-shadow: 0 18px 30px rgba(4, 26, 52, .45), 0 3px 8px rgba(4, 26, 52, .35);
  transform: rotateY(-15deg);
  transform-style: preserve-3d;
  text-align: left;
}
.bk-face img {
  width: 100%;
  height: 100%;
  border-radius: 2px 5px 5px 2px;
  object-fit: cover;
}
/* 綴じ側（背表紙の陰） */
.bk-face::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(255, 255, 255, .16));
}
/* 小口（ページの厚み）。右端をちょうつがいにして奥へ折る */
.bk-face::after {
  content: "";
  position: absolute;
  top: 2%;
  right: 0;
  width: 13px;
  height: 96%;
  transform-origin: 100% 50%;
  transform: rotateY(-90deg);
  background: repeating-linear-gradient(90deg, #fff 0 1px, #d3dfe9 1px 3px);
  box-shadow: inset -3px 0 6px rgba(9, 47, 98, .2);
}
.bk-name {
  margin: .2rem 0 0;
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

/* 受け取りは2ステップ。
   2026-08-16 CEO指示「ステップが見づらい」→ アイコンを足し、面と文字を一段強くした */
.steps2-head {
  margin: 1.9rem 0 0;
  color: #ffe487;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
}
.steps2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
  margin: .9rem 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 480px) {
  .steps2 { grid-template-columns: 1fr; }
}
.steps2 li {
  padding: 1.35rem 1rem 1.4rem;
  border-radius: 10px;
  background: rgba(6, 29, 56, .5);
  box-shadow: inset 0 0 0 1px rgba(255, 226, 158, .3);
  text-align: center;
}
.steps2-ico {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto .7rem;
  place-items: center;
  border-radius: 50%;
  color: #ffe08a;
  background: rgba(255, 226, 158, .12);
  box-shadow: inset 0 0 0 2px rgba(255, 226, 158, .45);
}
.steps2-ico svg { width: 1.75rem; height: 1.75rem; }
.steps2 small {
  display: block;
  color: #ffe487;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.steps2 strong { display: block; margin-top: .25rem; font-size: 1.14rem; font-weight: 900; line-height: 1.7; }
.steps2-sub { display: block; margin-top: .4rem; color: #cfe7fa; font-size: .84rem; line-height: 1.7; }
.steps2 .arrow {
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--yellow);
  font-size: 1.5rem;
  font-weight: 900;
}
@media (max-width: 480px) {
  .steps2 .arrow { transform: rotate(90deg); }
}

.limit {
  margin: 1.6rem 0 0;
  padding: .95rem 1rem;
  border: 2px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  background: #fff7f5;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.8;
  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: .82rem; font-weight: 700; }
.voice-head strong { display: block; margin-top: .1rem; font-size: 1.45rem; font-weight: 900; }
.voice-quote {
  margin: 1.3rem 1.2rem .2rem;
  color: var(--navy);
  font-size: clamp(1.14rem, 4.6vw, 1.32rem);
  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: 1.02rem; line-height: 1.95; }
.voice-note { margin: .9rem 1.2rem 1.2rem; color: #93a6b7; font-size: .74rem; }

/* ============================================================
   ⑤ ロードマップ作成会
   ============================================================ */
/* 2026-08-16 CEO指示「ステップが見づらい」→ 各ステップにアイコンを追加。
   01〜04 の数字は右上の透かしに移し、左はアイコンが持つ形にした。 */
.flow {
  display: grid;
  gap: 12px;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}
.flow li {
  position: relative;
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: .1rem 1.1rem;
  padding: 1.35rem 1.2rem 1.3rem;
  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: .75rem;
  right: 1rem;
  color: rgba(255, 214, 90, .32);
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.flow-ico {
  grid-row: 1 / span 2;
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  border-radius: 50%;
  color: #ffe08a;
  background: rgba(6, 29, 56, .45);
  box-shadow: inset 0 0 0 2px rgba(255, 226, 158, .45);
}
.flow-ico svg { width: 2.1rem; height: 2.1rem; }
.flow strong { grid-column: 2; align-self: end; padding-right: 2.6rem; font-size: 1.24rem; font-weight: 900; line-height: 1.6; }
.flow p { grid-column: 2; margin: .35rem 0 0; color: #cfe7fa; font-size: .98rem; line-height: 1.85; }
@media (max-width: 360px) {
  .flow li { grid-template-columns: 3.6rem 1fr; gap: .1rem .8rem; }
  .flow-ico { width: 3.6rem; height: 3.6rem; }
  .flow-ico svg { width: 1.8rem; height: 1.8rem; }
}

.meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.meta li {
  padding: .35rem .95rem;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  font-size: .86rem;
  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.2rem;
  font-size: clamp(1.04rem, 4.1vw, 1.14rem);
  line-height: 2.1;
}
.letter p:last-of-type { margin-bottom: 0; }
.letter .big {
  color: var(--navy);
  font-size: clamp(1.2rem, 4.9vw, 1.42rem);
  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.8rem;
  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: .35rem; color: var(--muted); font-size: .62em; font-weight: 700; }
.profile p { margin: 0 0 1.05rem; font-size: 1.02rem; 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: .78rem; font-weight: 900; letter-spacing: .08em; }
.book strong { display: block; margin-top: .2rem; font-size: 1.1rem; font-weight: 900; line-height: 1.6; }
.book p { margin: .35rem 0 0; color: var(--muted); font-size: .8rem; 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.3rem 2.8rem 1.3rem 2.7rem;
  cursor: pointer;
  font-size: clamp(1.04rem, 4.1vw, 1.14rem);
  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.7rem;
  color: var(--muted);
  font-size: 1rem;
  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.45rem, 6vw, 1.95rem);
  font-weight: 900;
  line-height: 1.75;
  text-align: center;
}
.final-label {
  display: table;
  margin: 0 auto 1.4rem;
  padding: .5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .07em;
}
.final-label b { color: var(--yellow); }

/* CTAを最下部の1箇所に集約したので（2026-08-16）、受け取れるものをボタンの直前で再掲する。
   途中でCTAに触れないまま降りてきた人が、ここだけ読んで判断できるようにするため。
   広告オプトインLPの .final-get と同じ値。 */
.final-get {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.final-get li {
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  text-align: center;
}
.final-get small {
  display: block;
  color: #ffe487;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.final-get strong {
  display: block;
  margin-top: .2rem;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.6;
}
/* 2026-08-17 CEO指示：タイトルの下にサムネイルを入れる。
   素材は特典表紙（make_final_thumbs.py で生成）。 */
.final-get img {
  width: 100%;
  height: auto;
  margin: .7rem 0 .1rem;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(3, 20, 42, .38), inset 0 0 0 1px rgba(255, 226, 158, .28);
}
.final-get i {
  display: block;
  margin-top: .45rem;
  color: #cfe7fa;
  font-size: .84rem;
  font-style: normal;
  line-height: 1.7;
}

/* 最終セクションのカウントダウンは、帯ではなく中に置く */
.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; }

/* 2026-08-17 CEO指示「タイマーは下で稼働させる／ちゃんと目立つように」。
   上の帯を撤去してページ内で1つだけになったので、赤枠＋大きい数字で強く出す。 */
/* 動画の直下に置く主役のタイマー（2026-08-17 CEO指示）。
   通常の帯より強く：上下に赤い罫、赤みを帯びた背景、数字を4.1remまで上げる。 */
.count--hero {
  padding: clamp(24px, 5.5vw, 36px) 0 clamp(22px, 5vw, 32px);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 76, 63, .4), transparent 17rem),
    linear-gradient(120deg, #06182f, #0a3565);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
}
.count--hero .count-lead {
  margin-bottom: .9rem;
  font-size: clamp(1.1rem, 4.6vw, 1.3rem);
}
.count--hero .count-label {
  margin-bottom: .95rem;
  color: #fff;
  font-size: clamp(1.02rem, 4.1vw, 1.16rem);
}
.count--hero .timer div {
  padding: .85rem .3rem .75rem;
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 0 0 1px rgba(255, 226, 158, .26);
}
.count--hero .timer b { font-size: clamp(2.9rem, 12.5vw, 4.1rem); }
.count--hero .count-note { margin-top: 1rem; font-size: .86rem; }

footer {
  /* 追従CTAバーの分だけ空けていた下余白は、バー撤去にあわせて詰めた（2026-08-17） */
  padding: 2.2rem 1rem 2.8rem;
  color: #7d93a8;
  background: #061d38;
  font-size: .8rem;
  line-height: 2.1;
  text-align: center;
}
/* FV冒頭から移した注記 */
.disclaimer {
  max-width: 620px;
  margin: 0 auto 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .74rem;
  line-height: 1.9;
}
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; }
  .medal-core::after { animation: none; opacity: 0; }
  .sticky { transition: none; }
}
/* ============================================================
   FV実績：6部門それぞれを月桂冠ラベル画像で見せる（2026-08-12 採用）
   9案すべてと教育動画LP-v2で共通。①ブロックの証拠画像は変更していない。
   ============================================================ */
.category-awards {
  position: relative;
  margin: clamp(24px, 5vw, 36px) 0 0;
  padding: clamp(26px, 5.6vw, 38px) clamp(12px, 3.8vw, 26px) clamp(22px, 5vw, 32px);
  overflow: hidden;
  border: 2px solid rgba(216, 165, 55, .72);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 28%),
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(255,255,255,.025) 39px 40px),
    linear-gradient(145deg, #061d38, #0a3468 56%, #071f3c);
  box-shadow: 0 20px 46px rgba(4, 29, 57, .28), 0 0 0 5px rgba(216, 165, 55, .1),
    inset 0 0 0 1px rgba(255, 226, 158, .18);
}
.category-awards::before,
.category-awards::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(237, 194, 87, .2);
  transform: rotate(45deg);
}
.category-awards::before { top: -6.5rem; left: -5.5rem; }
.category-awards::after { right: -5.5rem; bottom: -6.5rem; }
.category-awards-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #e4eff8;
  font-size: clamp(.9rem, 3.9vw, 1.08rem);
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.category-awards-kicker span {
  margin-right: .45em;
  color: #ffdc7c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16em;
  font-style: italic;
}
.category-awards-title {
  position: relative;
  z-index: 1;
  margin: .2rem 0 1.35rem;
  color: #fff;
  font-size: clamp(1.5rem, 6.4vw, 2rem);
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.4;
  text-align: center;
}
.category-awards-title b {
  margin-right: .06em;
  color: #ffe49a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85em;
  font-style: italic;
  line-height: 1;
  text-shadow: 0 3px 14px rgba(255, 194, 60, .28);
}
.category-awards-title span { color: #ffe49a; }
.category-awards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: category-award;
}
.category-award {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.category-award img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(0, 10, 24, .3));
}
.category-award-no {
  position: absolute;
  top: 6px;
  left: 8px;
  color: rgba(255,255,255,.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.category-award-seal {
  position: relative;
  display: grid;
  width: min(100%, 116px);
  aspect-ratio: 1;
  place-items: center;
}
.category-award-seal .medal-laurel {
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .35));
}
.category-award-core {
  position: relative;
  display: grid;
  width: 65%;
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  color: #3f2902;
  background:
    radial-gradient(circle at 34% 25%, rgba(255,255,255,.8), transparent 38%),
    conic-gradient(from 205deg, #a86610, #ffe9a9 18%, #dca532 37%, #9c5f09 55%, #ffe08a 76%, #b77714);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5), inset 0 0 0 4px rgba(112,64,5,.35);
  text-align: center;
}
.category-award-core small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.38rem, 1.5vw, .52rem);
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1;
}
.category-award-core strong {
  color: #2c1b00;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 7vw, 2.35rem);
  font-style: italic;
  line-height: .95;
}
.category-award-core strong sup {
  margin-left: .05em;
  font-family: var(--sans);
  font-size: .32em;
  font-style: normal;
  vertical-align: .8em;
}
.category-award-core em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.34rem, 1.4vw, .48rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
}
.category-award p {
  display: grid;
  min-height: 3.3em;
  margin: -2px 0 0;
  padding: .3rem .2rem 0;
  place-items: center;
  color: #fff6d9;
  font-size: clamp(.68rem, 2.75vw, .82rem);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.48;
  text-align: center;
  word-break: keep-all;
}
.awards--support { margin-top: 12px; }
.awards--support .stats { margin-top: 0; }

/* 2026-08-17：実績2点は画像に固定した（make_stats_image.py）。
   .stats 一式のCSSは、テキストに戻すとき用にそのまま残してある。 */
.stats-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 520px) {
  .category-awards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .category-award { padding: 0; }
  .category-award-seal { width: min(100%, 122px); }
}

@media (max-width: 340px) {
  .category-awards { padding-inline: 9px; }
  .category-awards-grid { gap: 7px; }
  .category-award-seal { width: min(100%, 108px); }
  .category-award p { font-size: .64rem; }
}

