@charset "UTF-8";
/* =============================================================
   あかね司法書士事務所 — style.css
   和モダン(生成り和紙 × 墨 × 茜)のエディトリアル構成。
   デザイントークンは :root に集約。配色変更はここだけで済む。
   ============================================================= */

:root {
  /* 配色 */
  --washi:       #f6f2e8;   /* ベース:生成りの和紙 */
  --washi-deep:  #ece4d0;   /* 少し濃い和紙(帯・交互背景) */
  --paper:       #fffdf7;   /* カード・表の白 */
  --ink:         #29261f;   /* 本文:墨(ほぼ黒・高コントラスト) */
  --ink-soft:    #6c6455;   /* 補足文 */
  --sumi:        #2b2822;   /* 濃色セクションの墨 */
  --sumi-deep:   #201d18;
  --akane:       #b04a2f;   /* 基調アクセント:茜色 */
  --akane-deep:  #8e3a24;
  --akane-soft:  #f2ddd2;
  --line:        #d8cdb6;   /* 罫線 */
  --line-soft:   #e6ddc9;
  --cta:         #b04a2f;   /* CTA も茜で統一(和の一色主義) */

  /* フォント */
  --serif: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  --sans:  'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  --en:    'Marcellus', 'Shippori Mincho', serif;

  /* 寸法 */
  --header-h: 78px;
  --radius: 2px;
}

/* ---------- リセット・ベース ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
  background-color: var(--washi);
  /* 和紙の質感:ごく薄いドットを2層(単色ベタ回避) */
  background-image:
    radial-gradient(rgba(41,38,31,.028) 1px, transparent 1px),
    radial-gradient(rgba(176,74,47,.022) 1px, transparent 1px);
  background-size: 26px 26px, 42px 42px;
  background-position: 0 0, 13px 21px;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
main { display: block; }
::selection { background: var(--akane-soft); }

/* 英字・数字はライニング数字で桁のガタつきを防ぐ */
.en, .num {
  font-family: var(--en);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

/* ---------- ユーティリティ ---------- */
.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.container--narrow { max-width: 920px; }
@media (min-width: 769px) { .sp-only { display: none !important; } }
@media (max-width: 768px) {
  .sp-hide { display: none !important; }
  .sp-left { text-align: left !important; }
}

/* スクロールで浮かび上がる(控えめ) */
.fadein { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.fadein.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fadein { opacity: 1; transform: none; transition: none; }
}

/* ---------- 写真枠(プレースホルダー) ----------
   images/NN.jpg を入れると自動で表示。無い間は番号+説明の枠を表示。 */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--ph-bg, #ddd2ba);
  width: 100%;
}
.ph::before { /* プレースホルダーと分かる薄い格子 */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.ph__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2; /* 読み込まれたら番号キャプションを覆い隠す */
}
.ph__cap {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5em; padding: 1.2em; text-align: center;
  color: rgba(43,38,31,.6);
}
.ph__no {
  font-family: var(--en);
  font-variant-numeric: lining-nums;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  letter-spacing: .08em;
  line-height: 1;
  color: rgba(43,38,31,.5);
}
.ph__desc { font-size: .76rem; line-height: 1.7; max-width: 17em; color: rgba(43,38,31,.58); }
.ph--fill { position: absolute; inset: 0; }

/* ---------- ボタン(並べるときは必ず同サイズ・両方に矢印) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6em;
  height: 56px; min-width: 250px; padding: 0 1.3em;
  border-radius: var(--radius);
  font-family: var(--serif); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .08em;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn__arw { font-family: var(--en); transition: transform .25s ease; }
.btn:hover .btn__arw { transform: translateX(4px); }
.btn--fill {
  background: var(--cta); color: #fff;
  box-shadow: 0 10px 24px rgba(176,74,47,.26);
}
.btn--fill:hover { background: var(--akane-deep); transform: translateY(-2px); }
.btn--line {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--line:hover { background: var(--ink); color: var(--washi); transform: translateY(-2px); }
.btn--line-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.85); }
.btn--line-white:hover { background: #fff; color: var(--sumi); transform: translateY(-2px); }
.btn--block { width: 100%; }
@media (max-width: 560px) { .btn { min-width: 0; width: 100%; } }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: var(--washi); /* backdrop-filter は使わない(固定ヘッダーの既知バグ回避) */
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(41,38,31,.06); }
.site-header__inner {
  max-width: 1360px; margin-inline: auto;
  height: 100%; padding-inline: clamp(16px, 3vw, 36px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__seal {
  width: 46px; height: 46px; flex: none;
  background: var(--akane);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28), 0 2px 8px rgba(176,74,47,.25);
}
.logo__seal svg { width: 68%; height: 68%; display: block; }
.logo__text { display: flex; flex-direction: column; line-height: 1.3; }
.logo__name { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; letter-spacing: .05em; }
.logo__sub { font-size: .68rem; letter-spacing: .14em; color: var(--ink-soft); }
.gnav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.gnav__link {
  position: relative;
  font-size: .92rem; font-weight: 500; letter-spacing: .05em;
  padding: 8px 2px;
}
.gnav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1.5px; background: var(--akane);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.gnav__link:hover::after, .gnav__link[aria-current="page"]::after { transform: scaleX(1); }
.gnav__cta {
  display: inline-flex; align-items: center; gap: .5em;
  height: 46px; padding: 0 1.4em;
  background: var(--cta); color: #fff;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: .96rem; font-weight: 700; letter-spacing: .06em;
  transition: background .25s ease;
}
.gnav__cta:hover { background: var(--akane-deep); }

/* ハンバーガー(SP) */
.menu-btn {
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  width: 48px; height: 48px;
}
.menu-btn__bar { width: 24px; height: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.menu-btn__label { font-size: .56rem; letter-spacing: .18em; color: var(--ink-soft); }
@media (max-width: 960px) {
  .gnav { display: none; }
  .menu-btn { display: flex; }
  :root { --header-h: 64px; }
  .logo__seal { width: 40px; height: 40px; }
  .logo__name { font-size: 1rem; }
}

/* ドロワー */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(32,29,24,.55);
  opacity: 0; transition: opacity .35s ease;
}
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(84vw, 380px);
  background: var(--washi);
  display: flex; flex-direction: column;
  padding: 24px 28px 32px;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.22,.8,.3,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close {
  align-self: flex-end;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 48px; height: 48px; justify-content: center;
}
.drawer__close-x { font-size: 1.5rem; line-height: 1; color: var(--ink); }
.drawer__close-label { font-size: .56rem; letter-spacing: .18em; color: var(--ink-soft); }
.drawer__nav { display: flex; flex-direction: column; margin-top: 12px; }
.drawer__link {
  display: flex; align-items: baseline; gap: 12px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif); font-weight: 600; font-size: 1.08rem;
  letter-spacing: .06em;
  color: var(--ink); /* ドロワー内の視認性を明示的に固定 */
}
.drawer__link-en { font-family: var(--en); font-size: .66rem; letter-spacing: .16em; color: var(--akane); }
.drawer__tel { margin-top: 28px; text-align: center; }
.drawer__tel-num { font-family: var(--sans); font-weight: 700; font-size: 1.55rem; letter-spacing: .01em; color: var(--ink); display: block; line-height: 1.3; }
.drawer__tel-note { font-size: .74rem; color: var(--ink-soft); }
.drawer__cta { margin-top: 16px; }
.drawer__cta .btn { width: 100%; min-width: 0; }

/* body スクロールロック(position:fixed 方式は JS 側で top を設定) */
body.is-locked { position: fixed; left: 0; right: 0; overflow: hidden; }

/* ---------- セクション共通 ---------- */
.sec { padding-block: clamp(72px, 9vw, 130px); }
.sec--washi-deep { background: var(--washi-deep); }
.sec--sumi {
  background-color: var(--sumi);
  /* 単色ベタ回避:ごく薄い縦の簾(すだれ)状ライン */
  background-image: repeating-linear-gradient(90deg, rgba(246,242,232,.045) 0 1px, transparent 1px 72px);
  color: #f3efe6;
}
.sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head__en {
  font-family: var(--en);
  font-size: .8rem; letter-spacing: .3em;
  color: var(--akane);
  display: block; margin-bottom: 10px;
}
.sec--sumi .sec-head__en { color: #d98d6f; }
.sec-head__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: .08em; line-height: 1.5;
}
.sec-head__lead { margin-top: 18px; max-width: 42em; color: var(--ink-soft); }
.sec--sumi .sec-head__lead { color: rgba(243,239,230,.75); }
.sec-head--center { text-align: center; }
.sec-head--center .sec-head__lead { margin-inline: auto; }
.sec-foot { margin-top: clamp(36px, 5vw, 56px); text-align: center; }

/* 縦書きアクセント */
.v-text {
  writing-mode: vertical-rl;
  letter-spacing: .34em;
  font-family: var(--serif);
  font-feature-settings: "pkna"; /* 仮名の詰め */
}

/* ---------- ヒーロー(PC・SP共通:写真を背景に、文字は下揃え) ---------- */
.hero { position: relative; overflow: hidden; background: var(--sumi); }
.hero__media { position: absolute; inset: 0; z-index: 0; margin: 0; }
.hero__ph-main { position: absolute; inset: 0; height: 100%; border-radius: 0; aspect-ratio: auto; }
.hero__ph-main .ph__img { object-position: center 32%; }
.hero__ph-sub { display: none; }
.hero__media::after { /* 可読性の暗幕(左を濃く+下を締める) */
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(96deg, rgba(24,21,16,.88) 0%, rgba(24,21,16,.66) 42%, rgba(24,21,16,.30) 74%, rgba(24,21,16,.12) 100%),
    linear-gradient(0deg, rgba(24,21,16,.55) 0%, rgba(24,21,16,0) 44%);
}
.hero__v-strip {
  position: absolute; top: calc(var(--header-h) + 18px); right: 0; z-index: 5;
  background: rgba(43,40,34,.72); color: var(--washi);
  padding: 22px 9px; font-size: .82rem;
}
.hero__inner {
  position: relative; z-index: 4;
  min-height: clamp(540px, 82vh, 780px);
  display: flex; flex-direction: column; justify-content: flex-end; /* コンテンツは下揃え */
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: clamp(46px, 7vh, 92px);
}
.hero__text { max-width: 640px; color: #fff; }
.hero__eyebrow { font-family: var(--sans); font-weight: 500; font-size: .82rem; letter-spacing: .16em; color: #eab79f; margin-bottom: 16px; }
.hero__title {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: clamp(1.6rem, 3.1vw, 2.5rem);
  line-height: 1.66; letter-spacing: .05em;
}
.hero__title-em { color: #f2b9a2; }
.hero__lead { margin-top: 22px; max-width: 40em; color: rgba(255,255,255,.9); font-size: 1.02rem; line-height: 2; }
/* ボタンのペアはグリッドで等幅を保証 */
.hero__btns, .cta-band__btns, .prof__btns {
  display: grid; grid-template-columns: repeat(2, 250px); gap: 14px;
}
.hero__btns .btn, .cta-band__btns .btn, .prof__btns .btn { width: 100%; min-width: 0; }
.hero__btns { margin-top: 32px; }
.hero__text .btn--line { color: #fff; border-color: rgba(255,255,255,.85); }
.hero__text .btn--line:hover { background: #fff; color: var(--sumi); }

/* 実績の数字帯(ヒーロー直下の独立ストリップ) */
.hero-band { border-bottom: 1px solid var(--line); background: var(--washi); }
.hero-band__inner { display: flex; }
.hero-band__item {
  flex: 1; text-align: center;
  padding: 22px 10px;
  display: flex; flex-direction: column; gap: 3px;
  border-left: 1px solid var(--line);
}
.hero-band__item:last-child { border-right: 1px solid var(--line); }
.hero-band__label { font-size: .8rem; color: var(--ink-soft); letter-spacing: .06em; }
.hero-band__value { font-family: var(--serif); font-weight: 700; font-size: 1rem; letter-spacing: .02em; white-space: nowrap; }
.hero-band__value .num { font-family: var(--sans); font-variant-numeric: normal; font-feature-settings: normal; font-weight: 700; font-size: 1.8rem; color: var(--akane); margin-right: 2px; line-height: 1.15; }

@media (max-width: 820px) {
  .hero__btns, .cta-band__btns, .prof__btns { grid-template-columns: minmax(0, 1fr); max-width: 440px; }
}
@media (max-width: 768px) {
  .hero__inner { min-height: 74vh; padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(40px, 6vh, 64px); }
  .hero__ph-main .ph__img { object-position: center 30%; }
  .hero__lead.sp-hide { display: none !important; } /* 補足文はPCのみ */
  .hero__title { font-size: clamp(1.34rem, 5.6vw, 1.8rem); line-height: 1.7; }
  .hero__eyebrow { font-size: .74rem; margin-bottom: 12px; }
  .hero__v-strip { top: calc(var(--header-h) + 10px); padding: 16px 7px; font-size: .78rem; }
  /* バンド:フルワイド2×2、外側の縦線なし、数字は折り返し可 */
  .hero-band .container { padding-inline: 0; max-width: none; }
  .hero-band__inner { flex-wrap: wrap; }
  .hero-band__item { flex: 1 1 50%; border-left: 0; border-right: 0; padding: 18px 10px; }
  .hero-band__item:nth-child(odd) { border-right: 1px solid var(--line); }
  .hero-band__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .hero-band__value { font-size: .92rem; white-space: normal; }
  .hero-band__value .num { font-size: 1.7rem; }
}

/* SPのヘッダー・見出しの整理 */
@media (max-width: 600px) {
  .logo__sub { display: none; } /* ロゴ下の説明文はSPでは隠してすっきり */
  .logo__name { font-size: 1.06rem; }
}
@media (max-width: 560px) {
  .sec-head__title { font-size: clamp(1.4rem, 6vw, 1.85rem); line-height: 1.55; }
}

/* ---------- こんなときは(お悩み) ---------- */
.worry { position: relative; }
.worry__grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.worry__media { position: sticky; top: calc(var(--header-h) + 24px); }
.worry__ph { aspect-ratio: 3 / 3.7; border-radius: var(--radius); }
.worry__media-note { margin-top: 12px; font-size: .8rem; color: var(--ink-soft); }
.worry__list { border-top: 1px solid var(--line); }
.worry__item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 6px;
  border-bottom: 1px solid var(--line);
}
.worry__check {
  flex: none; width: 26px; height: 26px; margin-top: 6px;
  border: 1.5px solid var(--akane); border-radius: 2px;
  color: var(--akane); font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.worry__item-title { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; letter-spacing: .04em; }
.worry__item-text { font-size: .9rem; color: var(--ink-soft); margin-top: 2px; }
.worry__closing { margin-top: 26px; font-size: 1.02rem; }
.worry__closing strong { color: var(--akane); font-weight: 700; }
@media (max-width: 900px) {
  .worry__grid { grid-template-columns: 1fr; }
  .worry__media { position: static; max-width: 460px; }
  .worry__ph { aspect-ratio: 16 / 10; }
}
@media (max-width: 768px) {
  /* SPはお悩みの補足文を隠して、見出しだけで簡潔に */
  .worry__item-text { display: none; }
  .worry__media-note { display: none; }
  .worry__item { padding: 16px 4px; }
}

/* ---------- 取扱業務(罫線のエディトリアル行) ---------- */
.svc-rows { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 172px 208px;
  gap: clamp(16px, 2.2vw, 34px);
  align-items: center;
  padding: clamp(22px, 3vw, 32px) clamp(16px, 2vw, 26px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
/* ホバーは端まで塗らず、左右に余白のある角丸ハイライト(淡い生成り) */
.svc-row::before {
  content: ""; position: absolute; top: 3px; bottom: 3px; left: 8px; right: 8px;
  border-radius: 8px; background: transparent; z-index: 0;
  transition: background .3s ease;
}
.svc-row:hover::before { background: var(--washi-deep); }
.svc-row > * { position: relative; z-index: 1; }
.svc-row__num {
  font-family: var(--sans); font-weight: 700;
  font-size: 2rem; color: var(--akane); line-height: 1;
}
.svc-row__num::after { content: ""; display: block; width: 28px; height: 2px; background: var(--akane); opacity: .45; margin-top: 12px; }
.svc-row__title { display: block; font-family: var(--serif); font-weight: 700; font-size: clamp(1.15rem, 1.8vw, 1.42rem); letter-spacing: .05em; }
.svc-row__lead { display: block; margin-top: 8px; font-size: .9rem; color: var(--ink-soft); line-height: 1.85; }
.svc-row__more { display: inline-flex; align-items: center; gap: .4em; margin-top: 13px; font-family: var(--serif); font-weight: 600; font-size: .88rem; color: var(--akane-deep); }
.svc-row__more .arw { font-family: var(--en); transition: transform .3s ease; }
.svc-row:hover .svc-row__more .arw { transform: translateX(4px); }
.svc-row__price { text-align: left; } /* 左寄せで読みやすく */
.svc-row__price-label { display: block; font-size: .72rem; color: var(--ink-soft); letter-spacing: .1em; margin-bottom: 3px; }
.svc-row__price-value { font-family: var(--serif); font-weight: 700; font-size: 1.24rem; color: var(--akane-deep); }
.svc-row__ph { aspect-ratio: 16 / 11; border-radius: var(--radius); }
@media (max-width: 900px) {
  /* SPは画像を上に、その下に番号・見出し・料金を縦積み */
  .svc-row { grid-template-columns: 1fr; grid-template-areas: "ph" "num" "body" "price"; gap: 0; padding: 22px 4px; align-items: start; }
  .svc-row::before { display: none; } /* SPではホバー装飾なし */
  .svc-row__ph { grid-area: ph; aspect-ratio: 16 / 10; margin-bottom: 16px; }
  .svc-row__num { grid-area: num; font-size: 1.6rem; }
  .svc-row__num::after { display: none; }
  .svc-row__body { grid-area: body; margin-top: 6px; }
  .svc-row__title { font-size: 1.2rem; }
  .svc-row__lead { display: none; } /* SPは詳細ページで読ませる */
  .svc-row__more { margin-top: 12px; }
  .svc-row__price { grid-area: price; margin-top: 16px; }
}

/* ---------- 選ばれる理由(墨の章) ---------- */
.reason__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
}
.reason__side { position: sticky; top: calc(var(--header-h) + 24px); }
.reason__ph { aspect-ratio: 3 / 3.6; border-radius: var(--radius); }
.reason__side-note { margin-top: 14px; font-size: .8rem; color: rgba(243,239,230,.6); }
.reason__list { display: flex; flex-direction: column; }
.reason__item {
  display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: clamp(16px, 2vw, 30px);
  padding-block: clamp(26px, 3vw, 38px);
  border-bottom: 1px solid rgba(246,242,232,.16);
}
.reason__item:first-child { padding-top: 0; }
.reason__kanji {
  font-family: var(--sans); font-weight: 700;
  font-size: 2rem; line-height: 1;
  color: #d98d6f;
}
.reason__kanji::after { content: ""; display: block; width: 26px; height: 2px; background: #d98d6f; opacity: .5; margin-top: 13px; }
.reason__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.2rem, 1.9vw, 1.45rem); letter-spacing: .05em; color: #fbf8f0; }
.reason__body { margin-top: 12px; font-size: .95rem; color: rgba(243,239,230,.82); }
@media (max-width: 900px) {
  .reason__grid { grid-template-columns: 1fr; }
  .reason__side { position: static; max-width: 460px; }
  .reason__ph { aspect-ratio: 16 / 10; }
  .reason__item { grid-template-columns: 56px minmax(0, 1fr); }
  .reason__kanji { font-size: 1.9rem; }
}

/* ---------- 代表プロフィール ---------- */
.prof__grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.prof__media { position: relative; }
.prof__ph { aspect-ratio: 3 / 3.8; border-radius: var(--radius); }
.prof__stamp {
  position: absolute; right: -12px; bottom: 30px;
  background: var(--sumi); color: var(--washi);
  padding: 18px 9px; font-size: .8rem;
}
.prof__name-row { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-top: 10px; }
.prof__name { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.5rem); letter-spacing: .12em; }
.prof__name-kana { font-size: .82rem; letter-spacing: .22em; color: var(--ink-soft); }
.prof__role { margin-top: 6px; font-size: .9rem; color: var(--akane); letter-spacing: .08em; font-weight: 500; }
.prof__text { margin-top: 22px; }
.prof__text p + p { margin-top: 1em; }
.prof__quote {
  margin-top: 26px; padding: 20px 24px;
  border-left: 3px solid var(--akane);
  background: rgba(255,253,247,.7);
  font-family: var(--serif); font-weight: 600; font-size: 1.06rem;
  letter-spacing: .05em; line-height: 2;
}
.prof__career { margin-top: 26px; border-top: 1px solid var(--line); }
.prof__career-row { display: flex; gap: 20px; padding: 12px 4px; border-bottom: 1px solid var(--line-soft); font-size: .92rem; }
.prof__career-year { flex: none; width: 88px; font-family: var(--sans); font-weight: 700; color: var(--akane); }
.prof__btns { margin-top: 30px; }
@media (max-width: 900px) {
  .prof__grid { grid-template-columns: 1fr; }
  .prof__media { max-width: 380px; }
  .prof__stamp { right: 12px; }
}

/* ---------- 料金(点線リーダーの品書き) ---------- */
.fee-note-top { text-align: center; font-size: .9rem; color: var(--ink-soft); margin-bottom: 34px; }
.fee-list { max-width: 860px; margin-inline: auto; }
.fee-line {
  display: flex; align-items: baseline; gap: 14px;
  padding: 17px 4px;
}
.fee-line + .fee-line { border-top: 1px dashed var(--line); }
.fee-line__name { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; letter-spacing: .04em; flex: none; }
.fee-line__desc { font-size: .8rem; color: var(--ink-soft); flex: none; max-width: 40%; }
.fee-line__dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-6px); min-width: 30px; }
.fee-line__price { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; white-space: nowrap; }
@media (max-width: 680px) {
  /* SPは名称→金額の縦積みにして改行崩れを防ぐ */
  .fee-line { flex-direction: column; align-items: flex-start; gap: 5px; padding: 15px 2px; }
  .fee-line__desc, .fee-line__dots { display: none; }
  .fee-line__name { font-size: 1.04rem; }
  .fee-line__price { font-size: 1.16rem; color: var(--akane-deep); }
}

/* 料金表(servicesページ・グループ表) */
.fee-group { margin-top: clamp(40px, 5vw, 64px); }
.fee-group:first-of-type { margin-top: 0; }
.fee-group__head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 4px; }
.fee-group__title { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; letter-spacing: .06em; }
.fee-group__title::before { content: "— "; color: var(--akane); }
.fee-group__note { font-size: .82rem; color: var(--ink-soft); }
.fee-table { margin-top: 16px; border-top: 1px solid var(--line); }
.fee-table__row {
  display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr) 170px;
  gap: 16px; align-items: center;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.fee-table__row:nth-child(even) { background: transparent; }
.fee-table__name { font-weight: 700; font-size: .98rem; }
.fee-table__desc { font-size: .86rem; color: var(--ink-soft); }
.fee-table__price { font-family: var(--serif); font-weight: 700; font-size: 1.08rem; text-align: right; white-space: nowrap; }
@media (max-width: 680px) {
  /* SPは縦積みの定義リスト型(横並びのまま縮めない) */
  .fee-table__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 10px; }
  .fee-table__price { text-align: left; color: var(--akane-deep); }
}
.fee-common-note {
  margin-top: 36px; padding: 22px 26px;
  border: 1px solid var(--line); background: var(--paper);
  font-size: .9rem; color: var(--ink-soft);
}
.fee-common-note strong { color: var(--ink); }

/* ---------- FAQ(アコーディオン) ---------- */
.faq-list { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
  width: 100%;
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 6px;
  text-align: left;
  transition: color .25s ease;
}
.qa__q:hover { color: var(--akane-deep); }
.qa__mark {
  flex: none; width: 34px; height: 34px; margin-top: 2px;
  border: 1.5px solid var(--akane); color: var(--akane);
  font-family: var(--en); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.qa__q-text { flex: 1; font-family: var(--serif); font-weight: 600; font-size: 1.06rem; letter-spacing: .03em; line-height: 1.8; padding-top: 3px; }
.qa__toggle {
  flex: none; width: 30px; height: 30px; margin-top: 4px;
  position: relative; border: 1px solid var(--line); border-radius: 50%;
  background: var(--paper);
}
.qa__toggle::before, .qa__toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: var(--akane);
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.qa__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa[data-open="true"] .qa__toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.qa__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.qa[data-open="true"] .qa__a { grid-template-rows: 1fr; }
.qa__a-inner { overflow: hidden; }
.qa__a-body {
  display: flex; gap: 16px;
  padding: 2px 6px 26px;
}
.qa__a-mark {
  flex: none; width: 34px; height: 34px;
  background: var(--sumi); color: var(--washi);
  font-family: var(--en); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.qa__a-text { flex: 1; font-size: .95rem; color: var(--ink); padding-top: 4px; }

/* FAQページ:カテゴリタブ */
.faq-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.faq-tab {
  height: 46px; padding: 0 1.5em;
  border: 1.5px solid var(--ink); border-radius: 999px;
  font-size: .9rem; font-weight: 500; letter-spacing: .04em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.faq-tab:hover { background: rgba(41,38,31,.06); }
.faq-tab[aria-selected="true"] { background: var(--ink); color: var(--washi); }
.faq-cat-title {
  max-width: 880px; margin: 48px auto 14px;
  font-family: var(--serif); font-weight: 700; font-size: 1.3rem; letter-spacing: .06em;
}
.faq-cat-title:first-of-type { margin-top: 0; }
.faq-cat-title::before { content: "— "; color: var(--akane); }

/* ---------- お知らせ ---------- */
.news-list { max-width: 920px; margin-inline: auto; border-top: 1px solid var(--line); }
.news-item { border-bottom: 1px solid var(--line); }
.news-item__link {
  display: flex; align-items: baseline; gap: clamp(14px, 2.4vw, 30px);
  padding: 20px 6px;
  transition: background .25s ease;
}
.news-item__link:hover { background: rgba(255,253,247,.85); }
.news-item__date { flex: none; font-family: var(--en); font-variant-numeric: lining-nums; font-size: .92rem; letter-spacing: .06em; color: var(--ink-soft); width: 7.2em; }
.news-item__cat {
  flex: none; font-size: .72rem; letter-spacing: .08em;
  border: 1px solid var(--akane); color: var(--akane-deep);
  padding: 2px 10px; border-radius: 2px;
  width: 6.5em; text-align: center;
}
.news-item__title { flex: 1; font-weight: 500; }
@media (max-width: 640px) {
  .news-item__link { flex-wrap: wrap; gap: 8px 14px; padding-block: 16px; }
  .news-item__title { flex-basis: 100%; }
}

/* お知らせ詳細 */
.article { max-width: 760px; margin-inline: auto; }
.article__meta { display: flex; align-items: center; gap: 16px; }
.article__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  line-height: 1.7; letter-spacing: .05em;
  margin-top: 18px; padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.article__body { margin-top: 32px; }
.article__body p + p { margin-top: 1.4em; }
.article__back { margin-top: 56px; text-align: center; }

/* ---------- CTA帯 ---------- */
.cta-band { position: relative; padding-block: clamp(84px, 10vw, 150px); overflow: hidden; }
.cta-band .ph--fill { --ph-bg: #4a443a; }
.cta-band .ph--fill .ph__no, .cta-band .ph--fill .ph__desc { color: rgba(246,242,232,.5); }
.cta-band .ph--fill::before {
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
}
.cta-band__overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(100deg, rgba(32,29,24,.88) 0%, rgba(32,29,24,.72) 55%, rgba(32,29,24,.5) 100%);
}
.cta-band__inner { position: relative; z-index: 4; color: #f6f2e8; }
.cta-band__en { font-family: var(--en); font-size: .8rem; letter-spacing: .3em; color: #d98d6f; display: block; margin-bottom: 14px; }
.cta-band__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.7; letter-spacing: .07em;
}
.cta-band__text { margin-top: 20px; max-width: 36em; color: rgba(246,242,232,.85); }
.cta-band__btns { margin-top: 34px; }
.cta-band__tel { margin-top: 26px; }
.cta-band__tel-num {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2rem); letter-spacing: .02em;
  color: #fff; line-height: 1.3;
}
.cta-band__tel-num:hover { color: #d98d6f; }
.cta-band__tel-note { font-size: .82rem; color: rgba(246,242,232,.72); }

/* ---------- アクセス ---------- */
.access__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.info-table { width: 100%; border-top: 1px solid var(--line); border-collapse: collapse; }
.info-table th, .info-table td { padding: 15px 12px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; font-size: .95rem; }
.info-table th { width: 158px; background: var(--washi-deep); font-family: var(--serif); font-weight: 600; letter-spacing: .06em; white-space: nowrap; }
.info-table .num { font-size: 1em; }
@media (max-width: 640px) {
  /* SPは縦積み(ラベルを上・値を下の定義リスト型に) */
  .info-table th, .info-table td { display: block; width: 100%; border-bottom: 0; }
  .info-table th { background: transparent; padding: 16px 4px 4px; font-size: .82rem; letter-spacing: .1em; color: var(--akane-deep); }
  .info-table td { padding: 0 4px 16px; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .info-table tr:last-child td { border-bottom: 0; }
}
.access__ph { aspect-ratio: 16 / 11; border-radius: var(--radius); }
.access__ph + .access__ph { margin-top: 18px; }
.access__note { margin-top: 16px; font-size: .86rem; color: var(--ink-soft); }
@media (max-width: 860px) { .access__grid { grid-template-columns: 1fr; } }

/* ---------- フッター ---------- */
.site-footer {
  background: var(--sumi-deep);
  background-image: repeating-linear-gradient(90deg, rgba(246,242,232,.03) 0 1px, transparent 1px 90px);
  color: rgba(243,239,230,.85);
  padding: clamp(56px, 7vw, 88px) 0 0;
}
.site-footer a:hover { color: #d98d6f; }
.footer__grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 64px);
}
.footer__brand { display: flex; gap: 18px; align-items: flex-start; }
.footer__seal {
  flex: none; width: 54px; height: 84px;
  background: var(--akane); color: #fff;
  font-family: var(--serif); font-weight: 600; font-size: .95rem;
  letter-spacing: .16em;
  display: flex; align-items: center; justify-content: center;
  writing-mode: vertical-rl;
  border-radius: 3px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.3);
}
.footer__name { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; letter-spacing: .06em; color: #f6f2e8; }
.footer__addr { margin-top: 12px; font-size: .88rem; line-height: 2; }
.footer__tel { font-family: var(--sans); font-weight: 700; font-size: 1.3rem; letter-spacing: .01em; color: #f6f2e8; display: inline-block; margin-top: 2px; }
.footer__head { font-family: var(--en); font-size: .74rem; letter-spacing: .28em; color: #d98d6f; margin-bottom: 16px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; font-size: .92rem; }
.footer__hours-row { display: flex; gap: 14px; font-size: .9rem; padding: 8px 0; border-bottom: 1px solid rgba(246,242,232,.12); }
.footer__hours-label { flex: none; width: 6.5em; color: rgba(243,239,230,.6); }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(246,242,232,.14);
  padding: 22px 0 26px;
  text-align: center;
}
.footer__fictional { font-size: .78rem; color: rgba(243,239,230,.55); }
.footer__copy { margin-top: 8px; font-family: var(--en); font-variant-numeric: lining-nums; font-size: .78rem; letter-spacing: .12em; color: rgba(243,239,230,.5); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- 下層ページ共通:タイトル帯 ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(40px, 6vw, 76px));
  padding-bottom: clamp(36px, 5vw, 64px);
  background: var(--washi-deep);
  border-bottom: 1px solid var(--line);
}
.page-hero__en { font-family: var(--en); font-size: .8rem; letter-spacing: .32em; color: var(--akane); display: block; margin-bottom: 12px; }
.page-hero__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: .08em; line-height: 1.5; }
.page-hero__lead { margin-top: 16px; max-width: 44em; color: var(--ink-soft); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .78rem; color: var(--ink-soft); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--akane-deep); }
.breadcrumb__sep { color: var(--line); }
.page-banner { position: relative; }
.page-banner__ph { aspect-ratio: 21 / 7; }
@media (max-width: 640px) { .page-banner__ph { aspect-ratio: 16 / 9; } }

/* ---------- 取扱業務 詳細ブロック(servicesページ) ---------- */
.svc-detail { scroll-margin-top: calc(var(--header-h) + 20px); padding-block: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.svc-detail:last-of-type { border-bottom: 0; }
.svc-detail__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 400px); gap: clamp(28px, 4vw, 64px); align-items: start; }
.svc-detail:nth-of-type(even) .svc-detail__grid { grid-template-columns: minmax(0, 400px) minmax(0, 1fr); }
.svc-detail:nth-of-type(even) .svc-detail__media { order: -1; }
.svc-detail__num { font-family: var(--en); font-variant-numeric: lining-nums; font-size: 1rem; letter-spacing: .2em; color: var(--akane); }
.svc-detail__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.45rem, 2.4vw, 1.9rem); letter-spacing: .06em; margin-top: 6px; }
.svc-detail__body { margin-top: 18px; }
.svc-detail__body p + p { margin-top: 1em; }
.svc-detail__points { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.svc-detail__point { display: flex; gap: 10px; font-size: .92rem; font-weight: 500; align-items: flex-start; }
.svc-detail__point::before { content: "✓"; color: var(--akane); font-weight: 700; flex: none; margin-top: 1px; }
.svc-detail__price {
  margin-top: 24px; padding: 16px 20px;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.svc-detail__price-label { font-size: .8rem; color: var(--ink-soft); }
.svc-detail__price-value { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: var(--akane-deep); }
.svc-detail__price-note { font-size: .8rem; color: var(--ink-soft); flex-basis: 100%; }
.svc-detail__ph { aspect-ratio: 4 / 3; border-radius: var(--radius); }
@media (max-width: 860px) {
  .svc-detail__grid, .svc-detail:nth-of-type(even) .svc-detail__grid { grid-template-columns: 1fr; }
  .svc-detail__media { order: -1; max-width: 480px; }
  .svc-detail__points { grid-template-columns: 1fr; }
}

/* ご依頼の流れ(番号バッジ+接続線) */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.5vw, 20px); margin-top: 14px; }
.step { position: relative; }
.step__num {
  counter-increment: step;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--paper); border: 1.5px solid var(--akane);
  color: var(--akane-deep); font-family: var(--sans); font-weight: 700; font-size: 1.02rem;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step::after { /* 接続線(バッジの中心どうしを結ぶ) */
  content: ""; position: absolute; top: 24px; left: 48px; right: calc(-1 * clamp(10px, 1.5vw, 20px));
  height: 2px; background: var(--line);
}
.step:last-child::after { display: none; }
.step__title { font-family: var(--serif); font-weight: 700; font-size: 1.06rem; letter-spacing: .04em; }
.step__text { margin-top: 8px; font-size: .84rem; color: var(--ink-soft); line-height: 1.85; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { display: grid; grid-template-columns: 48px minmax(0, 1fr); column-gap: 20px; padding-bottom: 26px; }
  .step__num { grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .step__title { grid-column: 2; grid-row: 1; align-self: center; }
  .step__text { grid-column: 2; grid-row: 2; margin-top: 8px; }
  .step::after { top: 48px; bottom: 2px; left: 23px; right: auto; width: 2px; height: auto; }
  .step:last-child { padding-bottom: 0; }
}

/* ---------- プロフィールページ ---------- */
.greet__grid { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: clamp(30px, 4.5vw, 72px); align-items: start; }
.greet__media { position: sticky; top: calc(var(--header-h) + 24px); }
.greet__ph { aspect-ratio: 3 / 3.8; border-radius: var(--radius); }
.greet__sign { margin-top: 14px; text-align: right; font-family: var(--serif); font-size: 1.05rem; letter-spacing: .14em; }
.greet__sign small { display: block; font-size: .74rem; color: var(--ink-soft); letter-spacing: .1em; }
.greet__body p + p { margin-top: 1.2em; }
@media (max-width: 860px) {
  .greet__grid { grid-template-columns: 1fr; }
  .greet__media { position: static; max-width: 360px; }
}

/* 経歴タイムライン(線とドットは同じ --tx 基準で配置) */
.timeline { --tx: 96px; position: relative; margin-top: 10px; }
.timeline::before { content: ""; position: absolute; top: 6px; bottom: 6px; left: var(--tx); width: 1px; background: var(--line); }
.timeline__row { position: relative; display: flex; gap: 34px; padding: 13px 0; }
.timeline__row::before {
  content: ""; position: absolute; top: 50%; left: var(--tx);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--akane);
  transform: translate(-4px, -50%);
}
.timeline__year { flex: none; width: 76px; font-family: var(--sans); font-weight: 700; font-size: .96rem; color: var(--akane-deep); padding-top: 1px; }
.timeline__text { padding-left: 6px; }
@media (max-width: 560px) { .timeline { --tx: 78px; } .timeline__year { width: 62px; font-size: .92rem; } }

/* 資格・所属 */
.license-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; margin-top: 10px; }
.license-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; padding: 14px 2px; border-bottom: 1px solid var(--line-soft); }
.license-list li::before { content: "✓"; color: var(--akane); font-weight: 700; flex: none; margin-top: 1px; }
@media (max-width: 680px) { .license-list { grid-template-columns: 1fr; } }

/* 事務所ギャラリー(均一グリッドで配置を統一) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery > * { aspect-ratio: 4 / 3; }
.gallery .ph { border-radius: var(--radius); height: 100%; }
@media (max-width: 768px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } .gallery > * { aspect-ratio: 16 / 10; } }

/* ---------- お問い合わせ ---------- */
.contact__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(32px, 4.5vw, 72px); align-items: start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.form__row { margin-bottom: 22px; }
.form__label { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 8px; }
.req, .opt { display: inline-block; font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 2px; margin-left: 8px; vertical-align: 2px; letter-spacing: .06em; }
.req { background: var(--akane); color: #fff; }
.opt { background: var(--washi-deep); color: var(--ink-soft); }
.form__input {
  width: 100%; padding: 14px 16px;
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form__input:focus { outline: none; border-color: var(--akane); box-shadow: 0 0 0 3px rgba(176,74,47,.14); }
textarea.form__input { resize: vertical; min-height: 130px; }
.form__error { color: var(--akane-deep); font-weight: 700; font-size: .9rem; margin-bottom: 14px; }
.form__note { margin-top: 14px; font-size: .82rem; color: var(--ink-soft); text-align: center; }
.thanks { padding: 40px 28px; border: 1px solid var(--line); background: var(--paper); text-align: center; }
.thanks__title { font-family: var(--serif); font-weight: 700; font-size: 1.4rem; letter-spacing: .08em; }
.thanks__text { margin-top: 14px; color: var(--ink-soft); }
.contact-aside__box { border: 1px solid var(--line); background: var(--paper); padding: 26px 26px 28px; }
.contact-aside__box + .contact-aside__box { margin-top: 20px; }
.contact-aside__head { font-family: var(--serif); font-weight: 700; font-size: 1.08rem; letter-spacing: .06em; margin-bottom: 12px; }
.contact-aside__head::before { content: "— "; color: var(--akane); }
.contact-aside__tel { font-family: var(--sans); font-weight: 700; font-size: 1.7rem; letter-spacing: .01em; color: var(--ink); display: block; line-height: 1.4; }
.contact-aside__tel:hover { color: var(--akane-deep); }
.contact-aside__note { font-size: .84rem; color: var(--ink-soft); margin-top: 6px; }
.contact-aside__list li { display: flex; gap: 10px; padding: 8px 0; font-size: .9rem; align-items: flex-start; }
.contact-aside__list li::before { content: "✓"; color: var(--akane); font-weight: 700; flex: none; }
.contact__ph { aspect-ratio: 16 / 9; border-radius: var(--radius); margin-top: 20px; }

/* ---------- 追従CTA ---------- */
/* PC:右下フロート */
.float-cta {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  display: flex; align-items: center; gap: .6em;
  height: 62px; padding: 0 1.7em;
  background: var(--cta); color: #fff;
  border-radius: 999px;
  font-weight: 700; letter-spacing: .05em; font-size: .95rem;
  box-shadow: 0 14px 30px rgba(176,74,47,.4);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, background .25s ease;
}
.float-cta:hover { background: var(--akane-deep); }
.float-cta.is-show { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 960px) { .float-cta { display: none; } }

/* SP:画面下固定バー(スクロールでスライドイン) */
.sp-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  transform: translateY(105%);
  transition: transform .4s ease;
  box-shadow: 0 -8px 24px rgba(32,29,24,.18);
}
.sp-bar.is-show { transform: none; }
.sp-bar__btn {
  display: flex; align-items: center; justify-content: center; gap: .5em;
  height: 60px;
  font-weight: 700; font-size: .92rem; letter-spacing: .04em;
}
.sp-bar__btn--tel { background: var(--sumi); color: #fff; }
.sp-bar__btn--form { background: var(--cta); color: #fff; }
@media (max-width: 960px) { .sp-bar { display: grid; } }

/* ---------- 横スクロール防止の最終保険 ---------- */
html, body { max-width: 100%; overflow-x: clip; }
