@charset "UTF-8";

/* =========================================================
   合同会社 中小企業自主申告会 / 社労士 栫総合経営事務所
   共通スタイルシート
   ========================================================= */

:root {
  color-scheme: light;

  /* Brand */
  --navy: #0b3d75;
  --navy-dark: #082c56;
  --navy-light: #12508f;
  --gold: #c19a3e;
  --gold-light: #d8b968;
  --gold-pale: #f0e7d2;

  /* Ink */
  --ink: #22303f;
  --ink-soft: #4c5c6d;
  --ink-mute: #7a8794;

  /* Surface */
  --bg: #ffffff;
  --bg-alt: #f5f8fa;
  --bg-navy-pale: #eef3f8;
  --line: #dfe5eb;
  --line-soft: #ecf0f4;

  --shadow-sm: 0 2px 10px rgba(11, 61, 117, .06);
  --shadow: 0 6px 24px rgba(11, 61, 117, .09);
  --shadow-lg: 0 14px 40px rgba(11, 61, 117, .13);

  --maxw: 1120px;
  --radius: 6px;

  --sans: "YakuHanJP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --serif: "YakuHanMP", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-light); text-decoration: none; transition: color .2s, background .2s, border-color .2s; }
a:hover { color: var(--gold); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.5; }
p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* =========================================================
   ヘッダー
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}
.logo { display: flex; flex-direction: column; line-height: 1.35; }
.logo a { color: inherit; display: block; }
.logo-en {
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 700;
}
.logo-name {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.logo-tag {
  display: block;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: .04em;
}

.header-right { display: flex; align-items: center; gap: 22px; }

.gnav > ul { display: flex; align-items: center; gap: 4px; }
.gnav a {
  display: block;
  padding: 10px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.gnav a:hover, .gnav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.gnav-sp-contact { display: none; }

.header-contact { display: flex; align-items: center; gap: 14px; }
.header-tel { text-align: right; line-height: 1.25; white-space: nowrap; }
.header-tel .tel-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--ink-mute);
  font-weight: 700;
}
.header-tel .tel-num {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.header-tel .tel-num a { color: inherit; }
.header-tel .tel-hours { display: block; font-size: 10.5px; color: var(--ink-mute); }

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-header:hover { background: var(--gold); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 11px;
  width: 20px; height: 1.5px;
  background: var(--navy);
  transition: transform .25s, opacity .2s;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   ヒーロー（トップ）
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 58%, var(--navy-light) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 84% 18%, rgba(216,185,104,.15), transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(255,255,255,.06), transparent 46%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 66px 24px 72px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: .08em;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(27px, 3.3vw, 37px);
  line-height: 1.52;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--gold-light); }
.hero-lead {
  font-size: 16px;
  color: rgba(255,255,255,.9);
  margin-bottom: 26px;
  max-width: 33em;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-badges li {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 14px;
  border: 1px solid rgba(216,185,104,.6);
  color: var(--gold-light);
  border-radius: 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-figure figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
}

/* =========================================================
   ボタン
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 17px 40px; font-size: 16px; }
.btn-block { width: 100%; }

/* =========================================================
   セクション共通
   ========================================================= */
.section { padding: 76px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: #fff; }

.section-head { text-align: center; margin-bottom: 46px; }
.section-head .en {
  display: block;
  font-size: 11px;
  letter-spacing: .24em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--navy);
  line-height: 1.5;
  text-wrap: balance;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}
.section-head .desc {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.section-navy .section-head .en { color: var(--gold-light); }
.section-navy .section-head h2 { color: #fff; }
.section-navy .section-head .desc { color: rgba(255,255,255,.85); }

.section-head-left { text-align: left; }
.section-head-left h2::after { margin-left: 0; }

/* =========================================================
   お悩みリスト（定番: こんなお悩みはありませんか）
   ========================================================= */
.worries { background: var(--bg-alt); }
.worry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 26px;
  max-width: 900px;
  margin: 0 auto;
}
.worry-list li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px 18px 54px;
  font-size: 15.5px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.worry-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
}
.worry-bridge {
  margin-top: 40px;
  text-align: center;
  position: relative;
}
.worry-bridge::before {
  content: "";
  display: block;
  width: 0; height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 20px solid var(--gold);
  margin: 0 auto 26px;
}
.worry-bridge p {
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}
.worry-bridge .em { color: var(--gold); }

/* =========================================================
   選ばれる理由（POINT）
   ========================================================= */
.points { display: grid; gap: 26px; }
.point {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 30px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.point-no {
  font-family: var(--serif);
  color: var(--gold);
  font-weight: 700;
  line-height: 1.1;
  border-right: 1px solid var(--line);
  padding-right: 24px;
  min-height: 62px;
}
.point-no .lbl { display: block; font-size: 11px; letter-spacing: .22em; }
.point-no .num { display: block; font-size: 38px; letter-spacing: .02em; }
.point h3 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.6;
}
.point p { color: var(--ink-soft); font-size: 15.5px; }

/* 実績の数字 */
.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.figure {
  background: #fff;
  padding: 28px 16px;
  text-align: center;
}
.figure dt {
  font-size: 12.5px;
  color: var(--ink-mute);
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.figure dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.figure dd .unit { font-size: 15px; margin-left: 3px; color: var(--ink-soft); }

/* =========================================================
   二つの事務所パネル
   ========================================================= */
.two-offices { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.office-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 38px 34px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
}
.office-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
}
.office-panel.is-accounting::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.office-panel:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.panel-en {
  display: block;
  font-size: 10.5px;
  letter-spacing: .24em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.office-panel h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--navy);
  line-height: 1.5;
}
.panel-role {
  display: inline-block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-navy-pale);
  padding: 5px 16px;
  border-radius: 30px;
}
.office-panel.is-accounting .panel-role { background: var(--gold-pale); color: #7d6222; }
.panel-body {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.panel-list {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 9px;
  flex: 1;
}
.panel-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.panel-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: .72em;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.panel-link {
  margin-top: 26px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.panel-link .arr { transition: transform .2s; }
.panel-link:hover .arr { transform: translateX(4px); }

.sp-br { display: none; }

/* =========================================================
   サービスカード
   ========================================================= */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .2s;
  color: inherit;
}
a.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.service-card .card-no {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 700;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin: 8px 0 14px;
  line-height: 1.55;
}
.service-card p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.service-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.service-tags span {
  font-size: 12px;
  background: var(--bg-navy-pale);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: 500;
}
.service-more {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-light);
}

/* 業務詳細（下層）*/
.detail-block {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 36px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.detail-block:first-of-type { border-top: 1px solid var(--line); }
.detail-block h3 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--navy);
  line-height: 1.55;
}
.detail-block h3 .no {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 6px;
}
.detail-block .body p { color: var(--ink-soft); }
.detail-block .body p + p { margin-top: 14px; }
.detail-list { margin-top: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
.detail-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink);
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: .78em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* =========================================================
   ごあいさつ
   ========================================================= */
.greeting-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 52px;
  align-items: start;
}
.greeting-grid .section-head { margin-bottom: 28px; }
.lead-quote {
  font-family: var(--serif);
  font-size: clamp(19px, 2.3vw, 23px);
  line-height: 1.75;
  color: var(--navy);
  font-weight: 500;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  margin-bottom: 24px;
}
.body-p { color: var(--ink-soft); }
.body-p + .body-p { margin-top: 16px; }
.greeting-figure { margin: 0; }
.greeting-figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.greeting-figure figcaption { margin-top: 10px; font-size: 12px; color: var(--ink-mute); letter-spacing: .04em; }

.detail-wrap { max-width: 900px; margin: 0 auto; }

/* =========================================================
   専門家（士業）
   ========================================================= */
.experts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.expert {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.expert .role {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 4px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.expert .names {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2;
  color: var(--ink);
}

/* =========================================================
   ご相談の流れ（STEP）
   ========================================================= */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step:first-child { border-top: 1px solid var(--line); }
.step-no {
  font-family: var(--serif);
  color: var(--gold);
  font-weight: 700;
  line-height: 1.15;
}
.step-no .lbl { display: block; font-size: 10.5px; letter-spacing: .2em; }
.step-no .num { display: block; font-size: 32px; }
.step h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { color: var(--ink-soft); font-size: 15.5px; }

/* =========================================================
   FAQ（アコーディオン / details）
   ========================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.faq-item > summary {
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  gap: 14px;
  align-items: start;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.7;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::before {
  content: "Q";
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  line-height: 1.3;
}
.faq-item > summary::after {
  content: "";
  justify-self: end;
  margin-top: 10px;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: rotate(45deg);
  transition: transform .25s;
}
.faq-item[open] > summary::after { transform: rotate(-135deg); }
.faq-item > summary:hover { color: var(--gold); }
.faq-answer {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 0 4px 26px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.faq-answer::before {
  content: "A";
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy-light);
  line-height: 1.3;
}
.faq-answer p + p { margin-top: 12px; }

/* =========================================================
   グループ相互リンク
   ========================================================= */
.crosslink {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 62%, var(--navy-light));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 40px;
  color: #fff;
}
.crosslink .cl-en {
  display: block;
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.crosslink h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 8px; line-height: 1.6; }
.crosslink p { font-size: 14.5px; color: rgba(255,255,255,.85); }

/* ヒーロー内の姉妹サイト導線 */
.hero-jimusho {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 14px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(216,185,104,.55);
  border-radius: var(--radius);
  color: #fff;
}
.hero-jimusho:hover { background: rgba(216,185,104,.16); color: #fff; border-color: var(--gold-light); }
.hero-jimusho .hj-mark {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  padding: 6px 7px;
  writing-mode: vertical-rl;
  letter-spacing: .14em;
  line-height: 1.3;
}
.hero-jimusho .hj-body { display: flex; flex-direction: column; line-height: 1.6; }
.hero-jimusho .hj-label { font-size: 11.5px; color: var(--gold-light); font-weight: 700; }
.hero-jimusho .hj-name { font-family: var(--serif); font-size: 16.5px; font-weight: 700; }
.hero-jimusho .hj-arr { margin-left: auto; color: var(--gold-light); font-size: 18px; transition: transform .2s; }
.hero-jimusho:hover .hj-arr { transform: translateX(4px); }

/* =========================================================
   概要テーブル
   ========================================================= */
.table-profile {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}
.table-profile th, .table-profile td {
  text-align: left;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}
.table-profile th {
  width: 210px;
  background: var(--bg-navy-pale);
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}
.table-profile td { color: var(--ink-soft); }
.table-profile td strong { color: var(--ink); }

/* 拠点カード */
.offices { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.office {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.office.is-branch { border-top-color: var(--gold); }
.office .en { display: block; font-size: 10.5px; letter-spacing: .2em; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.office h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 16px; line-height: 1.5; }
.office dl { display: grid; grid-template-columns: 66px 1fr; row-gap: 10px; font-size: 14.5px; }
.office dt { font-weight: 700; color: var(--navy); }
.office dd { margin: 0; color: var(--ink-soft); }
.office .tel-big {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.office .tel-big a { color: inherit; }

/* 対応エリア */
.area-note {
  margin-top: 26px;
  background: var(--bg-navy-pale);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.area-note strong { color: var(--navy); }

/* =========================================================
   CTA 帯
   ========================================================= */
.cta {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  border-top: 3px solid var(--gold);
  color: #fff;
  padding: 62px 0;
  text-align: center;
}
.cta .en { display: block; font-size: 11px; letter-spacing: .24em; color: var(--gold-light); font-weight: 700; margin-bottom: 10px; }
.cta h2 { font-family: var(--serif); font-size: clamp(21px, 2.6vw, 27px); margin-bottom: 14px; }
.cta > .container > p { color: rgba(255,255,255,.85); max-width: 40em; margin: 0 auto 30px; font-size: 15px; }
.cta-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 780px; margin: 0 auto; }
.cta-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.cta-box .box-label { display: block; font-size: 12px; letter-spacing: .16em; color: var(--gold-light); font-weight: 700; margin-bottom: 8px; }
.cta-box .box-tel {
  display: block;
  font-family: var(--serif);
  font-size: clamp(27px, 3.4vw, 33px);
  font-weight: 700;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}
.cta-box .box-tel a { color: #fff; }
.cta-box .box-note { display: block; font-size: 12.5px; color: rgba(255,255,255,.72); margin-top: 4px; }
.cta-box .btn { margin-top: 8px; }

/* =========================================================
   下層ページヘッダー & パンくず
   ========================================================= */
.page-head {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 52px 0 56px;
  text-align: center;
}
.page-head .en { display: block; font-size: 11px; letter-spacing: .24em; color: var(--gold-light); font-weight: 700; margin-bottom: 10px; }
.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.5;
  text-wrap: balance;
}
.page-head p { margin-top: 14px; color: rgba(255,255,255,.85); font-size: 15px; }

.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb ol {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-mute);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "›"; color: var(--ink-mute); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--gold); }

/* 本文ブロック（プライバシー等） */
.prose h2 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); margin-bottom: 14px; }
.prose ul { margin: 0 0 14px; }
.prose ul li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: .8em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* 問い合わせページ */
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 44px; }
.contact-method {
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 32px 30px;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-method .en { display: block; font-size: 11px; letter-spacing: .2em; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.contact-method h2 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.contact-method p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.contact-method .big-tel {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
  display: block;
}
.contact-method .big-tel a { color: inherit; }
.contact-method .hours { font-size: 13px; color: var(--ink-mute); }

/* =========================================================
   フッター
   ========================================================= */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 54px 0 26px; font-size: 14px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-brand .f-en { display: block; font-size: 10px; letter-spacing: .2em; color: var(--gold-light); font-weight: 700; }
.footer-brand .f-name { font-family: var(--serif); font-size: 19px; color: #fff; margin: 6px 0 14px; font-weight: 700; }
.footer-brand address { font-style: normal; font-size: 13.5px; color: rgba(255,255,255,.68); line-height: 1.9; }
.footer-col h3 { color: #fff; font-size: 13px; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.68); font-size: 13.5px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ページトップ */
.pagetop {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s, background .2s;
  z-index: 90;
}
.pagetop.is-visible { opacity: 1; visibility: visible; }
.pagetop:hover { background: var(--gold); color: #fff; }
.pagetop::before {
  content: "";
  width: 10px; height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(-45deg);
  margin-top: 3px;
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1080px) {
  .logo-name { font-size: 17px; }
  .gnav a { padding: 10px 9px; font-size: 13.5px; }
  .header-tel .tel-num { font-size: 20px; }
  .btn-header { padding: 12px 16px; font-size: 13px; }
  .header-right { gap: 14px; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 68px; }
  .nav-toggle { display: block; }
  .header-right { gap: 10px; }
  .header-tel, .btn-header { display: none; }

  .gnav {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 8px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
    visibility: hidden;
  }
  .gnav.is-open { transform: translateX(0); visibility: visible; }
  .gnav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav a { padding: 16px 4px; border-bottom: 1px solid var(--line-soft); }
  .gnav a:hover, .gnav a[aria-current="page"] { border-bottom-color: var(--line-soft); }
  .gnav-sp-contact { margin-top: 24px; display: grid; gap: 12px; }
  .gnav-sp-contact .sp-tel {
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
  }
  .gnav-sp-contact .sp-tel .tel-label { display: block; font-size: 11px; color: var(--ink-mute); font-weight: 700; }
  .gnav-sp-contact .sp-tel .tel-num {
    display: block;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 700;
    color: var(--navy);
  }
  .gnav-sp-contact .sp-tel .tel-num a { color: inherit; }
  .gnav-sp-contact .sp-tel .tel-hours { display: block; font-size: 11.5px; color: var(--ink-mute); }

  .hero-inner { grid-template-columns: 1fr; gap: 34px; padding: 46px 24px 52px; }
  .hero-figure { max-width: 420px; }
  .section { padding: 58px 0; }
  .two-offices { grid-template-columns: 1fr; }
  .office-panel { padding: 32px 28px 28px; }
  .sp-br { display: block; }
  .greeting-grid { grid-template-columns: 1fr; gap: 32px; }
  .greeting-figure { max-width: 380px; }
  .worry-list { grid-template-columns: 1fr; }
  .points { gap: 18px; }
  .point { grid-template-columns: 1fr; gap: 14px; padding: 26px 24px; }
  .point-no { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 12px; min-height: 0; display: flex; align-items: baseline; gap: 10px; }
  .point-no .num { font-size: 30px; }
  .figures { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
  .experts { grid-template-columns: repeat(2, 1fr); }
  .detail-block { grid-template-columns: 1fr; gap: 16px; }
  .detail-list { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step-no { display: flex; align-items: baseline; gap: 10px; }
  .step-no .num { font-size: 26px; }
  .crosslink { grid-template-columns: 1fr; gap: 20px; padding: 28px 26px; text-align: center; }
  .offices { grid-template-columns: 1fr; }
  .cta-boxes { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { font-size: 15.5px; }
  .logo-name { font-size: 15.5px; }
  .logo-tag { display: none; }
  .hero-figure { max-width: none; }
  .table-profile th, .table-profile td { display: block; width: auto; }
  .table-profile th { border-bottom: none; padding: 14px 16px 6px; }
  .table-profile td { padding: 0 16px 16px; }
  .experts { grid-template-columns: 1fr; }
  .figures { grid-template-columns: 1fr; }
  .worry-list li { padding: 15px 18px 15px 48px; font-size: 14.5px; }
  .footer-top { grid-template-columns: 1fr; }
  .pagetop { right: 12px; bottom: 12px; }
}

/* 印刷 */
@media print {
  .header, .cta, .footer, .pagetop, .hero-actions { display: none; }
  body { color: #000; }
}
