/* ============================================================
   キャンプ場・グランピング向けLP「フィールドガイド」
   紙×等高線テクスチャ、深緑サイン看板、ワッペン風ボタン、
   コンデンスド英字（Oswald）×Noto Sans JP
   ============================================================ */

:root {
  --forest: #3A5743;
  --forest-deep: #2A4232;
  --terra: #C96F45;
  --terra-deep: #AE5630;
  --paper: #FAF8F2;
  --kraft: #F2EBDC;
  --sun: #E8B84B;
  --ink: #33382F;
  --ink-soft: #6B7263;
  --line: #E2DBC9;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'Oswald', 'Arial Narrow', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

/* 紙＋等高線テクスチャ */
body {
  color: var(--ink);
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23E5DfCB' stroke-width='1'%3E%3Cpath d='M-20,60 C40,20 90,90 150,55 C210,20 250,70 300,40'/%3E%3Cpath d='M-20,95 C45,55 95,125 155,90 C215,55 255,105 300,75'/%3E%3Cpath d='M-20,200 C50,160 100,230 160,195 C220,160 260,215 300,185'/%3E%3Cpath d='M-20,235 C55,195 105,265 165,230 C225,195 265,250 300,220'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  line-height: 1.85;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { line-height: 1.5; font-weight: 700; }

.section-inner {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================
   共通：セクション見出し（看板スタイル・左揃え）
   ============================ */
.section-header {
  text-align: left;
  margin-bottom: 2.8rem;
}

.section-header h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.sec-keywords {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--terra);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.sec-keywords::before {
  content: "▲ ";
  font-size: 0.75em;
  letter-spacing: 0;
}

/* 深緑のサインプレート */
.sec-main {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--forest);
  padding: 0.4rem 1.3rem 0.45rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transform: rotate(-0.6deg);
  box-shadow: 4px 4px 0 rgba(58, 87, 67, 0.18);
}

.sec-main em {
  font-style: normal;
  color: var(--sun);
}

.sec-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
  padding-left: 0.2rem;
}

.section-divider { display: none; }

/* ============================
   共通：ワッペン風ボタン（ステッチ縁）
   ============================ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--terra);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 1.05rem 2.7rem;
  border-radius: 10px;
  outline: 2px dashed rgba(255, 255, 255, 0.75);
  outline-offset: -7px;
  box-shadow: 0 4px 0 var(--terra-deep);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-cta svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--terra-deep);
}

.btn-cta.big { font-size: 1.18rem; padding: 1.15rem 3.1rem; }

.btn-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  background: #fff;
  border: 2px solid var(--forest);
  color: var(--forest);
  border-radius: 10px;
  padding: 0.55rem 1.9rem;
  transition: background 0.2s;
}

.btn-tel:hover { background: var(--kraft); }

.btn-tel-label { font-size: 0.75rem; font-weight: 500; }

.btn-tel-num {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ============================
   HERO（写真×深緑×山稜）
   ============================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?q=80&w=2000&auto=format&fit=crop") center / cover no-repeat;
  filter: saturate(1.05);
}

.hero::after { display: none; }

.hero-sky { display: none; }

/* Top nav */
.top-nav {
  position: relative;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.top-nav-inner {
  max-width: 78rem;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-nav-logo img { height: 3.6rem; width: auto; }

.top-nav-ctas { display: flex; align-items: center; gap: 1rem; }

.top-nav-tel {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.top-nav-tel svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: var(--terra);
  stroke-width: 2;
}

.top-nav-cta {
  background: var(--terra);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  outline: 1.5px dashed rgba(255, 255, 255, 0.7);
  outline-offset: -5px;
  transition: background 0.2s;
}

.top-nav-cta:hover { background: var(--terra-deep); }

/* Hero stage */
.hero-stage {
  position: relative;
  z-index: 10;
  max-width: 78rem;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 8.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

/* 掲示板に貼った紙のパネル */
.hero-center {
  position: relative;
  max-width: 42rem;
  text-align: left;
  background: rgba(250, 248, 242, 0.96);
  border-radius: 12px;
  padding: 2.6rem 2.4rem 2.4rem;
  box-shadow: 0 16px 34px rgba(15, 25, 18, 0.3);
}

.hero-center::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: 50%;
  width: 6.5rem;
  height: 1.5rem;
  background: rgba(214, 196, 160, 0.85);
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 2px 5px rgba(20, 30, 20, 0.15);
}

.hero-flag { display: none; }

.hero-script {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--terra);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.hero-script::before {
  content: "";
  width: 2.4rem;
  height: 0;
  border-top: 2px dashed var(--terra);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.hero h1 em.num {
  font-style: normal;
  color: var(--terra);
}

.hero-marker {
  background: linear-gradient(transparent 86%, rgba(232, 184, 75, 0.9) 86%);
  padding: 0 0.05em;
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.hero-sub strong { color: var(--terra); }

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-chips li {
  background: var(--kraft);
  border: 1.5px dashed #C2B696;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.42rem 1.1rem;
  border-radius: 8px;
}

.hero-chips li strong { color: var(--terra); font-weight: 700; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

/* 85%バッジ：缶バッジ／ワッペン風 */
.hero-sticker {
  flex: 0 0 auto;
  width: 7.8rem;
  height: 7.8rem;
  background: var(--sun);
  border-radius: 50%;
  outline: 2px dashed rgba(255, 255, 255, 0.85);
  outline-offset: -7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  color: var(--forest-deep);
  transform: rotate(-5deg);
  box-shadow: 0 8px 18px rgba(10, 22, 15, 0.35);
}

.sticker-small { font-size: 0.74rem; font-weight: 700; line-height: 1.25; }

.sticker-big { font-size: 1rem; font-weight: 700; line-height: 1.1; }

.sticker-big em {
  font-style: normal;
  font-size: 1.45em;
  color: #A33D14;
  letter-spacing: -0.02em;
}

/* 旧要素は非表示 */
.ph, .deco, .hero-photo { display: none; }

/* ポラロイド差し込み */
.hero-snaps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: center;
}

.snap {
  position: relative;
  width: 100%;
  max-width: 21rem;
  background: #fff;
  padding: 0.55rem 0.55rem 0.75rem;
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(15, 25, 18, 0.32);
  margin: 0;
}

.snap::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  width: 5.5rem;
  height: 1.4rem;
  background: rgba(214, 196, 160, 0.85);
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 2px 5px rgba(20, 30, 20, 0.15);
  z-index: 2;
}

.snap-1 { transform: rotate(2.2deg); }
.snap-2 { transform: rotate(-2.4deg); }

.snap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.snap figcaption {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.45rem;
}

/* 山稜の区切り */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 5;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================
   TARGETS（Recommend）
   ============================ */
.targets { padding: 4.5rem 0 5rem; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.target-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.7rem 1.4rem;
  box-shadow: 0 3px 0 var(--line);
}

.target-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--kraft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.target-icon svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.target-card h3 {
  font-size: 1.1rem;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.target-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ============================
   BENEFITS（Why Manga Corner）
   ============================ */
.benefits { padding: 4.5rem 0 5rem; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.benefit-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--forest);
  border-radius: 10px;
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: 0 3px 0 var(--line);
}

.benefit-num {
  position: static;
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.25em;
  background: transparent;
  color: var(--terra);
  border-radius: 0;
  padding: 0;
  margin-bottom: 0.4rem;
}

.benefit-card h3 {
  font-size: 1.28rem;
  color: var(--forest-deep);
  margin-bottom: 0.7rem;
  line-height: 1.55;
}

.benefit-card h3 em {
  font-style: normal;
  color: var(--terra);
}

.benefit-card p { font-size: 0.94rem; color: var(--ink-soft); }

.benefit-card p strong { color: var(--ink); }

/* ============================
   COMPARE（Rental or Purchase）
   ============================ */
.compare { padding: 4.5rem 0 5rem; }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 3px 0 var(--line);
  border: 1px solid var(--line);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.93rem;
  border-bottom: 1px solid #EFEAD9;
}

.compare-table thead th {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.compare-table thead .col-buy {
  background: #EFECE2;
  color: var(--ink-soft);
}

.compare-table thead .col-rental {
  background: var(--forest);
  color: #fff;
}

.col-rental-badge {
  display: inline-block;
  background: var(--sun);
  color: var(--forest-deep);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.1rem 0.6rem;
  margin-right: 0.5rem;
  vertical-align: 0.1em;
}

.compare-table tbody th {
  width: 11rem;
  background: var(--kraft);
  font-weight: 700;
  color: var(--forest-deep);
}

.compare-table tbody td { color: var(--ink-soft); }

.compare-table tbody td:last-child {
  background: #FDF6E7;
  color: var(--ink);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

.mark-o, .mark-x {
  display: inline-block;
  font-weight: 700;
  margin-right: 0.5rem;
}

.mark-o { color: var(--terra); font-size: 1.15em; }
.mark-x { color: #A8A89C; }

.compare-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* ============================
   PRICE SIMULATOR（Simulation）
   ============================ */
.simulator { padding: 4.5rem 0 5rem; }

.sim-box {
  max-width: 48rem;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem 2rem 2.2rem;
  box-shadow: 0 3px 0 var(--line);
}

.sim-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 0.55rem;
}

.sim-controls { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.sim-select {
  flex: 1 1 16rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8rem 2.8rem 0.8rem 1rem;
  border: 1px solid #CFC8B4;
  border-radius: 8px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%233A5743' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 9px;
}

.sim-btn {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--forest);
  border: none;
  border-radius: 8px;
  outline: 1.5px dashed rgba(255, 255, 255, 0.65);
  outline-offset: -5px;
  padding: 0.85rem 2.4rem;
  cursor: pointer;
  transition: background 0.2s;
}

.sim-btn:hover { background: var(--forest-deep); }

.sim-result {
  margin-top: 1.8rem;
  border-top: 2px dashed var(--line);
  padding-top: 1.5rem;
}

.sim-result-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.sim-result-num {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.25;
}

.sim-unit { font-size: 1.35rem; font-weight: 700; color: var(--ink); }

.sim-unit small { font-size: 0.72em; font-weight: 500; color: var(--ink-soft); }

.sim-result-note { font-size: 0.93rem; color: var(--ink-soft); margin-top: 0.2rem; }

.sim-result-note strong { color: var(--terra); }

.sim-upsell {
  margin-top: 1.6rem;
  background: var(--kraft);
  border-radius: 10px;
  padding: 1.4rem 1.6rem 1.6rem;
}

.sim-hook {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 0.7rem;
}

.sim-upsell-body {
  font-size: 0.97rem;
  color: #55604F;
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

.sim-upsell-body strong { color: var(--terra); }

/* ============================
   FLOW（トレイル：破線コネクタ×ピン番号）
   ============================ */
.flow { padding: 4.5rem 0 5rem; }

.flow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}

.flow-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem 1.2rem 1.4rem;
  box-shadow: 0 3px 0 var(--line);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.45rem;
  width: 1.3rem;
  height: 0;
  border-top: 2px dashed var(--terra);
  transform: translateY(-50%);
}

.flow-num {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--forest);
  border-radius: 4px;
  padding: 0.12rem 0.7rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.flow-step h3 {
  font-size: 1.02rem;
  color: var(--forest-deep);
  margin-bottom: 0.45rem;
}

.flow-step p {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.flow-step p strong { color: var(--terra); }

/* ============================
   FAQ
   ============================ */
.faq { padding: 4.5rem 0 5rem; }

.faq-list {
  max-width: 52rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 0 var(--line);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 1.15rem 3.2rem;
}

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

.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--terra);
}

.faq-item[open] summary::after { content: "－"; }

.faq-answer { padding: 0 1.4rem 1.25rem 3.2rem; }

.faq-answer p { font-size: 0.93rem; color: var(--ink-soft); }

/* ============================
   RELATED COLUMNS（Column）
   ============================ */
.related-columns { padding: 4.5rem 0 5rem; }

.column-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.column-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 0 var(--line);
  transition: transform 0.25s;
}

.column-card:hover { transform: translateY(-4px); }

.column-card-thumb { aspect-ratio: 16 / 9; overflow: hidden; }

.column-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.column-card-body h3 {
  font-size: 0.89rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.column-card-body h3 strong { color: var(--forest); }

.column-card-date {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #A39D8C;
}

/* ============================
   FINAL CTA（夜の森の看板）
   ============================ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6rem;
  background-color: var(--forest-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23354F3F' stroke-width='1'%3E%3Cpath d='M-20,60 C40,20 90,90 150,55 C210,20 250,70 300,40'/%3E%3Cpath d='M-20,95 C45,55 95,125 155,90 C215,55 255,105 300,75'/%3E%3Cpath d='M-20,200 C50,160 100,230 160,195 C220,160 260,215 300,185'/%3E%3Cpath d='M-20,235 C55,195 105,265 165,230 C225,195 265,250 300,220'/%3E%3C/g%3E%3C/svg%3E");
  text-align: center;
}

.final-burst { display: none; }

.final-badge {
  display: inline-flex;
  gap: 0.6rem;
  background: var(--sun);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.38rem 1.4rem;
  border-radius: 6px;
  margin-bottom: 1.4rem;
  transform: rotate(-1deg);
}

.final-badge span { opacity: 0.6; }

.final-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
}

.final-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-bottom: 2.2rem;
}

.final-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.final-cta .btn-tel {
  border-color: rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #fff;
}

.final-cta .btn-tel:hover { background: rgba(255, 255, 255, 0.12); }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #1F3026;
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo img { height: 3.4rem; width: auto; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav a:hover { color: #fff; }

.footer-copy { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }

/* ============================
   スクロール表示アニメーション
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.oyako-spot { display: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================
   レスポンシブ
   ============================ */
.md-break { display: none; }
.sm-break { display: none; }

@media (min-width: 768px) {
  .md-break { display: inline; }
  .top-nav-tel { display: inline-flex; }
}

@media (max-width: 1024px) {
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .column-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(3, 1fr); }
  .flow-step:nth-child(3)::after { display: none; }
  .hero h1 { font-size: 2.3rem; }
}

@media (max-width: 768px) {
  .hero-stage {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem 7rem;
    gap: 2.2rem;
  }

  .hero-center { padding: 1.8rem 1.4rem 1.6rem; }

  .hero-snaps { flex-direction: row; gap: 1.2rem; }
  .snap { max-width: 48%; }
  .snap figcaption { font-size: 0.7rem; }

  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-script { font-size: 0.85rem; }

  .sec-main { font-size: 1.35rem; }

  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card h3 br { display: none; }

  .flow-steps { grid-template-columns: 1fr; }
  .flow-step:not(:last-child)::after {
    top: auto;
    bottom: -1.3rem;
    right: 50%;
    width: 0;
    height: 1rem;
    border-top: none;
    border-left: 2px dashed var(--terra);
    transform: translateX(50%);
  }

  .sim-box { padding: 1.4rem 1.2rem 1.6rem; }
  .sim-result-num { font-size: 2.4rem; }
  .sim-btn { width: 100%; }

  .final-cta h2 { font-size: 1.55rem; }
  .sm-break { display: inline; }

  .top-nav-cta { font-size: 0.8rem; padding: 0.55rem 1.1rem; }
  .top-nav-logo img { height: 2.8rem; }
}

@media (max-width: 520px) {
  .target-grid { grid-template-columns: 1fr; }
  .column-grid { grid-template-columns: 1fr; }
  .btn-cta { width: 100%; }
  .btn-tel { width: 100%; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-sticker { margin: 0 auto 0.3rem; }
  .final-buttons { flex-direction: column; align-items: stretch; }
}
