/* ==========================================================================
   common.css — 数寄舎
   DESIGN LANGUAGE: 墨絵（Sumi-e）× 和紙（Washi）× 苔（Moss）
   TARGET: 茶道具を大切にされてきた方への敬意と信頼
   ========================================================================== */

:root {
  /* ── 和紙ベース ── */
  --paper:      #f3f1eb;
  --paper-d:    #e8e2d3;
  --paper-2:    #ebe6d8;
  --paper-w:    #faf8f1;

  /* ── 墨テキスト ── */
  --ink-deep:   #0d0d0d;
  --ink:        #1f1f1f;
  --ink-mid:    #3a3a3a;
  --mist:       #656565;
  --mist-l:     #8a8a82;

  /* ── 線・区切り ── */
  --line:       rgba(13, 13, 13, 0.1);
  --line-soft:  rgba(13, 13, 13, 0.05);

  /* ── 苔色（アクセント） ── */
  --moss:       #4a5d3a;
  --moss-d:     #2a3a20;

  /* ── 朱漆（落款印用・極控えめ） ── */
  --vermillion: #b03a2e;
  --sl-gold:    #b8976a;               /* 店舗一覧 アクセントゴールド */

  /* ── LINE ── */
  --line-green:   #06C755;
  --line-green-d: #05a849;               /* LINE ダーク（hover） */
  --line-green-l: #e8f8ee;               /* LINE ライト（背景） */

  /* ── paper 透過バリアント（ダーク背景上のテキスト・ボーダー用） ── */
  --paper-06:   rgba(243, 241, 235, 0.06);   /* 極薄背景 */
  --paper-08:   rgba(243, 241, 235, 0.08);   /* 区切り線 */
  --paper-30:   rgba(243, 241, 235, 0.3);    /* ボーダー・薄線 */
  --paper-50:   rgba(243, 241, 235, 0.5);    /* 補助テキスト */
  --paper-55:   rgba(243, 241, 235, 0.55);   /* 補助テキスト（やや明） */
  --paper-60:   rgba(243, 241, 235, 0.6);    /* 本文（淡） */
  --paper-65:   rgba(243, 241, 235, 0.65);   /* 本文（中） */
  --paper-70:   rgba(243, 241, 235, 0.7);    /* 本文（明） */
  --paper-75:   rgba(243, 241, 235, 0.75);   /* セクションサブタイトル */

  /* ── ユーティリティ ── */
  --white:        #ffffff;               /* 純白（背景・逆色テキスト） */
  --ink-hover:    #1a1a1a;               /* カードhover背景（ほぼ黒） */
  --paper-moss:   #cfd6c2;              /* moss系 淡色テキスト（darkカードhover用） */

  /* ── トランジション ── */
  --duration-fast: 0.2s;                 /* 素早いUI応答（hover等）/ 0.25s も統一 */
  --duration-base: 0.3s;                 /* 標準アニメーション */
  --duration-slow: 0.4s;                 /* やや遅め（背景スライド等） */
  --easing-base:   ease;                 /* 標準イージング */

  /* ── Container Widths ── */
  --container-text: 720px;
  --container-sm:  780px;
  --container-md:  980px;
  --container-inner: 1180px;
  --container-lg:  1280px;
  --container-xl:  1320px;
  --container-article: 860px;         /* 店舗詳細・記事本文 */

  /* ── Spacing Scale ── */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   40px;
  --space-xl:   60px;
  --space-2xl:  80px;
  --space-3xl:  110px;
  --space-2xl-p: 100px;
  --space-2xl-alt: 90px;                  /* セクション縦padding（90px）ctaband / line-section 等 */

  /* ── Semantic Spacing (セクション水平余白) ── */
  --section-pad-x:        var(--space-xl);   /* 60px — デスクトップ */
  --section-pad-x-tablet: 40px;              /* タブレット（1100px以下） */
  --section-pad-x-mobile: 20px;              /* モバイル（760px以下） */

  /* ── Scroll Offset (sticky header 考慮) ── */
  --scroll-offset: 90px;                 /* header高さ約82px + 余白8px。scroll-margin-top に使用 */

  /* ── Breakpoints (参照用 — メディアクエリ内では直接値を使用) ── */
  /* tablet:  1100px */
  /* mobile:  760px  */

  /* ── Typography — Font Families ── */
  --mincho:   "Sawarabi Mincho", "Shippori Mincho B1", "Yu Mincho", serif;
  --shippori: "Shippori Mincho B1", serif;
  --yuji:     "Yuji Syuku", "Shippori Mincho B1", serif;
  --garamond: "Cormorant Garamond", serif;

  /* ── Typography — Font Scale (Phase 22: 年配ユーザー向け +2〜4px 拡大) ── */
  --fs-display:  clamp(38px, 5.5vw, 58px);    /* Hero h1 (mobile override in @media) */
  --fs-section:  clamp(34px, 4.4vw, 50px);    /* .section-title */
  --fs-h2:       26px;                         /* Sub-section headings */
  --fs-sub:      23px;                         /* Sub-section accent titles */
  --fs-h3:       21px;                         /* Card / block headings */
  --fs-h3s:      20px;                         /* Card titles, minor headings */
  --fs-h4:       19px;                         /* Minor headings */
  --fs-body:     18px;                         /* Main body text */
  --fs-body-s:   17px;                         /* Secondary body */
  --fs-ui:       16px;                         /* Nav, buttons, UI elements */
  --fs-caption:  15px;                         /* Captions, meta */
  --fs-small:    14px;                         /* Small text, breadcrumb */
  --fs-label:    13px;                         /* Labels, eyebrows */
  --fs-xs:       12px;                         /* Decorative, sub-labels */
}

/* ══════ BASE ══════ */
body {
  font-family: var(--mincho);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.9;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* 全体に乗せる薄い和紙ノイズ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(13, 13, 13, 0.025), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(13, 13, 13, 0.02), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

main { position: relative; z-index: 2; }

/* ══════ COMMON: SECTION HEADING ══════ */
.eyebrow {
  font-family: var(--garamond);
  font-style: italic;
  font-size: var(--fs-small);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--mist);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "—"; color: var(--ink); font-style: normal;
}

.section-title {
  font-family: var(--yuji);
  font-size: var(--fs-section);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: var(--ink-deep);
  margin: 14px 0 0;
}
.section-title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.section-title em::after {
  content: ""; position: absolute;
  bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--ink-deep);
  opacity: 0.35;
}

.section-sub {
  font-family: var(--shippori);
  font-size: var(--fs-body-s);
  line-height: 2;
  color: var(--ink-mid);
  max-width: 640px;
  margin-top: var(--space-md);
}

/* ══════ BUTTONS ══════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  font-family: var(--shippori);
  font-size: var(--fs-ui);
  letter-spacing: 0.22em;
  border: 1.5px solid var(--ink-deep);
  background: var(--ink-deep);
  color: var(--paper);
  font-weight: 500;
  min-height: 46px;
  overflow: hidden;
  transition: transform var(--duration-fast);
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--moss-d);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s ease;
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--ghost {
  background: var(--white);
  border-color: var(--moss);
  color: var(--moss);
}
.btn--ghost::before { background: var(--moss); }
.btn--ghost:hover span { color: var(--white); }
.btn--lg { padding: 22px 42px; font-size: var(--fs-body-s); min-height: 52px; }

/* ══════ HEADER ══════ */
.hd {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 241, 235, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hd__inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 18px var(--section-pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.hd__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.hd__logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
/* フッター内のロゴは白く見せる（背景が暗いため） */
.ft .hd__logo-img {
  filter: brightness(0) invert(1);
}
.hd__sumi {
  width: 46px; height: 46px;
  background: var(--ink-deep);
  display: grid;
  place-items: center;
  position: relative;
  color: var(--paper);
  font-family: var(--yuji);
  font-size: var(--fs-sub);
  border-radius: 3px;
}
.hd__sumi::before {
  content: ""; position: absolute; inset: 4px;
  background: radial-gradient(circle at 40% 35%, transparent 30%, var(--ink-deep) 31%);
  opacity: 0.4; border-radius: 2px;
}
.hd__sumi span { position: relative; }
.hd__name {
  font-family: var(--yuji);
  font-size: var(--fs-h3);
  letter-spacing: 0.18em;
  color: var(--ink-deep);
  line-height: 1.2;
}
.hd__name small {
  display: block;
  font-family: var(--garamond);
  font-size: 15px;
  letter-spacing: 0.32em;
  color: var(--mist);
  margin-top: 4px;
  text-transform: uppercase;
}
.hd__nav {
  display: flex;
  gap: 28px;
  font-family: var(--shippori);
  font-size: var(--fs-ui);
  letter-spacing: 0.18em;
}
.hd__nav a {
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color var(--duration-fast);
}
.hd__nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ink-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) ease;
}
.hd__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.hd__cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.hd__tel {
  font-family: var(--garamond);
  font-size: var(--fs-h2);
  letter-spacing: 0.05em;
  color: var(--ink-deep);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.hd__tel small {
  font-family: var(--shippori);
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  color: var(--mist);
  order: 1;
}
.hd__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 12px 22px;
  font-family: var(--shippori);
  font-size: var(--fs-caption);
  letter-spacing: 0.18em;
  background: var(--ink-deep);
  color: var(--paper);
  font-weight: 500;
  min-height: 52px;
  transition: background var(--duration-fast);
}
.hd__btn:hover { background: var(--moss-d); }

/* ══════ FOOTER ══════ */
.ft {
  background: var(--ink-deep);
  color: var(--paper);
  padding: var(--space-2xl) var(--section-pad-x) 30px;
  position: relative;
  z-index: 2;
}
.ft__inner {
  max-width: var(--container-xl);
  margin: 0 auto;
}
/* 上段：ロゴ（左）＋ナビ3列（右）横並び */
.ft__main {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-bottom: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(243, 241, 235, 0.12);
}
.ft__top {
  flex-shrink: 0;
  min-width: 220px;
}
.ft__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 14px;
}
.ft .hd__sumi {
  background: var(--paper);
  color: var(--ink-deep);
}
.ft .hd__sumi::before {
  background: radial-gradient(circle at 40% 35%, transparent 30%, var(--paper) 31%);
}
.ft .hd__name {
  font-family: var(--yuji);
  font-size: 24px;
  letter-spacing: 0.18em;
  color: var(--paper);
}
.ft .hd__name small {
  display: block;
  font-family: var(--garamond);
  font-style: italic;
  font-size: var(--fs-label);
  letter-spacing: 0.3em;
  color: var(--paper-60);
  margin-top: 6px;
  text-transform: uppercase;
}
.ft__catch {
  font-family: var(--shippori);
  font-size: var(--fs-caption);
  line-height: 2;
  color: var(--paper-65);
  letter-spacing: 0.03em;
}
/* ナビ3列（ft__main内で右側に配置） */
.ft__cols {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 32px;
  flex: 1;
}
.ft__col-h {
  font-family: var(--garamond);
  font-style: italic;
  font-size: var(--fs-label);
  letter-spacing: 0.5em;
  color: var(--moss);
  margin-bottom: 22px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ft__col-h::before {
  content: "—"; color: var(--moss); font-style: normal;
}
.ft__list { display: flex; flex-direction: column; gap: 12px; }
.ft__col--cat .ft__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.ft__list a {
  font-family: var(--shippori);
  font-size: var(--fs-caption);
  color: rgba(243, 241, 235, 0.78);
  letter-spacing: 0.08em;
  transition: color var(--duration-fast);
}
.ft__list a:hover { color: var(--paper); }
/* 下段：著作権 */
.ft__bot {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--garamond);
  font-style: italic;
  font-size: var(--fs-label);
  letter-spacing: 0.3em;
  color: var(--paper-50);
  text-transform: uppercase;
}
.ft__bot span:first-child {
  font-family: var(--shippori);
  font-style: normal;
  font-size: var(--fs-label);
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--paper-50);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--paper-08);
  width: 100%;
  text-align: center;
}

/* ══════ MOBILE NAV (HAMBURGER) ══════ */
.hd__hamburger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
  padding: 0;
}
.hd__hamburger span,
.hd__hamburger span::before,
.hd__hamburger span::after {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-deep);
  position: absolute;
  left: 11px;
  transition: transform var(--duration-base) ease, opacity var(--duration-fast) ease;
}
.hd__hamburger span { top: 21px; }
.hd__hamburger span::before { content: ""; top: -7px; }
.hd__hamburger span::after  { content: ""; top: 7px; }
/* open state */
.hd__hamburger.is-open span { background: transparent; }
.hd__hamburger.is-open span::before { transform: translateY(7px) rotate(45deg); background: var(--ink-deep); }
.hd__hamburger.is-open span::after  { transform: translateY(-7px) rotate(-45deg); background: var(--ink-deep); }

.hd__drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;  background: rgba(243, 241, 235, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 100px 40px 40px;
  overflow-y: auto;
  flex-direction: column;
  align-items: center;
}
.hd__drawer.is-open { display: flex; }
.hd__drawer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hd__drawer nav a {
  font-family: var(--shippori);
  font-size: var(--fs-body);
  color: var(--ink-deep);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.hd__drawer nav a:hover { color: var(--moss-d); }
.hd__drawer__tel {
  margin-top: 32px;
  text-align: center;
}
.hd__drawer__tel a {
  font-family: var(--garamond);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink-deep);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 8px 0;
}
.hd__drawer__tel small {
  display: block;
  font-family: var(--shippori);
  font-size: var(--fs-small);
  color: var(--mist);
  margin-top: 4px;
}
.hd__drawer__cta {
  margin-top: var(--space-md);
}
.hd__drawer__cta .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  min-height: 54px;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  font-family: var(--shippori);
  font-size: var(--fs-small);
  color: var(--mist);
  padding: 14px var(--section-pad-x);
  max-width: var(--container-xl);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb a {
  color: var(--mist);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.breadcrumb a:hover { color: var(--moss-d); }
.breadcrumb__sep {
  color: var(--mist-l);
  font-size: var(--fs-xs);
  margin: 0 2px;
}

/* ==========================================================================
   RESPONSIVE — TABLET (max-width: 1100px)
   ========================================================================== */
@media (max-width: 1100px) {
  /* ── Header ── */
  .hd__nav { display: none; }
  .hd__tel { display: none; }
  .hd__hamburger { display: block; }
  .hd__inner { padding: 14px var(--section-pad-x-tablet); }

  /* ── Footer ── */
  .ft { padding: 60px var(--section-pad-x-tablet) 28px; }
  .ft__main { flex-direction: column; gap: var(--space-lg); }
  .ft__top { min-width: auto; }
  .ft__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  /* ── Section headings ── */
  .section-title { font-size: clamp(30px, 4vw, 42px); }
  .section-sub { font-size: var(--fs-ui); }

  /* ── Breadcrumb ── */
  .breadcrumb { padding: 12px var(--section-pad-x-tablet); }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (max-width: 760px)
   ========================================================================== */
@media (max-width: 760px) {
  /* ── ボタン共通: スマホのタップターゲット確保 ── */
  .btn { min-height: 52px; padding: 14px 28px; }
  .btn--lg { min-height: 56px; padding: 18px 32px; }

  /* ── Header ── */
  .hd__inner { padding: 12px var(--section-pad-x-mobile); }
  .hd__btn  { display: none; } /* スマホ: 無料査定ボタン非表示（ロゴ＋ハンバーガーのみ） */
  .hd__name { font-size: var(--fs-body); }
  .hd__name small { display: none; } /* スマホ: ローマ字サブ非表示 */

  /* ── Footer ── */
  .ft { padding: 50px var(--section-pad-x-mobile) 24px; }
  .ft__cols { grid-template-columns: 1fr; gap: var(--space-md); }
  .ft__col--cat .ft__list { grid-template-columns: 1fr 1fr; }

  /* ── Section headings ── */
  .section-title { font-size: clamp(26px, 6.5vw, 34px); }
  .section-sub { font-size: var(--fs-caption); margin-top: var(--space-sm); }

  /* ── Breadcrumb ── */
  .breadcrumb { padding: 10px var(--section-pad-x-mobile); font-size: var(--fs-xs); }
}

/* ==========================================================================
   SHARED PAGE COMPONENTS
   共通ページコンポーネント — 各ページCSSの重複を解消するための受け皿
   ========================================================================== */

/* ── ページHeroのeyebrow（前置き行）共通スタイル ──
   使用方法: class="page-hero__pre" を各ページの <p class="*-hero__pre"> に追加
   または、各ページCSSの *__pre クラスをこのスタイルに統一する
   ────────────────────────────────────────────── */
.page-hero__pre {
  font-family: var(--garamond);
  font-style: italic;
  font-size: var(--fs-label);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero__pre::before {
  content: "—";
  color: var(--ink);
  font-style: normal;
}

/* ── ページセクション共通ラッパー ──
   使用方法: <section class="page-section"> <div class="page-section__inner">
   ────────────────────────────────────────────── */
.page-section {
  padding: var(--space-2xl) var(--section-pad-x);
}
.page-section--alt {
  background: var(--paper-d);
}
.page-section--dark {
  background: var(--ink-deep);
  color: var(--paper);
}
.page-section__inner {
  max-width: var(--container-lg);
  margin: 0 auto;
}

@media (max-width: 760px) {
  .page-section { padding: 60px var(--section-pad-x-mobile); }
}

/* ==========================================================================
   FAQ ACCORDION COMPONENT — 刷新版
   faq__item / faq__q-mark / faq__a / faq__plus
   使用箇所: index.html, 各カテゴリページ, 都道府県ページ
   ========================================================================== */

/* カード外枠 */
.faq__item {
  background: var(--paper-w);
  border: 1px solid var(--paper-d);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--duration-fast) ease, border-color var(--duration-fast) ease;
}
.faq__item:hover {
  border-color: var(--moss);
  box-shadow: 0 4px 18px rgba(74,93,58,0.10);
}
.faq__item[open] {
  border-color: var(--moss);
  box-shadow: 0 6px 24px rgba(74,93,58,0.12);
}

/* Q 行（summary） */
.faq__item summary {
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  align-items: center;
  gap: 0;
  padding: 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  min-height: 72px;
  -webkit-appearance: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: -2px;
}

/* Q バッジ */
.faq__q-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: var(--moss);
  font-family: var(--garamond);
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--paper);
  font-weight: 400;
  flex-shrink: 0;
}

/* Q テキスト */
.faq__q-text {
  font-family: var(--yuji);
  font-size: var(--fs-body);
  letter-spacing: 0.05em;
  color: var(--ink-deep);
  line-height: 1.65;
  padding: 20px 18px;
}

/* ＋ アイコン */
.faq__plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  border-left: 1px solid var(--paper-d);
  transition: background var(--duration-fast) ease;
}
.faq__item[open] .faq__plus,
.faq__item:hover .faq__plus {
  background: rgba(74,93,58,0.06);
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  background: var(--moss);
  transition: transform var(--duration-base) ease, opacity var(--duration-base) ease;
}
.faq__plus::before {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__plus::after {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* A エリア */
.faq__a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0;
  border-top: 1px solid var(--paper-d);
  background: rgba(74,93,58,0.04);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.faq__a-mark {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 22px;
  font-family: var(--garamond);
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: var(--moss-d);
  font-weight: 400;
  flex-shrink: 0;
}
.faq__a span:last-child {
  font-family: var(--shippori);
  font-size: var(--fs-body-s);
  line-height: 2;
  color: var(--ink-deep);
  letter-spacing: 0.03em;
  padding: 20px 18px;
  display: block;
}

@media (max-width: 760px) {
  .faq__item summary {
    grid-template-columns: 44px 1fr 40px;
    min-height: 64px;
  }
  .faq__q-mark { font-size: 18px; }
  .faq__q-text { font-size: var(--fs-body-s); padding: 16px 14px; }
  .faq__a { grid-template-columns: 44px 1fr; }
  .faq__a-mark { font-size: 18px; padding-top: 18px; }
  .faq__a span:last-child { padding: 16px 14px; }
}



/* ── ft__col（フッターナビ列コンテナ）── */
.ft__col { min-width: 0; }

/* ══════ SKIP LINK（アクセシビリティ：WCAG 2.4.1）══════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: var(--space-xs) var(--space-md);
  background: var(--moss);
  color: var(--paper);
  font-family: var(--shippori);
  font-size: var(--fs-body-s);
  border-radius: 2px;
  text-decoration: none;
  transition: top var(--duration-fast);
}
.skip-link:focus { top: var(--space-xs); }

/* ══════ BTN -- LINE バリアント══════ */
.btn--line {
  background: var(--line-green);
  border-color: var(--line-green);
  color: var(--white);
}
.btn--line::before { background: var(--line-green-d); }
.btn--line:hover span { color: var(--white); }

/* ══════ PAGE CTA BAND（共通CTAセクション）══════ */
.page-cta-band {
  background: var(--ink-deep);
  color: var(--paper);
  padding: var(--space-3xl) var(--section-pad-x);
  text-align: center;
}
.page-cta-band__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}
.page-cta-band__inner .eyebrow {
  color: var(--paper-60);
}
.page-cta-band__inner .section-title {
  color: var(--paper);
  margin-top: var(--space-sm);
}
.page-cta-band__inner .section-sub {
  color: var(--paper-60);
  margin-top: var(--space-sm);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.page-cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* ══════ SCROLL FADE-IN ANIMATION ══════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* js-reveal: IntersectionObserver で .is-visible を付与 */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--easing), transform 0.65s var(--easing);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal--left {
  transform: translateX(-24px);
}
.js-reveal--left.is-visible {
  transform: translateX(0);
}

/* 遅延バリアント */
.js-reveal[data-delay="1"] { transition-delay: 0.1s; }
.js-reveal[data-delay="2"] { transition-delay: 0.2s; }
.js-reveal[data-delay="3"] { transition-delay: 0.3s; }
.js-reveal[data-delay="4"] { transition-delay: 0.4s; }
.js-reveal[data-delay="5"] { transition-delay: 0.5s; }

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal--left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ══════ PAGE-TOP BUTTON（全ページ共通）══════ */
.page-top-btn {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: var(--ink-deep);
  color: var(--paper);
  border: 1px solid var(--paper-30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s var(--easing), transform 0.3s var(--easing), background 0.2s;
  pointer-events: none;
  text-decoration: none;
}
.page-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.page-top-btn:hover {
  background: var(--moss);
  border-color: var(--moss);
}
@media (max-width: 760px) {
  /* スマホではFABと重ならないよう少し上に */
  .page-top-btn { bottom: 80px; right: 16px; width: 40px; height: 40px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .page-top-btn { transition: opacity 0.2s; transform: none; }
}



/* ══════ モバイル固定CTAボタン FAB（全ページ共通）══════ */
.fab-cta {
  display: none; /* デスクトップでは非表示 */
}
@media (max-width: 760px) {
  .fab-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 900;
    background: var(--vermillion);
    color: var(--white);
    font-family: var(--shippori);
    font-size: var(--fs-ui);
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0 32px;
    min-height: 54px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(180,60,40,0.38);
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.35s var(--easing), transform 0.35s var(--easing), box-shadow 0.2s;
    pointer-events: none;
  }
  .fab-cta.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .fab-cta:active {
    box-shadow: 0 2px 8px rgba(180,60,40,0.18);
    transform: translateX(-50%) translateY(2px);
  }
  .fab-cta::before {
    content: "📷";
    font-size: 16px;
  }
}
@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .fab-cta { transition: opacity 0.2s; transform: translateX(-50%); }
}

/* ══════ ヘッダー無料査定ボタン パルスアニメーション（全ページ共通）══════ */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(180, 60, 40, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(180, 60, 40, 0); }
  100% { box-shadow: 0 0 0 0 rgba(180, 60, 40, 0); }
}
.hd__btn {
  animation: pulse-ring 2.8s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hd__btn { animation: none; }
}
