/* =========================================================
   chukai-kaitori-hikaku.css
   「仲介と買取、どちらがいい？」比較ページ専用スタイル
   ========================================================= */

/* 横スクロール防止（オフキャンバスナビが画面外で幅を広げる不具合の対策） */
html, body { overflow-x: hidden; max-width: 100%; }

/* ▼ ページヒーロー（写真なし・濃紺グラデーション） */
.page-hero--hikaku {
  background: linear-gradient(135deg, #1b2a4a 0%, #111d33 60%, #0d1730 100%);
}

/* ▼ method-grid を2カラムに */
.method-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  .method-grid--2col { grid-template-columns: 1fr; }
}

/* ▼ 詳細比較表 */
.hikaku-table-wrap { overflow-x: auto; }
.hikaku-table { min-width: 640px; }
.hikaku-table td:nth-child(3) {
  background: rgba(197, 165, 90, 0.08);
  font-weight: 600;
  color: var(--navy, #1b2a4a);
}

/* ▼ どちらが向いているか */
.section-fit { background: #fff; }
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.fit-card {
  background: #fafaf7;
  border: 1px solid #e5e0d4;
  border-radius: 10px;
  padding: 1.8rem 2rem;
}
.fit-card h3 {
  font-size: 1.15rem;
  color: var(--navy, #1b2a4a);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold, #c5a55a);
}
.fit-card--kaitori h3 { border-bottom-color: var(--navy, #1b2a4a); }
.fit-card ul { list-style: none; padding: 0; margin: 0; }
.fit-card li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}
.fit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold, #c5a55a);
  font-weight: 800;
}

.fit-note {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* ▼ 3つの違い */
.section-diff { background: #fafaf7; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.diff-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.diff-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold, #c5a55a);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.diff-card h3 { font-size: 1.05rem; color: var(--navy, #1b2a4a); margin-bottom: 0.6rem; }
.diff-card p { font-size: 0.88rem; line-height: 1.8; color: #444; }

@media (max-width: 860px) {
  .diff-grid { grid-template-columns: 1fr; }
}
