/* =========================================================
   ゼンホーム / 下層ページ共通スタイル
   TOP（style.css）のデザインシステムを踏襲
   ========================================================= */

.subpage { padding-top: var(--header-h); }

/* ---------- パンくず ---------- */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--line); }
.breadcrumb__inner {
  width: min(1200px, 100% - 80px);
  margin-inline: auto;
  padding: 13px 0;
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--sub);
}
.breadcrumb a { color: var(--sub); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { margin: 0 8px; color: var(--line); }

/* ---------- ページイントロ（コンテンツヘッダー） ---------- */
.page-intro {
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
  text-align: center;
  background:
    radial-gradient(130% 120% at 50% -30%, rgba(191,160,99,.09), transparent 58%),
    var(--paper);
}
.page-intro::before,
.page-intro::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(191,160,99,.22);
  border-radius: 50%;
  pointer-events: none;
}
.page-intro::before { width: 320px; height: 320px; top: -150px; right: -110px; }
.page-intro::after { width: 170px; height: 170px; bottom: -80px; left: -60px; border-color: rgba(191,160,99,.14); }
.page-intro .container { position: relative; z-index: 1; }
.page-intro .sec-head { margin-bottom: 0; }
.page-intro__cta { margin-top: 36px; }

/* 背景の大きな英字ウォーターマーク */
.page-intro__wm {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -56%);
  z-index: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(88px, 15vw, 210px);
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28,42,77,.09);
  pointer-events: none;
  user-select: none;
}

/* タイトル下の金の細線 */
.page-intro .sec-head__title { position: relative; padding-bottom: 24px; }
.page-intro .sec-head__title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 50px; height: 2px;
  background: var(--gold);
}
.page-intro .sec-head__sub { margin-top: 22px; }

@media (max-width: 480px) {
  .page-intro { padding: 60px 0 52px; }
  .page-intro::before { width: 200px; height: 200px; top: -110px; right: -80px; }
  .page-intro::after { display: none; }
}

/* イントロ統計（実績ページ） */
.intro-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
}
.intro-stat { padding: 4px clamp(22px, 4vw, 52px); display: flex; flex-direction: column; gap: 6px; }
.intro-stat + .intro-stat { border-left: 1px solid var(--line); }
.intro-stat__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--navy);
  line-height: 1;
}
.intro-stat__label { font-size: 12.5px; color: var(--sub); }

/* ---------- カテゴリ / 絞り込みチップ ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips--left { justify-content: flex-start; }
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--body);
  background: var(--white);
  border: 1px solid var(--line);
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.is-active { background: var(--navy); color: var(--white); border-color: transparent; }

/* ---------- セクション小見出し（金の細線つき） ---------- */
.block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.block-head::before { content: ""; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }

/* =========================================================
   買取の流れ — ステップ
   ========================================================= */
.steps { position: relative; display: flex; flex-direction: column; gap: 22px; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 28px 0 0;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
}
.step__num {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.step__title { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--navy); margin-bottom: 12px; }
.step__text { font-size: 14px; line-height: 1.9; color: var(--body); margin-bottom: 12px; }
.step__eta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent-dark);
  background: rgba(192,98,35,.08);
  padding: 6px 14px;
  border-radius: 999px;
}

/* 書類・費用 */
.docs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.doc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 24px 0 0;
  padding: 32px 34px;
}
.doc__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 13px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body);
}
.doc__list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; background: var(--gold); }
.doc__note { margin-top: 16px; font-size: 12.5px; color: var(--sub); line-height: 1.7; }

/* =========================================================
   FAQ アコーディオン
   ========================================================= */
.faq-cat { margin-bottom: 44px; }
.faq-cat:last-child { margin-bottom: 0; }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--navy);
  cursor: pointer;
}
.faq__q-mark { font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--gold); flex-shrink: 0; }
.faq__q-text { flex: 1; }
.faq__icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform .3s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { overflow: hidden; }
.faq__a p {
  display: flex;
  gap: 16px;
  padding: 0 4px 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--body);
}
.faq__a-mark { font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--accent); flex-shrink: 0; }

/* =========================================================
   実績カード（TOPの .case を踏襲・拡張）
   ========================================================= */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-grid .case__img { height: 200px; }
.case__meta { display: flex; flex-direction: column; gap: 4px; margin: 12px 0 14px; }
.pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.pager a, .pager span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--body);
  transition: background .2s, color .2s, border-color .2s;
}
.pager a:hover { border-color: var(--accent); color: var(--accent); }
.pager .is-current { background: var(--navy); color: var(--white); border-color: transparent; }

/* 種別入口 / 導線チップ */
.type-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.type-link {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  transition: background .2s, color .2s, border-color .2s;
}
.type-link::after { content: "→"; margin-left: 8px; color: var(--gold); }
.type-link:hover { background: var(--navy); color: var(--white); border-color: transparent; }
.type-link:hover::after { color: var(--white); }

/* =========================================================
   コラム一覧（TOPの .col-card を踏襲・拡張）
   ========================================================= */
.column-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.col-card__excerpt { font-size: 13px; line-height: 1.8; color: var(--body); margin: 10px 0 12px; }
.col-card__title { min-height: 0; }
.col-card--feature .col-card__title { font-weight: 600; }

/* 検索ボックス */
.search-box { position: relative; width: min(520px, 100%); margin: 0 auto; }
.search-box input {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  padding: 14px 48px 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.search-box input::placeholder { color: var(--sub); }
.search-box input:focus { outline: none; border-color: var(--gold); }
.search-box__icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--sub); pointer-events: none; }

/* =========================================================
   コラム詳細（記事 + サイドバー）
   ========================================================= */
.article { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.article__tag { display: inline-block; margin-bottom: 20px; }
.article__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.article__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 12.5px; color: var(--sub); margin-bottom: 30px; }
.article__eyecatch { height: 340px; border-radius: 0 40px 0 0; margin-bottom: 40px; }

/* 目次 */
.toc { background: var(--surface); border: 1px solid var(--line); border-radius: 0 20px 0 0; padding: 26px 30px; margin-bottom: 44px; }
.toc__head { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 16px; }
.toc__list { counter-reset: toc; }
.toc__list li { margin-bottom: 10px; }
.toc__list li:last-child { margin-bottom: 0; }
.toc__list a { font-size: 14px; color: var(--body); transition: color .2s; }
.toc__list a:hover { color: var(--accent); }

/* 記事ページ上部の下地（他ページのヘッダーと雰囲気を統一） */
.article-lead { position: relative; overflow: hidden; background: radial-gradient(120% 80% at 78% -10%, rgba(191,160,99,.08), transparent 52%), var(--paper); }
.article-lead::before {
  content: ""; position: absolute; width: 300px; height: 300px; top: -150px; right: -100px;
  border: 1px solid rgba(191,160,99,.2); border-radius: 50%; pointer-events: none;
}
.article-lead .container { position: relative; z-index: 1; }

/* 記事本文 */
.article__body h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
  margin: 44px 0 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.article__body h2:first-child { margin-top: 0; }
.article__body p { font-size: 15px; line-height: 2; color: var(--body); margin-bottom: 20px; }
.article__body ul { margin: 0 0 24px; }
.article__body ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
}
.article__body ul li::before { content: ""; position: absolute; left: 0; top: .75em; width: 7px; height: 7px; background: var(--gold); }

/* 記事内CTA */
.inline-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 0 28px 0 0;
  padding: 30px 34px;
  margin: 36px 0;
}
.inline-cta__title { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--white); margin-bottom: 10px; }
.inline-cta__text { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,.82); margin-bottom: 20px; }

/* 監修者 */
.author {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border-radius: 0 20px 0 0;
  padding: 24px 28px;
  margin-top: 40px;
}
.author__avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; }
.author__name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.author__bio { font-size: 13px; line-height: 1.8; color: var(--body); }

/* サイドバー */
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: flex; flex-direction: column; gap: 24px; }
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: 0 20px 0 0; padding: 24px; }
.side-card__head { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 18px; }
.side-post { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.side-post:first-of-type { border-top: none; padding-top: 0; }
.side-post__thumb { width: 72px; height: 56px; flex-shrink: 0; border-radius: 4px; }
.side-post__title { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.5; margin-bottom: 6px; }
.side-post__tag { font-size: 11px; color: var(--sub); }
.side-card--cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); border: none; }
.side-card--cta .side-card__head { color: var(--white); }
.side-card__text { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.82); margin-bottom: 18px; }

/* =========================================================
   会社概要：代表挨拶・沿革
   ========================================================= */
.message { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.message__photo { height: 340px; border-radius: 0 40px 0 0; }
.message__name { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--navy); margin-bottom: 18px; }
.message__body { font-size: 15px; line-height: 2; color: var(--body); }

.timeline { border-left: 2px solid var(--line); margin-left: 6px; }
.timeline__row { position: relative; padding: 0 0 30px 36px; }
.timeline__row:last-child { padding-bottom: 0; }
.timeline__row::before { content: ""; position: absolute; left: -8px; top: 3px; width: 13px; height: 13px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px var(--paper); }
.section--alt .timeline__row::before { box-shadow: 0 0 0 3px #F4EFE6; }
.timeline__date { font-family: var(--serif); font-weight: 600; font-size: 14px; color: var(--accent-dark); margin-bottom: 4px; }
.timeline__text { font-size: 14.5px; color: var(--body); }

/* =========================================================
   スタッフカード
   ========================================================= */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.staff-card { background: var(--white); border: 1px solid var(--line); border-radius: 0 28px 0 0; overflow: hidden; box-shadow: var(--shadow-card); }
.staff-card__photo { height: 230px; }
.staff-card__body { padding: 22px 24px 26px; }
.staff-card__role { font-size: 12.5px; font-weight: 500; color: var(--accent); letter-spacing: .04em; }
.staff-card__name { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--navy); margin: 6px 0 12px; }
.staff-card__qual { font-size: 12.5px; color: var(--sub); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.staff-card__bio { font-size: 13.5px; line-height: 1.8; color: var(--body); }

/* =========================================================
   プライバシーポリシー等の本文
   ========================================================= */
.legal__lead { font-size: 15px; line-height: 1.95; color: var(--body); margin-bottom: 40px; }
.legal__sec { margin-bottom: 32px; }
.legal__sec:last-of-type { margin-bottom: 0; }
.legal__h { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.legal__h .num { color: var(--gold); margin-right: 10px; }
.legal__p { font-size: 14.5px; line-height: 1.95; color: var(--body); }
.legal__date { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--sub); }

/* =========================================================
   サービスページ（建築リフォーム／賃貸仲介・管理）
   ========================================================= */
.svc-fv { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 5vw, 64px); align-items: center; }
/* FVの eyebrow：まる pill をやめ、金の縦罫＋セリフのエディトリアルなキッカーに */
.svc-fv__badges { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 10px 15px; margin-bottom: 26px; }
.svc-fv__badges .badge { padding: 0; border: none; border-radius: 0; background: none; letter-spacing: .03em; }
.svc-fv__badges .badge--accent {
  position: relative; padding-left: 15px;
  font-family: var(--serif); font-weight: 600; font-size: clamp(14px, 1.5vw, 16px); color: var(--navy);
}
.svc-fv__badges .badge--accent::before {
  content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 3px; background: var(--accent);
}
.svc-fv__badges .badge--gold {
  position: relative; padding-left: 16px;
  font-size: 12.5px; font-weight: 500; color: var(--sub);
}
.svc-fv__badges .badge--gold::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 13px; background: var(--gold); opacity: .55;
}
.svc-fv__title { font-family: var(--serif); font-weight: 600; font-size: clamp(25px, 2.9vw, 37px); line-height: 1.5; color: var(--navy); letter-spacing: .03em; margin-bottom: 22px; }
.svc-fv__text { font-size: 15px; line-height: 2; color: var(--body); margin-bottom: 24px; }
.svc-fv__checks { display: flex; flex-wrap: wrap; align-items: center; gap: 11px 26px; margin-bottom: 28px; }
.svc-fv__check { display: inline-flex; align-items: center; font-size: 14px; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.svc-fv__check::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); margin-right: 10px; flex-shrink: 0; }
.svc-fv__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.svc-fv__license { font-size: 11.5px; color: var(--sub); letter-spacing: .02em; }
.svc-fv__visual { position: relative; height: clamp(300px, 32vw, 400px); border-radius: 0 72px 0 0; }

.svc-lead { text-align: center; }
.svc-lead__title { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); color: var(--navy); line-height: 1.5; margin-bottom: 26px; }
.svc-lead__p { max-width: 900px; margin: 0 auto 16px; font-size: 15px; line-height: 1.95; color: var(--body); }

.worries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.worry { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 18px 22px; font-size: 14.5px; color: var(--navy); }
.worry__ico { flex-shrink: 0; display: inline-flex; align-items: center; line-height: 0; color: var(--gold); }

.svc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-card { background: var(--white); border: 1px solid var(--line); border-radius: 0 24px 0 0; overflow: hidden; box-shadow: var(--shadow-card); }
.svc-card__img { height: 150px; }
.svc-card__body { padding: 20px 22px 24px; }
.svc-card__title { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.svc-card__text { font-size: 13px; line-height: 1.8; color: var(--body); }

.svc-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-reason { background: var(--white); border: 1px solid var(--line); border-radius: 0 20px 0 0; padding: 28px 32px; }
.svc-reason__title { position: relative; font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--navy); margin-bottom: 12px; padding-left: 15px; }
.svc-reason__title::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 3px; background: var(--gold); }
.svc-reason__text { font-size: 13.5px; line-height: 1.8; color: var(--body); }

.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flow__step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 0 20px 0 0; padding: 26px 24px; }
.flow__num { font-family: var(--serif); font-weight: 600; font-size: 13px; letter-spacing: .14em; color: var(--gold); margin-bottom: 14px; }
.flow__title { font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.flow__text { font-size: 13px; line-height: 1.75; color: var(--body); }

.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba-card { background: var(--white); border: 1px solid var(--line); border-radius: 0 24px 0 0; padding: 22px; box-shadow: var(--shadow-card); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.ba-img { height: 110px; }
.ba-card__title { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.ba-card__meta { font-size: 12.5px; color: var(--sub); line-height: 1.6; }

/* =========================================================
   店舗情報・アクセス
   ========================================================= */
.access-map { height: 400px; border-radius: 0 48px 0 0; overflow: hidden; background: var(--surface); }
.access-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.store { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: start; }
.store__photo { height: 300px; border-radius: 0 40px 0 0; }
.access-info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.access-box { background: var(--white); border: 1px solid var(--line); border-radius: 0 20px 0 0; padding: 26px 32px; }
.access-box__h { position: relative; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; padding-left: 15px; }
.access-box__h::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 3px; background: var(--gold); }
.access-box__p { font-size: 14px; line-height: 1.9; color: var(--body); }

/* =========================================================
   建築リフォーム：エディトリアル版（参考: BERG ONISHI）
   ========================================================= */
.rf-section { padding: clamp(80px, 9vw, 130px) 0; position: relative; }

/* 見出し（英字eyebrow＋明朝・左寄せ大きめ） */
.rf-head { margin-bottom: 56px; }
.rf-head__eyebrow { display: block; font-size: 12px; font-weight: 500; letter-spacing: .34em; color: var(--accent); margin-bottom: 16px; }
.rf-head__title { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.45; color: var(--navy); letter-spacing: .04em; padding-left: 20px; position: relative; }
.rf-head__title::before { content: ""; position: absolute; left: 0; top: .1em; bottom: .1em; width: 3px; background: var(--gold); }

/* 縦組み英字ラベル */
.vlabel { writing-mode: vertical-rl; font-size: 11px; font-weight: 500; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; line-height: 1; }

/* 全面写真ステートメント */
.stmt { position: relative; min-height: clamp(440px, 56vw, 600px); display: flex; align-items: center; overflow: hidden; background: var(--navy-deep); }
.stmt__bg { position: absolute; inset: 0; }
.stmt__bg img { width: 100%; height: 100%; object-fit: cover; }
.stmt::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,28,46,.82) 0%, rgba(20,28,46,.5) 50%, rgba(20,28,46,.62) 100%); }
.stmt__inner { position: relative; z-index: 1; width: min(1200px, 100% - 80px); margin-inline: auto; display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.stmt__badge { align-self: center; background: var(--white); padding: 22px 26px; border-left: 3px solid var(--gold); }
.stmt__badge small { display: block; font-size: 10px; letter-spacing: .3em; color: var(--accent); margin-bottom: 8px; }
.stmt__badge span { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--navy); letter-spacing: .04em; }
.stmt__title { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3vw, 40px); line-height: 1.55; color: var(--white); letter-spacing: .05em; margin-bottom: 26px; }
.stmt__text { font-size: 14.5px; line-height: 2.1; color: rgba(255,255,255,.82); }
.stmt__text + .stmt__text { margin-top: 20px; }

/* OUR STRENGTHS 千鳥カード */
.strengths { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); align-items: start; }
.strengths .strength:nth-child(2) { margin-top: 64px; }
.strengths .strength:nth-child(3) { margin-top: 128px; }
.strength__figure { position: relative; }
.strength__img { height: clamp(240px, 24vw, 320px); border-radius: 0 40px 0 0; }
.strength__figure .vlabel { position: absolute; top: 20px; right: 18px; z-index: 2; color: var(--white); text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.strength__title { margin-top: 22px; font-family: var(--serif); font-weight: 600; font-size: clamp(18px, 1.9vw, 21px); color: var(--navy); letter-spacing: .04em; }
.strength__title b { color: var(--gold); font-weight: 600; }
.strength__text { margin-top: 12px; font-size: 13.5px; line-height: 1.95; color: var(--body); }

/* 左右交互エディトリアル */
.editorial { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 96px); }
.edit-row { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; }
.edit-row__figure { position: relative; height: clamp(300px, 32vw, 420px); }
.edit-row__figure .vlabel { position: absolute; top: 24px; right: 20px; z-index: 2; color: var(--white); text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.edit-row__panel { background: var(--surface); padding: clamp(32px, 4vw, 52px); position: relative; z-index: 1; }
.edit-row:nth-child(odd) .edit-row__panel { margin-left: -48px; }
.edit-row:nth-child(even) { grid-template-columns: .95fr 1.05fr; }
.edit-row:nth-child(even) .edit-row__figure { order: 2; }
.edit-row:nth-child(even) .edit-row__panel { order: 1; margin-right: -48px; }
.edit-row__no { font-family: var(--serif); font-weight: 600; font-size: 14px; color: var(--gold); letter-spacing: .1em; margin-bottom: 12px; }
.edit-row__title { font-family: var(--serif); font-weight: 600; font-size: clamp(19px, 2vw, 24px); color: var(--navy); letter-spacing: .04em; margin-bottom: 14px; }
.edit-row__text { font-size: 14px; line-height: 1.95; color: var(--body); }

/* 写真プレースホルダ（中間トーン・白ラベルが読める） */
.ph--img { background: #7d776c; }
.ph--img .ph__icon, .ph--img .ph__label { color: rgba(255,255,255,.78); }

/* before/after のラベルバッジ */
.ba-tag { position: absolute; left: 8px; top: 8px; background: rgba(20,28,46,.72); color: #fff; font-size: 11px; letter-spacing: .02em; padding: 3px 9px; border-radius: 3px; }

/* 顔写真がない場合のシルエット */
.silhouette { display: grid; place-items: center; background: var(--surface); }
.silhouette svg { width: 46%; height: auto; }

/* 円形の矢印リンク */
.circle-link { display: inline-flex; align-items: center; gap: 16px; font-size: 14px; font-weight: 500; color: var(--navy); letter-spacing: .04em; }
.circle-link__circle { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; flex-shrink: 0; transition: background .25s; }
.circle-link:hover .circle-link__circle { background: var(--accent); }

@media (max-width: 1024px) {
  .strengths { grid-template-columns: 1fr; gap: 40px; }
  .strengths .strength:nth-child(2), .strengths .strength:nth-child(3) { margin-top: 0; }
  .strength__img { height: 260px; }
}
@media (max-width: 900px) {
  .stmt__inner { grid-template-columns: 1fr; gap: 28px; }
  .stmt__badge { justify-self: start; }
  .edit-row, .edit-row:nth-child(even) { grid-template-columns: 1fr; }
  .edit-row__figure, .edit-row:nth-child(even) .edit-row__figure { order: 0; height: 260px; }
  .edit-row__panel, .edit-row:nth-child(odd) .edit-row__panel, .edit-row:nth-child(even) .edit-row__panel { order: 0; margin: 0; }
}

/* =========================================================
   テキカク不動産／物件種別ページ
   ========================================================= */
/* 9種別グリッド */
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.type-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 0 20px 0 0; padding: 24px 26px; transition: box-shadow .25s, transform .25s; }
.type-card:hover { box-shadow: var(--shadow-panel); transform: translateY(-3px); }
.type-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.type-card__ico { font-family: var(--serif); font-weight: 600; font-size: 15px; letter-spacing: .04em; line-height: 1; color: var(--gold); }
.type-card__name { font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--navy); letter-spacing: .02em; }
.type-card__desc { font-size: 13px; line-height: 1.8; color: var(--body); margin-bottom: 16px; flex: 1; }

/* 付帯サービス（✓ 見出し＋説明） */
.aux-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aux { background: var(--white); border: 1px solid var(--line); border-radius: 0 18px 0 0; padding: 24px 26px; }
.aux__title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.aux__title::before { content: "✓"; color: var(--gold); font-weight: 700; margin-right: 8px; }
.aux__text { font-size: 13px; line-height: 1.85; color: var(--body); }

/* 選ばれる6理由（TOPの .reason を3列で） */
.reasons--six { grid-template-columns: repeat(3, 1fr); }

/* 情報2カラム（〜とは） */
.info2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.info-box { background: var(--white); border: 1px solid var(--line); border-radius: 0 20px 0 0; padding: 28px 32px; }
.info-box__h { position: relative; font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--navy); margin-bottom: 14px; padding-left: 15px; }
.info-box__h::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 3px; background: var(--gold); }
.info-box__text { font-size: 14px; line-height: 1.9; color: var(--body); }
.info-note { margin-top: 26px; font-size: 13.5px; }

/* 買取ガイド（長文セクション） */
/* 買取ガイド：エディトリアル行（長方形写真＋縦組み英字ラベル＋本文パネル） */
.guide { display: flex; flex-direction: column; gap: clamp(44px, 6vw, 78px); }
.gd-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.gd-row__photo {
  position: relative; z-index: 2;
  height: clamp(250px, 26vw, 326px);
  margin: 0;
  border-radius: 0 40px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gd-row__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gd-row__body {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start;
  gap: clamp(18px, 2vw, 30px);
  margin-left: -46px;
  padding: clamp(38px, 4vw, 52px) clamp(28px, 3vw, 44px) clamp(38px, 4vw, 52px) clamp(62px, 5vw, 78px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 40px 0 0;
  min-height: 72%;
}
.gd-row__label {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--sans); font-weight: 700;
  font-size: 12px; letter-spacing: .24em;
  color: var(--navy); white-space: nowrap;
  flex-shrink: 0; padding-top: 2px;
}
.gd-row__label b { color: var(--gold); font-weight: 700; }
.gd-row__main { flex: 1; }
.gd-row__h { font-family: var(--serif); font-weight: 600; font-size: clamp(17px, 1.9vw, 21px); color: var(--navy); line-height: 1.55; margin-bottom: 14px; }
.gd-row__p { font-size: 14px; line-height: 2; color: var(--body); }
/* 交互配置（偶数行は写真右） */
.gd-row:nth-child(even) .gd-row__photo { order: 2; border-radius: 0 0 0 40px; }
.gd-row:nth-child(even) .gd-row__body {
  order: 1; margin-left: 0; margin-right: -46px;
  flex-direction: row-reverse;
  padding: clamp(38px,4vw,52px) clamp(62px,5vw,78px) clamp(38px,4vw,52px) clamp(28px,3vw,44px);
  border-radius: 40px 0 0 0;
}
@media (max-width: 860px) {
  .gd-row { display: block; }
  .gd-row__photo,
  .gd-row:nth-child(even) .gd-row__photo { height: clamp(200px, 52vw, 300px); border-radius: 0 30px 0 0; order: 0; }
  .gd-row__body,
  .gd-row:nth-child(even) .gd-row__body {
    flex-direction: column; align-items: stretch; order: 0;
    gap: 8px;
    margin: -34px 14px 0; padding: 30px 26px;
    border-radius: 0 30px 0 0;
  }
  .gd-row__label { writing-mode: horizontal-tb; padding-top: 0; letter-spacing: .18em; }
}

@media (max-width: 1024px) {
  .type-grid, .aux-grid, .reasons--six { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .type-grid, .aux-grid, .reasons--six, .info2 { grid-template-columns: 1fr; }
}

/* =========================================================
   下層ページ レスポンシブ
   ========================================================= */
@media (max-width: 1024px) {
  .case-grid, .column-grid { grid-template-columns: repeat(2, 1fr); }
  .article { grid-template-columns: 1fr; gap: 44px; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1; min-width: 260px; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .worries { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .svc-reasons { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .svc-fv { grid-template-columns: 1fr; gap: 36px; }
  .message { grid-template-columns: 1fr; gap: 28px; }
  .message__photo { height: 280px; max-width: 320px; }
  .store { grid-template-columns: 1fr; gap: 32px; }
  .access-info { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .staff-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .svc-cards { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .worries { grid-template-columns: 1fr; }
  .docs { grid-template-columns: 1fr; }
  .case-grid, .column-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: auto 1fr; gap: 18px; padding: 24px 22px; }
  .step__num { width: 48px; height: 48px; font-size: 17px; }
  .intro-stat { padding: 4px clamp(14px, 5vw, 30px); }
  .article__eyecatch { height: 220px; }
  .sidebar { flex-direction: column; }
}
@media (max-width: 480px) {
  .page-intro { padding: 52px 0 48px; }
  .intro-stats { gap: 0; }
  .intro-stat { border-left: none; }
  .step__eta { font-size: 11.5px; }
}

/* =========================================================
   サイトマップ（ユーザー目線）
   ========================================================= */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  align-items: start;
}
.sitemap-cat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 20px 0 0;
  padding: 26px 28px 28px;
}
.sitemap-cat__h {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.sitemap-cat__h .en {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gold);
}
.sitemap-list { list-style: none; margin: 0; padding: 0; }
.sitemap-list > li { border-bottom: 1px dashed var(--line); }
.sitemap-list > li:last-child { border-bottom: none; }
.sitemap-list a,
.sitemap-list span.is-todo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px;
  font-size: 14.5px;
  line-height: 1.6;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.sitemap-list a {
  color: var(--body);
  font-weight: 500;
}
.sitemap-list a::before {
  content: "›";
  color: var(--gold);
  font-size: 16px;
  transition: transform .2s;
}
.sitemap-list a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.sitemap-list a[aria-current="page"] {
  color: var(--navy);
  font-weight: 700;
}
.sitemap-list span.is-todo {
  color: #A9A296;
  cursor: default;
}
.sitemap-list span.is-todo::before {
  content: "›";
  color: #D8D2C7;
  font-size: 16px;
}
.sitemap-list .badge--todo {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #B0A896;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 9px;
  white-space: nowrap;
}
.sitemap-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
  font-size: 13px;
  color: var(--muted, #8A8272);
}
.sitemap-note .badge--todo {
  font-size: 10.5px; font-weight: 700; color: #B0A896;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 2px 9px;
}
@media (max-width: 1024px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 20px; }
}
