/* ==========================================================================
   CR Flow 紹介ページ (LP) — 「精緻なエディトリアル」
   - 支配色: 墨紺 (--lp-ink) / 紙色 (--lp-paper)。アクセント: 検出赤は「検出
     マーク」「人の作業」演出のみに限定。自動工程は寒色 (--lp-auto)。
   - 見出し: Shippori Mincho（明朝・硬派）/ 本文: Noto Sans JP /
     数字: Fraunces（料金・セクション番号）。
   - モーションはヒーローの staggered reveal と、スクロール reveal の2系統のみ。
   - LP 専用シート。アプリ本体 (style.css) には触れない。
   ========================================================================== */

:root {
  --lp-ink: #1b2436;        /* 墨紺 — 支配色 */
  --lp-ink-deep: #131a29;   /* 市場背景バンド */
  --lp-paper: #f7f4ee;      /* 生成りの紙 */
  --lp-paper-dim: #efeae0;
  --lp-line: #d8d2c4;       /* 罫線 */
  --lp-line-ink: #2e3a54;
  --lp-detect: #c2402f;     /* 検出・人の作業（赤系はここだけ） */
  --lp-human: #b45a1d;      /* 人=暖色 */
  --lp-human-bg: #faeadc;
  --lp-auto: #2b5d8a;       /* 自動=寒色 */
  --lp-auto-bg: #e3edf5;
  --lp-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --lp-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --lp-display: "Fraunces", Georgia, serif;
}

/* ---- 土台 ----------------------------------------------------------------- */
.lp-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--lp-paper);
  color: var(--lp-ink);
  font-family: var(--lp-sans);
  /* 微細なグレイン（エディトリアルの紙質感。img-src data: の範囲内） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.lp-section__inner {
  max-width: 68rem;
  margin: 0 auto;
  padding: 5rem 1.4rem;
}
.lp-section__inner--wide { max-width: 76rem; }
.lp-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden;
}
.lp-br-pc { display: inline; }
.lp-br-sp { display: none; }
/* 文節改行: 見出し・リードの文節を包んで語中折返し（チェッ/ク 等）を防ぐ。
   マーカー（背景グラデ）は付けないこと — inline-block は背景の描画箱が
   line-height 全高になり、inline のマーカー位置・太さと変わってしまう。
   マーカーは従来どおり inline の親（em / .lp-lead-em__mark）側に。 */
.lp-nbr { display: inline-block; }

/* ---- タイポグラフィ -------------------------------------------------------- */
.lp-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--lp-detect);
  font-weight: 700;
  margin: 0 0 1.4rem;
}
.lp-secno {
  font-family: var(--lp-display);
  font-size: 1rem;
  color: var(--lp-detect);
  letter-spacing: 0.1em;
  border-top: 2px solid var(--lp-ink);
  display: inline-block;
  padding-top: 0.5rem;
  margin: 0 0 1.2rem;
}
.lp-secno::after { content: " —"; color: var(--lp-line); }
.lp-secno--inverse { border-top-color: var(--lp-paper); }
.lp-h2 {
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 0 2.8rem;
}
.lp-h2--inverse { color: var(--lp-paper); }

/* ---- ボタン ---------------------------------------------------------------- */
.lp-btn {
  display: inline-block;
  font-family: var(--lp-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2.2rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.lp-btn--primary {
  background: var(--lp-ink);
  color: var(--lp-paper);
  box-shadow: 4px 4px 0 var(--lp-detect); /* エディトリアルなオフセット影 */
}
.lp-btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--lp-detect);
}
.lp-btn--ghost {
  color: var(--lp-ink);
  border: 1px solid var(--lp-ink);
  background: transparent;
}
.lp-btn--ghost:hover { background: rgba(27, 36, 54, 0.06); }

/* ---- 1. ヒーロー ----------------------------------------------------------- */
.lp-hero { overflow: hidden; border-bottom: 1px solid var(--lp-line); }
.lp-hero__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 5.5rem 1.4rem 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
  gap: 3rem;
  align-items: center;
}
.lp-hero__h1 {
  font-family: var(--lp-serif);
  font-weight: 700;
  /* 級数差を大きく。max は 3.5rem — 3.7rem だとデスクトップ幅（copy列 ≈ 605px）で
     「その動画CRチェック、」(10.2em ≈ 630px) が収まらず「その」が孤立する。
     3.5rem で 596px に収まり2行組（その動画CRチェック、/ まだ手作業ですか？）を維持。 */
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.28;
  letter-spacing: 0.01em;
  margin: 0 0 1.6rem;
}
.lp-hero__h1 em {
  font-style: normal;
  background: linear-gradient(transparent 68%, rgba(194, 64, 47, 0.28) 0); /* 検出マーカー */
}
.lp-hero__lead {
  font-size: 1.02rem;
  line-height: 2;
  margin: 0 0 2.2rem;
  max-width: 36rem;
}
/* 主訴求の強調（ヒーローのリード）: 明朝。検出マーカーはAI句のみに引く */
.lp-lead-em {
  display: block;
  font-family: var(--lp-serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}
.lp-lead-em__mark {
  background: linear-gradient(transparent 68%, rgba(194, 64, 47, 0.28) 0);
}
.lp-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.lp-hero__shot { margin: 0; position: relative; }
.lp-hero__shot img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--lp-line);
  box-shadow: 14px 14px 0 var(--lp-paper-dim), 14px 14px 0 1px var(--lp-line);
  transform: rotate(0.6deg); /* 端正の中の、わずかな肉筆感 */
}
.lp-hero__shot-mark {
  position: absolute;
  top: -0.9rem;
  left: -0.6rem;
  background: var(--lp-ink);
  color: var(--lp-paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.lp-detect-dot {
  width: 0.55rem; height: 0.55rem;
  background: var(--lp-detect);
  border-radius: 50%;
  display: inline-block;
}

/* ヒーロー staggered reveal（1箇所だけ丁寧に） */
@keyframes lp-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.lp-reveal-1, .lp-reveal-2, .lp-reveal-3, .lp-reveal-4, .lp-reveal-5 {
  animation: lp-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.lp-reveal-2 { animation-delay: 0.1s; }
.lp-reveal-3 { animation-delay: 0.22s; }
.lp-reveal-4 { animation-delay: 0.34s; }
.lp-reveal-5 { animation-delay: 0.45s; }
.lp-hero__shot.lp-reveal-5 { animation-name: lp-rise; }

/* スクロール reveal（landing.js が .is-visible を付ける。JS無効でも見える初期値） */
.lp-reveal { opacity: 1; transform: none; }
.lp-js .lp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.lp-js .lp-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .lp-reveal-1, .lp-reveal-2, .lp-reveal-3, .lp-reveal-4, .lp-reveal-5 { animation: none; }
  .lp-js .lp-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- 2. 共感 --------------------------------------------------------------- */
/* 旧ヒーローキャッチの導入行（明朝・リストへの橋渡し） */
.lp-empathy__intro {
  font-family: var(--lp-serif);
  font-size: 1.18rem;
  line-height: 1.9;
  margin: -1.2rem 0 2.2rem;
  color: var(--lp-ink);
}
.lp-empathy__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: empathy;
  max-width: 50rem;
}
.lp-empathy__list li {
  counter-increment: empathy;
  position: relative;
  padding: 1.6rem 0 1.6rem 4.4rem;
  border-top: 1px solid var(--lp-line);
  font-size: 1.08rem;
  line-height: 1.9;
}
.lp-empathy__list li:last-child { border-bottom: 1px solid var(--lp-line); }
.lp-empathy__list li::before {
  content: counter(empathy, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.45rem;
  font-family: var(--lp-display);
  font-size: 1.7rem;
  color: var(--lp-detect);
  line-height: 1;
}

/* ---- 3. 市場背景（濃紺バンド・斜め分割） ------------------------------------- */
.lp-market {
  background: var(--lp-ink-deep);
  color: #e9e4d8;
  clip-path: polygon(0 2.2rem, 100% 0, 100% calc(100% - 2.2rem), 0 100%);
  padding: 2.2rem 0;
}
.lp-market__body p { max-width: 42rem; line-height: 2.1; font-size: 1.05rem; }
.lp-market__punch {
  font-family: var(--lp-serif);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.9;
  margin-top: 2.4rem;
  border-left: 3px solid var(--lp-detect);
  padding-left: 1.2rem;
  color: #f7f4ee;
}

/* ---- 4. 解決（5ステップ） ---------------------------------------------------- */
.lp-solution__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3.5rem;
  align-items: start;
}
.lp-steps { list-style: none; margin: 0; padding: 0; }
.lp-step {
  display: flex;
  gap: 1.6rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--lp-line);
}
.lp-step__no {
  font-family: var(--lp-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--lp-ink);
  min-width: 3.2rem;
}
.lp-step h3 {
  font-family: var(--lp-serif);
  font-size: 1.18rem;
  margin: 0 0 0.4rem;
}
.lp-step p { margin: 0; line-height: 1.9; font-size: 0.97rem; }
.lp-step:nth-child(4) .lp-step__no { color: var(--lp-detect); } /* 人がレビュー */
.lp-solution__shot {
  margin: 2.2rem 0 0;
  position: sticky;
  top: 2rem;
}
.lp-solution__shot img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--lp-line);
  box-shadow: -12px 12px 0 var(--lp-paper-dim), -12px 12px 0 1px var(--lp-line);
}
.lp-solution__shot figcaption {
  font-size: 0.85rem;
  color: var(--lp-auto);
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
}
.lp-solution__creed {
  margin: 3.5rem 0 0;
  max-width: 46rem;
  font-size: 1.08rem;
  line-height: 2;
  border-top: 2px solid var(--lp-ink);
  padding-top: 1.4rem;
}
.lp-solution__creed strong {
  font-family: var(--lp-serif);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}
.lp-solution__creed-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: #6b6453;
}

/* ---- 5. Before/After 工程図（見せ場） ----------------------------------------- */
.lp-flow { background: #fbf9f5; border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); }
.lp-flow__legend {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 2.2rem;
  font-size: 0.9rem;
}
.lp-flow__legend-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.lp-chip { width: 0.95rem; height: 0.95rem; display: inline-block; border-radius: 2px; }
.lp-chip--human { background: var(--lp-human-bg); border: 1.5px solid var(--lp-human); }
.lp-chip--auto { background: var(--lp-auto-bg); border: 1.5px solid var(--lp-auto); }

.lp-flow__row { padding: 1.8rem 0; }
.lp-flow__row--after {
  border-top: 1px dashed var(--lp-line);
  margin-top: 0.6rem;
}
.lp-flow__label {
  font-family: var(--lp-serif);
  font-size: 1.15rem;
  margin: 0 0 1.3rem;
}
.lp-flow__label span {
  font-family: var(--lp-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: #6b6453;
  margin-left: 1rem;
}
.lp-flow__row--after .lp-flow__label span { color: var(--lp-detect); font-weight: 700; }
.lp-flow__chain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2rem 2.2rem;
}
.lp-flow__box {
  position: relative;
  padding: 0.85rem 1.1rem;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 3.4rem;
}
.lp-flow__box small { font-size: 0.78rem; font-weight: 400; }
.lp-flow__box--human {
  background: var(--lp-human-bg);
  border: 1.5px solid var(--lp-human);
  color: #7a3c10;
}
.lp-flow__box--auto {
  background: var(--lp-auto-bg);
  border: 1.5px solid var(--lp-auto);
  color: #1d4061;
}
/* 矢印（次の箱がある間だけ） */
.lp-flow__box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.65rem;
  top: 50%;
  width: 1.1rem;
  height: 2px;
  background: var(--lp-ink);
  transform: translateY(-50%);
}
.lp-flow__box:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -0.85rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid var(--lp-ink);
  border-right: 2px solid var(--lp-ink);
  transform: translateY(-50%) rotate(45deg);
}
/* 「レビュー・判定」= このページの主役 */
.lp-flow__box--focus {
  box-shadow: 5px 5px 0 rgba(180, 90, 29, 0.35);
  font-weight: 700;
  font-size: 1rem;
  transform: scale(1.06);
}
.lp-flow__box--focus::marker { content: ""; }

/* 作業ごとの比較表（工程図直後・数値なし） */
.lp-flow__compare {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--lp-line);
  max-width: 46rem;
}
.lp-compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.lp-compare th,
.lp-compare td {
  border: 1px solid var(--lp-line);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  text-align: center;
}
.lp-compare thead th {
  font-family: var(--lp-serif);
  background: var(--lp-paper-dim);
}
.lp-compare tbody th {
  text-align: left;
  font-weight: 500;
  background: #fbf9f5;
}
.lp-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.18rem 0.85rem;
  border-radius: 2px;
}
.lp-badge--human {
  background: var(--lp-human-bg);
  border: 1.5px solid var(--lp-human);
  color: #7a3c10;
}
.lp-badge--auto {
  background: var(--lp-auto-bg);
  border: 1.5px solid var(--lp-auto);
  color: #1d4061;
}
.lp-compare__judge th,
.lp-compare__judge td {
  border-top: 2px solid var(--lp-ink);
  background: #fff;
}
.lp-compare__only {
  display: block;
  font-size: 0.78rem;
  color: var(--lp-detect);
  font-weight: 700;
  margin-top: 0.25rem;
}

/* ---- 6. 三者関係 ------------------------------------------------------------ */
.lp-triad__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: center;
}
.lp-triad__text p { line-height: 2; font-size: 1rem; max-width: 36rem; }
.lp-triad__pairs {
  list-style: none;
  margin: 1.2rem 0;
  padding: 0;
  font-family: var(--lp-serif);
  font-size: 1.1rem;
}
.lp-triad__pairs li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--lp-line);
}
.lp-triad__pairs span { color: var(--lp-detect); margin: 0 0.4rem; }
.lp-triad__diagram {
  border: 1px solid var(--lp-line);
  background: #fbf9f5;
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.lp-triad__node {
  background: var(--lp-ink);
  color: var(--lp-paper);
  font-weight: 700;
  padding: 0.7rem 2rem;
  letter-spacing: 0.06em;
}
.lp-triad__node--checker { background: var(--lp-detect); }
.lp-triad__urls { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.lp-triad__url {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.3rem 0.9rem;
  border: 1px dashed var(--lp-line-ink);
}
.lp-triad__url--up { color: var(--lp-auto); }
.lp-triad__url--down { color: var(--lp-human); }

/* ---- 6.5 レギュレーション取り込み ------------------------------------------------ */
.lp-regulation { border-top: 1px solid var(--lp-line); }
/* 技術の明記（Claude）: 見出し直下の信頼の一行 */
.lp-regulation__tech {
  font-size: 1.05rem;
  line-height: 1.9;
  margin: -1.4rem 0 2.2rem;
  max-width: 42rem;
}
.lp-regulation__tech strong {
  font-family: var(--lp-serif);
  background: linear-gradient(transparent 72%, rgba(43, 93, 138, 0.22) 0); /* 自動=寒色の薄マーカー */
}
.lp-regulation__chain { margin-bottom: 2.6rem; }
/* 入力文書の箱: 人/自動どちらでもない中立（紙+墨紺の点線） */
.lp-flow__box--doc {
  background: #fff;
  border: 1.5px dashed var(--lp-line-ink);
  color: var(--lp-ink);
}
.lp-regulation__points {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 46rem;
}
.lp-regulation__points li {
  position: relative;
  padding: 1.1rem 0 1.1rem 2rem;
  border-top: 1px solid var(--lp-line);
  line-height: 1.9;
  font-size: 1rem;
}
.lp-regulation__points li:last-child { border-bottom: 1px solid var(--lp-line); }
.lp-regulation__points li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 1.75rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lp-detect);
  border-radius: 50%;
}

/* ---- 7. 特徴4 ---------------------------------------------------------------- */
.lp-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--lp-line);
  border-left: 1px solid var(--lp-line);
}
.lp-feature {
  border-right: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  padding: 2.2rem 2rem;
}
.lp-feature h3 {
  font-family: var(--lp-serif);
  font-size: 1.22rem;
  margin: 0 0 0.8rem;
  line-height: 1.6;
}
.lp-feature p { margin: 0; line-height: 2; font-size: 0.97rem; }
/* 3枚構成（自社基準カードはレギュレーション取り込みセクションへ吸収）:
   2列グリッドの3枚目は全幅に伸ばし、罫線グリッドに空セルを作らない */
.lp-features__grid--three .lp-feature:last-child { grid-column: 1 / -1; }

/* ---- 8. 料金 ----------------------------------------------------------------- */
.lp-pricing__wrap { overflow-x: auto; }
.lp-pricing__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
  background: #fbf9f5;
}
.lp-pricing__table th,
.lp-pricing__table td {
  border: 1px solid var(--lp-line);
  padding: 1rem 1.1rem;
  text-align: center;
  font-size: 0.97rem;
}
.lp-pricing__table thead th {
  font-family: var(--lp-serif);
  font-size: 1.08rem;
  background: var(--lp-paper-dim);
}
.lp-pricing__table tbody th {
  text-align: left;
  font-weight: 500;
  background: var(--lp-paper-dim);
  white-space: nowrap;
}
.lp-pricing__table .is-featured {
  background: var(--lp-ink);
  color: var(--lp-paper);
  border-color: var(--lp-ink);
}
.lp-num {
  font-family: var(--lp-display);
  font-size: 1.45em;
  letter-spacing: 0.02em;
  padding-right: 0.1em;
}
.lp-pricing__note {
  margin-top: 1.4rem;
  font-size: 0.88rem;
  color: #6b6453;
  line-height: 1.9;
}
.lp-pricing__cta { margin-top: 2.4rem; }

/* ---- 9. FAQ ------------------------------------------------------------------ */
.lp-faq__list { max-width: 50rem; }
.lp-faq__item {
  border-top: 1px solid var(--lp-line);
}
.lp-faq__item:last-child { border-bottom: 1px solid var(--lp-line); }
.lp-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--lp-serif);
  font-size: 1.08rem;
  padding: 1.3rem 2.6rem 1.3rem 2.2rem;
  position: relative;
  line-height: 1.7;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  font-family: var(--lp-display);
  color: var(--lp-detect);
}
.lp-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--lp-display);
  font-size: 1.4rem;
  color: var(--lp-ink);
  transition: transform 0.2s ease;
}
.lp-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-faq__item p {
  margin: 0;
  padding: 0 0.5rem 1.5rem 2.2rem;
  line-height: 2;
  font-size: 0.97rem;
}

/* ---- 10. クロージング ---------------------------------------------------------- */
.lp-closing {
  background: var(--lp-ink-deep);
  color: var(--lp-paper);
  text-align: center;
}
.lp-closing .lp-section__inner { padding: 6rem 1.4rem; }
.lp-closing__h2 {
  font-family: var(--lp-serif);
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.5;
  margin: 0 0 1.4rem;
}
.lp-closing__lead { font-size: 1.05rem; line-height: 2; margin: 0 0 2.4rem; }
.lp-closing .lp-hero__cta { justify-content: center; }
.lp-closing .lp-btn--primary {
  background: var(--lp-paper);
  color: var(--lp-ink);
  box-shadow: 4px 4px 0 var(--lp-detect);
}
.lp-closing .lp-btn--ghost { color: var(--lp-paper); border-color: var(--lp-paper); }
.lp-closing .lp-btn--ghost:hover { background: rgba(247, 244, 238, 0.1); }

/* ---- レスポンシブ --------------------------------------------------------------
   スマホ前提（広告・SNS流入）。375px で崩れないこと。 */
@media (max-width: 960px) {
  .lp-hero__inner { grid-template-columns: 1fr; padding-top: 3.6rem; gap: 2.4rem; }
  .lp-hero__shot { max-width: 34rem; }
  .lp-solution__grid { grid-template-columns: 1fr; gap: 2rem; }
  .lp-solution__shot { position: static; max-width: 26rem; }
  .lp-triad__grid { grid-template-columns: 1fr; }
  .lp-triad__diagram { max-width: 24rem; }
}
@media (max-width: 720px) {
  .lp-section__inner { padding: 3.6rem 1.2rem; }
  .lp-br-pc { display: none; }
  .lp-br-sp { display: inline; }
  .lp-features__grid { grid-template-columns: 1fr; }
  .lp-hero__lead { line-height: 1.95; }
  /* 工程図: 横の鎖 → 縦の鎖（矢印も縦に） */
  .lp-flow__chain { flex-direction: column; gap: 1.7rem; align-items: stretch; }
  .lp-flow__box { min-height: 0; }
  .lp-flow__box:not(:last-child)::after {
    right: auto; top: auto;
    left: 50%; bottom: -1.35rem;
    width: 2px; height: 0.85rem;
    transform: translateX(-50%);
  }
  .lp-flow__box:not(:last-child)::before {
    right: auto; top: auto;
    left: 50%; bottom: -1.15rem;
    transform: translateX(-50%) rotate(135deg);
  }
  .lp-flow__box--focus { transform: none; }
  .lp-empathy__list li { padding-left: 3.4rem; font-size: 1rem; }
  .lp-market { clip-path: polygon(0 1.2rem, 100% 0, 100% calc(100% - 1.2rem), 0 100%); }
  /* 比較表: スマホは詰めて3列維持（バッジが短いので375pxで収まる） */
  .lp-compare th,
  .lp-compare td { padding: 0.55rem 0.45rem; font-size: 0.86rem; }
  .lp-badge { padding: 0.14rem 0.55rem; font-size: 0.8rem; }
  .lp-compare__only { font-size: 0.7rem; }
}
