@charset "UTF-8";
/* ============================================================
   /column/futsu/cost/ 専用スタイル
   guide-common.css のトークン（--guide-ink など）を前提とする。
   金額を過度に強調しない・色だけで安い/高いを示さない方針。
   ============================================================ */

.futsu-cost-guide .guide-section {
  border-bottom: 1px solid var(--guide-border);
}

.futsu-cost-guide .guide-intro__lead {
  margin-top: 0;
  color: var(--guide-ink);
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.9;
}

.futsu-cost-guide .guide-intro__note {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: var(--guide-soft);
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  color: var(--guide-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* 冒頭の結論・確認事項などの箇条書き */
.futsu-cost-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.futsu-cost-points li {
  position: relative;
  padding: 12px 14px 12px 40px;
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  line-height: 1.8;
}

.futsu-cost-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.15em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--guide-gold);
}

/* 比較テーブル・料金テーブル（横スクロールは表内だけ） */
.method-compare-table {
  min-width: 720px;
}

.fee-table {
  min-width: 640px;
}

.method-compare-table thead th,
.fee-table thead th {
  background: var(--guide-ink);
  color: #fff;
}

.method-compare-table tbody th[scope="row"] {
  background: var(--guide-soft);
  white-space: nowrap;
}

.method-compare-table tbody tr:nth-child(even),
.fee-table tbody tr:nth-child(even) {
  background: var(--guide-soft);
}

.fee-table td.fee-amount {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* 含まれるもの / 別途費用 の2カラム */
.cost-split {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

@media (min-width: 720px) {
  .cost-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cost-split__card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 16px;
}

.cost-split__card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cost-split__card h3 .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

.cost-split__card--included h3 .mark {
  background: var(--guide-green-pale);
  color: var(--guide-gold-dark);
  border: 1px solid #bfe6c8;
}

.cost-split__card--extra h3 .mark {
  background: var(--guide-gold-pale);
  color: var(--guide-gold-dark);
  border: 1px solid #ecdca0;
}

.cost-split__card ul {
  margin: 0;
  padding-left: 1.1em;
  display: grid;
  gap: 6px;
  line-height: 1.8;
}

/* 関連ページ */
.futsu-cost-related {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

@media (min-width: 620px) {
  .futsu-cost-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.futsu-cost-related a {
  display: block;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--guide-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.futsu-cost-related a:hover,
.futsu-cost-related a:focus-visible {
  border-color: var(--guide-gold);
  box-shadow: 0 8px 20px rgba(45, 52, 54, 0.08);
}

.futsu-cost-related a strong {
  display: block;
  margin-bottom: 4px;
}

.futsu-cost-related a span {
  color: var(--guide-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ページ下部の教習所導線 */
.futsu-cost-finder {
  margin-top: 8px;
}

.futsu-cost-finder .guide-cta__primary p {
  margin-top: 0;
}

.futsu-cost-finder__sub {
  margin: 14px 0 0;
}

.futsu-cost-finder__sub a {
  color: var(--guide-gold-dark);
  font-weight: 600;
}
