/* ============================================================
   take_003 — JVたけ様向け 新規LP
   手本 = https://money-school.xyz/seminar9/（スカイ／山本T制作・自社ドメイン）
   構成と訴求を踏襲し、コードは自前。中身は自社正本（inventory.yaml /
   messaging.md / compliance.md）から起こしている。
   2026-08-25
   ============================================================ */

:root {
  /* たけ様指定の濃緑 = 手本LPの CTA 実測値 rgb(31,79,59) */
  --green: #1F4F3B;
  --green-d: #14342A;
  --green-l: #2A6A4E;
  --gold: #C9A24A;
  --gold-l: #E3C77E;
  --ink: #1a1a1a;
  --body: #333;
  --muted: #666;
  --line: #E7E2D7;
  --cream: #FAF8F2;
  --paper: #F7F4EA;
  --mist: #EDF2F6;
  --alert: #C0392B;

  /* 50〜60代が主対象のため本文は18px を下限にする（OM29） */
  --t-base: 1.125rem;
  /* 18px */
  --t-sm: 1rem;
  /* 16px */
  --t-note: 0.8125rem;
  /* 13px 注釈の下限 */
  --t-lg: 1.375rem;
  /* 22px */
  --t-xl: 1.75rem;
  /* 28px */
  --t-2xl: 2.25rem;
  /* 36px */
  --t-3xl: 2.75rem;
  /* 44px */

  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --wrap: 720px;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--body);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: .01em;
  /* 本文は keep-all にしない。文節で折ろうとして入りきらないと break-word が発動し、
     「。」だけの行ができていた（実測）。日本語の通常の折り返し＋禁則処理に任せる。
     見出しだけ keep-all にして文節で折る。 */
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  /* 2026-08-25 auto-phrase を外した。段落組みに変えたところ、文節が丸ごと次行へ
     送られて行末に大きな空きができ「右のスペースが空きすぎて見づらい」状態になった
     （本人FB）。日本語は文字単位の折り返し＋禁則処理が標準組版で、行が埋まる。
     語中分断は禁則（line-break:strict）で許容範囲に収まることを実測で確認。 */
}

/* 2026-08-25 .quotebox p を keep-all から外した。引用をべた流しにしたところ、
   文節で折れず break-word が発動して「。」だけの行ができた（本文と同じ症状）。
   手組みの <br> を持つブロック（見出し・empathy）だけ keep-all を残す。 */
.sec-title,
.hero__title,
.hero__target,
.brandbar__t,
.card__h,
.story-h,
.gift__t,
.voice__h,
.reason__h,
.vcat,
.offer__now,
.offer__online,
.cta,
.empathy__q,
.empathy__a,
.statbox__t {
  word-break: keep-all;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.nowrap {
  white-space: nowrap;
}

/* 狭幅では nowrap を解除する（320px で行があふれるため） */
@media (max-width:374px) {

  .lead .nowrap,
  .sec-title .nowrap {
    white-space: normal;
  }
}

.wrap {
  width: min(100% - 32px, var(--wrap));
  margin-inline: auto;
}

.sec {
  padding: 44px 0;
}

.sec--cream {
  background: var(--cream);
}

.sec--paper {
  background: var(--paper);
}

.sec--mist {
  background: var(--mist);
}

.sec--green {
  background: var(--green);
  color: #fff;
}

.sec--green .sec-title {
  color: #fff;
}

/* ---------- 見出し ---------- */
.eyebrow {
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold);
}

.sec--green .eyebrow {
  color: var(--gold-l);
}

.sec-title {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: balance;
}

.sec-title b {
  color: var(--green);
}

/* 文字数が多い見出しは、36px 一律だと4行になって圧迫する（実測 h=216px）。
   前後を小さく・核だけを大きくしてジャンプ率を付け、3行に収める。 */
.title--jump {
  line-height: 1.4;
}

.title--jump .t-s {
  display: block;
  font-size: var(--t-lg);
  font-weight: 700;
  line-height: 1.55;
  color: var(--body);
}

/* 核の行が9文字以上あると t-l（39px）では 343px に入らないため、中サイズを用意する */
.title--jump .t-m {
  display: block;
  font-size: var(--t-xl);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin: 2px 0;
}

.title--jump .t-m b {
  color: var(--green);
}

/* 大きい行は8文字までを想定。44px 固定だと「資産形成の考え方」が 352px となり
   375px の本文幅343pxに入らず2行に折れた（実測）。幅に追従させる。 */
.title--jump .t-l {
  display: block;
  font-size: clamp(2.125rem, 10.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 2px 0;
}

.title--jump .t-l b {
  color: var(--green);
}

.sec--green .sec-title b {
  color: var(--gold-l);
}

/* 濃緑の面では、t-s/t-m/t-l が個別に色を持っていて .sec--green .sec-title の
   白指定を上書きしていた。面ごとに白抜きへ寄せる（本人FB 2026-08-25）。 */
.sec--green .title--jump .t-s {
  color: rgba(255, 255, 255, .88);
}

.sec--green .title--jump .t-m,
.sec--green .title--jump .t-l {
  color: #fff;
}

.sec--green .title--jump .t-m b,
.sec--green .title--jump .t-l b {
  color: var(--gold-l);
}

.sec-title .mk {
  background: linear-gradient(transparent 62%, #F4E58A 62%, #F4E58A 92%, transparent 92%);
  padding: 0 2px;
}

/* 2026-08-25 本人FB「改行でなく段落で区切る」。行内はブラウザの折り返しに任せ、
   段落間の余白でリズムを作る。余白は行間(1.9em≒34px)より広くとる。 */
.lead {
  margin: 0 0 1.5em;
  line-height: 1.9;
}

/* 段落の最終行が1〜2文字になる「泣き別れ」を避ける。ブラウザが前の行から
   文字を送って最終行を埋める（Chrome 132+ / Safari 17.5+。非対応環境では無視される）。 */
.lead,
.faq__a p,
.message p,
.reason p,
.agecard p,
.voice__b p,
.note {
  text-wrap: pretty;
}

/* 手本LPは、要所の段落を薄緑の面に載せ、全行にマーカーを引いてメリハリを作っている。
   地の文と同じ濃さで流すと読み飛ばされるため、結論の段落だけこの形にする。 */
.emph {
  margin: 0 0 18px;
  padding: 18px 16px;
  background: #EAF3EC;
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
}

.emph p {
  margin: 0;
  font-weight: 700;
  line-height: 2;
  color: var(--ink);
}

/* 1行に収めたい強調用。字間と左右余白を詰めて折り返しを防ぐ（実測で 338px < 343px） */
.mk--fit {
  letter-spacing: -.01em;
  padding: 0 1px;
}

.emph .mk {
  background: linear-gradient(transparent 60%, #F4E58A 60%, #F4E58A 94%, transparent 94%);
  padding: 0 2px;
}

.emph b {
  color: var(--green);
  font-size: 1.06em;
}

.lead--center {
  text-align: center;
}

.note {
  margin: 10px 0 0;
  font-size: var(--t-note);
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- ヘッダー ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(100% - 24px, 720px);
  margin-inline: auto;
  padding: 9px 0;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: var(--green);
  color: #fff;
  font-size: var(--t-sm);
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
}

/* ---------- 権威帯 ---------- */
.authority {
  margin: 0;
  padding: 12px 16px;
  text-align: center;
  background: linear-gradient(180deg, var(--green-d), var(--green));
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: var(--t-sm);
  line-height: 1.6;
  letter-spacing: .02em;
}

.authority b {
  color: var(--gold-l);
  font-size: 1.12em;
}

/* ---------- ファーストビュー ---------- */
.hero {
  position: relative;
  background: linear-gradient(170deg, #F4F8F5 0%, #E9F1EC 60%, #DDE9E2 100%);
  overflow: hidden;
}

.hero__in {
  position: relative;
  width: min(100% - 24px, 720px);
  margin-inline: auto;
  padding: 18px 0 0;
}

/* 2026-08-26 本人FB「写真の下部に名前を重ねた方がまとまる・余白もなくなる」→
   写真を FV の下端近くまで伸ばし、下端を透明へ抜く。従来は height:74% で
   下端が直線に切れ、その下の名前との間に空白の帯ができていた。
   マスクは「左へ抜く」「下へ抜く」の2枚を intersect で重ねている。 */
.hero__photo {
  /* 高さを伸ばした分だけ幅も広げる。object-fit:cover は箱が縦長になるほど
     横を切り詰めて寄るため、幅を戻さないと顔だけのアップになる（実測） */
  position: absolute;
  right: -12%;
  top: 2%;
  width: 70%;
  height: 96%;
  object-fit: cover;
  object-position: 56% 12%;
  mask-image: linear-gradient(to left, #000 62%, transparent 100%),
    linear-gradient(to top, transparent 4%, #000 30%);
  -webkit-mask-image: linear-gradient(to left, #000 62%, transparent 100%),
    linear-gradient(to top, transparent 4%, #000 30%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 78%;
}

.hero__target {
  display: inline-block;
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--green-d);
  line-height: 1.5;
}

.hero__title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: var(--t-3xl);
  line-height: 1.28;
  letter-spacing: .01em;
}

.hero__title b {
  color: var(--green);
}

.hero__lead {
  margin: 0 0 16px;
  font-size: var(--t-sm);
  line-height: 1.85;
  font-weight: 700;
  color: var(--body);
}

.hero__lead b {
  color: var(--green);
}

/* 2026-08-25 本人指示: 名前を大きく上段へ、肩書き2行はその下に左揃え。
   写真の下は元々あいているので、縦に伸ばして使う。
   2026-08-26 本人FB「名前とプロフィールの領域が別物感あって、馴染んでいない」→
   白の角丸ボックスを撤去。このLPは角丸・影をほぼ使わず罫線で組んでおり、
   FV に白カードは他に1つもなかったため浮いていた。地は背景のまま、
   FV左上の .hero__target と同じ金の罫線でまとめ、FV内で罫線が対角に2本
   （左上＝対象／右下＝話者）呼応する形にする。 */
.hero__name {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 0 0 0 auto;
  padding: 9px 0 0;
  border-top: 2px solid var(--gold);
  /* 写真の上に重なるため --muted(#666) では小さい文字のコントラストが心もとない。
     実測 4.76 → 濃くして 7 以上を確保する（本文より弱く見せる役割は保つ） */
  font-size: var(--t-note);
  line-height: 1.6;
  color: #3D3D3D;
  font-weight: 500;
  text-align: left;
}

.hero__name b {
  display: block;
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 2.35em;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .08em;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__name span {
  display: block;
}

/* リード文の最終行と金罫線が重ならない位置に置く（実測: lead 下端 545px / 罫線 561px） */
.hero__foot {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 0 16px;
}

/* セミナー名バー */
.brandbar {
  padding: 14px 16px;
  text-align: center;
  background: #fff;
  border-top: 3px double var(--gold);
  border-bottom: 3px double var(--gold);
}

.brandbar__t {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  /* 10文字を1行に収める。320px の本文幅288pxで 28px が上限（実測） */
  font-size: clamp(1.75rem, 8.6vw, 2.25rem);
  color: var(--green-d);
  letter-spacing: .02em;
  line-height: 1.35;
}

.brandbar__s {
  display: block;
  font-size: .5em;
  letter-spacing: .2em;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 800;
  margin-top: 4px;
}

/* 対象を示す写真2枚（文言は画像に焼き込み済み） */
.bands {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  background: #fff;
}

.bands img {
  width: min(100% - 24px, 720px);
  margin-inline: auto;
  border-radius: 10px;
}

/* ---------- CTA ---------- */
/* 2026-08-26 本人FB「ボタン周辺もmarginしっかり」→ 上下28pxで統一。
   従来は HTML 側の inline style で1箇所ずつ調整しており、ボタンごとに余白が違っていた。 */
.ctablock {
  width: 100%;
  margin: 0 auto;
  padding: 28px 0;
  text-align: center;
}

/* --tight は枠の内側に置くCTA用（空席ボックス内） */
.ctablock--tight {
  padding: 4px 0 0;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  min-height: 66px;
  padding: 35px 66px 35px 20px;
  position: relative;
  background: linear-gradient(180deg, var(--green-l) 0%, var(--green) 55%, var(--green-d) 100%);
  color: #fff;
  font-size: clamp(0.9375rem, 4.5vw, var(--t-lg));
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  border: 1px solid #123024;
  border-radius: 999px;
  box-shadow: 0 5px 0 #0E2A1F, 0 14px 24px rgba(31, 79, 59, .3);
  transition: filter 0.3s ease;;
}
.cta span{
  font-size: clamp(2rem, 7.8vw, var(--t-2xl));
}

.cta::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 40px;
  height: 40px;
  background: var(--green-d);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cta::after {
  content: "";
  position: absolute;
  right: 31px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.cta small {
  font-size: var(--t-note);
  font-weight: 700;
  opacity: .92;
}

.cta:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #0E2A1F;
}

.cta:hover{
  filter: brightness(1.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #0E2A1F, 0 16px 26px rgba(31, 79, 59, .3);
}

.cta-kicker {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--green-d);
  font-size: var(--t-sm);
}

.sec--green .cta-kicker {
  color: var(--gold-l);
}

.cta-micro {
  margin: 10px 0 0;
  font-size: var(--t-note);
  color: var(--muted);
}

.sec--green .cta-micro {
  color: rgba(255, 255, 255, .8);
}

/* ---------- 参加費・開催方法 ---------- */
.offer {
  /* 2026-08-26 本人FB: 下マージン0で緑ブロックが密着していたため 32px を確保 */
  width: min(100% - 24px, var(--wrap));
  margin: 20px auto 32px;
  background: #FFFDF7;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 14px 12px;
  box-shadow: 0 6px 18px rgba(31, 79, 59, .1);
}

.offer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.offer__label {
  margin: 0;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: var(--t-sm);
  line-height: 1;
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: .04em;
}

.offer__val {
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* 2026-08-27 本人FB: 「5,000円 ▶ 今だけ無料」は必ず1行に並べる（折り返し禁止）。
   375px でも収まるよう文字サイズは幅連動にしている。 */
.offer__val--price {
  flex-wrap: nowrap;
  gap: 6px;
}

.offer__was {
  color: #8a8a8a;
  font-size: var(--t-lg);
  font-weight: 700;
  text-decoration-thickness: 2px;
  white-space: nowrap;
}

.offer__arrow {
  color: var(--gold);
  font-size: var(--t-sm);
}

/* 2026-08-27 本人FB: 赤字 → 緑＋黄色マーカー */
.offer__now {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  font-size: clamp(1.75rem, 7.2vw, 2.25rem);
  background: linear-gradient(transparent 62%, #F4E58A 62%, #F4E58A 94%, transparent 94%);
  padding: 0 3px;
}

.offer__online {
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.offer__sub {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--body);
}

.offer__sep {
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(90deg, transparent, #E2D7B8 20%, #E2D7B8 80%, transparent);
}

.offer__note {
  margin: 12px 0 0;
  text-align: center;
  font-size: var(--t-note);
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- 寄り添いブロック ---------- */
.empathy {
  padding: 30px 0;
}

.empathy__q {
  width: min(100% - 24px, var(--wrap));
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 700;
  line-height: 1.95;
}

.empathy__q b {
  display: block;
  margin-top: 6px;
  color: var(--green-l);
  font-size: 1.12em;
}

.empathy__a {
  width: min(100% - 24px, var(--wrap));
  margin: 18px auto 0;
  text-align: center;
  font-size: var(--t-sm);
  font-weight: 700;
  line-height: 1.9;
}

.empathy__a b {
  color: var(--green-l);
  font-size: 1.08em;
}

/* ---------- 参加特典 ---------- */
/* 特典カード。見せ方は front_006 と同じ「横長カード＋右に商品ビジュアル」。
   2×2のアイコングリッドから差し替えた（2026-08-25 本人指摘）。 */
.gifts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gift {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(31, 79, 59, .06);
}

.gift:last-child {
  margin-bottom: 0;
}

.gift__no {
  flex: none;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 700;
}

.gift__t {
  margin: 0;
  font-size: clamp(1.0625rem, 4vw, 1.25rem);
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
}

.gift__v {
  flex: none;
  display: block;
}

/* 横長・縦長が混在するため高さで揃える（幅で揃えると書影だけ大きく見える） */
.gift__v img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .18));
}

.gift__v--tall img {
  height: 72px;
}

/* ---------- 申込状況 ---------- */
.seats {
  width: min(100% - 24px, var(--wrap));
  margin: 0 auto 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  /* 2026-08-27 4列化に伴い左右パディングを 14px → 8px（375px で表内幅 335px を確保） */
  padding: 16px 8px 12px;
  box-shadow: 0 4px 14px rgba(31, 79, 59, .07);
}

.seats__lead {
  margin: 0 0 12px;
  text-align: center;
  font-weight: 900;
  color: var(--ink);
  font-size: var(--t-sm);
  line-height: 1.5;
}

/* スマホ幅で語の途中が折れる箇所だけ、明示的に折る位置を指定する（2026-08-27 本人FB）。
   幅に余裕がある600px以上では改行を消して1行に戻す。
   対象: 申込状況のリード文 / チェックリスト「ニュースやチャートを〜」/ サクソバンクのキャプション */
@media (min-width:600px) {
  .sp-br {
    display: none;
  }
}

/* 手本LPと同じ4列（開催日/時間/定員/予約）。手本は 12.8px・ボタン 10.24px だが、
   50〜60代が主対象のため文字は 14px、ボタンは高さ44pxを確保して組み直している。 */
.seats table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  table-layout: fixed;
}

.seats th {
  background: var(--green);
  color: #fff;
  font-weight: 800;
  padding: 9px 4px;
  font-size: 0.875rem;
}

.seats th:nth-child(1) {
  width: 27%;
}

.seats th:nth-child(2) {
  width: 23%;
}

.seats th:nth-child(3) {
  width: 21%;
}

.seats th:nth-child(4) {
  width: 29%;
}

.seats td {
  border-bottom: 1px solid var(--line);
  padding: 8px 4px;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.seats tr:last-child td {
  border-bottom: 0;
}

/* 開催日当日を過ぎた行を js/main.js が自動で隠す（data-hide-date 参照） */
.seats tr.is-past {
  display: none;
}

/* is-past で隠した結果、実際に最後に見えている行の下線を消す（:last-child は
   DOM上の最後尾を見るだけで非表示行を無視しないため、js 側で付け替える） */
.seats tr.is-last-visible td {
  border-bottom: 0;
}

.seats__d {
  color: var(--ink);
}

.seats__h {
  color: var(--body);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.seats__full {
  display: block;
  color: #9a9a9a;
  font-weight: 900;
  line-height: 1.35;
}

.seats__few {
  display: block;
  color: var(--alert);
  font-weight: 900;
}

.seats__closed {
  display: block;
  color: #a8a8a8;
  font-weight: 800;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* 予約ボタン: タップターゲット44px（OM 規律）。押した日程は下の申込フォームへ自動で入る。 */
.seats__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 6px 4px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--green-l) 0%, var(--green) 100%);
  border: 1px solid #123024;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 3px 0 #0E2A1F;
}

.seats__btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #0E2A1F;
}

/* 自動反映されたことが分かるよう、希望日時セレクトを一瞬だけ強調する */
.is-dt-flash {
  animation: dtflash 1.6s ease-out 1;
}

@keyframes dtflash {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(31, 79, 59, 0);
  }

  15%,
  60% {
    box-shadow: 0 0 0 4px rgba(201, 162, 74, .55);
  }
}

/* ---------- カード・リスト ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(31, 79, 59, .05);
}

.card:last-child {
  margin-bottom: 0;
}

.card__h {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--green-d);
  line-height: 1.5;
}

.card p {
  margin: 0 0 10px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card b {
  color: var(--green);
}

.worry {
  margin: 0;
  padding: 0;
  list-style: none;
}

.worry li {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 14px 12px 14px 42px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--ink);
}

.worry li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 1.05em;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 4px;
}

.worry li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.15em;
  width: 11px;
  height: 6px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

.worry .mk {
  background: linear-gradient(transparent 62%, #F4E58A 62%, #F4E58A 92%, transparent 92%);
}

.benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: b;
}

.benefits li {
  padding: 14px 16px 16px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 0 0 8px 8px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--body);
}

.benefits li::before {
  counter-increment: b;
  content: counter(b, decimal-leading-zero);
  display: block;
  margin: 0 0 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.55em;
  font-weight: 700;
  letter-spacing: .1em;
}

/* ---------- 実績 ---------- */
.facts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px dashed var(--line);
  font-size: var(--t-sm);
  line-height: 1.7;
}

.facts li:last-child {
  border-bottom: 0;
}

.facts li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.15em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.facts b {
  color: var(--green);
}

.facts .fnote {
  display: block;
  font-size: var(--t-note);
  color: var(--muted);
  font-weight: 500;
}

.mediagrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mediagrid figure {
  margin: 0;
}

.mediagrid img {
  border-radius: 8px;
  border: 1px solid var(--line);
}

.mediagrid figcaption {
  margin-top: 6px;
  font-size: var(--t-note);
  color: var(--muted);
  text-align: center;
}

.mediagrid--wide {
  grid-template-columns: 1fr;
}

/* ---------- 受講生の声 ---------- */
.voice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(31, 79, 59, .05);
}

.voice__h {
  margin: 0;
  padding: 12px 14px;
  background: var(--green);
  color: #fff;
  font-size: var(--t-sm);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.voice__b {
  padding: 14px;
}

.voice__p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.voice__p img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.voice__n {
  margin: 0;
  font-size: var(--t-sm);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
}

.voice__a {
  margin: 2px 0 0;
  font-size: var(--t-note);
  color: var(--muted);
  line-height: 1.5;
}

.voice__t {
  margin: 0 0 8px;
  line-height: 1.8;
}

.voice__t .mk {
  background: linear-gradient(transparent 62%, #F4E58A 62%, #F4E58A 92%, transparent 92%);
}

.voice__note {
  margin: 0;
  font-size: var(--t-note);
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- 理由 ---------- */
.reason {
  margin-bottom: 18px;
}

.reason:last-child {
  margin-bottom: 0;
}

.reason img {
  border-radius: 10px;
  margin-bottom: 20px;
}

.reason__n {
  display: inline-block;
  margin: 0 0 6px;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--gold);
  color: #fff;
  font-size: var(--t-note);
  font-weight: 900;
  letter-spacing: .1em;
}

.reason__h {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--green-d);
  line-height: 1.5;
}

.reason p {
  margin: 0;
  line-height: 1.85;
}

/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 15px 46px 15px 46px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.65;
  min-height: 44px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "Q";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: var(--t-note);
  font-weight: 700;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform .2s;
}

.faq[open] summary::after {
  transform: rotate(-135deg);
}

.faq__a {
  padding: 0 16px 16px 46px;
  line-height: 1.85;
}

.faq__a p {
  margin: 0;
}

/* ---------- 代表メッセージ ---------- */
.message p {
  margin: 0 0 14px;
  line-height: 1.95;
}

.message .mk {
  background: linear-gradient(transparent 62%, #F4E58A 62%, #F4E58A 92%, transparent 92%);
  padding: 0 2px;
}

.message b {
  color: var(--green);
}

.message p:last-of-type {
  margin-bottom: 0;
}

.sign {
  margin-top: 18px;
  text-align: right;
}

.sign img {
  width: 150px;
  margin-left: auto;
}

.sign span {
  display: block;
  margin-top: 6px;
  font-size: var(--t-note);
  color: var(--muted);
  font-weight: 700;
}

/* ---------- 申込フォーム ---------- */
.formbox {
  width: min(100% - 24px, var(--wrap));
  margin-inline: auto;
}

.formbox .regist_form {
  background: #fff;
  border-radius: var(--radius);
}

/* 2026-08-27 本人FB: マイスピー既定の送信ボタンがオレンジで、
   LP内の CTA（濃緑）と色が割れていた。緑へ統一する。
   マイスピー側 CSS が後読みかつ詳細度が高いため !important で上書きする。 */
.formbox .regist_form input[type="submit"],
.formbox .regist_form .submit input[type="submit"] {
  background: linear-gradient(180deg, var(--green-l) 0%, var(--green) 55%, var(--green-d) 100%) !important;
  background-color: var(--green) !important;
  border: 1px solid #123024 !important;
  color: #fff !important;
  box-shadow: 0 5px 0 #0E2A1F, 0 14px 24px rgba(31, 79, 59, .3) !important;
}

.formbox .regist_form input[type="submit"]:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #0E2A1F !important;
}

.form-privacy {
  margin: 12px 0 0;
  font-size: var(--t-note);
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

/* ---------- 免責 ---------- */
/* 2026-08-25 ぶら下げインデントをやめた。行頭に記号が無いため、2行目以降だけが
   字下げされて見え「改行が気持ち悪い」状態になっていた（本人FB）。全行を左に揃える。 */
.legal p {
  margin: 0 0 12px;
  font-size: var(--t-note);
  line-height: 1.8;
  color: var(--muted);
}

.legal p:last-child {
  margin-bottom: 0;
}

/* ---------- フッター ---------- */
.footer {
  background: var(--green-d);
  color: #fff;
  padding: 26px 16px 30px;
  text-align: center;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 14px;
}

.footer__nav a {
  font-size: var(--t-note);
  color: #fff;
  text-decoration: underline;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer p {
  margin: 0;
  font-size: var(--t-note);
  color: rgba(255, 255, 255, .75);
}

/* ---------- 追従CTA ---------- */
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .1);
  backdrop-filter: blur(6px);
  transition: transform .25s ease;
  justify-content: center;
}

.sticky[hidden] {
  display: none;
}

.sticky.is-off {
  transform: translateY(120%);
}

.sticky__t {
  flex: 1;
  font-size: var(--t-note);
  font-weight: 800;
  color: var(--green-d);
  line-height: 1.4;
}

.sticky .cta {
  width: 100%;
  max-width: var(--wrap);
  min-height: 48px;
  padding: 20px 80px 20px 58px;
  font-size: clamp(0.8125rem, 4vw, var(--t-base));
  box-shadow: 0 3px 0 #0E2A1F;
}

.sticky .cta span {
  font-size: clamp(1.5rem, 7vw, var(--t-2xl));
}

.sticky .cta::before {
  right: 18px;
}

.sticky .cta::after {
  right: 35px;
}

body {
  padding-bottom: 155px;
}

/* ---------- 狭幅の調整 ---------- */
@media (max-width:374px) {
  :root {
    --t-3xl: 2.375rem;
    --t-2xl: 2rem;
  }

  .hero__copy {
    max-width: 82%;
  }

  .hero__photo {
    right: -20%;
  }
}

@media (min-width:600px) {
  :root {
    --t-3xl: 3.25rem;
  }

  .hero__photo {
    max-width: 380px;
    right: -2%;
  }
}

/* ============================================================
   希望LP（seminar9）の構成に合わせて追加したブロック  2026-08-25
   ============================================================ */

/* 躊躇の列挙（ASSET BUILDING 冒頭） */
.checks {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding: 12px 12px 12px 40px;
  margin-bottom: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
}

.checks li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 1.15em;
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

/* 否定の列挙（無責任な話） */
.crosses {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.crosses li {
  position: relative;
  padding: 11px 12px 11px 40px;
  margin-bottom: 8px;
  background: #F6F1F1;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--muted);
}

.crosses li::before,
.crosses li::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 1.35em;
  width: 15px;
  height: 2.5px;
  background: var(--alert);
  border-radius: 2px;
}

.crosses li::before {
  transform: rotate(45deg);
}

.crosses li::after {
  transform: rotate(-45deg);
}

/* 引用調のブロック（自分で口座を開く／不安の独白） */
.quotebox {
  margin: 0 0 18px;
  padding: 18px 16px;
  background: var(--paper);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
}

.quotebox p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.9;
  color: var(--ink);
}

.quotebox p b {
  color: var(--green);
}

.quotebox--plain {
  background: #fff;
  border-left-color: var(--gold);
}

.quotebox--plain p {
  font-size: var(--t-base);
}

/* 一人称ストーリーの小見出し */
.story-h {
  margin: 30px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 700;
  line-height: 1.5;
  color: var(--green-d);
}

/* 図版 */
.figfull {
  margin: 0 0 18px;
}

.figfull img {
  width: 100%;
  border-radius: 10px;
}

/* 講師紹介の顔写真。手本LPと同じく「名前 → 顔写真」の順に置く */
.profile {
  margin: 0 0 16px;
  text-align: center;
}

.profile__role {
  margin: 0;
  font-size: var(--t-sm);
  font-weight: 800;
  color: var(--body);
  line-height: 1.6;
}

.profile__name {
  margin: 2px 0 4px;
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .08em;
  line-height: 1.3;
}

.profile__en {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-note);
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--gold);
  margin-top: 2px;
}

.profile img {
  width: 100%;
  margin-top: 12px;
  border-radius: 10px;
}

.figfull figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: var(--t-note);
  color: var(--muted);
}

/* 情報格差の数値ボックス */
.statbox {
  margin: 20px 0;
  padding: 18px 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
}

.statbox__t {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1.5;
}

.statbox__b {
  margin: 0 0 16px;
  font-size: var(--t-sm);
  line-height: 1.85;
  color: #fff;
}

.statbox__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.statbox__n {
  display: block;
  font-family: var(--serif);
  font-size: var(--t-3xl);
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1.15;
}

.statbox__n small {
  font-size: .5em;
  margin-left: 2px;
}

.statbox__l {
  display: block;
  margin-top: 6px;
  font-size: var(--t-note);
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
}

.statbox__note {
  margin: 14px 0 0;
  font-size: var(--t-note);
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

/* 年代別カード（FREE ENTRY） */
.agecards {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.agecard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(31, 79, 59, .05);
}

.agecard img {
  width: 100%;
}

.agecard p {
  margin: 0;
  padding: 14px;
  line-height: 1.85;
}

.agecard p b {
  color: var(--green);
}

/* 受講生の声のカテゴリ見出し */
.vcat {
  margin: 26px 0 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: var(--t-sm);
  font-weight: 800;
}

.vcat:first-of-type {
  margin-top: 18px;
}

/* 本文中の注記（期間注記など） */
.fnote {
  display: block;
  font-size: var(--t-note);
  color: var(--muted);
  font-weight: 500;
}

.sec--green .fnote {
  color: rgba(255, 255, 255, .75);
}

.lead .mk,
.agecard .mk {
  background: linear-gradient(transparent 62%, #F4E58A 62%, #F4E58A 92%, transparent 92%);
  padding: 0 2px;
}

.sec--green .lead b {
  color: var(--gold-l);
}


@media (max-width:600px) {
  #UserEventDatetime{
    font-size: clamp(14.5px, 12.84px + 0.35vw, 16px) !important;
  }
  #vc-form-wrap .content_form{
    padding: 20px 10px !important;
  }
  #vc-form-wrap .input_unit{
  width: 100%;
  }
  #vc-form-wrap .my_column{
  padding-left: 0;
  padding-right: 0;
  }
}
