/* ==========================================================================
   コグニティブ・リーダーシップ習得セミナー LP
   https://maxpec.net/260926/
   ---------------------------------------------------------------------------
   設計方針
   - モバイルファースト（スマホを基準に記述し、min-width で上書き）
   - 静的（アニメーション・トランジション不使用／scroll-behavior のみ）
   - 配色は :root のカスタムプロパティで一元管理
   - 見出し = 明朝（Shippori Mincho B1）／本文 = ゴシック（Noto Sans JP）
   ---------------------------------------------------------------------------
   目次
     1. 変数（デザイントークン）
     2. リセット・基本
     3. ボタン（固定CTA／ヒーローCTA／申込フォーム）
     4. ヒーロー
     5. セクション共通（見出し・本文）
     6. 問題リスト／メリットリスト／ハイライト／比較カード
     7. 博士ブロック
     8. 3ステップ（階段レイアウト）
     9. セミナー詳細（概要表・コースカード・比較表・お約束・補足・申込）
    10. フッター
    11. 印刷
   ========================================================================== */

/* ---------- 1. 変数 ---------- */
:root {
  --white: #ffffff;
  --gray-bg: #f6f6f6;
  --gray-line: #e3e3e3;
  --gray-soft: #ededed;
  --navy: #1b2a4a;
  --navy-light: #2f4470;
  --text: #333333;
  --text-strong: #2b2b2b;
  --text-mid: #444444;
  --text-dim: #7a7a7a;
  --accent: #c0392b;
  --accent-light: #d4483a;
  --accent-dark: #9c2b20;
  --gold: #b8922a;
  --yellow: #ffd75e;
  --gold-bright: #d4af4f;
  --gold-dark: #8a6a1a;
  --gold-pale: #faf6ea;
  --gold-line: rgba(184, 146, 42, 0.45);
  --gold-line-soft: rgba(184, 146, 42, 0.22);
  --gold-line-mid: rgba(184, 146, 42, 0.32);
  --green: #3d6b4f;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 10px 36px rgba(0, 0, 0, 0.09);
  --fixed-cta-h: 56px;
  --serif: 'Shippori Mincho B1', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --num: 'Times New Roman', Times, 'Noto Serif JP', serif;
  color-scheme: light;
}

/* ---------- 2. リセット・基本 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--fixed-cta-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; }
strong { font-weight: 700; color: var(--text-strong); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.sp-br { display: inline; }
.pc-br { display: none; }
@media (min-width: 641px) {
  .sp-br { display: none; }
  .pc-br { display: inline; }
}

/* ---------- 3. ボタン ---------- */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-dark) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(192, 57, 43, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
.btn-accent:hover, .btn-accent:active { background: var(--accent-dark); }
.btn-accent span { position: relative; top: -2px; } /* 文字の光学的な位置合わせ */
.btn-icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-accent--fixed { padding: 8px 16px; font-size: 13px; }
.btn-accent--fixed .btn-icon { width: 16px; height: 16px; }
.btn-accent--large {
  width: 100%;
  max-width: 520px;
  min-height: 62px;
  padding: 14px 28px;
  font-size: clamp(16px, 4vw, 20px);
  white-space: normal;
}
.btn-accent--large .btn-icon { width: 22px; height: 22px; }

.fixed-cta {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100;
}
@media (min-width: 768px) {
  .fixed-cta { top: 18px; right: 24px; }
  .btn-accent--fixed { padding: 12px 24px; font-size: 15px; }
  .btn-accent--fixed .btn-icon { width: 18px; height: 18px; }
}

/* 最終CTA（申込フォーム） */
.btn-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  min-height: 70px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(18px, 4.5vw, 23px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-strong), inset 0 0 0 3px var(--navy), inset 0 0 0 4px var(--gold-line);
}
.btn-form:hover, .btn-form:active { background: var(--navy); }
/* 小さめスマホ（〜400px）: 「お申し込みフォーム」を1行に収める */
@media (max-width: 400px) {
  .btn-form { padding: 16px 18px; gap: 10px; letter-spacing: 0.06em; white-space: nowrap; }
}
.btn-form .btn-icon { width: 24px; height: 24px; fill: var(--gold-bright); }
.btn-arrow { width: 22px; height: 22px; fill: var(--gold-bright); }
.cta-wrap { text-align: center; }
.cta-wrap--hero { margin: clamp(28px, 4.5vw, 40px) 0 clamp(36px, 5vw, 52px); text-align: left; }
.cta-wrap--final { margin-top: 32px; }

/* ---------- 4. ヒーロー ---------- */
.hero {
  position: relative;
  z-index: 0;
  background-color: var(--gray-bg);
  padding: calc(var(--fixed-cta-h) + 28px) 20px 56px;
  overflow: hidden;
}
/* メイン写真: SPではロゴとCTAの間に横長の帯、PCでは全面背景（左側を白くフェードさせてコピーを載せる） */
.hero-bg {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  margin: clamp(24px, 5vw, 32px) -20px 0;
  background: url("../img/top_img2.jpg") center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(246, 246, 246, 0) 72%,
    rgba(246, 246, 246, 0.85) 92%,
    var(--gray-bg) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 1024px) {
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    height: auto;
    padding: 0;
    margin: 0;
    background-color: var(--gray-bg);
    background-position: calc(50vw - 860px) 40%;
    background-size: auto 100%;
  }
  .hero-bg::after {
    background:
      linear-gradient(to right,
        var(--gray-bg) 0%,
        var(--gray-bg) 34%,
        rgba(246, 246, 246, 0.72) 52%,
        rgba(246, 246, 246, 0.18) 72%,
        rgba(246, 246, 246, 0) 100%),
      linear-gradient(to bottom,
        rgba(246, 246, 246, 0) 62%,
        rgba(246, 246, 246, 0.9) 90%,
        var(--gray-bg) 100%);
  }
  .hero-inner { max-width: 1120px; }
}
@media (min-width: 1280px) {
  /* 写真の位置はコピー（中央寄せコンテナ）に追従させ、リーダーが常にコピーの右側に来るようにする */
  .hero-bg { background-position: calc(50vw - 1080px) 40%; background-size: auto 110%; }
  /* 写真を左に寄せた分、右端に生じる余白は右側の白フェードで馴染ませる（余白幅 ≒ 50vw - 830px） */
  .hero-bg::after {
    background:
      linear-gradient(to left,
        var(--gray-bg) 0,
        var(--gray-bg) calc(50vw - 830px),
        rgba(246, 246, 246, 0) calc(50vw - 550px)),
      linear-gradient(to right,
        var(--gray-bg) 0%,
        var(--gray-bg) 34%,
        rgba(246, 246, 246, 0.72) 52%,
        rgba(246, 246, 246, 0.18) 72%,
        rgba(246, 246, 246, 0) 100%),
      linear-gradient(to bottom,
        rgba(246, 246, 246, 0) 62%,
        rgba(246, 246, 246, 0.9) 90%,
        var(--gray-bg) 100%);
  }
}

/* 視線の流れ: 大（キャッチ）→ 中（サブ）→ 小（対象）→ 中（セミナー名＝ロゴ画像） */
.hero-catch-main {
  font-family: var(--sans);
  font-size: clamp(32px, 5.2vw, 64px);
  font-weight: 900;
  color: var(--text-strong);
  font-feature-settings: "palt" 1;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: clamp(14px, 2.4vw, 22px);
}
.hero-catch-sub {
  font-family: var(--sans);
  font-size: clamp(17px, 3.6vw, 30px);
  font-weight: 700;
  color: var(--text-strong);
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
/* 強調: ゴールドの下線（キャッチは文字色もゴールド） */
.hero-mark {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}
.hero-mark--strong {
  color: var(--text-strong);
  text-decoration-color: var(--gold);
}
.hero-title-wrap {
  margin: clamp(24px, 4.5vw, 40px) 0 0;
  max-width: 680px;
}
.hero-logo { width: 100%; height: auto; }
/* タブレット（641〜1023px）: キャッチを大きく、ロゴは9割サイズ */
@media (min-width: 641px) and (max-width: 1023px) {
  .hero-catch-main { font-size: clamp(44px, 7vw, 60px); }
  .hero-title-wrap { max-width: 612px; }
}

/* チェックカード — ネイビーパネル・ゴールド罫の3分割 */
.check-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: feature;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  box-shadow: var(--shadow-strong);
  text-align: center;
}
.check-cards::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(212, 175, 79, 0.28);
  pointer-events: none;
}
.check-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px 24px 28px;
  counter-increment: feature;
}
.check-card + .check-card { border-top: 1px solid rgba(212, 175, 79, 0.35); }
.check-card::before {
  content: '0' counter(feature);
  font-family: var(--num);
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}
.check-card p {
  font-size: clamp(16px, 4.2vw, 19px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.check-card p strong { color: var(--yellow); }
.check-icon {
  display: inline-block;
  width: auto;
  height: auto;
  background: none;
  color: var(--gold-bright);
  font-size: 13px;
  letter-spacing: 0.3em;
  line-height: 1;
}
.check-icon::before, .check-icon::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 1px;
  background: rgba(212, 175, 79, 0.6);
  margin: 0 8px 0 0;
}
.check-icon::after { margin: 0 0 0 8px; }
@media (min-width: 768px) {
  .check-cards { grid-template-columns: repeat(3, 1fr); }
  .check-card { padding: 34px 26px 36px; gap: 10px; }
  .check-card + .check-card { border-top: none; border-left: 1px solid rgba(212, 175, 79, 0.35); }
  .check-card::before { font-size: 48px; }
  .check-cards--two { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 5. セクション共通 ---------- */
.sec { padding: clamp(56px, 11vw, 96px) 20px; background: var(--white); }
.sec--gray { background: var(--gray-bg); }
.sec-inner { max-width: 960px; margin: 0 auto; }
.sec-heading {
  font-family: var(--serif);
  font-size: clamp(21px, 5.4vw, 30px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: clamp(32px, 7vw, 52px);
  padding: clamp(14px, calc(3vw - 2px), 20px) 0 clamp(16px, 3vw, 22px);
  border-top: 2px solid var(--gold-line-mid);
  border-bottom: 2px solid var(--gold-line-mid);
}
@media (max-width: 480px) {
  .sec-heading { font-size: clamp(16px, 5vw, 21px); letter-spacing: 0.03em; }
}
.sec-heading--bar {
  padding: 18px 20px;
  border: 0;
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 800;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--white);
  letter-spacing: 0.24em;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  box-shadow: inset 0 0 0 3px var(--navy), inset 0 0 0 4px var(--gold-line);
}

.body-text { font-size: clamp(14px, 3.8vw, 16px); color: var(--text-mid); line-height: 2.0; }
.body-text p { margin-bottom: 1.4em; }
.body-text p:last-child { margin-bottom: 0; }
.large-bold { font-size: 108%; font-weight: 700; color: var(--text-strong); }
/* 本文内の小見出し: ネイビーの左罫＋ゴールドの角マーカー＋淡いグレー地 */
.body-subhead {
  position: relative;
  margin: 1.8em 0 0.8em;
  padding: 12px 16px 12px 40px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow);
  font-family: var(--serif);
  font-size: clamp(16px, 4.2vw, 19px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.body-subhead::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: var(--gold);
  transform: rotate(45deg);
}
.body-subhead:first-child { margin-top: 0; }
@media (min-width: 768px) {
  .body-subhead { padding: 14px 20px 14px 46px; }
  .body-subhead::before { left: 22px; }
}
.note-text {
  display: block;
  font-size: clamp(13px, 3.4vw, 14px);
  color: var(--text-dim);
  line-height: 1.7;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 12px;
}

/* ---------- 6. 問題リスト / メリットリスト ---------- */
.problem-list, .benefit-list {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(28px, 6vw, 40px);
}
.problem-item, .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  font-size: clamp(15px, 3.8vw, 16px);
  line-height: 1.5;
  color: var(--text-mid);
}
.benefit-item { background: var(--white); border-color: var(--gold-line-soft); border-left: 3px solid var(--gold); }
.problem-icon, .benefit-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 3px;
}
.problem-item { align-items: center; gap: 14px; }
.problem-icon { width: 44px; height: 44px; margin-top: 0; align-self: center; }
.problem-icon svg { width: 44px; height: 44px; fill: var(--accent); }
.benefit-icon { border-radius: 50%; background: var(--navy); display: inline-flex; align-items: center; justify-content: center; }
.benefit-icon svg { width: 18px; height: 18px; fill: var(--gold-bright); }
@media (min-width: 768px) {
  .problem-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .problem-item, .benefit-item { padding: 20px 24px; }
}

/* ハイライトボックス */
.highlight-box {
  position: relative;
  margin-top: clamp(32px, 7vw, 48px);
  padding: clamp(28px, 6vw, 48px) clamp(20px, 5vw, 56px);
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-strong);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.highlight-box::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 79, 0.35);
  pointer-events: none;
}
.highlight-lead {
  font-family: var(--serif);
  font-size: clamp(21px, 5.6vw, 34px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #f6ead0;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 79, 0.5);
}
.highlight-body { font-size: clamp(15px, 4vw, 17px); line-height: 1.95; color: rgba(255, 255, 255, 0.92); }

/* 比較カード（従来理論 vs コグニティブ・リーダーシップ）: SPは縦積み、768px以上で2列 */
.vs-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: clamp(32px, 7vw, 48px);
}
.vs-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-top: 4px solid #8a98a8;
  box-shadow: var(--shadow);
}
.vs-card--new {
  border-color: var(--gold);
  border-top: 3px solid var(--gold);
}
.vs-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-line);
}
.vs-card--new .vs-head {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-bottom-color: var(--gold);
}
.vs-tag {
  flex-shrink: 0;
  padding: 8px 14px;
  background: #6b7684;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.vs-card--new .vs-tag { background: var(--accent); }
.vs-title {
  font-family: var(--serif);
  font-size: clamp(16px, 4.2vw, 22px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--text-strong);
}
.vs-card--new .vs-title { color: var(--white); }
.vs-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 24px;
}
.vs-list { list-style: none; margin-bottom: 18px; }
.vs-list li {
  position: relative;
  padding-left: 1.2em;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.6;
  color: var(--text);
}
.vs-list li + li { margin-top: 10px; }
.vs-list li::before {
  content: '';
  position: absolute;
  left: 0.2em;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.vs-result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 12px 18px 16px;
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 500;
  line-height: 1.6;
  background: #fbf1f0;
  border: 1px solid #e7c3bf;
  color: var(--accent-dark);
}
.vs-result strong { font-weight: 700; color: var(--accent-dark); }
.vs-result-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.vs-card--new .vs-result {
  background: var(--gold-pale);
  border-color: var(--gold-line);
  color: var(--navy);
}
.vs-card--new .vs-result strong { color: var(--navy); }
.vs-card--new .vs-result-icon { color: var(--gold-dark); }
@media (min-width: 768px) {
  .vs-cards { grid-template-columns: 1fr 1fr; gap: 24px; }
  .vs-head { padding: 22px 24px; }
  .vs-body { padding: 24px 20px 26px; }
  .vs-list li { font-size: 15px; letter-spacing: 0; padding-left: 1.1em; }
  .vs-result { padding: 12px 16px 16px; }
}

/* ---------- 7. 博士ブロック ---------- */
.doctor-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: clamp(28px, 6vw, 40px);
}
.doctor-photo { flex-shrink: 0; margin: 0; }
.doctor-photo img {
  width: min(260px, 64vw);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}
.doctor-text { width: 100%; }
@media (min-width: 768px) {
  .doctor-block { flex-direction: row; align-items: center; gap: 52px; }
  .doctor-photo img { width: 300px; }
  .doctor-text { flex: 1; }
}

/* ---------- 8. 3ステップ・フロー（階段レイアウト） ---------- */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-top: 4px solid var(--navy);
  padding: 22px 20px 26px;
  box-shadow: var(--shadow);
}
.step + .step { margin-top: 34px; }
.step + .step::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -14px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid var(--gold);
}
.step-badge {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
}
.step-label { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.24em; color: var(--gold-dark); }
.step-num { font-family: var(--num); font-size: 40px; font-weight: 700; color: var(--navy); }
.step-body { flex: 1; }
.step-title {
  font-family: var(--serif);
  font-size: clamp(20px, 5vw, 21px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.step-hr {
  position: relative;
  border: 0;
  height: 1px;
  margin: 14px 0 12px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(184, 146, 42, 0.5) 45%, rgba(184, 146, 42, 0) 100%);
}
.step-hr::before {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.step-desc { font-size: clamp(14px, 3.6vw, 15px); color: var(--text-dim); line-height: 1.7; }
@media (min-width: 768px) {
  .steps-flow {
    flex-direction: row;
    align-items: stretch;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0;
  }
  .step { flex: 1; padding: 28px 22px 34px; gap: 16px; }
  .step:nth-child(1) { margin-top: 96px; }
  .step:nth-child(2) { margin-top: 48px; }
  .step:nth-child(3) { margin-top: 0; }
  .step + .step { margin-left: 40px; }
  .step + .step::before {
    top: auto;
    bottom: 70px;
    left: -30px;
    margin-left: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 18px solid var(--gold);
    border-right: 0;
  }
  .step-num { font-size: 48px; }
  .step-label { font-size: 15px; }
}

/* ---------- 9. セミナー詳細 ---------- */
.sec--details { background: var(--white); }
.sub-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(19px, 5vw, 25px);
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: 0.14em;
  margin: clamp(44px, 9vw, 64px) 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}
.sub-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: var(--gold);
}
.sub-heading:first-of-type { margin-top: 0; }
.sub-heading-icon { display: inline-flex; width: 26px; height: 26px; flex-shrink: 0; }
.sub-heading-icon svg { width: 26px; height: 26px; fill: var(--gold); }

/* 開催概要テーブル */
.info-table { border: 1px solid var(--gray-line); }
.info-row { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--gray-line); }
.info-row:last-child { border-bottom: none; }
.info-th {
  background: var(--gray-bg);
  color: var(--text-strong);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 10px 18px;
}
.info-td { padding: 12px 18px 14px; font-size: clamp(15px, 3.8vw, 16px); line-height: 1.8; }
@media (min-width: 600px) {
  .info-row { grid-template-columns: 160px 1fr; }
  .info-th { padding: 16px 22px; display: flex; align-items: center; border-right: 1px solid var(--gray-line); }
  .info-td { padding: 16px 24px; }
}

/* コースカード */
.course-card {
  position: relative;
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--navy);
  box-shadow: var(--shadow);
}
.course-card--premium { border-color: var(--gold); }
.course-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--white);
}
.course-card--premium .course-head { background: linear-gradient(135deg, #6f5410 0%, var(--gold) 55%, #a07d1f 100%); }
.course-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--accent);
  color: var(--white);
  padding: 3px 14px;
}
.course-tag--online { background: var(--green); border: 1px solid rgba(255, 255, 255, 0.55); }
.course-name { font-family: var(--serif); font-size: clamp(18px, 4.8vw, 24px); font-weight: 600; line-height: 1.45; letter-spacing: 0.08em; }
.course-body { padding: clamp(15px, calc(4vw - 5px), 27px) clamp(20px, 4vw, 32px) clamp(16px, 3vw, 22px); }
.course-body .body-text { margin-bottom: 22px; line-height: 1.5; }
.course-spec { border-top: 1px solid var(--gold-line-soft); }
.spec-row { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--gray-line); padding: 14px 0; }
.spec-row dt { font-family: var(--serif); font-weight: 600; color: var(--text-strong); font-size: 15px; letter-spacing: 0.1em; margin-bottom: 4px; }
.spec-row dt::before { content: '◆'; color: var(--gold); margin-right: 8px; font-size: 10px; position: relative; top: -2px; }
.spec-row dd { font-size: clamp(15px, 3.8vw, 16px); line-height: 1.8; color: var(--text-mid); }
@media (min-width: 600px) {
  .spec-row { grid-template-columns: 140px 1fr; padding: 16px 0; }
  .spec-row dt { margin-bottom: 0; padding-top: 2px; }
}
.spec-list li { position: relative; padding-left: 1.2em; }
.spec-list li::before { content: '・'; position: absolute; left: 0; color: var(--gold-dark); }
.spec-list--nested { margin: 2px 0 4px 0.4em; }
.spec-list--nested li { font-size: 94%; color: var(--text-mid); }
.course-spec .note-text { color: var(--text-mid); }
.spec-list--nested li::before { content: '–'; }
.spec-note {
  margin: 8px 0 8px;
  padding: 16px 18px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-line-soft);
  font-size: clamp(14px, 3.6vw, 15px);
  line-height: 1.8;
}
.spec-note p { margin-bottom: 0.8em; }
.spec-note p:last-child { margin-bottom: 0; }
.spec-note strong { color: var(--gold-dark); }
.spec-row--price { padding: 12px 0 0; border-bottom: none; }
.spec-row--price dt { padding-top: 0; }
@media (min-width: 600px) { .spec-row--price dt { padding-top: 5px; } }
.price {
  font-family: var(--serif);
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.price-yen { font-size: 0.55em; margin-left: 0.15em; }
.installment {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  font-size: clamp(13px, 3.4vw, 14px);
  line-height: 1.75;
  color: var(--text-mid);
}
.installment-title { font-weight: 700; color: var(--text-strong); margin-bottom: 4px; }
.installment-list li { text-indent: -1em; padding-left: 1em; }

/* コース一覧表 */
.table-caption {
  margin-top: clamp(36px, 8vw, 56px);
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(18px, 4.8vw, 24px);
  font-weight: 600;
  color: var(--text-strong);
  text-align: center;
  letter-spacing: 0.2em;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--gray-line); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: center;
  background: var(--white);
}
.compare-table th, .compare-table td {
  padding: 10px 4px;
  border-bottom: 1px solid var(--gray-line);
  border-right: 1px solid var(--gray-line);
  line-height: 1.6;
  vertical-align: middle;
  width: 33.333%;
}
.compare-table th:last-child, .compare-table td:last-child { border-right: none; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table th { background: var(--navy); color: var(--white); font-family: var(--serif); font-weight: 600; font-size: 12px; line-height: 1.5; letter-spacing: 0.06em; }
.compare-table th.col-premium { background: linear-gradient(135deg, #6f5410 0%, var(--gold) 100%); }
.compare-table td.col-premium { background: var(--gold-pale); font-weight: 700; color: var(--text-strong); }
.compare-table .row-price td { font-family: var(--serif); font-size: 15px; font-weight: 800; color: var(--accent-dark); }
.compare-table .td-none { color: #9a9a9a; }
.compare-table .td-small { display: block; margin-top: -2px; font-size: 11px; font-weight: 400; color: var(--text-mid); line-height: 1.4; }
@media (min-width: 768px) {
  .compare-table { font-size: 15px; }
  .compare-table th, .compare-table td { padding: 15px 16px; }
  .compare-table th { font-size: 16px; }
  .compare-table .row-price td { font-size: 21px; }
}

/* お約束カード */
.promise-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.promise-card {
  position: relative;
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  padding: 28px 22px 24px;
  text-align: center;
}
.promise-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-line-soft);
  pointer-events: none;
}
.promise-icon { display: inline-flex; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); align-items: center; justify-content: center; margin-bottom: 12px; box-shadow: inset 0 0 0 2px var(--navy), inset 0 0 0 3px var(--gold-line); }
.promise-icon svg { width: 26px; height: 26px; fill: var(--gold-bright); }
.promise-title { font-family: var(--serif); font-size: clamp(17px, 4.4vw, 21px); font-weight: 600; color: var(--text-strong); margin-bottom: 10px; letter-spacing: 0.12em; }
.promise-body { font-size: clamp(14px, 3.7vw, 15px); line-height: 1.85; color: var(--text-mid); text-align: left; }
@media (min-width: 640px) { .promise-cards { grid-template-columns: repeat(2, 1fr); } .promise-card { padding: 32px 28px 28px; } }

/* 補足 */
.supplement-list { display: grid; gap: 6px; }
.supplement-list li {
  font-size: clamp(14px, 3.7vw, 15px);
  line-height: 1.8;
  color: var(--text-mid);
  padding-left: 1em;
  text-indent: -1em;
}

/* 申込期日 */
.deadline-box { text-align: left; }
.deadline-date { font-family: var(--serif); font-size: clamp(22px, 5.6vw, 28px); font-weight: 800; color: var(--navy); line-height: 1.3; letter-spacing: 0.1em; }
.deadline-box .note-text { margin-top: 6px; }

/* 申込方法 */
.apply-text { text-align: center; }
.apply-text .large-bold { display: block; font-family: var(--serif); font-size: clamp(16px, 4.2vw, 20px); line-height: 1.9; letter-spacing: 0.08em; }

/* ---------- 10. フッター ---------- */
.footer {
  background: var(--gray-soft);
  padding: 36px 20px calc(36px + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid var(--gold-line-soft);
}
.footer-link { display: inline-block; font-size: 14px; color: var(--text-strong); text-decoration: underline; text-underline-offset: 4px; padding: 6px 8px; margin-bottom: 8px; letter-spacing: 0.06em; }
.footer-copy { font-size: 12px; color: var(--text-dim); letter-spacing: 0.06em; }

/* ---------- 11. 印刷 ---------- */
@media print { .fixed-cta { display: none; } }
