@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@600;700&family=Montserrat:wght@600;700;800&display=swap');

/* ============================================================
   セタヒナ「夜の熱源」統一テーマ — 専用ページ用オーバーライド
   本体style.css / fudosan-kai/style.css / 各ページstyle.css の後に読み込む。
   TOP(index.html)のインラインCSSと同じトーンへ全専用ページを統一する。
   ============================================================ */

:root {
  /* 新デザイントークン（TOPと一致） */
  --night: #16110D;
  --night-2: #221A14;
  --ivory: #F8F3EB;
  --surface: #FFFFFF;
  --ink: #1C1917;
  --muted: #6E675F;
  --muted-d: #A89C8C;
  --line: #EDE5D8;
  --gold: #C9A96A;
  --gold-dim: rgba(201,169,106,.32);
  --flame-a: #C41E3A;
  --flame-b: #E8590C;
  --grad: linear-gradient(115deg, #C41E3A, #E8590C 70%, #F59E0B 115%);
  --radius: 22px;

  /* 旧style.cssの変数エイリアスを新パレットへ差し替え */
  --accent-gold: #C9A96A;
  --primary-red: #C41E3A;
  --primary-red-light: #E8590C;
  --primary-red-dark: #9B1629;
  --text-dark: #1C1917;
  --text-gray: #6E675F;
  --text-light: #A89C8C;
  --border-light: #EDE5D8;
  --bg-white: #FFFFFF;
  --bg-light: #FAF7F1;
}

/* ===== ベース ===== */
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body a { color: inherit; }

/* 見出し系は明朝(Shippori Mincho B1)へ */
.section-title,
.hero-title,
.fudosan-host-name, .pet-staff-name,
.apply-cta-title,
.footer-brand h3,
.fudosan-why-card h3, .fudosan-target-group h3,
.fudosan-merit-body h3, .fudosan-flow-text h3,
.pet-idea-card h3, .pet-vision-launch h3, .pet-vision-meeting h3,
.pet-vision-goals h3, .pet-vision-goal h4, .pet-target-policy h3,
.schedule-eligibility-title {
  font-family: 'Shippori Mincho B1', serif;
}

/* ============================================================
   Header — 固定・ダークグラス
   ============================================================ */
body .header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(22,17,13,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(201,169,106,.14);
}
body .header .logo-text { color: #fff; font-family: 'Shippori Mincho B1', serif; letter-spacing: .08em; }
body .header .logo-sub {
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-size: 9px; font-weight: 700; letter-spacing: .3em; margin-top: 2px;
}
body .header .nav-link { color: rgba(255,255,255,.82); font-weight: 500; }
body .header .nav-link:hover { color: #fff; }
body .header .nav-link-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 9px 22px; border-radius: 999px;
  font-weight: 700; box-shadow: 0 6px 18px rgba(216,73,24,.4);
  border: none;
}
body .header .nav-link-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(216,73,24,.55); }
body .header .mobile-menu-btn { color: #fff; }
body .header .logo-image { filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }

/* モバイルメニュー パネル */
.mobile-menu { background: rgba(22,17,13,.97); backdrop-filter: blur(12px); }
.mobile-menu .mobile-nav-link { color: rgba(255,255,255,.9); font-weight: 500; }
.mobile-menu .mobile-nav-link:hover { color: var(--gold); }
.mobile-menu .mobile-menu-close { color: #fff; }

/* ============================================================
   Hero — 暗い夜＋炎の温度感（背景写真は各ページのまま活かす）
   ============================================================ */
.hero { position: relative; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 74% 16%, rgba(232,89,12,.24), transparent 60%),
    linear-gradient(180deg, rgba(22,17,13,.12) 0%, rgba(22,17,13,.48) 55%, rgba(22,17,13,.86) 100%);
}
.hero-content { position: relative; z-index: 1; }

.hero-title {
  color: #fff; letter-spacing: .01em;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero-subtitle { color: rgba(255,255,255,.9); }

/* ヒーローバッジ = 金の縁取りピル（各ページ固有色より優先） */
.hero .fudosan-hero-badge,
.fudosan-hero-badge {
  background: rgba(201,169,106,.14) !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-family: 'Montserrat','Noto Sans JP',sans-serif;
  letter-spacing: .12em;
  box-shadow: none !important;
  backdrop-filter: blur(6px);
}

/* ヒーローCTA = 炎グラデのピル（TOPの.cta-lgに合わせる） */
.hero-cta {
  background: var(--grad) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(216,73,24,.5);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(216,73,24,.62); }

/* ヒーロー開催日ピル = ダークガラス＋金 */
.hero-event-card {
  background: rgba(22,17,13,.42) !important;
  border: 1px solid rgba(201,169,106,.4) !important;
}
.hero-event-date-text strong { color: var(--gold); }

/* ヒーロー「参加者を確認」サブボタン */
.schedule-participants-btn.hero-participants-btn {
  border: 1.5px solid rgba(255,255,255,.5) !important;
  color: #fff !important;
  background: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(4px);
}
.schedule-participants-btn.hero-participants-btn:hover {
  background: rgba(255,255,255,.16) !important;
  border-color: var(--gold) !important;
}
.hero-scroll { color: rgba(255,255,255,.7) !important; }
.hero-scroll-line { background: rgba(255,255,255,.5) !important; }

/* ============================================================
   セクション背景・見出し
   ============================================================ */
body .section { background: var(--ivory); }
body .section.section-bg { background: linear-gradient(180deg,#FFFDF9,#F3ECDE); }

body .section-header { text-align: center; }
body .section-label {
  font-family: 'Montserrat', sans-serif;
  color: var(--flame-b);
  font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  font-size: 12px;
}
body .section-title {
  color: var(--ink); font-weight: 700; font-size: 34px; margin-top: 10px;
}
body .section-description { color: var(--muted); font-size: 15px; }
@media (max-width: 700px) {
  body .section-title { font-size: 25px; }
}

/* セクションタイトルにアクセントの下線（金） */
body .section-header .section-title::after {
  content: ""; display: block; width: 46px; height: 3px; margin: 14px auto 0;
  background: var(--grad); border-radius: 3px;
}

/* ============================================================
   汎用カード群 — アイボリー地に白の重厚カード
   ============================================================ */
.fudosan-why-card, .fudosan-target-group, .fudosan-flow-step,
.pet-idea-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(28,25,23,.05);
}
.fudosan-why-card:hover, .pet-idea-card:hover {
  box-shadow: 0 18px 44px rgba(28,25,23,.1);
  border-color: var(--gold-dim);
}
.fudosan-why-icon, .pet-idea-icon {
  background: var(--grad) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(216,73,24,.3);
}
.fudosan-why-card h3, .fudosan-target-group h3,
.fudosan-merit-body h3, .fudosan-flow-text h3, .pet-idea-card h3 {
  color: var(--ink);
}

/* 主催 / スタッフ カード */
.fudosan-host, .pet-staff {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(28,25,23,.07);
}
.fudosan-host-photo, .pet-staff-photo { border: 4px solid var(--gold) !important; }
.fudosan-host-name, .pet-staff-name { color: var(--ink); }
.fudosan-host-title, .pet-staff-title { color: var(--flame-b); }
.fudosan-host-meta-label, .pet-staff-meta-label { color: var(--gold); }
.fudosan-host-bio strong, .pet-staff-bio strong { color: var(--ink); }

/* 対象者グループ */
.fudosan-target-group h3 { color: var(--flame-b); border-bottom-color: var(--gold-dim); }
.fudosan-target-group li::before { background: var(--gold); }

/* 優先業種（★）ボックス */
.fudosan-target-priority {
  background: linear-gradient(135deg, rgba(201,169,106,.12), rgba(201,169,106,.03));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
}
.fudosan-target-star { background: var(--grad); }
.fudosan-target-priority-header h3 { color: var(--ink); }
.fudosan-target-chip { border-color: var(--gold); color: var(--ink); }
.fudosan-target-chip::before { color: var(--gold); }

/* メリット（番号付きリスト） */
.fudosan-merit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--flame-b);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(28,25,23,.05);
}
.fudosan-merit-number {
  font-family: 'Montserrat', sans-serif;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.fudosan-merit-body h3 { color: var(--ink); }

/* フロー */
.fudosan-flow-num { background: var(--grad) !important; }
.fudosan-flow-text h3 { color: var(--ink); }

/* ============================================================
   ペット会 固有ブロック
   ============================================================ */
.pet-vision-lead p { color: var(--ink); }
.pet-vision-quote {
  background: linear-gradient(135deg,#221A14,#16110D);
  color: #fff; border-radius: var(--radius);
  border: 1px solid rgba(201,169,106,.25);
}
.pet-vision-quote p { color: rgba(255,255,255,.92); }
.pet-vision-quote i { color: var(--gold); }
.pet-vision-quote strong { color: var(--gold); }
.pet-vision-quote-author { color: var(--muted-d); }
.pet-vision-launch, .pet-vision-meeting {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 8px 26px rgba(28,25,23,.05);
}
.pet-vision-launch h3 i { color: var(--flame-b); }
.pet-vision-meeting-badge { background: var(--grad) !important; color: #fff !important; }
.pet-vision-goal-num {
  font-family: 'Montserrat', sans-serif;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pet-vision-goal { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
.pet-ideas-footer { color: var(--muted); }
.pet-ideas-footer i { color: var(--gold); }
.pet-target-policy {
  background: linear-gradient(135deg, rgba(201,169,106,.10), rgba(201,169,106,.02));
  border: 1.5px solid var(--gold-dim); border-radius: var(--radius);
}
.pet-target-policy-icon { background: var(--grad) !important; color:#fff !important; }
.pet-target-policy h3 { color: var(--ink); }
.pet-sns-link { color: var(--flame-b) !important; }
.pet-sns-link:hover { color: var(--flame-a) !important; }

/* ============================================================
   参加対象・ご紹介ボックス
   ============================================================ */
.schedule-eligibility {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 10px 30px rgba(28,25,23,.06);
}
.schedule-eligibility-icon { background: var(--grad) !important; color:#fff !important; }
.schedule-eligibility-title { color: var(--flame-b); }
.schedule-eligibility-list li::before,
.schedule-eligibility-list li::marker { color: var(--gold); }

/* ============================================================
   開催日程カード — ダークの重厚カード（TOPと同トーン）
   ============================================================ */
.schedule-card {
  background: linear-gradient(160deg,#221A14,#16110D) !important;
  border: 1px solid rgba(201,169,106,.28) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.28) !important;
  color: #fff !important;
  overflow: hidden;
}
.schedule-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 40% at 80% 0%, rgba(232,89,12,.22), transparent 62%);
}
.schedule-card > * { position: relative; z-index: 1; }
.schedule-badge {
  background: var(--grad) !important; color: #fff !important;
  border-radius: 999px; font-weight: 700; letter-spacing: .04em;
}
.schedule-date {
  font-family: 'Montserrat','Noto Sans JP',sans-serif !important;
  color: #fff !important; font-weight: 800;
}
.schedule-date span { color: var(--gold) !important; }
.schedule-open-time, .schedule-time { color: rgba(255,255,255,.82) !important; }
.schedule-price { color: var(--gold) !important; font-weight: 800; }
.schedule-target-jobs {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(201,169,106,.2) !important;
  border-radius: 12px;
}
.schedule-target-jobs-label { color: var(--gold) !important; }
.schedule-target-jobs-list { color: rgba(255,255,255,.78) !important; }
.schedule-target-jobs-list strong { color: #fff !important; }
.schedule-card-actions { border-top: 1px solid rgba(201,169,106,.18) !important; }
.schedule-calendar-btn, .schedule-participants-btn {
  color: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(201,169,106,.35) !important;
  background: rgba(255,255,255,.04) !important;
  border-radius: 999px;
}
.schedule-calendar-btn:hover, .schedule-participants-btn:hover {
  background: rgba(201,169,106,.16) !important; border-color: var(--gold) !important;
}
.schedule-status-available { background: linear-gradient(135deg,#2F8A3F,#5BC763) !important; }
.schedule-status-limited { background: linear-gradient(135deg,#E8590C,#F59E0B) !important; }
.schedule-status-full { background: linear-gradient(135deg,#4a4038,#6b5d50) !important; }

/* 会場メモ — 白カードにゆとりのある余白と階層を持たせる */
.schedule-note {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 32px 32px;
  margin-top: 40px;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(28,25,23,.05);
}
.schedule-note i { color: var(--flame-b); }
.schedule-note > p:first-child {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px; font-weight: 700; color: var(--ink);
  line-height: 1.6;
}
.schedule-note p.schedule-address {
  margin-top: 0;
  font-size: 13.5px; color: var(--muted);
  letter-spacing: .04em; line-height: 1.8;
}
.schedule-location-actions { margin-top: 6px; gap: 14px; }
.schedule-note .schedule-map { margin-top: 18px; width: 100%; }
@media (max-width: 600px) {
  .schedule-note { padding: 28px 18px 22px; }
  .schedule-note > p:first-child { font-size: 16px; flex-wrap: wrap; justify-content: center; }
}
.schedule-location-btn {
  border: 1px solid var(--gold) !important; color: var(--ink) !important; background: #fff !important;
  border-radius: 999px;
}
.schedule-location-btn:hover { background: var(--gold) !important; color:#fff !important; }
.schedule-map { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }

/* ギャラリー */
.fudosan-gallery-item { border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(28,25,23,.08); }

/* ============================================================
   参加申込CTA — 夜のセクション
   ============================================================ */
.apply-cta, .apply-cta.section {
  background: radial-gradient(ellipse at 50% 0%, #2A2018, #16110D 70%) !important;
  color: #fff;
}
.apply-cta-title { color: #fff !important; }
.apply-cta-description { color: rgba(255,255,255,.78) !important; }
.apply-cta-note { color: rgba(255,255,255,.55) !important; }
.apply-cta-button {
  background: var(--grad) !important; color: #fff !important; border: none !important;
  border-radius: 999px; font-weight: 700;
  box-shadow: 0 14px 40px rgba(216,73,24,.5);
}
.apply-cta-button:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(216,73,24,.62); }

/* ============================================================
   フッター — TOPと同じダーク
   ============================================================ */
.footer { background: #100C08 !important; color: rgba(255,255,255,.6) !important; }
.footer-brand h3 { color: #fff !important; font-family: 'Shippori Mincho B1', serif; letter-spacing: .08em; }
.footer-brand h3 small { color: var(--gold) !important; font-family: 'Montserrat',sans-serif; letter-spacing: .3em; }
.footer-brand p { color: rgba(255,255,255,.4) !important; }
.footer-link { color: rgba(255,255,255,.7) !important; }
.footer-link:hover { color: #fff !important; }
.footer-legal-links a { color: rgba(255,255,255,.45) !important; }
.footer-legal-links a:hover { color: #fff !important; }
.footer-bottom, .footer-bottom p { color: rgba(255,255,255,.3) !important; }

/* ============================================================
   参加者一覧モーダル — ダーク・プレミアム
   ============================================================ */
.participants-modal-content {
  background: linear-gradient(165deg,#221A14,#16110D) !important;
  border: 1px solid rgba(201,169,106,.3);
  box-shadow: 0 30px 80px rgba(0,0,0,.6) !important;
  color: #fff;
}
.participants-modal-close { color: rgba(255,255,255,.6) !important; }
.participants-modal-close:hover { background: rgba(255,255,255,.08) !important; color:#fff !important; }
.participants-modal-header { border-bottom: 1px solid rgba(201,169,106,.2) !important; }
.participants-modal-title { color: #fff !important; font-family: 'Shippori Mincho B1', serif; }
.participants-modal-subtitle { color: var(--gold) !important; }

/* パスワード認証 */
.pm-auth p { color: rgba(255,255,255,.75) !important; }
.pm-auth-lead { color: #fff !important; }
.pm-auth-note {
  color: rgba(255,255,255,.7) !important;
  background: rgba(201,169,106,.08) !important;
  border: 1px solid rgba(201,169,106,.25) !important;
}
.pm-auth-input {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(201,169,106,.3) !important;
  color: #fff !important;
}
.pm-auth-input::placeholder { color: rgba(255,255,255,.4); }
.pm-auth-input:focus { border-color: var(--gold) !important; }
.pm-auth-btn { background: var(--grad) !important; color:#fff !important; font-weight: 700; }
.pm-auth-btn:hover { opacity: .92; }

/* 参加者アイテム */
.pm-item {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(201,169,106,.2) !important;
}
.pm-item-name { color: #fff !important; }
.pm-item-company { color: var(--gold) !important; }
.pm-item-row { color: rgba(255,255,255,.78) !important; }
.pm-item-row strong { color: #fff !important; }
.pm-item-row .pm-link, .pm-item-row a { color: var(--gold) !important; }
.pm-item-row .pm-link:hover, .pm-item-row a:hover { color: var(--flame-b) !important; }
.pm-empty, .pm-loading, .pm-error { color: rgba(255,255,255,.55) !important; }

/* キャンセル待ちフォーム */
.cw-note { color: rgba(255,255,255,.72) !important; }
.cw-field label { color: #fff !important; }
.cw-field input {
  background: rgba(255,255,255,.06) !important;
  border: 1.5px solid rgba(201,169,106,.3) !important;
  color: #fff !important;
}
.cw-field input:focus { border-color: var(--gold) !important; background: rgba(255,255,255,.1) !important; }
.cw-done p { color: rgba(255,255,255,.85) !important; }

/* ============================================================
   セミナー登壇者セクション（登壇者フォーム→自動反映）
   ============================================================ */
.seminar-section { background: linear-gradient(180deg,#FFFDF9,#F3ECDE); }
.seminar-cards { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.seminar-card {
  display: flex; gap: 32px; align-items: flex-start;
  background: linear-gradient(160deg,#221A14,#16110D);
  border: 1px solid rgba(201,169,106,.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
  padding: 36px;
  color: #fff;
  position: relative; overflow: hidden;
}
.seminar-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 45% at 85% 0%, rgba(232,89,12,.2), transparent 60%);
}
.seminar-card > * { position: relative; z-index: 1; }
.seminar-photo {
  flex-shrink: 0; width: 168px; height: 168px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  background: #2a221a;
}
.seminar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.seminar-body { flex: 1; min-width: 0; }
.seminar-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.seminar-date-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(201,169,106,.14); border: 1px solid rgba(201,169,106,.45);
  color: var(--gold); font-size: 12.5px; font-weight: 700;
}
.seminar-tag {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: .3em; color: var(--flame-b);
}
.seminar-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 25px; font-weight: 700; color: #fff;
  line-height: 1.45; margin: 0 0 12px;
}
.seminar-desc { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.82); margin: 0 0 20px; }
.seminar-speaker {
  border-top: 1px solid rgba(201,169,106,.22);
  padding-top: 18px;
}
.seminar-speaker-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.seminar-speaker-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 19px; font-weight: 700; color: #fff;
}
.seminar-speaker-kana { font-size: 11.5px; color: rgba(255,255,255,.5); letter-spacing: .08em; }
.seminar-speaker-job { font-size: 13px; font-weight: 700; color: var(--gold); margin-top: 4px; }
.seminar-speaker-profile { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,.72); margin: 10px 0 0; }
.seminar-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(201,169,106,.5); color: var(--gold) !important;
  font-size: 12.5px; font-weight: 700;
  transition: background .2s, color .2s;
}
.seminar-link:hover { background: var(--gold); color: #16110D !important; }
.seminar-message {
  margin: 14px 0 0; padding: 12px 16px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,169,106,.18);
  font-size: 13px; color: rgba(255,255,255,.85);
}
.seminar-message i { color: var(--flame-b); margin-right: 6px; }
@media (max-width: 640px) {
  .seminar-card { flex-direction: column; align-items: center; text-align: left; padding: 28px 22px; gap: 20px; }
  .seminar-photo { width: 132px; height: 132px; }
  .seminar-title { font-size: 20px; }
  .seminar-meta { justify-content: center; }
}

/* スケジュールカード内の「セミナー: ○○さん」行 */
.schedule-seminar-line {
  margin-top: 10px; padding: 8px 12px; border-radius: 10px;
  background: rgba(201,169,106,.1); border: 1px solid rgba(201,169,106,.3);
  color: var(--gold) !important; font-size: 12px; font-weight: 700;
  line-height: 1.5;
}
.schedule-seminar-line i { margin-right: 5px; color: var(--flame-b); }

/* ============================================================
   士業会：ご参加をお断りするケース（NGボックス）
   ============================================================ */
.shigyo-ng {
  max-width: 820px; margin: 32px auto 0;
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 30px;
  background: linear-gradient(135deg, rgba(196,30,58,.06), rgba(232,89,12,.03));
  border: 1.5px solid rgba(196,30,58,.35);
  border-radius: var(--radius);
}
.shigyo-ng-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; font-size: 20px;
  box-shadow: 0 8px 20px rgba(196,30,58,.3);
}
.shigyo-ng-body h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px; color: var(--flame-a); margin: 2px 0 10px;
}
.shigyo-ng-body p { font-size: 14px; line-height: 1.85; color: var(--ink); margin: 0; }
.shigyo-ng-body strong { color: var(--flame-a); font-weight: 700; }
.shigyo-ng-note { margin-top: 10px !important; font-size: 12.5px !important; color: var(--muted) !important; }
.shigyo-ng-note strong { color: var(--muted) !important; }
@media (max-width: 600px) {
  .shigyo-ng { flex-direction: column; gap: 14px; padding: 22px 18px; }
  .shigyo-ng-body h3 { font-size: 16px; }
}

/* ============================================================
   法務系ページ（特商法 / プライバシー / キャンセルポリシー）
   ============================================================ */
.legal-page { background: var(--ivory); padding-top: 118px; }
.legal-container {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(28,25,23,.06);
}
.legal-header h1 { font-family: 'Shippori Mincho B1', serif; color: var(--ink); }
.legal-header { border-bottom: 2px solid var(--gold-dim); }
.legal-header-meta { color: var(--muted); }
.legal-section h2 {
  font-family: 'Shippori Mincho B1', serif; color: var(--ink);
  border-left: 4px solid var(--flame-b); padding-left: 12px;
}
.legal-section h3 { font-family: 'Shippori Mincho B1', serif; color: var(--ink); }
.legal-section p, .legal-section li { color: var(--muted); }
.legal-section strong { color: var(--ink); }
.legal-section a, .legal-body a { color: var(--flame-b); text-underline-offset: 2px; }
.legal-section a:hover, .legal-body a:hover { color: var(--flame-a); }
.legal-table th { background: linear-gradient(135deg,#221A14,#16110D); color: #fff; }
.legal-table td { border-color: var(--line); color: var(--muted); }
.legal-table strong { color: var(--ink); }
.cancel-fee-table th { background: linear-gradient(135deg,#221A14,#16110D); color: #fff; }
.cancel-fee-table td { border-color: var(--line); }
.cancel-fee-rate { color: var(--flame-a); font-weight: 800; }
.cancel-bank-box {
  background: linear-gradient(135deg, rgba(201,169,106,.10), rgba(201,169,106,.02));
  border: 1.5px solid var(--gold-dim); border-radius: 16px;
}
.cancel-bank-label { color: var(--flame-b); }
.cancel-bank-label i { color: var(--gold); }
.cancel-bank-info dt { color: var(--gold); }
.cancel-bank-info dd { color: var(--ink); }
.legal-back {
  color: var(--flame-b); border: 1.5px solid var(--gold); border-radius: 999px;
  background: #fff;
}
.legal-back:hover { background: var(--gold); color: #fff; }

/* ============================================================
   レスポンシブ微調整
   ============================================================ */
@media (max-width: 700px) {
  body .section-header .section-title::after { margin-top: 10px; }
  .legal-page { padding-top: 96px; }
}
