@charset "UTF-8";

/* 参考にした LP（bonz-c / marugotoinc / garoon / franz）に共通する
   「白基調 + 濃紺 + 広い余白 + カード」の路線。外部リソースは一切読まない。 */

:root {
  --navy: #0f2a44;
  --navy-soft: #1c4568;
  --ink: #1b2733;
  --muted: #5b6b7a;
  --line: #dfe6ed;
  --tint: #f3f7fa;
  --tint-warm: #fbf7f2;
  --accent: #e2632c;
  --accent-dark: #c8511d;
  --white: #fff;
  --wrap: 1080px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15, 42, 68, .06), 0 12px 32px rgba(15, 42, 68, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium",
    "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--navy-soft); }
code {
  font-family: Consolas, "SF Mono", Menlo, monospace;
  font-size: .92em;
  background: var(--tint);
  padding: .1em .35em;
  border-radius: 4px;
}

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

/* ---------------------------------------------------------------- ヘッダー */

.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}

.logo {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .04em;
}

/* ------------------------------------------------------------------ ボタン */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}

.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(226, 99, 44, .28);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover { background: var(--tint); }

.btn-small {
  padding: 9px 18px;
  font-size: 13px;
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
  white-space: nowrap;
}
.btn-small:hover { background: var(--navy-soft); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ------------------------------------------------------------ 帯とセクション */

.band, .band-tint, .band-sample, .band-dark { padding: 84px 0; }
.band { background: var(--white); }
.band-tint { background: var(--tint); }
.band-sample { background: var(--tint-warm); }
.band-dark { background: var(--navy); color: #e8eef4; }
.band-dark .sec-title, .band-dark .sec-lead { color: var(--white); }

/* セクションの英字ラベル。縦に長いページで「いまどの節か」を周辺視野に出す。
   文字を読ませるものではないので、小さく・字間を空けて・彩度は落とす。 */
.sec-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
}
.band-dark .sec-eyebrow { color: #f0a279; }

.sec-title {
  margin: 0 0 20px;
  font-size: clamp(24px, 4.2vw, 34px);
  line-height: 1.5;
  letter-spacing: .01em;
  color: var(--navy);
}
.sec-title.small { font-size: clamp(20px, 3.2vw, 26px); }

/* 見出し・リードの中の `**強調**` は、太字ではなく色で立てる。
   一様な紺一色だと長い見出しの中で目が止まる場所が無い。記法は原稿の
   `**...**` をそのまま使うので、原稿にも Docs 往復にも手を入れずに済む。 */
.sec-title strong,
.hero-title strong,
.sub-title strong { color: var(--accent); font-weight: inherit; }

/* リード文の `**強調**` は下線マーカー。見出しの色替えと役割を分ける
   （見出し＝どこを見るか、リード＝どこを読むか）。
   `.pain-close strong` は紺地の箱の中なので、既存の配色をそのまま使う。 */
.sec-lead strong {
  color: var(--navy);
  background: linear-gradient(transparent 62%, rgba(226, 99, 44, .22) 62%);
}
.band-dark .sec-lead strong { color: var(--white); background: none; }

.sub-title {
  margin: 64px 0 16px;
  font-size: clamp(19px, 3vw, 24px);
  color: var(--navy);
  line-height: 1.6;
}

.sec-lead {
  max-width: 46em;
  color: var(--muted);
  margin-bottom: 36px;
}
.band-dark .sec-lead { color: #c3d2df; }

/* ------------------------------------------------------ ファーストビュー */

.hero {
  position: relative;
  padding: 76px 0 84px;
  background:
    radial-gradient(1200px 420px at 82% -8%, rgba(226, 99, 44, .10), transparent 60%),
    linear-gradient(180deg, var(--tint) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-slim { padding: 56px 0 48px; }

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px;
  align-items: center;
}

.hero-title {
  margin: 0 0 22px;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--navy);
  font-weight: 800;
  text-wrap: balance;
}

/* 写真素材が無いので、教材そのものをファーストビューの絵にする */
.hero-visual { min-width: 0; }

.mock {
  position: relative;
  padding: 26px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mock::before, .mock::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mock::before { transform: translate(10px, 10px); opacity: .7; }
.mock::after { transform: translate(20px, 20px); opacity: .4; }

.mock-head {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
}
.mock-name {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}
.mock-parts { display: grid; gap: 10px; }
.mock-parts li { display: flex; flex-direction: column; gap: 2px; }
.mock-parts strong { font-size: 13.5px; color: var(--ink); }
.mock-parts span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.hero-lead {
  max-width: 32em;
  margin-bottom: 18px;
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 700;
  color: var(--ink);
}

.hero-sub {
  max-width: 40em;
  color: var(--muted);
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.metrics li { display: flex; flex-direction: column; gap: 4px; }
.metric-value { font-size: clamp(18px, 3vw, 26px); font-weight: 800; color: var(--navy); line-height: 1.3; }
.metric-label { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* -------------------------------------------------------------- 悩み */

.pain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.pain-card {
  display: flex;
  gap: 12px;
  padding: 24px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pain-card p { font-size: 15px; }
.pain-mark {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f7e0d6;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.pain-close {
  margin-top: 36px;
  padding: 24px 26px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.8;
}
.pain-close strong { color: #ffd7a8; }

/* ------------------------------------------------------------ 選ばれる理由 */

.reason-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.reason-card {
  position: relative;
  padding: 30px 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.reason-no {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent);
}
.reason-card h3 { margin: 0 0 12px; font-size: 18px; color: var(--navy); line-height: 1.6; }
.reason-card p { font-size: 14.5px; color: var(--muted); }

/* ---------------------------------------------------------------- サンプル */

.badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
}

.scene {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 24px;
  font-size: 14.5px;
  color: var(--muted);
}
.scene-tag {
  padding: 2px 10px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

/* 教材の誌面を模したカード（画像素材が無いので CSS で組む） */
.paper {
  margin: 0 0 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.paper-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
}
.paper-tag { font-size: 13px; font-weight: 700; }
.paper-name { font-size: 12px; color: #b6c6d6; }

.paper-body { padding: 26px 24px 28px; }
.paper-body h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
}
.paper-body h4 ~ h4 { margin-top: 26px; }

.paper-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.paper-pair .paper { margin: 0; }

.en {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink);
}
.ja { font-size: 14.5px; color: var(--muted); }

.table-scroll { overflow-x: auto; }

.vocab, .plans {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.vocab th, .vocab td, .plans th, .plans td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.vocab th { background: var(--tint); font-size: 12.5px; color: var(--navy); white-space: nowrap; }
/* 語句と意味は折り返すと読みにくいので、幅を先に確保する */
.vocab td:first-child { white-space: nowrap; }
.vocab td:nth-child(2) { min-width: 8em; }
.vocab td:nth-child(3) { min-width: 15em; }

.quiz { counter-reset: none; }
.quiz li {
  padding: 12px 0 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.quiz li:last-child { border-bottom: 0; }

.answer li {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.answer li:last-child { border-bottom: 0; }
.ans-key { font-weight: 700; color: var(--navy); font-size: 12.5px; padding-top: .2em; }
.ans-val { color: var(--ink); }

.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.compare-col {
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.compare-head {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: .04em;
}
.compare-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--muted);
}

.parts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.parts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.parts strong { font-size: 14.5px; color: var(--navy); }
.parts span { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ---------------------------------------------------------------- 手順 */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step-no {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
}
.step h3 { margin: 0 0 10px; font-size: 17px; color: var(--navy); line-height: 1.6; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------------------------------------------------------------- 声 */

.notice {
  padding: 14px 18px;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
  background: #fff5ee;
  font-size: 13.5px;
  color: var(--muted);
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.voice {
  padding: 26px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 14.5px;
}
.voice-who { margin: 14px 0 0; font-size: 13px; font-weight: 700; color: var(--navy); }

/* 掲載前だと一目で分かるようにする（実在の感想ではないため） */
.is-draft .voice {
  background: repeating-linear-gradient(135deg, #fff, #fff 12px, #f6f8fa 12px, #f6f8fa 24px);
  box-shadow: none;
  border: 1px dashed #b9c6d2;
  color: var(--muted);
}

/* ---------------------------------------------------------------- 特典 */

.bonus-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.bonus {
  padding: 26px 24px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: #fff8f4;
}
.bonus h3 { margin: 0 0 10px; font-size: 17px; color: var(--accent-dark); line-height: 1.6; }
.bonus p { font-size: 14px; color: var(--muted); }

/* ---------------------------------------------------------------- 価格 */

.band-dark .plans { color: #e8eef4; min-width: 520px; }
.band-dark .plans th {
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font-size: 12.5px;
  white-space: nowrap;
}
.band-dark .plans th, .band-dark .plans td { border-bottom-color: rgba(255, 255, 255, .16); }

.fineprint { margin-top: 18px; font-size: 13px; color: #a9bccc; }

/* ---------------------------------------------------------------- FAQ */

.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.faq summary {
  padding: 18px 46px 18px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  line-height: 1.7;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋";
  position: absolute;
  right: 20px;
  top: 18px;
  color: var(--accent);
  font-weight: 700;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.faq-body {
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------------------------------------------------------------- フッター */

.footer {
  padding: 44px 0 96px;
  background: #0a1c2e;
  color: #93a6b8;
  font-size: 13px;
}
.footer-name { color: var(--white); font-weight: 700; font-size: 14px; }
.footer-note { max-width: 46em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 12px; }

/* ------------------------------------------------------------ 固定 CTA */

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(15, 42, 68, .1);
}
.sticky[hidden] { display: none; }
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sticky-text { font-size: 13px; color: var(--muted); }
.sticky .btn { padding: 12px 24px; font-size: 15px; }

/* -------------------------------------------------- 中盤の CTA（サンプルページ） */

/* 本編を読み終えた直後に置く受け皿。帯の色を前後と変えて、
   読み流していても「ここで一区切り」と分かるようにする。 */
.cta-mid {
  padding: 30px 0;
  background: var(--tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-mid-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
}
.cta-mid-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* ---------------------------------------------------------------- 狭い画面 */

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .mock::before, .mock::after { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .logo { font-size: 13px; line-height: 1.4; }
  .site-head-inner { min-height: 54px; gap: 10px; }
  .btn-small { padding: 8px 14px; font-size: 12px; }
  .band, .band-tint, .band-sample, .band-dark { padding: 56px 0; }
  .hero { padding: 48px 0 56px; }
  .metrics { grid-template-columns: 1fr; gap: 10px; margin-top: 32px; }
  .metrics li { flex-direction: row; align-items: baseline; gap: 10px; }
  .metric-value { font-size: 18px; }
  .cta-row .btn { width: 100%; }
  .sticky-text { display: none; }
  .sticky .btn { width: 100%; }
  .footer { padding-bottom: 110px; }
  .paper-body { padding: 20px 16px 22px; }
  .answer li { grid-template-columns: 1fr; gap: 2px; }
  .sec-eyebrow { font-size: 11px; letter-spacing: .14em; }
  .cta-mid-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-mid .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
