/* =========================================================
   ターニップ — 株式自動売買パッケージ LP
   デザインの正: Claude Design「ターニップLP 水彩.dc.html」
   （水彩植物画 × 生成り × セージグリーンのプロダクトLP）
   自己完結ページ: styles.css / script.js には依存しない
   ========================================================= */

:root {
  --page: #e7e3d6; /* ページ背景 */
  --paper: #f3f0e7; /* 紙面 */
  --paper-2: #efece1; /* 帯（しくみ・仕様） */
  --ink: #3b3d34; /* 墨（本文の最濃色） */
  --ink-strong: #33352d; /* 見出し・フッター地 */
  --tx: #54574c; /* 本文 */
  --tx-soft: #666a5b; /* 補助（紙面上でコントラスト比4.5:1以上を保つ） */
  --sage: #8a9a7b; /* セージ（英字ラベル） */
  --sage-l: #a9b399; /* セージ淡（番号） */
  --sage-d: #5f6f52; /* セージ濃（リンク・強調） */
  --hair: #d8d3c1; /* 罫線 */
  --hair-2: #ddd8c8; /* 罫線（帯の中） */
  --chip: #efece1; /* チップ地 */
  --chip-bd: #c6c0ad; /* チップ枠 */
  --serif-jp: "Shippori Mincho B1", serif;
  --serif-en: "Cormorant Garamond", serif;
  --sans: "Zen Kaku Gothic New", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background: var(--page);
  font-family: var(--sans);
  color: var(--ink);
}

/* 日本語本文の語中改行を防ぐ（文節で折り返す）。
   hero-title / closing-t 等の <br> 手動改行はそのまま尊重される。
   auto-phrase 非対応ブラウザでは無視され従来の折り返しにフォールバック。 */
.lp {
  word-break: auto-phrase;
}

/* 語・複合語を行末で分断させない（買いどき／対応証券／利用者 等）。
   auto-phrase(BudouX)の誤分割を上書きする最小ユーティリティ。 */
.nowrap {
  white-space: nowrap;
}

/* 文末「。」の直後に次文の冒頭がぶら下がるのを防ぐ。
   余白に収まる文は同一行に残り、収まらない文だけ文頭から次行に落ちる */
.sentence {
  display: inline-block;
}

/* auto-phrase 非対応ブラウザ（Firefox/Safari）向けフォールバック:
   jawrap.js が BudouX で文節境界にゼロ幅スペースを挿入し、
   keep-all で Chrome の auto-phrase と同等の文節折り返しを再現する */
html.jawrap-keepall body,
html.jawrap-keepall .lp {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

::selection {
  background: #c3cdb4;
}

a {
  color: var(--sage-d);
  text-decoration: none;
}
a:hover {
  color: var(--ink);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

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

.lp {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 60px rgba(59, 61, 52, 0.12);
}

/* ================= NAV ================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 56px;
  border-bottom: 1px solid var(--hair);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  height: 52px;
  width: auto;
  /* ロゴの生成り地を紙面に溶かす（水彩スキャン風） */
  mix-blend-mode: multiply;
}
.nav-latin {
  align-self: flex-end;
  padding-bottom: 6px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--sage);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.nav-links a {
  color: var(--tx);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ================= HERO ================= */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 76px 56px 80px;
}
.hero-tx {
  flex: 1 1 460px;
  min-width: 0;
}
.hero-eyebrow {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 19px;
  color: var(--sage);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--serif-jp);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  color: var(--ink-strong);
}
.hero-title rt {
  font-size: 0.27em;
  color: var(--sage);
  font-weight: 400;
}
.hero-lead {
  font-size: 16.5px;
  line-height: 2.1;
  color: var(--tx);
  margin-bottom: 20px;
  max-width: 460px;
}
.hero-chips {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--tx-soft);
}
.hero-chips span {
  border: 1px solid var(--chip-bd);
  border-radius: 999px;
  padding: 7px 16px;
  background: var(--chip);
}
.hero-risk {
  margin-top: 18px;
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--tx-soft);
  max-width: 460px;
}
.hero-fig {
  flex: 1 1 420px;
  min-width: 0;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.hero-cap {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  color: #9aa08c;
  text-align: right;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ================= セクション見出し（共通） ================= */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 17px;
  color: var(--sage);
  letter-spacing: 0.1em;
}
.sec-title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.06em;
  margin-top: 10px;
  color: var(--ink-strong);
}
.sec-rule {
  display: block;
  width: 46px;
  height: 1px;
  background: #b6b09b;
  margin: 22px auto 0;
}
.sec-note {
  font-size: 14.5px;
  color: var(--tx-soft);
  margin-top: 22px;
}

/* ================= 帯（しくみ・仕様・お求め） ================= */
.band {
  padding: 78px 56px 84px;
  border-top: 1px solid var(--hair);
  background: var(--paper-2);
}

/* しくみ 4ステップ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1080px;
  margin: 0 auto;
}
.step {
  padding: 0 26px;
  border-right: 1px solid var(--hair-2);
}
.step:last-child {
  border-right: 0;
}
.step-no {
  font-family: var(--serif-en);
  font-size: 44px;
  color: var(--sage-l);
  line-height: 1;
}
.step-t {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 20px;
  margin: 12px 0 10px;
  color: var(--ink-strong);
}
.step-p {
  font-size: 14px;
  color: #5f6257;
  line-height: 2;
}

/* ================= 特長 ================= */
.features {
  padding: 80px 56px 88px;
  border-top: 1px solid var(--hair);
}
.feat {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 64px;
}
.feat:last-child {
  margin-bottom: 0;
}
.feat--rev {
  grid-template-columns: 1fr 440px;
}
.feat--rev .feat-fig {
  order: 2;
}
.feat--rev .feat-tx {
  order: 1;
}
.feat-fig {
  min-width: 0;
}
.feat-fig img {
  width: 100%;
  aspect-ratio: 44 / 34;
  object-fit: cover;
}
.feat-tx {
  min-width: 0;
}
.feat-tx--r {
  text-align: right;
}
.feat-no {
  font-family: var(--serif-en);
  font-size: 20px;
  font-style: italic;
  color: var(--sage-l);
}
.feat-t {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(21px, 2.4vw, 27px);
  margin: 6px 0 16px;
  color: var(--ink-strong);
}
.feat-p {
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--tx);
  max-width: 520px;
}
.feat-tx--r .feat-p {
  margin-left: auto;
}

/* ================= 畑のたより ================= */
.letters-sec {
  padding: 80px 56px 88px;
  border-top: 1px solid var(--hair);
}
.letters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.letter {
  min-width: 0;
  position: relative;
  padding: 30px 30px 32px;
  background: var(--paper-2);
  border: 1px solid var(--hair-2);
}
/* 植物図鑑の標本ラベル風: 上辺にセージの細罫 */
.letter::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  height: 2px;
  background: var(--sage-l);
}
.letter-no {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
  color: var(--sage-l);
}
.letter-t {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 19px;
  margin: 6px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair-2);
  color: var(--ink-strong);
}
.letter-p {
  font-size: 14.5px;
  line-height: 2.05;
  color: var(--tx);
}
.letters-note {
  max-width: 1080px;
  margin: 30px auto 0;
  font-size: 12.5px;
  color: var(--tx-soft);
  line-height: 1.9;
  text-align: center;
}
/* 実際のLINE通知キャプチャ: 標本ラベルつきの台紙に貼った写真風 */
.letters-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start; /* キャプチャの縦横比が違っても台紙下部に余白を残さない */
  gap: 32px;
  max-width: 820px;
  margin: 0 auto 52px;
}
.shot {
  position: relative;
  min-width: 0;
  padding: 22px 22px 24px;
  background: var(--paper-2);
  border: 1px solid var(--hair-2);
}
.shot::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  height: 2px;
  background: var(--sage-l);
}
.shot-head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair-2);
}
.shot-en {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--sage);
  letter-spacing: 0.08em;
}
.shot-t {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 18px;
  margin-top: 2px;
  color: var(--ink-strong);
}
/* ---- LINE通知の再現モック（実キャプチャを元にHTML/CSSで再構成。銘柄・数値は架空） ---- */
.ln-screen {
  background: #1b1d1f; /* LINEダークモードのトーク背景 */
  border-radius: 6px;
  padding: 12px 12px 14px;
}
.ln-avatar {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 8px;
}
.ln-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 14px 14px;
  font-family: system-ui, sans-serif; /* アプリ画面の再現なのでLPの書体を継がない */
  color: #222;
  line-height: 1.5;
}
.ln-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.ln-tag--buy {
  color: #1f7a3d;
}
.ln-tag--sell {
  color: #a12b2b;
}
.ln-name {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 2px 0 4px;
}
.ln-hint {
  font-size: 11.5px;
  font-weight: 700;
  color: #1f7a3d;
  margin-bottom: 4px;
}
.ln-chart {
  display: block;
  width: 100%;
  height: auto;
  margin: 6px 0 10px;
  border: 1px solid #ececec;
  border-radius: 4px;
}
/* チャートSVGの内訳 */
.ln-bg {
  fill: #fdfdfd;
}
.ln-grid {
  stroke: #ececec;
}
.ln-bb {
  fill: #dbe4f3;
  opacity: 0.5;
}
.ln-fc {
  fill: #f3dcdc;
  opacity: 0.55;
}
.ln-fcline {
  fill: none;
  stroke: #c98a8a;
  stroke-width: 1.2;
  stroke-dasharray: 4 3;
}
.ln-fclabel {
  fill: #c98a8a;
  font-size: 9px;
  font-style: italic;
}
.ln-ma25 {
  fill: none;
  stroke: #e8a13d;
  stroke-width: 1.2;
}
.ln-ma75 {
  fill: none;
  stroke: #8a6fc0;
  stroke-width: 1.2;
}
.ln-c-up {
  stroke: #1a9950;
  fill: #1a9950;
}
.ln-c-dn {
  stroke: #d24343;
  fill: #d24343;
}
.ln-tp {
  stroke: #1a9950;
  stroke-dasharray: 5 3;
}
.ln-sl {
  stroke: #d24343;
  stroke-dasharray: 5 3;
}
.ln-limit {
  stroke: #3f6fd8;
  stroke-width: 1.2;
}
.ln-now {
  stroke: #9a9a9a;
  stroke-dasharray: 2 2;
}
.ln-cost {
  stroke: #e8a13d;
  stroke-dasharray: 5 3;
}
.ln-lb {
  font-size: 9px;
}
.ln-tp-t {
  fill: #1a9950;
}
.ln-sl-t {
  fill: #d24343;
}
.ln-limit-t {
  fill: #3f6fd8;
}
.ln-now-t {
  fill: #777;
}
.ln-cost-t {
  fill: #cf8b25;
}
.ln-month {
  fill: #999;
  font-size: 8.5px;
}
/* 推奨度などのメーター */
.ln-meters {
  margin: 2px 0 8px;
  font-size: 11.5px;
}
.ln-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 0;
}
.ln-meter dt {
  flex: none;
  width: 3.5em;
  color: #777;
}
.ln-meter dd {
  flex: 1;
}
.ln-bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e9e9e9;
  overflow: hidden;
}
.ln-bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}
.ln-bar-fill--g {
  background: #8fc79e;
}
.ln-bar-fill--r {
  background: #e3a0a0;
}
.ln-w62 {
  width: 62%;
}
.ln-w64 {
  width: 64%;
}
.ln-w72 {
  width: 72%;
}
.ln-w78 {
  width: 78%;
}
/* 明細行 */
.ln-rows {
  margin-bottom: 10px;
  font-size: 12px;
}
.ln-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  border-top: 1px solid #f0f0f0;
}
.ln-rows dt {
  color: #777;
}
.ln-rows dd {
  text-align: right;
}
.ln-strong {
  font-weight: 700;
  color: #111;
}
.ln-profit {
  font-weight: 700;
  color: #1f7a3d;
}
.ln-note {
  border-top: 1px solid #f0f0f0;
  padding-top: 9px;
  margin-bottom: 12px;
  font-size: 10.5px;
  line-height: 1.8;
  color: #333;
}
.ln-btns {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 8px;
}
.ln-btn {
  display: block;
  padding: 10px 0;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
}
.ln-btn--ok {
  background: #2e6b46;
  color: #fff;
}
.ln-btn--skip {
  background: #ececec;
  color: #333;
}

/* ================= 仕様 ================= */
.spec {
  max-width: 840px;
  margin: 0 auto;
}
.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 30px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--hair-2);
  align-items: baseline;
}
.spec-row:last-child {
  border-bottom: 0;
}
.spec-row dt {
  font-family: var(--serif-jp);
  font-size: 15px;
  color: var(--sage-d);
}
.spec-row dd {
  font-size: 15px;
  color: #43463c;
  line-height: 1.9;
}

/* ================= 動作環境 ================= */
.env-sec {
  padding: 80px 56px 88px;
  border-top: 1px solid var(--hair);
}
.env {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair-2);
  border: 1px solid var(--hair-2);
  max-width: 1000px;
  margin: 0 auto;
}
.env-cell {
  background: var(--paper);
  padding: 26px 28px;
}
.env-k {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  color: var(--sage-d); /* 情報を担うラベルのため装飾色(#9aa08c)より濃く */
  letter-spacing: 0.06em;
}
.env-v {
  font-size: 16px;
  color: #43463c;
  margin-top: 8px;
  line-height: 1.7;
}
.env-warn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sage-d);
  border-bottom: 1px solid var(--sage-d);
  margin-top: 6px;
}
.env-note {
  max-width: 1000px;
  margin: 18px auto 0;
  font-size: 13px;
  color: var(--tx-soft);
  line-height: 2;
}

/* ================= お求め（価格） ================= */
.price-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.price-kicker {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.08em;
  color: var(--ink-strong);
}
.price-main {
  margin: 14px 0 6px;
}
.price-num {
  font-family: var(--serif-en);
  font-weight: 600;
  font-size: clamp(52px, 8vw, 84px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink-strong);
}
.price-unit {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(18px, 2.6vw, 24px);
  margin-left: 6px;
  color: var(--ink-strong);
}
.price-unit small {
  font-size: 0.6em;
  margin-left: 2px;
  color: var(--tx);
}
.price-desc {
  font-size: 15px;
  line-height: 2.1;
  color: var(--tx);
  margin-top: 18px;
  text-align: left;
}
.price-desc b {
  color: var(--ink-strong);
  font-weight: 700;
  background: linear-gradient(transparent 68%, #d5ddc6 68%);
}
.price-sub {
  font-size: 13px;
  line-height: 2;
  color: var(--tx-soft);
  margin-top: 10px;
  border-top: 1px solid var(--hair-2);
  padding-top: 12px;
  text-align: left;
}
.price-actions {
  margin-top: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-solid {
  background: var(--ink-strong);
  color: var(--paper);
  border: 0;
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-solid:hover {
  background: #4a4d40;
}
/* ================= CLOSING ================= */
.closing {
  position: relative;
  border-top: 1px solid var(--hair);
  overflow: hidden;
}
.closing-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.closing-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(243, 240, 231, 0.92),
    rgba(243, 240, 231, 0.55) 55%,
    rgba(243, 240, 231, 0)
  );
  pointer-events: none;
}
.closing-tx {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
}
.closing-t {
  font-family: var(--serif-jp);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.6;
  color: var(--ink-strong);
}
.closing-p {
  font-size: 15px;
  color: var(--tx);
  line-height: 2;
  margin-top: 20px;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--ink-strong);
  padding: 44px 56px 36px;
}
.footer-notes {
  font-size: 12px;
  color: #a3a597;
  line-height: 2;
}
.footer-foot {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #a3a597;
}
.footer-foot a {
  color: #c6c9ba;
}
.footer-foot a:hover {
  color: var(--paper);
}

/* =========================================================
   レスポンシブ（規約: 1000px を先、820px を後に）
   ========================================================= */
@media (max-width: 1000px) {
  .nav {
    padding: 22px 32px;
  }
  .hero {
    padding: 56px 32px 60px;
    gap: 32px;
  }
  .band {
    padding: 62px 32px 66px;
  }
  .features {
    padding: 64px 32px 70px;
  }
  .letters-sec {
    padding: 64px 32px 70px;
  }
  .env-sec {
    padding: 64px 32px 70px;
  }
  .sec-head {
    margin-bottom: 42px;
  }

  /* リンクが増えたぶんナビの間隔を詰める */
  .nav-links {
    gap: 22px;
  }
  .letters {
    gap: 22px;
  }
  .letter {
    padding: 26px 24px 28px;
  }
  .letters-shots {
    gap: 22px;
  }
  .shot {
    padding: 18px 18px 20px;
  }

  /* しくみ: 2×2 */
  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }
  .step:nth-child(2n) {
    border-right: 0;
  }

  /* 特長: 画像を上に縦積み */
  .feat,
  .feat--rev {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 640px;
    margin-bottom: 56px;
  }
  .feat--rev .feat-fig {
    order: 0;
  }
  .feat--rev .feat-tx {
    order: 0;
  }
  .feat-tx--r {
    text-align: left;
  }
  .feat-tx--r .feat-p {
    margin-left: 0;
  }

  .closing-tx {
    left: 32px;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }
  .nav-logo {
    height: 44px;
  }
  .nav-links {
    gap: 16px;
    font-size: 13px;
    flex-wrap: wrap;
  }
  .nav-cta {
    padding: 7px 16px;
  }

  .hero {
    padding: 44px 20px 48px;
  }
  .hero-lead br {
    display: none;
  }
  .hero-img {
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-cap {
    text-align: center;
  }

  .band {
    padding: 52px 20px 56px;
  }
  .features {
    padding: 54px 20px 58px;
  }
  .letters-sec {
    padding: 52px 20px 56px;
  }
  .env-sec {
    padding: 52px 20px 56px;
  }

  /* たより: 1列に縦積み（キャプチャは読める幅を保って縦に） */
  .letters-shots {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto 40px;
  }
  .letters {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 560px;
  }
  .letter {
    padding: 24px 22px 26px;
  }
  .letters-note {
    font-size: 12px;
    text-align: left;
  }
  .sec-head {
    margin-bottom: 34px;
  }
  .sec-note {
    font-size: 13.5px;
  }

  /* しくみ: 1列 */
  .steps {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .step {
    border-right: 0;
    border-top: 1px solid var(--hair-2);
    padding: 22px 4px;
  }
  .step:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .feat,
  .feat--rev {
    margin-bottom: 44px;
  }

  /* 仕様: ラベルを上に */
  .spec-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 13px 2px;
  }
  .spec-row dd {
    font-size: 14.5px;
  }

  /* 動作環境: 1列 */
  .env {
    grid-template-columns: 1fr;
  }
  .env-cell {
    padding: 18px 20px;
  }
  .env-note {
    font-size: 12.5px;
  }

  .price-actions {
    flex-direction: column;
    gap: 14px;
  }
  .btn-solid {
    width: 100%;
    padding: 16px 20px;
  }

  .closing-img {
    height: 340px;
  }
  .closing-shade {
    /* モバイルはテキストが全幅に及ぶため右端まで下地を残す */
    background: linear-gradient(
      90deg,
      rgba(243, 240, 231, 0.94),
      rgba(243, 240, 231, 0.78) 60%,
      rgba(243, 240, 231, 0.55)
    );
  }
  .closing-tx {
    left: 20px;
    right: 20px;
  }

  .footer {
    padding: 34px 20px 28px;
  }
  .footer-foot {
    flex-direction: column;
    gap: 6px;
  }
}
