@charset "UTF-8";

/* ============================================================
   ライブ説明会 詳細LP（/corp/seminar/live/）専用
   読み込み: functions.php の $css_slug（親slug=seminar × slug=live）で自動読込
             → header.php が assets/css/seminar/live/live.css を <link>
   接頭辞 .smnl- でこのページ内に閉じる（親LPの seminar.css とは独立。
   1ページ1CSSの規約のため、必要なコンポーネントはここに複製してある）
   本文HTMLは WPページ本文（slug=live）側に置く
   デザイントークンは親LP（/corp/seminar/）と共通
   ============================================================ */

.smnl {
  --smnl-navy: #003366;
  --smnl-navy-deep: #002444;
  --smnl-blue: #0a60b6;
  --smnl-amber: #fdb332;
  --smnl-amber-deep: #b56f00;
  --smnl-green: #1f7a54;
  --smnl-cream: #fff6e8;
  --smnl-cream-soft: #fffaf0;   /* 日程セクションの地色 */
  --smnl-cream-line: #f0e3c9;   /* クリーム地の上の罫線 */
  --smnl-bg: #f4f7fa;
  --smnl-line: #e2e9f1;
  --smnl-text: #243240;
  --smnl-muted: #5f7186;
  --smnl-radius: 4px; /* ピル型(999px)以外の角丸はすべてこれ */

  color: var(--smnl-text);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  overflow: clip;
}

/* :where() で詳細度ゼロのリセット。後続のクラス指定マージンを殺さない */
.smnl :where(p),
.smnl :where(ul),
.smnl :where(ol),
.smnl :where(li),
.smnl :where(dl),
.smnl :where(dt),
.smnl :where(dd),
.smnl :where(h1),
.smnl :where(h2),
.smnl :where(h3),
.smnl :where(figure) {
  margin: 0;
  padding: 0;
}
.smnl :where(ul),
.smnl :where(ol) { list-style: none; }
/* base.css の「ol li{list-style:decimal}」(要素セレクタ)を確実に打ち消す。
   display:flex/grid にした li はマーカーが消えるが、素の li（steps等）に数字が出るため */
.smnl li { list-style: none; }
.smnl img { max-width: 100%; height: auto; vertical-align: bottom; }
.smnl i { font-style: normal; }

/* 改行制御: .smnl-br-sp は SP のみ、.smnl-br-pc は PC のみ効かせる */
.smnl-br-sp { display: none; }

/* ---------- このページだけ 固定要素を整理する（親LPと同じ扱い） ----------
   live.css は slug=live のときしか読まれないので body クラスでの絞り込みは不要 */

/* 1) 資料DLバナー … 申込CTAと競合するため全幅で非表示 */
.fixed-bnr { display: none !important; }

/* 2) 新規会員登録タブ … 本文コンテナと重なり始める 1220px 以下でのみ非表示 */
@media screen and (max-width: 1220px) {
  .l-side_cbtn_list_wrap { display: none !important; }
}

/* ---------- 共通レイアウト ---------- */

.smnl-section {
  padding: clamp(56px, 8vw, 96px) 24px;
  background: #fff;
  /* 固定ヘッダー分のアンカーオフセット（JS無効でも見出しが潜り込まない保険） */
  scroll-margin-top: clamp(72px, 10vw, 120px);
}
.smnl-section--tint { background: var(--smnl-bg); }
.smnl-section--navy {
  background: linear-gradient(135deg, var(--smnl-navy) 0%, var(--smnl-navy-deep) 100%);
  color: #fff;
}
.smnl-section--cream {
  background: var(--smnl-cream-soft);
  border-top: 1px solid var(--smnl-cream-line);
  border-bottom: 1px solid var(--smnl-cream-line);
}
.smnl-container { max-width: 1080px; margin: 0 auto; }

.smnl-sechead { text-align: center; }
.smnl-sechead__title {
  color: var(--smnl-navy);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
}
.smnl-section--navy .smnl-sechead__title { color: #fff; }
.smnl-sechead__lead {
  margin-top: clamp(16px, 2.4vw, 22px);
  font-size: clamp(14.5px, 2.1vw, 16px);
}
.smnl-section--navy .smnl-sechead__lead { color: rgba(255, 255, 255, 0.88); }

.smnl-mark {
  background: linear-gradient(transparent 62%, #ffe1a8 62%);
  padding: 0 2px;
}

.smnl-note {
  margin-top: clamp(24px, 3.2vw, 30px);
  color: var(--smnl-muted);
  font-size: 13px;
  text-align: center;
}

/* ============================================================
   ボタン
   ============================================================ */

.smnl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.smnl-btn__arrow { width: 17px; height: 17px; flex: none; }

.smnl-btn--primary {
  background: var(--smnl-amber);
  color: #23303d;
  box-shadow: 0 4px 14px rgba(253, 179, 50, 0.32);
}
.smnl-btn--primary:hover,
.smnl-btn--primary:focus-visible {
  background: #ffc35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 179, 50, 0.38);
}

.smnl-btn--ghost {
  background: #fff;
  border-color: var(--smnl-navy);
  color: var(--smnl-navy);
}
.smnl-btn--ghost:hover,
.smnl-btn--ghost:focus-visible {
  background: var(--smnl-navy);
  color: #fff;
  transform: translateY(-2px);
}

.smnl-btn--lg {
  width: auto;
  min-width: 360px;
  min-height: 66px;
  font-size: clamp(15px, 2.2vw, 17px);
}

/* ============================================================
   カレンダーチップ（FVパネルと日程カードで共用）
   ※ 残席ステータスバッジは運用負担のため廃止（2026-08-04）
   ============================================================ */

.smnl-cal {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 86px;
  padding-bottom: 6px;
  border: 1px solid var(--smnl-amber);
  border-radius: var(--smnl-radius);
  background: #fff;
  overflow: hidden;
  line-height: 1;
}
.smnl-cal__month {
  width: 100%;
  padding: 5px 0;
  background: var(--smnl-amber);
  color: #23303d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.smnl-cal__day {
  margin-top: 8px;
  color: var(--smnl-navy);
  font-size: 27px;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}
.smnl-cal__wd {
  margin-top: 6px;
  color: var(--smnl-muted);
  font-size: 11px;
  font-weight: 500;
}

/* ============================================================
   1. ファーストビュー
   ============================================================ */

.smnl-hero {
  /* position は指定しない。指定すると絶対配置のパンくず(.l-breadcrumb_wrap)より
     後ろのポジション要素になり、パンくずがヒーロー背景の下に隠れる（親LPで実証済み） */
  background: linear-gradient(150deg, #f6f8fb 0%, #edf3f9 100%);
}
.smnl-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  /* 上パディングは重なるパンくず（約36px）を含めて確保する */
  padding: clamp(56px, 8vw, 92px) 24px clamp(44px, 6vw, 72px);
}

.smnl-hero__eyebrow {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--smnl-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.smnl-hero__title {
  margin-top: 20px;
  color: var(--smnl-navy);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.smnl-hero__lead {
  margin-top: clamp(18px, 2.6vw, 26px);
  font-size: clamp(14.5px, 2vw, 16.5px);
  line-height: 1.95;
}

.smnl-hero__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(20px, 2.8vw, 26px);
}
.smnl-hero__badge li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--smnl-line);
  color: var(--smnl-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 1px 5px rgba(36, 50, 64, 0.06);
}
.smnl-hero__badge svg { width: 14px; height: 14px; flex: none; color: var(--smnl-amber-deep); }

/* ---------- 次回開催パネル ---------- */

.smnl-hero__panel {
  padding: clamp(22px, 2.8vw, 28px);
  background: #fff;
  border: 1px solid var(--smnl-line);
  border-top: 3px solid var(--smnl-amber);
  border-radius: var(--smnl-radius);
  box-shadow: 0 12px 30px rgba(0, 51, 102, 0.1);
}
.smnl-panel__label {
  color: var(--smnl-amber-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.smnl-panel__date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}
.smnl-panel__ymd {
  color: var(--smnl-navy);
  font-size: clamp(19px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}
.smnl-panel__year {
  margin-right: 2px;
  font-size: 0.72em;
}
.smnl-panel__time {
  margin-top: 3px;
  font-size: clamp(14px, 2vw, 15.5px);
  font-weight: 700;
  line-height: 1.6;
}
.smnl-panel__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* サイト全体が min-width:1320px（base.css）のため、768〜1319px のビューポートは
   横スクロールになり、キャンバス右端に置いた申込パネルが初期表示で見切れる。
   このLPは FV のパネルが主要CTAなので、その帯域では1カラムに畳んで可視域に収める */
@media screen and (min-width: 768px) and (max-width: 1235px) {
  .smnl-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .smnl-hero__body { max-width: 720px; }
  .smnl-hero__panel { width: 100%; max-width: 480px; }
}

/* ---------- 少人数開催の帯 ---------- */

.smnl-strip {
  padding: clamp(14px, 2vw, 18px) 24px;
  background: var(--smnl-cream);
  border-top: 1px solid #f3e2c6;
  border-bottom: 1px solid #f3e2c6;
}
.smnl-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto;
}
.smnl-strip svg { width: 20px; height: 20px; flex: none; color: var(--smnl-amber-deep); }
.smnl-strip__text {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
}
.smnl-strip__text strong { color: var(--smnl-navy); }

/* ============================================================
   2. 課題への共感
   ============================================================ */

.smnl-problem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 20px);
  max-width: 880px;
  margin: clamp(30px, 4vw, 40px) auto 0;
}
.smnl-problem__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 24px) clamp(18px, 2.6vw, 26px);
  background: var(--smnl-bg);
  border: 1px solid var(--smnl-line);
  border-radius: var(--smnl-radius);
}
.smnl-problem__item svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 3px;
  color: var(--smnl-blue);
}
.smnl-problem__item p {
  color: var(--smnl-navy);
  font-size: clamp(14.5px, 2vw, 16px);
  font-weight: 700;
  line-height: 1.7;
}
.smnl-problem__bridge {
  margin-top: clamp(28px, 3.6vw, 36px);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 700;
  color: var(--smnl-navy);
  text-align: center;
}

/* ============================================================
   3. 説明会で分かること（ネイビー反転）＋参加後に目指す状態
   ============================================================ */

.smnl-learn {
  max-width: 820px;
  margin: clamp(30px, 4.2vw, 42px) auto 0;
}
.smnl-learn__item {
  display: flex;
  gap: 18px;
  padding: clamp(20px, 2.8vw, 26px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--smnl-radius);
}
.smnl-learn__item + .smnl-learn__item { margin-top: 14px; }
.smnl-learn__no {
  flex: none;
  color: var(--smnl-amber);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}
.smnl-learn__title {
  color: #fff;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  line-height: 1.6;
}
.smnl-learn__text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13.5px, 1.9vw, 15px);
  line-height: 1.85;
}

.smnl-goal {
  max-width: 820px;
  margin: clamp(28px, 3.8vw, 36px) auto 0;
  padding: clamp(26px, 3.6vw, 38px) clamp(20px, 3vw, 36px);
  background: #fff;
  border-radius: var(--smnl-radius);
  text-align: center;
}
.smnl-goal__label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: #fff5e2;
  color: var(--smnl-amber-deep);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
}
.smnl-goal__title {
  margin-top: 14px;
  color: var(--smnl-navy);
  font-size: clamp(18px, 2.7vw, 24px);
  font-weight: 700;
  line-height: 1.65;
}
.smnl-goal__text {
  margin-top: 12px;
  font-size: clamp(13.5px, 1.9vw, 15px);
}

/* ============================================================
   4. 当日のプログラム（時間軸）
   ============================================================ */

.smnl-program {
  max-width: 800px;
  margin: clamp(30px, 4.2vw, 42px) auto 0;
}
.smnl-program__item {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px 22px;
  padding-bottom: clamp(22px, 3vw, 30px);
}
.smnl-program__item:last-child { padding-bottom: 0; }
/* 時間チップ同士をつなぐ縦線。チップの背面を通す */
.smnl-program__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: -6px;
  left: 48px;
  width: 2px;
  background: var(--smnl-line);
}
.smnl-program__time {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 96px;
  height: 34px;
  border-radius: 999px;
  background: var(--smnl-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
.smnl-program__time i {
  font-size: 11px;
  font-weight: 500;
}
.smnl-program__body { padding-top: 3px; }
.smnl-program__title {
  color: var(--smnl-navy);
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  line-height: 1.6;
}
.smnl-program__text {
  margin-top: 6px;
  font-size: clamp(13.5px, 1.9vw, 15px);
  line-height: 1.85;
}

/* ============================================================
   5. こんな方におすすめ
   ============================================================ */

.smnl-check {
  max-width: 680px;
  margin: clamp(30px, 4vw, 40px) auto 0;
}
.smnl-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid var(--smnl-line);
  border-radius: var(--smnl-radius);
  font-size: clamp(14.5px, 2vw, 16px);
  font-weight: 500;
  line-height: 1.75;
}
.smnl-check li + li { margin-top: 10px; }
.smnl-check svg {
  width: 21px;
  height: 21px;
  flex: none;
  margin-top: 4px;
  color: var(--smnl-green);
}

.smnl-welcome {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 680px;
  margin: clamp(22px, 3vw, 28px) auto 0;
  padding: 14px 20px;
  background: var(--smnl-cream);
  border: 1px solid #f3e2c6;
  border-radius: var(--smnl-radius);
  font-size: clamp(13.5px, 1.9vw, 15px);
  font-weight: 500;
  line-height: 1.8;
}
.smnl-welcome svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 4px;
  color: var(--smnl-amber-deep);
}

/* ============================================================
   6. 説明会の担当者
   ============================================================ */

.smnl-speaker {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-top: clamp(30px, 4.2vw, 42px);
}
.smnl-speaker__media {
  border-radius: var(--smnl-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(17, 49, 81, 0.12);
}
.smnl-speaker__caption {
  margin-top: 10px;
  color: var(--smnl-muted);
  font-size: 12px;
  line-height: 1.7;
}
.smnl-speaker__label {
  color: var(--smnl-blue);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.6;
}
.smnl-speaker__quote {
  margin-top: 14px;
  color: var(--smnl-navy);
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.smnl-speaker__text {
  margin-top: clamp(16px, 2.4vw, 22px);
  font-size: clamp(14px, 2vw, 15.5px);
}
.smnl-speaker__by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(18px, 2.6vw, 24px);
  padding-top: clamp(16px, 2.2vw, 20px);
  border-top: 1px solid var(--smnl-line);
}
.smnl-speaker__face {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.smnl-speaker__by-name {
  color: var(--smnl-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.smnl-speaker__by-role {
  color: var(--smnl-muted);
  font-size: 12.5px;
  line-height: 1.6;
}

/* ============================================================
   7. 開催日程＋開催概要
   ============================================================ */

.smnl-dates {
  display: grid;
  /* カード枚数（3〜4枚）に応じて列数が自動で決まる。回の削除にレイアウト調整不要 */
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(30px, 4.2vw, 42px);
}
.smnl-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(20px, 2.6vw, 26px) clamp(16px, 2.2vw, 22px);
  background: #fff;
  border: 1px solid var(--smnl-cream-line);
  border-radius: var(--smnl-radius);
  box-shadow: 0 3px 14px rgba(122, 91, 31, 0.08);
  text-align: center;
}
.smnl-date__body { display: flex; flex-direction: column; align-items: center; }
.smnl-date__ymd {
  margin-top: 14px;
  color: var(--smnl-navy);
  /* 4枚並び（1カードあたり約250px）でも「2026年8月14日（金）」が折り返さないサイズ */
  font-size: clamp(16px, 1.7vw, 18.5px);
  font-weight: 700;
  line-height: 1.45;
}
.smnl-date__year {
  margin-right: 2px;
  font-size: 0.72em;
}
.smnl-date__time {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.smnl-date__cta {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}
.smnl-date .smnl-btn {
  min-height: 54px;
  padding: 12px 16px;
  font-size: 14.5px;
}

/* ---------- 開催概要 ---------- */

.smnl-outline {
  max-width: 880px;
  margin: clamp(36px, 5vw, 52px) auto 0;
  padding: clamp(24px, 3.4vw, 36px) clamp(20px, 3.4vw, 40px);
  background: #fff;
  border: 1px solid var(--smnl-cream-line);
  border-radius: var(--smnl-radius);
}
.smnl-outline__title,
.smnl-steps__title {
  color: var(--smnl-navy);
  font-size: clamp(17px, 2.4vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.smnl-outline__title::after,
.smnl-steps__title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--smnl-amber);
  border-radius: 2px;
}
.smnl-outline__list { margin-top: clamp(16px, 2.4vw, 22px); }
.smnl-outline__row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 4px 18px;
  padding: 13px 0;
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.8;
}
.smnl-outline__row + .smnl-outline__row { border-top: 1px dashed var(--smnl-cream-line); }
.smnl-outline__row dt {
  color: var(--smnl-navy);
  font-weight: 700;
}

/* ---------- お申し込みからの流れ ---------- */

.smnl-steps {
  max-width: 880px;
  margin: clamp(32px, 4.4vw, 44px) auto 0;
}
.smnl-steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(18px, 2.6vw, 24px);
}
.smnl-steps__list li {
  position: relative;
  padding: 20px 14px 22px;
  background: #fff;
  border: 1px solid var(--smnl-cream-line);
  border-radius: var(--smnl-radius);
  text-align: center;
}
/* カード間の矢印 */
.smnl-steps__list li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  border: 6px solid transparent;
  border-left: 8px solid #d9b96f;
  transform: translateY(-50%);
}
.smnl-steps__no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--smnl-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}
.smnl-steps__list p {
  margin-top: 10px;
  font-size: clamp(13px, 1.8vw, 14.5px);
  line-height: 1.7;
}

/* ============================================================
   8. FAQ
   ============================================================ */

.smnl-faq { max-width: 880px; margin: clamp(30px, 4.2vw, 42px) auto 0; }

.smnl-faq__item {
  background: #fff;
  border: 1px solid var(--smnl-line);
  border-radius: var(--smnl-radius);
}
.smnl-faq__item + .smnl-faq__item { margin-top: 12px; }

.smnl-faq__q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px clamp(18px, 3vw, 26px);
  color: var(--smnl-navy);
  font-size: clamp(15px, 2.1vw, 17px);
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}
.smnl-faq__q::-webkit-details-marker { display: none; }
.smnl-faq__q::before {
  content: "Q";
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--smnl-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}
.smnl-faq__q:hover { background: var(--smnl-bg); }

.smnl-faq__mark {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
  margin: 8px 0 0 auto;
}
.smnl-faq__mark::before,
.smnl-faq__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--smnl-blue);
  border-radius: 2px;
  transition: transform 0.25s;
}
.smnl-faq__mark::after { transform: rotate(90deg); }
.smnl-faq__item[open] .smnl-faq__mark::after { transform: rotate(0deg); }

.smnl-faq__a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 clamp(18px, 3vw, 26px) 22px;
  font-size: clamp(14px, 2vw, 15.5px);
}
.smnl-faq__a::before {
  content: "A";
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--smnl-amber);
  color: #23303d;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}
.smnl-faq__a p + p { margin-top: 12px; }
.smnl-faq__a a {
  color: var(--smnl-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.smnl-faq__a a:hover { text-decoration: none; }

/* ============================================================
   9. 最終CTA
   ============================================================ */

.smnl-final {
  padding: clamp(56px, 8vw, 88px) 24px;
  background: linear-gradient(135deg, var(--smnl-navy) 0%, var(--smnl-navy-deep) 100%);
  color: #fff;
  text-align: center;
}
.smnl-final__inner { max-width: 1000px; margin: 0 auto; }
.smnl-final__title {
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.smnl-final__lead {
  margin-top: 12px;
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.88);
}
.smnl-final__cta { margin-top: clamp(24px, 3.4vw, 32px); }
.smnl-final__note {
  margin-top: 16px;
  font-size: clamp(13px, 1.9vw, 14px);
  color: rgba(255, 255, 255, 0.78);
}
.smnl-final__alt {
  margin-top: clamp(18px, 2.6vw, 24px);
  font-size: clamp(13px, 1.9vw, 14.5px);
  color: rgba(255, 255, 255, 0.85);
}
.smnl-final__alt a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.smnl-final__alt a:hover { text-decoration: none; }

/* ============================================================
   SP
   ============================================================ */

@media screen and (max-width: 767px) {
  .smnl { font-size: 15px; }

  .smnl-br-sp { display: inline; }
  .smnl-br-pc { display: none; }

  /* 見出しが1文字だけ折り返さないよう、SPは少し縮めて字間を詰める */
  .smnl-hero__title {
    font-size: clamp(23px, 6.4vw, 27px);
    letter-spacing: 0;
    line-height: 1.5;
  }
  .smnl-sechead__title { letter-spacing: 0.01em; }

  .smnl-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: clamp(32px, 6vw, 40px);
  }
  .smnl-hero__panel { border-top-width: 3px; }
  .smnl-panel__cta .smnl-btn { width: 100%; }

  .smnl-strip__inner { align-items: flex-start; }
  .smnl-strip svg { margin-top: 3px; }
  .smnl-strip__text strong { display: block; }

  .smnl-problem { grid-template-columns: 1fr; }
  .smnl-problem__item { padding: 15px 16px; }
  .smnl-problem__item svg { width: 20px; height: 20px; margin-top: 2px; }

  .smnl-learn__item { gap: 13px; padding: 16px 16px 18px; }
  .smnl-learn__no { font-size: 22px; }

  .smnl-program__item { grid-template-columns: 84px minmax(0, 1fr); gap: 6px 14px; }
  .smnl-program__item:not(:last-child)::before { left: 42px; top: 28px; }
  .smnl-program__time { width: 84px; height: 30px; font-size: 12px; }
  .smnl-program__body { padding-top: 1px; }

  .smnl-check li { padding: 13px 15px; }
  .smnl-check svg { width: 19px; height: 19px; margin-top: 3px; }
  .smnl-welcome { justify-content: flex-start; }

  .smnl-speaker { grid-template-columns: 1fr; }

  .smnl-dates { grid-template-columns: 1fr; }
  .smnl-date { padding: 18px 16px 20px; }

  .smnl-outline__row { grid-template-columns: 1fr; padding: 11px 0; }

  .smnl-steps__list { grid-template-columns: 1fr; gap: 16px; }
  /* 矢印は下向きに */
  .smnl-steps__list li:not(:first-child)::before {
    top: -14px;
    left: 50%;
    border: 6px solid transparent;
    border-top: 8px solid #d9b96f;
    transform: translateX(-50%);
  }

  .smnl-btn { min-height: 56px; padding: 13px 20px; }
  .smnl-btn--lg { width: 100%; min-width: 0; }

  /* 意図的な改行はSPでも残し、レイアウト都合の改行だけ消す */
  .smnl-hero__lead br,
  .smnl-sechead__lead br { display: none; }
}

/* 動きを減らす設定の環境では transform を無効化 */
@media (prefers-reduced-motion: reduce) {
  .smnl-btn,
  .smnl-faq__mark::before,
  .smnl-faq__mark::after { transition: none; }
  .smnl-btn:hover { transform: none; }
}
