/* ============================================
   seller-index.css
   トップページ（売主目線リニューアル）専用スタイル
   style.css のトークン・共通クラスを前提に追加分のみ定義
   ============================================ */

/* 旧: images/hero/hero-01-temp-gion.jpg / hero-01-temp-akiya.jpg（Wikimedia Commons仮素材）
   は、代表の実写真をヒーローに採用したため未使用。他ページで使う場合はファイルを残置。 */

/* ---------- 横スクロール防止（オフキャンバスナビが画面外で幅を広げ、
   タブレット幅などで文字・画像が右に重なって見える不具合の対策） ---------- */
html, body { overflow-x: hidden; max-width: 100%; }

/* ---------- ご相談方法（LINE/フォーム/電話）：2列版 ----------
   base の .schedule-list li は本来「曜日・時間・内容」の3列(110px 100px 1fr)用。
   ここでは2項目しか使わないため、そのままだと文章が100px列に押し込まれ
   不自然に折り返してしまう。2列(ラベル＋残り全部)に組み直す。 */
.schedule-list--simple li { grid-template-columns: 90px 1fr; }

/* ---------- 共通：あたたかみアクセントカラー ---------- */
:root {
  --warm: #e0824f;
  --warm-dark: #c96a38;
  --warm-bg: #fdf3ec;
  --warm-bg-deep: #fbe8da;
}

/* ---------- 共通：改行制御 ---------- */
.br-pc { display: inline; }
@media (max-width: 860px) { .br-pc { display: none; } }

/* ---------- 共通：内側見出し ---------- */
.subsection-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.7;
}
.subsection-note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
}
.subsection-note strong { color: var(--navy); }

/* ---------- ヒーロー：左右分割レイアウト（代表の笑顔を主役に・インパクト重視） ---------- */
.hero.hero--split {
  height: auto;
  min-height: 0;
  overflow: visible;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 55%, #0d1730 100%);
  padding: 56px 0 68px;
  position: relative;
}
.hero.hero--split::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(197,165,90,0.16) 0%, transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(197,165,90,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text-col { max-width: 580px; }
.hero-topline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy-dark);
  background: var(--gold);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title-display {
  color: var(--white);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.01em;
  /* 指定していない箇所で単語の途中が折り返されるのを防ぎ、
     句読点・改行タグで指定した位置のみで改行されるようにする */
  word-break: keep-all;
  overflow-wrap: break-word;
}
/* 旧テンプレートの .hero-title .hero-line2 { white-space: nowrap } を打ち消す。
   新しい見出し文は長いため、常に自然に折り返す必要がある（中間幅での横はみ出し・重なり対策） */
.hero-title-display .hero-line2 { color: var(--white); white-space: normal; }
.hero-emphasis { color: var(--gold); }
.hero-text-col p.hero-text { color: rgba(255,255,255,0.82); margin: 22px 0 30px; line-height: 1.9; font-size: 1rem; }
.hero-assure {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
}
.hero-assure span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-assure span::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}
.hero-photo-col { position: relative; }
.hero-photo-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  aspect-ratio: 3 / 4;
  border: 4px solid var(--gold);
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 20%; display: block; }
.hero-photo-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--white);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
@media (max-width: 860px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-text-col { max-width: none; }
  .hero-title-display { font-size: 2rem; }
  .hero-photo-card { aspect-ratio: 4 / 5; max-width: 380px; margin: 0 auto; }
}

/* ---------- 2. こんな状態になっていませんか ---------- */
.section-selfcheck { background: var(--white); }
.self-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.self-check-item {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 20px;
  border-left: 3px solid var(--gold);
}
.self-check-situation {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.self-check-feeling {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}
.self-check-feeling::before { content: "→ "; color: var(--gold); }

/* ---------- 当社が選ばれる理由 ---------- */
.section-reasons { background: var(--white); }
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.reason-card {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 30px 26px;
  border-top: 3px solid var(--gold);
}
.reason-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.reason-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.6; }
.reason-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.85; }

/* ---------- スタッフ：資格・所属プロフィール ---------- */
.staff-profile {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.staff-profile > div { display: flex; gap: 12px; font-size: 0.83rem; }
.staff-profile dt { flex-shrink: 0; width: 90px; font-weight: 700; color: var(--navy); }
.staff-profile dd { color: var(--text-mid); }

/* ---------- 5. 建築×不動産：現地調査の実写真 ---------- */
.inspect-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.inspect-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.inspect-photo img { width: 100%; height: 260px; object-fit: cover; display: block; }
.inspect-photo figcaption {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .inspect-photos { grid-template-columns: 1fr; }
}

/* ---------- 3. 最初にすること／出口4つ ---------- */
.section-options { background: var(--gray-50); }
.exit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.exit-card {
  background: var(--white);
  border-radius: 8px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.exit-icon { font-size: 1.8rem; margin-bottom: 10px; }
.exit-card h3 { font-size: 1.02rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.exit-card p { font-size: 0.8rem; color: var(--text-light); }

.pro-connect-note {
  margin-top: 32px;
  background: var(--white);
  border: 1px dashed var(--gray-100);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 0.85rem;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.8;
}
.pro-connect-note strong { color: var(--navy); }

/* ---------- 4. 売却をお考えの方 ---------- */
.section-sell { background: var(--white); }
.sell-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 8px;
}
.sell-card {
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.sell-card--buy {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(197,165,90,0.08), rgba(255,255,255,1));
}
.sell-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--navy);
  margin-bottom: 10px;
}
.sell-card--buy .sell-card-tag { background: var(--gold); color: var(--white); }
.sell-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.sell-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; }

.sell-table-wrap { overflow-x: auto; margin: 36px 0 8px; }
.sell-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.sell-table th, .sell-table td {
  padding: 13px 16px;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}
.sell-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}
.sell-table thead th:first-child { background: var(--gray-50); color: var(--navy); }
.sell-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  background: var(--gray-50);
  white-space: nowrap;
}
.sell-table tbody td:nth-child(3) { background: rgba(197,165,90,0.06); font-weight: 600; color: var(--navy); }

/* ---------- 5. 建築もできる不動産会社 ---------- */
.section-advantage { background: var(--gray-50); }
.adv-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.adv-col {
  background: var(--white);
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.adv-col--main { border: 2px solid var(--gold); }
.adv-col-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.adv-col--main .adv-col-label { color: var(--gold); }
.adv-col-body { font-size: 0.88rem; color: var(--text-mid); line-height: 2; }
.adv-col--main .adv-col-body { font-size: 0.92rem; color: var(--navy); font-weight: 600; }
.adv-arrow { font-size: 1.6rem; color: var(--gold); }
.adv-result {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--gray-100);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- 6. 相続不動産の整理 ---------- */
.section-inherit { background: var(--white); }
.inherit-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.inherit-list { display: flex; flex-direction: column; gap: 10px; }
.inherit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: 6px;
}
.inherit-list li::before {
  content: "◎";
  color: var(--gold);
  flex-shrink: 0;
}
.inherit-side {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 26px 26px 28px;
}
.inherit-side h3 { font-size: 1rem; margin-bottom: 12px; }
.inherit-side p { font-size: 0.85rem; opacity: 0.85; line-height: 1.9; margin-bottom: 18px; }
.inherit-position {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.85rem;
  line-height: 1.8;
}
.inherit-position strong { color: var(--gold); display: block; margin-bottom: 4px; font-size: 0.95rem; }

/* ---------- 7. 相談すると何が分かるか ---------- */
.section-learn { background: var(--gray-50); }
.learn-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  counter-reset: learn;
}
.learn-list li {
  counter-increment: learn;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
}
.learn-list li::before {
  content: counter(learn);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ---------- 8. 解決事例 ---------- */
.section-cases { background: var(--white); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card {
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.case-card-head {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.case-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.case-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.6; }
.case-flow { font-size: 0.8rem; color: var(--text-mid); line-height: 2; margin-bottom: 0; }
.case-flow span { display: block; }
.case-flow span + span::before { content: "↓ "; color: var(--gold); }

/* ---------- 9. 地域専門性 ---------- */
.section-area { background: var(--gray-50); }
.area-focus-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.area-focus-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.area-focus-badge {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.area-focus-badge--main { background: var(--navy); color: var(--white); }
.area-focus-sub { font-size: 0.85rem; color: var(--text-light); line-height: 1.9; }
.area-focus-photo {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.area-focus-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 10. トスクホームの歴史 ---------- */
.section-history { background: var(--white); }
.history-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: stretch; margin-bottom: 30px; }
.history-step {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}
.history-step .placeholder-image { aspect-ratio: 4/3; border-radius: 6px; margin-bottom: 10px; }
.history-photo { aspect-ratio: 4/3; border-radius: 6px; margin-bottom: 10px; overflow: hidden; }
.history-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.history-year-card {
  aspect-ratio: 4/3;
  border-radius: 6px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.history-year-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.history-year-label { font-size: 0.78rem; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }
.history-step p { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.history-arrow { display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); }
.history-text { max-width: 780px; margin: 0 auto; text-align: center; font-size: 0.9rem; color: var(--text-mid); line-height: 2; }

/* ---------- 対応するのはこんな人です（早期の顔出しティーザー） ---------- */
.section-staff-teaser { background: var(--warm-bg); padding: 48px 0; }
.staff-teaser-inner {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  align-items: center;
}
.staff-teaser-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.staff-teaser-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.staff-teaser-bubble {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.staff-teaser-bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 38px;
  width: 20px;
  height: 20px;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.staff-teaser-lead { font-size: 0.78rem; font-weight: 700; color: var(--warm-dark); margin-bottom: 6px; letter-spacing: 0.02em; }
.staff-teaser-text { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.8; margin-bottom: 14px; }
.staff-teaser-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.staff-teaser-more { display: inline-block; font-size: 0.8rem; color: var(--warm-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 人柄バッジ ---------- */
.staff-tag {
  display: inline-flex;
  align-items: center;
  background: var(--warm-bg-deep);
  color: var(--warm-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.staff-tags-photo { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 12px; }

/* ---------- 11. スタッフ・代表者 ---------- */
.section-staff { background: var(--gray-50); }
.staff-layout { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: center; }
.staff-photo { text-align: center; }
.staff-photo img { width: 100%; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); display: block; }
.staff-role { font-size: 0.78rem; color: var(--gray-600); margin-bottom: 6px; }
.staff-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.staff-quote {
  position: relative;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 12px;
  background: var(--warm-bg);
  border-radius: 14px;
  padding: 18px 20px 18px 26px;
}
.staff-quote .quote-mark {
  color: var(--warm);
  font-size: 1.6rem;
  font-weight: 800;
  margin-right: 2px;
  font-family: Georgia, serif;
}
.staff-layout p.staff-text { font-size: 0.86rem; color: var(--text-mid); line-height: 1.9; }
.staff-scene {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.staff-scene img { width: 100%; display: block; max-height: 480px; object-fit: cover; }
.staff-scene-caption {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 14px 20px;
  line-height: 1.7;
}

/* ---------- お客様の声 ---------- */
.section-voice { background: var(--warm-bg); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.voice-text {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}
.voice-text::before { content: "“"; color: var(--warm); font-weight: 800; font-family: Georgia, serif; }
.voice-person { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px dashed var(--gray-100); }
.voice-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-person div { display: flex; flex-direction: column; }
.voice-name { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.voice-tag { font-size: 0.72rem; color: var(--text-light); }

/* ---------- 12. YouTube ---------- */
.section-youtube { background: var(--white); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-card { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); border: 1px solid var(--gray-100); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #d8d8e0, #e8e8ee);
  display: flex; align-items: center; justify-content: center;
}
.video-play {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(27,42,74,0.85);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
}
.video-card-body { padding: 14px 16px 18px; }
.video-card-body h3 { font-size: 0.88rem; font-weight: 700; color: var(--navy); line-height: 1.6; }
.video-outro {
  text-align: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---------- 13. Instagram ---------- */
.section-instagram { background: var(--gray-50); }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.insta-item { aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; }
.insta-item span {
  position: absolute; left: 8px; bottom: 8px;
  font-size: 0.65rem; font-weight: 700;
  background: rgba(27,42,74,0.78); color: #fff;
  padding: 3px 8px; border-radius: 4px;
}

/* ---------- 14. 買いたい方（下部・縮小） ---------- */
.section-buy { background: var(--white); padding: 60px 0; }
.buyer-mini {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.buyer-mini-text h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.buyer-mini-text p { font-size: 0.83rem; color: var(--text-light); }
.buyer-mini-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- 15. 相談の流れ（reform-step流用のため追加調整のみ） ---------- */
.section-flow { background: var(--gray-50); }
.flow-note { text-align: center; margin-top: 30px; font-size: 0.88rem; color: var(--navy); font-weight: 700; }

/* ---------- 16. FAQ（ミニ） ---------- */
.section-faq-mini { background: var(--white); }
.faq-mini-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.faq-mini-item {
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 4px 18px;
  background: var(--gray-50);
}
.faq-mini-item summary {
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 26px;
}
.faq-mini-item summary::-webkit-details-marker { display: none; }
.faq-mini-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 12px;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 800;
}
.faq-mini-item[open] summary::after { content: "−"; }
.faq-mini-item p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; padding-bottom: 16px; margin: 0; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 1000px) {
  .reason-grid { grid-template-columns: 1fr; }
  .staff-profile > div { flex-direction: column; gap: 2px; }
  .staff-profile dt { width: auto; }
  .self-check-grid { grid-template-columns: repeat(2, 1fr); }
  .exit-grid { grid-template-columns: repeat(2, 1fr); }
  .sell-cards { grid-template-columns: 1fr; }
  .adv-compare { grid-template-columns: 1fr; }
  .adv-arrow { transform: rotate(90deg); margin: 0 auto; }
  .inherit-layout { grid-template-columns: 1fr; }
  .learn-list { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .area-focus-layout { grid-template-columns: 1fr; }
  .staff-layout { grid-template-columns: 160px 1fr; gap: 24px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-mini-list { grid-template-columns: 1fr; }
  .history-flow { grid-template-columns: 1fr; gap: 4px; }
  .history-arrow { transform: rotate(90deg); padding: 4px 0; }
  .voice-grid { grid-template-columns: 1fr; }
  .staff-teaser-inner { grid-template-columns: 100px 1fr; gap: 18px; }
  .staff-teaser-photo { width: 100px; height: 100px; }
}

@media (max-width: 640px) {
  .self-check-grid { grid-template-columns: 1fr; }
  .exit-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-layout { grid-template-columns: 1fr; text-align: center; }
  .staff-photo { max-width: 200px; margin: 0 auto; }
  .staff-tags-photo { justify-content: center; }
  .buyer-mini { flex-direction: column; text-align: center; padding: 26px 24px; }
  .sell-table { min-width: 480px; }
  .staff-teaser-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .staff-teaser-bubble::before { display: none; }
  .staff-teaser-tags { justify-content: center; }
}
