/* ==========================================================================
   components.css — ヘッダー/フッター/ボタン/カード/img-slot/フォーム 他
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* ロゴ                                                                    */
/* ---------------------------------------------------------------------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: var(--tap-min);
}
.brand__mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.brand__mark circle,
.brand__mark line { stroke: var(--color-gold-500); }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  margin-top: 2px;
}
.site-footer .brand__main,
.site-footer .brand__sub { color: var(--color-navy-900); }

/* ---------------------------------------------------------------------- */
/* ヘッダー                                                                 */
/* ---------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h-top);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), height 0.35s var(--ease-out);
}
.site-header[data-header-theme="light"] {
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.site-header[data-header-theme="light"] .brand__main,
.site-header[data-header-theme="light"] .brand__sub { color: var(--color-navy-900); }
.site-header[data-header-theme="light"] .hamburger__bar { background-color: var(--color-navy-900); }
.site-header[data-header-theme="light"] .header-phone { color: var(--color-navy-900); }

.site-header[data-header-theme="transparent"] .brand__main,
.site-header[data-header-theme="transparent"] .brand__sub { color: #fff; }
.site-header[data-header-theme="transparent"] .header-phone { color: #fff; }
.site-header[data-header-theme="transparent"] .hamburger__bar { background-color: #fff; }

.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.site-header.is-scrolled .brand__main,
.site-header.is-scrolled .brand__sub { color: var(--color-navy-900); }
.site-header.is-scrolled .header-phone { color: var(--color-navy-900); }
.site-header.is-scrolled .hamburger__bar { background-color: var(--color-navy-900); }
.site-header.is-scrolled .brand__mark { transform: scale(0.9); }

/* 誤タップ対策：高さ遷移中は操作要素を一時的に無効化 */
.site-header.is-transitioning .header-actions {
  pointer-events: none;
}

.header-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  min-height: var(--tap-min);
  white-space: nowrap;
  transition: color 0.35s var(--ease-out);
}
.header-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (min-width: 768px) {
  .header-phone { display: inline-flex; }
}

.header-cta.btn {
  padding-block: 10px;
  font-size: 14px;
  min-height: var(--tap-min);
}

/* ハンバーガー */
.hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger__box {
  width: 24px;
  height: 18px;
  position: relative;
}
.hamburger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), background-color 0.35s var(--ease-out);
}
.hamburger__bar:nth-child(1) { top: 0; }
.hamburger__bar:nth-child(2) { top: 8px; }
.hamburger__bar:nth-child(3) { top: 16px; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------------------------------------------------------------------- */
/* オフキャンバスメニュー                                                    */
/* ---------------------------------------------------------------------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 33, 61, 0.6);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0s linear 0.3s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease-out);
}

.global-nav {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  width: 100%;
  z-index: 120;
  background: var(--color-navy-900);
  color: #fff;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .global-nav { width: 420px; }
}

.global-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.global-nav__close svg { width: 22px; height: 22px; }

.global-nav__brand {
  margin-bottom: var(--space-lg);
}

.nav-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.nav-list > li {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.nav-link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding-block: 14px;
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.03em;
  position: relative;
}
.nav-link.is-active {
  color: var(--color-gold-500);
}
.nav-link.is-active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: var(--color-gold-500);
  border-radius: 2px;
}

.nav-item--has-sub { display: flex; flex-direction: column; }
.nav-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-item-row .nav-link { flex: 1; }
.nav-subtoggle-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.nav-subtoggle-btn__icon {
  width: 18px; height: 18px;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.nav-item--has-sub[data-open="true"] .nav-subtoggle-btn__icon {
  transform: rotate(180deg);
}
.nav-sublist {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}
.nav-item--has-sub[data-open="true"] .nav-sublist {
  grid-template-rows: 1fr;
}
.nav-sublist__inner { overflow: hidden; }
.nav-sublist a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-block: 10px;
  padding-left: var(--space-md);
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.nav-sublist a.is-active { color: var(--color-gold-500); }
.nav-sublist a::before {
  content: "―";
  margin-right: 8px;
  color: var(--color-gold-500);
  font-size: 12px;
}

.nav-cta {
  margin-top: var(--space-lg);
}
.nav-cta .btn { width: 100%; justify-content: center; }

.nav-meta {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}
.nav-meta strong { color: #fff; display: block; font-size: 14px; margin-bottom: 4px; }

/* 開閉状態の transform は nav.js が hidden 属性除去のタイミングで都度設定する
   (GSAPのxPercent/xの内部キャッシュとCSS側のtransformが二重に加算される事故を避けるため、
    ここではベースのtransformを宣言しない。閉状態は [hidden] による display:none で担保する) */
.global-nav[hidden] { display: none; }

/* ---------------------------------------------------------------------- */
/* ボタン                                                                   */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap-min);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15.5px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color .25s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-gold-500);
  color: var(--color-navy-900);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-gold-600);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: #fff;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.btn--outline-navy {
  background: transparent;
  border-color: var(--color-navy-700);
  color: var(--color-navy-700);
}
.btn--outline-navy:hover {
  background: var(--color-navy-900);
  color: #fff;
  transform: translateY(-3px);
}
.btn--navy {
  background: var(--color-navy-900);
  color: #fff;
}
.btn--navy:hover {
  background: var(--color-navy-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--block { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 14px; min-height: 40px; }

@media (hover: none) {
  .btn:active { transform: scale(0.97); }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
@media (max-width: 480px) {
  .btn-row { flex-direction: column; align-items: stretch; }
}

/* ---------------------------------------------------------------------- */
/* バッジ / セクション見出し                                                 */
/* ---------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-gold-100);
  color: var(--color-navy-900);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-gold-600);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--color-gold-500);
}

.section-head {
  margin-bottom: var(--space-lg);
  max-width: 640px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  color: var(--color-text-sub);
  margin-top: var(--space-xs);
}
.section-head--center p { margin-inline: auto; }

.section--navy {
  background: var(--color-navy-900);
  color: #fff;
}
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .section-head p { color: rgba(255,255,255,0.72); }
.section--tint {
  background: var(--color-navy-100);
}
.section--surface { background: var(--color-surface); }

/* ---------------------------------------------------------------------- */
/* 画像プレースホルダー（img-slot） 構成案§3準拠                             */
/* ---------------------------------------------------------------------- */
.img-slot {
  aspect-ratio: var(--ar, 16/9);
  width: 100%;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-navy-100), #fff);
  border: 1.5px dashed var(--color-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-slot__frame {
  text-align: center;
  color: var(--color-navy-500);
  padding: 20px;
}
.img-slot__icon { color: var(--color-gold-500); margin-inline: auto; }
.img-slot__label {
  font-weight: 700;
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-navy-700);
}
.img-slot__hint {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 4px;
  max-width: 26ch;
  margin-inline: auto;
  line-height: 1.6;
}
.img-slot--round { border-radius: var(--radius-pill); }
.img-slot--soft { border-radius: var(--radius-lg); }

/* 実画像が入った状態：枠線・グラデーション背景を解除し、画像をコンテナいっぱいに敷く */
.img-slot.has-image {
  border-style: solid;
  border-color: transparent;
  background: var(--color-navy-100);
}
.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------------------------------------------------------------------- */
/* カード                                                                   */
/* ---------------------------------------------------------------------- */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
@media (hover: none) {
  .card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .card:active { transform: scale(0.98); }
}

.reason-card {
  padding: var(--space-md);
  text-align: left;
}
.reason-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-gold-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold-600);
  margin-bottom: var(--space-sm);
}
.reason-card h3 { margin-bottom: 6px; }
.reason-card p { color: var(--color-text-sub); font-size: 15px; }

.service-card { overflow: hidden; display: flex; flex-direction: column; }
.service-card__body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.service-card__tag {
  font-size: 12px; font-weight: 700; color: var(--color-gold-600);
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--color-text-sub); font-size: 15px; margin-bottom: var(--space-sm); flex: 1; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--color-navy-700);
  min-height: var(--tap-min);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow:hover { color: var(--color-gold-600); }

.voice-card { padding: var(--space-md); }
.voice-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
}
.voice-card__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--color-navy-100);
  border: 1px solid var(--color-gold-500);
  color: var(--color-gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-card__avatar svg { width: 19px; height: 19px; }
.voice-card__stars { color: var(--color-gold-500); margin-bottom: 10px; letter-spacing: 2px; }
.voice-card__meta { font-size: 13.5px; font-weight: 700; color: var(--color-navy-900); }
.voice-card__quote { font-size: 15px; }

.column-card { overflow: hidden; }
.column-card__body { padding: var(--space-md); }
.column-card__date { font-size: 12.5px; color: var(--color-text-sub); }
.column-card__tag {
  display: inline-block; margin-left: 8px; padding: 3px 10px;
  background: var(--color-gold-100); color: var(--color-navy-900);
  border-radius: var(--radius-pill); font-size: 11.5px; font-weight: 700;
}
.column-card h3 { margin-block: 10px; font-size: 17px; }
.column-card p { color: var(--color-text-sub); font-size: 14.5px; }

.staff-card { padding: var(--space-md); text-align: center; }
.staff-card h3 { margin-top: var(--space-sm); font-size: 17px; }
.staff-card__role { color: var(--color-gold-600); font-size: 13px; font-weight: 700; margin-top: 2px; }
.staff-card p.staff-card__note { color: var(--color-text-sub); font-size: 14px; margin-top: 8px; margin-inline: auto; }

/* ---------------------------------------------------------------------- */
/* グリッド                                                                  */
/* ---------------------------------------------------------------------- */
.grid { display: grid; gap: var(--space-md); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }
}

/* ---------------------------------------------------------------------- */
/* 二重丸（印影）モチーフ・装飾                                               */
/* ---------------------------------------------------------------------- */
.seal-deco {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
  color: var(--color-gold-500);
}
.divider-line {
  width: 100%;
  height: 1px;
  overflow: visible;
}
.divider-line path {
  stroke: var(--color-gold-500);
  stroke-width: 1;
  fill: none;
}

/* ---------------------------------------------------------------------- */
/* 実績カウントアップ                                                        */
/* ---------------------------------------------------------------------- */
.stats {
  display: grid;
  gap: var(--space-lg);
  text-align: center;
}
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
}
.stat__num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-gold-500);
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .stat__num { font-size: 56px; }
}
.stat__unit { font-size: 22px; margin-left: 4px; }
.stat__label { margin-top: 8px; font-size: 15px; color: rgba(255,255,255,0.8); }

/* ---------------------------------------------------------------------- */
/* ステップ（ご相談の流れ）                                                   */
/* ---------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}
@media (min-width: 900px) {
  .steps--4 { grid-template-columns: repeat(4, 1fr); }
  .steps--5 { grid-template-columns: repeat(5, 1fr); }
}
.step {
  position: relative;
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-gold-600);
  margin-bottom: var(--space-sm);
  position: relative;
}
.step__num::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-500);
  opacity: 0.5;
}
.step h3 { margin-bottom: 6px; font-size: 17px; }
.step p { color: var(--color-text-sub); font-size: 14.5px; }
.step__meta {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--color-gold-600);
  font-weight: 700;
}

/* ---------------------------------------------------------------------- */
/* アコーディオン（FAQ）                                                     */
/* ---------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--color-border); }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: var(--tap-min);
  padding-block: 18px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy-900);
}
.accordion-trigger__q {
  display: flex; gap: 10px;
}
.accordion-trigger__q span.qmark {
  color: var(--color-gold-600);
  font-family: var(--font-serif);
  flex-shrink: 0;
}
.accordion-trigger__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-500);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-out);
  color: var(--color-gold-600);
}
.accordion-item[data-open="true"] .accordion-trigger__icon { transform: rotate(45deg); }
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}
.accordion-item[data-open="true"] .accordion-panel {
  grid-template-rows: 1fr;
}
.accordion-panel__inner { overflow: hidden; }
.accordion-panel p {
  padding-bottom: 18px;
  padding-right: 32px;
  color: var(--color-text-sub);
  font-size: 15px;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-bottom: var(--space-lg);
}
.faq-tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  font-size: 13.5px;
  font-weight: 700;
  min-height: 40px;
  color: var(--color-text-sub);
}
.faq-tab.is-active {
  background: var(--color-navy-900);
  border-color: var(--color-navy-900);
  color: #fff;
}

/* ---------------------------------------------------------------------- */
/* 料金テーブル                                                              */
/* ---------------------------------------------------------------------- */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.price-table {
  min-width: 560px;
}
.price-table caption {
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy-900);
  padding: var(--space-md) var(--space-md) var(--space-sm);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: 14.5px;
}
.price-table thead th {
  background: var(--color-navy-100);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-navy-900);
}
.price-table td:nth-child(2), .price-table td:nth-child(3) {
  color: var(--color-navy-700);
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}
.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--color-navy-900);
  font-weight: 700;
  margin-block: var(--space-xs);
}
.pricing-card__price span { font-size: 14px; color: var(--color-text-sub); font-weight: 400; }
.pricing-card p.pricing-card__note { color: var(--color-text-sub); font-size: 13px; }

.note-box {
  background: var(--color-navy-100);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 4px solid var(--color-gold-500);
}
.note-box h3 { font-size: 16px; margin-bottom: 8px; }
.note-box p { color: var(--color-text-sub); font-size: 14.5px; margin: 0; max-width: none; }

/* ---------------------------------------------------------------------- */
/* パンくずリスト（構成案§2.6）                                              */
/* ---------------------------------------------------------------------- */
.breadcrumb {
  background: var(--color-navy-100);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  align-items: center;
  padding-block: 12px;
  font-size: 13px;
  color: var(--color-navy-700);
  gap: 2px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumb ol::-webkit-scrollbar { display: none; }
.breadcrumb li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.breadcrumb li:not(:last-child)::after {
  content: "▶";
  font-size: 8px;
  color: var(--color-gold-500);
  margin-inline: 8px;
}
.breadcrumb a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.breadcrumb a:hover { color: var(--color-gold-600); text-decoration: underline; }
.breadcrumb li[aria-current="page"] {
  font-weight: 700;
  color: var(--color-navy-900);
}
.breadcrumb-mobile-back {
  display: none;
}
@media (max-width: 420px) {
  .breadcrumb .breadcrumb-full { display: none; }
  .breadcrumb-mobile-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy-700);
    padding-block: 12px;
  }
}

/* ---------------------------------------------------------------------- */
/* ページヒーロー（detailページ共通）                                         */
/* ---------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-navy-700));
  color: #fff;
  padding-top: calc(var(--header-h-top) + var(--space-lg));
  padding-bottom: var(--space-xl);
  overflow: hidden;
}
.page-hero__eyebrow {
  color: var(--color-gold-500);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-hero h1 { color: #fff; margin-bottom: var(--space-xs); }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 56ch; }
.page-hero--speed {
  background: linear-gradient(135deg, var(--color-navy-900), #26406e 55%, var(--color-gold-600));
}

/* ---------------------------------------------------------------------- */
/* 「こんな方に」チェックリスト                                              */
/* ---------------------------------------------------------------------- */
.check-list { display: grid; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  padding: 12px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.check-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--color-gold-600); width: 18px; height: 18px; }

/* ---------------------------------------------------------------------- */
/* 最終CTA帯                                                                */
/* ---------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-navy-700));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(176, 141, 87, 0.35);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); margin-inline: auto; margin-top: var(--space-xs); }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-md); }
.cta-band__phone {
  margin-top: var(--space-sm);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.cta-band__phone a { font-weight: 700; color: var(--color-gold-500); }

/* ---------------------------------------------------------------------- */
/* フッター                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--color-surface);
  color: var(--color-text-sub);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
}
.footer-col h3 {
  color: var(--color-navy-900);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--color-text-sub);
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
}
.footer-col a:hover { color: var(--color-gold-600); }
.footer-about p { font-size: 13.5px; color: var(--color-text-sub); margin-top: var(--space-sm); line-height: 1.9; }
.footer-cta {
  background: var(--color-navy-100);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.footer-cta .btn { width: 100%; margin-bottom: var(--space-xs); color: var(--color-navy-900); }
.footer-cta .btn:hover { color: var(--color-navy-900); }
.footer-col a.footer-cta__phone { display: block; text-align: center; font-weight: 700; color: var(--color-gold-600); font-size: 15px; }

.footer-bottom {
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-md);
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--color-text-sub); max-width: none; margin-inline: auto; line-height: 1.8; }
.footer-bottom .disclaimer { max-width: 620px; margin-bottom: 6px; }

/* ---------------------------------------------------------------------- */
/* フォーム                                                                  */
/* ---------------------------------------------------------------------- */
.form-intro {
  background: var(--color-gold-100);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14.5px;
  color: var(--color-navy-900);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.error-summary {
  display: none;
  background: #FBEAEA;
  border: 1.5px solid var(--color-danger);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}
.error-summary.is-visible { display: block; }
.error-summary h2 {
  font-size: 16px;
  color: var(--color-danger);
  font-family: var(--font-sans);
  margin-bottom: 8px;
}
.error-summary ul { display: flex; flex-direction: column; gap: 4px; }
.error-summary a { color: var(--color-danger); font-weight: 700; text-decoration: underline; font-size: 14.5px; }

.field {
  margin-bottom: var(--space-md);
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--color-navy-900);
}
.field .required {
  color: var(--color-danger);
  margin-left: 4px;
  font-size: 13px;
}
.field .optional {
  color: var(--color-text-sub);
  font-weight: 400;
  margin-left: 6px;
  font-size: 12.5px;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  min-height: var(--tap-min);
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: 16px;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--color-gold-600);
}
.field textarea { min-height: 120px; resize: vertical; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--color-danger);
}
.field-error {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--color-danger);
  font-size: 13.5px;
  margin-top: 6px;
  font-weight: 700;
}
.field.has-error .field-error { display: flex; }
.field-error svg { flex-shrink: 0; width: 16px; height: 16px; }

.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.radio-option, .checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: var(--tap-min);
  padding: 10px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 14.5px;
}
.radio-option input, .checkbox-option input { width: 18px; height: 18px; accent-color: var(--color-gold-600); }
.checkbox-option--consent {
  border-radius: var(--radius-md);
  width: 100%;
  align-items: flex-start;
  padding: var(--space-sm);
}
.checkbox-option--consent input { margin-top: 3px; }
.checkbox-option--consent a { text-decoration: underline; color: var(--color-navy-700); font-weight: 700; }

.form-grid { display: grid; gap: var(--space-md); }
@media (min-width: 640px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}

.form-submit-row { margin-top: var(--space-lg); text-align: center; }
.form-submit-row .btn { min-width: 260px; }
.form-submit-row p { margin-top: var(--space-sm); font-size: 13px; color: var(--color-text-sub); margin-inline: auto; }

.form-complete {
  display: none;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}
.form-complete.is-visible { display: block; }
.form-complete__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-gold-100);
  color: var(--color-gold-600);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}
.form-complete h2 { margin-bottom: var(--space-sm); }
.form-complete p { margin-inline: auto; color: var(--color-text-sub); }
.form-complete .btn { margin-top: var(--space-lg); }

.contact-aside {
  background: var(--color-navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
}
.contact-aside h2 { color: #fff; font-size: 19px; margin-bottom: var(--space-sm); }
.contact-aside dl { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-aside dt { font-size: 12.5px; color: var(--color-gold-500); letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-aside dd { font-size: 15px; }
.contact-aside .phone-big { font-family: var(--font-serif); font-size: 26px; color: #fff; font-weight: 700; }
.contact-aside hr { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin-block: var(--space-md); }

/* ---------------------------------------------------------------------- */
/* 事務所概要テーブル (about.html)                                          */
/* ---------------------------------------------------------------------- */
.info-table { width: 100%; }
.info-table th, .info-table td {
  text-align: left;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  font-size: 15px;
}
.info-table th {
  width: 9em;
  color: var(--color-navy-700);
  font-weight: 700;
  vertical-align: top;
}
.info-table tr:last-child th, .info-table tr:last-child td { padding-bottom: 0; }

/* ---------------------------------------------------------------------- */
/* 理念（約束）                                                             */
/* ---------------------------------------------------------------------- */
.promise-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.promise-card__num {
  font-family: var(--font-serif);
  color: var(--color-gold-500);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

/* ---------------------------------------------------------------------- */
/* アクセス                                                                  */
/* ---------------------------------------------------------------------- */
.access-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px var(--space-md);
  font-size: 15px;
}
.access-info dt { color: var(--color-navy-700); font-weight: 700; white-space: nowrap; }
.access-info dd { color: var(--color-text-main); }

/* ---------------------------------------------------------------------- */
/* 404                                                                      */
/* ---------------------------------------------------------------------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(180deg, var(--color-navy-900), var(--color-navy-700));
  color: #fff;
}
.error-page__code {
  font-family: var(--font-serif);
  font-size: 88px;
  color: var(--color-gold-500);
  line-height: 1;
}
.error-page h1 { color: #fff; margin-block: var(--space-sm); }
.error-page p { color: rgba(255,255,255,0.78); margin-inline: auto; }
.error-page .btn-row { justify-content: center; margin-top: var(--space-lg); }

/* ---------------------------------------------------------------------- */
/* ワンストップ連携 (services.html)                                          */
/* ---------------------------------------------------------------------- */
.partner-list { display: grid; gap: var(--space-sm); }
@media (min-width: 640px) { .partner-list { grid-template-columns: repeat(3, 1fr); } }
.partner-item {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  text-align: center;
}
.partner-item h3 { font-size: 15px; margin-bottom: 4px; }
.partner-item p { color: var(--color-text-sub); font-size: 13.5px; margin: 0 auto; }
