/* ============================================
   common.css
   全ページ共通スタイル
   - 変数 / リセット / タイポグラフィ
   - ヘッダー / フッター / ボトムバー
   - ボタン / リンク / セクション共通
   - アニメーション / レスポンシブ共通
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
  --c-navy: #1B2A4A;
  --c-navy-mid: #2D4A7A;
  --c-navy-pale: #EAF0F7;
  --c-gold: #B8872F;
  --c-gold-light: #D4B06A;
  --c-gold-pale: #F5F0E4;
  --c-bg: #F8F7F4;
  --c-bg-warm: #F0EDE6;
  --c-white: #FFFFFF;
  --c-text: #2A2A2A;
  --c-text-sub: #5C5C5C;
  --c-text-muted: #8A8A8A;
  --c-border: #E2DDD4;
  --c-red: #BF4545;
  --c-red-pale: #FEF0F0;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-display: 'Shippori Mincho', serif;
  --shadow-s: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-m: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.9;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
  margin: 0 auto;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- SVG ICONS ---------- */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  max-width: 1em;
  max-height: 1em;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  overflow: hidden;
}
.icon-check { stroke: var(--c-navy); }
.icon-x { stroke: var(--c-red); }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--c-text);
}

.section-lead {
  font-size: 16px;
  color: var(--c-text-sub);
  line-height: 2;
  margin-bottom: 32px;
}

.em {
  color: var(--c-navy);
}

.em-underline {
  color: var(--c-navy);
  background: linear-gradient(transparent 70%, rgba(184, 135, 47, 0.15) 70%);
}

/* ---------- SECTION ---------- */
.section {
  padding: 72px 0;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  height: 60px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.header-menu-btn {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}

.header-menu-btn span:not(.header-menu-label) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 1px;
}

/* ---------- HEADER ACTIONS (CTA + hamburger) ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-cta {
  display: none;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
  line-height: 1.3;
}
.header-cta .icon { stroke: currentColor; flex-shrink: 0; }
.header-cta--tel {
  font-size: 14px;
  color: var(--c-navy);
  padding: 6px 12px;
  border: 1px solid var(--c-border);
  background: var(--c-white);
}
.header-cta--tel:active { background: var(--c-bg); }
.header-cta--line {
  font-size: 12px;
  color: #fff;
  background: #06C755;
  padding: 7px 12px;
}
.header-cta--line:active { opacity: 0.85; }
.header-cta--line .icon { stroke: #fff; }
.header-cta--satei {
  font-size: 12px;
  color: #fff;
  background: var(--c-navy);
  padding: 7px 14px;
}
.header-cta--satei:hover { background: var(--c-navy-mid); }
.header-cta--satei:active { opacity: 0.85; }
.header-cta--line:hover { background: #049340; }
.header-cta--tel:hover { background: var(--c-bg); }
.header-menu-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--c-text-sub);
  margin-top: 1px;
  line-height: 1;
}

/* --- Header: Tablet (600px+) — tel + satei 表示 --- */
@media (min-width: 600px) {
  .header-cta--tel { display: flex; }
  .header-cta--satei { display: flex; }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: 60px;
  transition: background 0.2s;
  min-height: 56px;
}

.btn-primary:active {
  background: var(--c-navy-mid);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-white);
  color: var(--c-navy);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 60px;
  border: 2px solid var(--c-navy);
  transition: background 0.2s;
  min-height: 56px;
}

.btn-secondary:active {
  background: var(--c-navy-pale);
}

.btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-white);
  color: var(--c-navy);
  font-size: 17px;
  font-weight: 700;
  padding: 20px 24px;
  border-radius: 60px;
  min-height: 60px;
  width: 100%;
  margin-bottom: 12px;
}

.btn-white:active {
  background: #f0f0f0;
}

/* ---------- TEL CTA BUTTON ---------- */

/* ---------- LINE CTA BUTTON ---------- */
.btn-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #05A848;
  color: #fff;
  border: none;
  font-weight: 700;
  margin-top: 8px;
}

.btn-line:active {
  background: #049340;
}

/* ---------- LINE CTA (PC) ---------- */
@media (min-width: 900px) {
  .btn-line {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- LINKS ---------- */
.link-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  padding: 16px;
  margin-top: 24px;
}

.link-more::after {
  content: '→';
}

/* ---------- SITE GUIDE (回遊ナビ) ---------- */
.site-guide {
  padding: 32px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.sg-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sg-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--c-white);
  border-radius: var(--radius);
  transition: background 0.15s;
}
.sg-item:active { background: var(--c-border); }
.sg-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-navy-pale);
  border-radius: 6px;
  color: var(--c-navy);
  margin-top: 1px;
}
.sg-icon .icon { stroke: currentColor; }
.sg-body { flex: 1; min-width: 0; }
.sg-item-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.sg-item-sub {
  display: block;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 2px;
  line-height: 1.3;
}
@media (min-width: 600px) {
  .sg-grid { gap: 10px; }
  .sg-item { padding: 14px 16px; }
  .sg-item-title { font-size: 15px; }
  .sg-item-sub { font-size: 13px; }
}
@media (min-width: 900px) {
  .site-guide { padding: 40px 0; }
  .sg-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px; }
  .sg-item:hover { background: var(--c-navy-pale); }
  .sg-label { font-size: 14px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #2A2A2A;
  color: rgba(255,255,255,0.75);
  padding: 40px 0 100px;
  font-size: 13px;
  line-height: 1.8;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-info {
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.footer-nav-group a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.footer-related {
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-related-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.footer-related-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-related-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
}
.footer-related-link:hover {
  color: #fff;
}
.footer-related-link-badge {
  font-size: 11px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  padding: 1px 6px;
  border-radius: 3px;
  white-space: nowrap;
}
.footer-related-link .frl-arrow {
  font-size: 12px;
  opacity: 0.5;
}

/* --- Cross-site context banner --- */
.cross-site-banner {
  background: #F6F3EE;
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--c-navy, #1A2744);
  transition: background 0.2s;
}
.cross-site-banner:hover {
  background: #EDE8E0;
}
.cross-site-banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--c-navy, #1A2744);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cross-site-banner-icon svg {
  color: #fff;
}
.cross-site-banner-body {
  flex: 1;
  min-width: 0;
}
.cross-site-banner-title {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.cross-site-banner-sub {
  font-size: 13px;
  color: rgba(26,39,68,0.65);
  display: block;
  line-height: 1.5;
}
.cross-site-banner-arrow {
  flex-shrink: 0;
  font-size: 16px;
  opacity: 0.4;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---------- BOTTOM BAR ---------- */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  display: flex;
  gap: 8px;
  transition: transform 0.3s ease;
}

.bottom-bar.hidden {
  transform: translateY(100%);
}

.bb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  min-height: 56px;
  transition: background 0.2s;
}

.bb-btn:active {
  background: #f0f0f0;
}

.bb-btn-icon {
  font-size: 20px;
  line-height: 1;
}

.bb-btn-tel {
  color: var(--c-navy);
}

.bb-btn-line {
  color: #05A848;
}

.bb-btn-form {
  background: linear-gradient(135deg, var(--c-gold) 0%, #C4973A 100%);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(184, 135, 47, 0.3);
  position: relative;
}

.bb-btn-form:active {
  box-shadow: 0 1px 4px rgba(184, 135, 47, 0.2);
}

.bb-btn-form .bb-btn-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: -1px;
}

/* ---------- EXPLORE BANNERS (きっかけ/悩み誘導) ---------- */
.explore-banners-wrap {
  background: var(--c-bg);
  padding: 32px 0;
}
.explore-banners-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: center;
}
.explore-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.explore-banner {
  background: var(--c-white);
  border-left: 4px solid var(--c-gold);
  padding: 18px 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-s);
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.2s;
}
.explore-banner:active {
  box-shadow: var(--shadow-m);
}
.explore-banner-icon {
  width: 44px;
  height: 44px;
  background: var(--c-gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.explore-banner-icon .icon {
  width: 22px;
  height: 22px;
  stroke: var(--c-gold);
}
.explore-banner-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.explore-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
}
.explore-banner-sub {
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.5;
}
.explore-banner-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.explore-banner-arrow .icon {
  width: 18px;
  height: 18px;
  stroke: var(--c-text-muted);
}
@media (min-width: 600px) {
  .explore-banners { flex-direction: row; }
  .explore-banner { flex: 1; }
}

/* ---------- TABLE SCROLL WRAPPER ---------- */
.table-scroll-wrap,
.col-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 28px;
}
.table-scroll-wrap > table {
  margin: 0;
}

/* ---------- ARTICLE LP BANNER (コラム内LP誘導) ---------- */
.article-lp-banner {
  margin: 32px 0;
}
.article-lp-banner-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.article-lp-banner-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-gold-pale);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-decoration: none;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.2s;
}
.article-lp-banner-link:active {
  box-shadow: var(--shadow-m);
}
.article-lp-banner-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,135,47,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-lp-banner-icon .icon {
  width: 22px;
  height: 22px;
  stroke: var(--c-gold);
}
.article-lp-banner-body {
  flex: 1;
  min-width: 0;
}
.article-lp-banner-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
}
.article-lp-banner-sub {
  display: block;
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.5;
  margin-top: 2px;
}
.article-lp-banner-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-lp-banner-arrow .icon {
  width: 18px;
  height: 18px;
  stroke: var(--c-text-muted);
}

/* ---------- PAGE REC BANNER (ページ間誘導) ---------- */
.page-rec-banner-wrap {
  margin: 0 auto 24px;
  padding: 0 20px;
  max-width: 960px;
}
.page-rec-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
}
.page-rec-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-white);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-decoration: none;
  box-shadow: var(--shadow-s);
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.2s;
}
.page-rec-banner:active {
  box-shadow: var(--shadow-m);
}
.page-rec-banner-icon {
  width: 44px;
  height: 44px;
  background: var(--c-gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-rec-banner-icon .icon {
  width: 22px;
  height: 22px;
  stroke: var(--c-gold);
}
.page-rec-banner-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.page-rec-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
}
.page-rec-banner-sub {
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.5;
}
.page-rec-banner-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-rec-banner-arrow .icon {
  width: 18px;
  height: 18px;
  stroke: var(--c-text-muted);
}
@media (min-width: 600px) {
  .page-rec-banners { flex-direction: row; }
  .page-rec-banners .page-rec-banner { flex: 1; }
}

/* ---------- CTA SECTION (共通) ---------- */
.cta-section {
  background: var(--c-navy);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184,135,47,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title {
  color: #fff;
  text-align: center;
}

.cta-section .section-lead {
  color: rgba(255,255,255,0.92);
  text-align: center;
}

.cta-form-intro {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  text-align: center;
  margin-bottom: 20px;
}

/* ---------- HAMBURGER ACTIVE STATE ---------- */
.header-menu-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.header-menu-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-menu-btn span:not(.header-menu-label) {
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* ---------- NAV OVERLAY ---------- */
.nav-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- NAV PANEL ---------- */
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--c-white);
  z-index: 210;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nav-panel.open {
  transform: translateX(0);
  visibility: visible;
  transform: translateX(0);
}

.nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}

.nav-close-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-close-btn span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 1px;
}

.nav-close-btn span:first-child {
  transform: rotate(45deg);
}

.nav-close-btn span:last-child {
  transform: rotate(-45deg);
}

.nav-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0 40px;
}

.nav-link {
  display: block;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  transition: background 0.15s;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0.05);
}

.nav-link + .nav-link {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.nav-link:active {
  background: var(--c-bg);
}

.nav-link--cta {
  color: var(--c-navy);
  background: var(--c-navy-pale);
  margin: 0 16px;
  border-radius: var(--radius);
  text-align: center;
  padding: 14px 20px;
}

.nav-link--cta:active {
  background: var(--c-navy);
  color: #fff;
}

.nav-link--line {
  color: #fff;
  background: #05A848;
  margin: 6px 16px 0;
  border-radius: var(--radius);
  text-align: center;
  padding: 14px 20px;
}

.nav-link--line:active {
  background: #049340;
}

.nav-link--line-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
}

.nav-divider {
  height: 1px;
  background: var(--c-border);
  margin: 8px 24px;
}

.nav-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  padding: 4px 24px 4px;
  letter-spacing: 0.04em;
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 16px;
}

.nav-grid-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  border-radius: 8px;
  transition: background 0.15s;
  line-height: 1.3;
  cursor: pointer;
}

.nav-grid-item:active {
  background: var(--c-bg);
}

.nav-footer-info {
  padding: 16px 24px 0;
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.8;
}

.nav-footer-info a {
  color: var(--c-navy);
  font-weight: 600;
}

/* --- SP / PC toggle --- */
.nav-pc-only { display: none; }
.nav-sp-only { display: block; }

/* --- SP: Hub link cards --- */
.nav-hub-links {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-hub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--c-bg);
  border-radius: var(--radius);
  transition: background 0.15s;
  cursor: pointer;
}
.nav-hub-link:active { background: var(--c-border); }
.nav-hub-link-icon { font-size: 20px; flex-shrink: 0; }
.nav-hub-link-body { flex: 1; min-width: 0; }
.nav-hub-link-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.nav-hub-link-sub {
  display: block;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.nav-hub-link-arrow {
  font-size: 14px;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

/* --- PC: Hub inline links --- */
.nav-hub-inline {
  display: flex;
  gap: 8px;
  padding: 0 16px 8px;
}
.nav-hub-inline-link {
  flex: 1;
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  padding: 10px 12px;
  background: var(--c-navy-pale);
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.2s;
}
.nav-hub-inline-link:hover { background: var(--c-navy); color: #fff; }

/* --- PC nav panel enhancements (900px+) --- */
@media (min-width: 900px) {
  .nav-sp-only { display: none; }
  .nav-pc-only { display: block; }
  .nav-panel { width: 400px; }
  .nav-grid { grid-template-columns: 1fr 1fr 1fr; }
  .nav-link:hover { background: var(--c-bg); }
  .nav-grid-item:hover { background: var(--c-bg); }
}

/* ---------- GOLD CTA BUTTON ---------- */
.btn-gold {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-gold) 0%, #C4973A 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 60px;
  min-height: 60px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(184, 135, 47, 0.35);
  transition: box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.4;
}

.btn-gold:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(184, 135, 47, 0.3);
}

.btn-gold-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 2px;
}

/* ---------- TRUST BADGES (CTA内) ---------- */
.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.cta-trust-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

.cta-trust-badge::before {
  content: '✓';
  color: var(--c-gold-light);
  font-weight: 700;
  font-size: 14px;
}

.cta-btn-icon { display: inline-flex; }

/* ---------- CTA SECONDARY (電話・LINE 2カラム) ---------- */
.cta-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.cta-sub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--c-white);
  color: var(--c-navy);
  border-radius: var(--radius);
  padding: 16px 10px;
  transition: box-shadow 0.2s;
}
.cta-sub-card:active { background: #f0f0f0; }
.cta-sub-card--line {
  background: #05A848;
  color: #fff;
}
.cta-sub-card--line:active { background: #049340; }
.cta-sub-card--line .cta-sub-note { color: rgba(255,255,255,0.8); }
.cta-sub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27,58,107,0.08);
  margin-bottom: 6px;
}
.cta-sub-icon .icon {
  stroke: var(--c-navy);
  stroke-width: 2;
  fill: none;
}
.cta-sub-card--line .cta-sub-icon {
  background: rgba(255,255,255,0.2);
}
.cta-sub-card--line .cta-sub-icon .icon {
  stroke: #fff;
}
.cta-sub-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.cta-sub-number {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 2px;
}
.cta-sub-note {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* ---------- GOLD ACCENT (数字・重要指標) ---------- */
.gold-num {
  color: var(--c-gold);
  font-weight: 800;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE 共通 ---------- */

/* --- Tablet (600px+) --- */
@media (min-width: 600px) {
  body { padding-bottom: 80px; }
  .container { padding: 0 32px; }
  .section { padding: 64px 0; }
  .section-label { font-size: 13px; }
  .section-title { font-size: 26px; }
  .section-lead { font-size: 16px; }
  .cta-section { padding: 64px 0; }
  .btn-gold { max-width: 400px; margin-left: auto; margin-right: auto; }
  .btn-white { max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer { padding: 48px 0 100px; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 24px 32px; }
}

/* --- Desktop (900px+) --- */
@media (min-width: 900px) {
  body { padding-bottom: 0; font-size: 16px; }
  .container { padding: 0 40px; max-width: 960px; }
  .section { padding: 80px 0; }
  .section-title { font-size: 30px; }
  .section-lead { font-size: 17px; }
  .cta-section { padding: 80px 0; }

  /* Header: ハイブリッド — CTA + ハンバーガー */
  .header { height: 72px; }
  .header-cta--tel { display: flex; font-size: 15px; padding: 6px 14px; }
  .header-cta--line { display: flex; font-size: 13px; padding: 7px 14px; }
  .header-cta--satei { display: flex; font-size: 13px; padding: 8px 18px; }

  /* Bottom bar: デスクトップでは非表示 */
  .bottom-bar { display: none; }

  /* Footer: 横並び */
  .footer { padding: 56px 0 40px; }
  .footer .container { display: flex; flex-wrap: wrap; gap: 32px; }
  .footer-info { flex: 0 0 auto; min-width: 240px; }
  .footer-nav { flex: 1; min-width: 320px; flex-direction: row; gap: 32px; margin-bottom: 0; }
  .footer-nav-group { flex: 1; min-width: 0; }
  .footer-copy { width: 100%; }

  /* CTA buttons: 中央配置 */
  .btn-gold { max-width: 440px; margin-left: auto; margin-right: auto; }
  .cta-btn-icon { display: none; }
  .cta-buttons {
    max-width: 720px;
    margin: 0 auto;
  }
  .cta-buttons .btn-gold {
    max-width: none;
    margin: 0;
    padding: 20px 16px;
    border-radius: var(--radius);
    font-size: 16px;
    margin-bottom: 0;
  }
  .cta-buttons .btn-gold-sub { font-size: 13px; }
  .cta-secondary { margin-top: 16px; }
  .cta-sub-card { padding: 20px 16px; }
  .cta-sub-number { font-size: 17px; }
  .cta-sub-note { font-size: 12px; }
  .cta-section .section-title { font-size: 28px; }
  .cta-section .section-lead { font-size: 16px; }
}

/* --- Wide Desktop (1200px+) --- */
@media (min-width: 1200px) {
  .container { max-width: 1080px; }
  .page-rec-banner-wrap { max-width: 1080px; }
  .header-cta--tel { font-size: 16px; padding: 7px 16px; }
  .header-cta--satei { font-size: 14px; padding: 8px 20px; }
  .header-cta--line { font-size: 13px; padding: 8px 16px; }
  .section-title { font-size: 32px; }
}

/* ---------- GLOSSARY TOOLTIP ---------- */
.glossary {
  border-bottom: 1.5px dotted var(--c-navy-mid);
  cursor: pointer;
  position: relative;
}

.glossary::after {
  content: '?';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-navy-mid);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: super;
  line-height: 1;
}

/* ===== BOTTOM SHEET (PC・スマホ統一) ===== */
.glossary-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.glossary-sheet-overlay.open { display: block; opacity: 1; }

.glossary-sheet {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 60vh;
  background: var(--c-navy, #1B2D4A);
  color: var(--c-white, #fff);
  border-radius: 20px 20px 0 0;
  padding: 16px 24px 32px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.glossary-sheet.open { display: block; transform: translateY(0); }

.glossary-sheet-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.glossary-sheet-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.glossary-sheet-close:hover { color: #fff; }

.glossary-sheet-term {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-right: 32px;
}

.glossary-sheet-desc {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 20px;
}

.glossary-sheet-link {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 10px 20px;
  transition: background 0.2s;
}
.glossary-sheet-link:active {
  background: rgba(255,255,255,0.18);
}
.glossary-sheet-link:hover {
  background: rgba(255,255,255,0.18);
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--c-text-muted); }
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb span { margin: 0 6px; }
.lp-hero .breadcrumb { padding: 0 0 12px; color: rgba(255,255,255,0.7); }
.lp-hero .breadcrumb a { color: rgba(255,255,255,0.7); }

/* ---------- TEXT DECORATION UTILITIES ---------- */

/* ① リードテキスト — 冒頭段落の強調 */
.text-lead {
  font-size: 17px;
  line-height: 2.0;
  color: var(--c-text);
  font-weight: 500;
}

/* ② ハイライトボックス — 要点の視覚分離 */
.highlight-box {
  background: var(--c-navy-pale);
  border-left: 4px solid var(--c-navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 20px 20px 24px;
  margin: 24px 0;
}
.highlight-box-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.highlight-box p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text-sub);
  margin-bottom: 0;
}
.highlight-box p + p {
  margin-top: 12px;
}

/* ③ 引用ブロック — お客様の声、メンバーコメント */

/* ④ 数字ハイライト — 文中の数字強調 */
.stat-inline {
  font-family: var(--font-display);
  font-size: 1.3em;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: -0.02em;
}
.stat-inline span {
  font-size: 0.7em;
  font-weight: 600;
}
.stat-note {
  display: inline;
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text-muted);
  letter-spacing: 0;
}

/* ⑤ ステップマーカー — 番号丸囲み＋テキスト横配置 */

/* ⑥ セクション区切り */
.section-divider {
  width: 60px;
  height: 0;
  border: none;
  border-top: 2px solid var(--c-gold-light);
  margin: 32px auto;
}

/* Responsive scaling for decoration utilities */
@media (min-width: 600px) {
  .text-lead { font-size: 18px; }
  .highlight-box p { font-size: 16px; }
}
@media (min-width: 900px) {
  .text-lead { font-size: 18px; }
  .highlight-box { padding: 24px 24px 24px 28px; }
  .highlight-box-title { font-size: 15px; }
  .highlight-box p { font-size: 17px; }
}

/* ---------- IMAGE PLACEHOLDERS (公開前に実画像に差し替え) ---------- */

/* 実画像（プレースホルダ差替後） */

/* ===== Phase 4: Inline Style → Class Migration ===== */

/* --- Text color utilities --- */
.text-navy-bold { color: var(--c-navy); font-weight: 600; }
.lp-hero-tel-hours { font-size: 13px; color: var(--c-text-muted); }
.text-navy { color: var(--c-navy); }
.text-body { color: var(--c-text); }
.text-red { color: var(--c-red); }
.text-red-bold { color: var(--c-red); font-weight: 700; }

/* --- Avatar image cover --- */
.avatar-cover { width: 100%; height: 100%; object-fit: cover; }

/* --- FAQ shortcut nav --- */
.faq-shortcut-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--c-navy); background: var(--c-navy-pale); padding: 8px 16px; border-radius: 20px; text-decoration: none; }
.faq-shortcut-count { font-size: 13px; opacity: 0.7; margin-left: 2px; }

/* --- Link underline navy --- */
.link-navy-underline { color: var(--c-navy); text-decoration: underline; }

/* --- Small sub-text in buttons --- */
.btn-sub-info { display: block; font-size: 13px; font-weight: 400; margin-top: 2px; }

/* --- Phase 4 Round 2 --- */
.mt-20 { margin-top: 20px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-8 { margin-top: 8px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-body-mt { font-size: 16px; line-height: 2; margin-top: 12px; }

/* ============================================
   SNS Share Block (v114)
   ============================================ */
.share-block {
  padding: 32px 0;
  text-align: center;
}
.share-block-inner {
  max-width: 360px;
  margin: 0 auto;
  padding: 24px 20px;
  background: var(--c-bg-light, #F0EDE6);
  border-radius: 12px;
}
.share-block-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-sub);
  margin-bottom: 16px;
  line-height: 1.6;
}
.share-block-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.2s;
}
.share-btn:active { opacity: 0.7; }
.share-btn svg { display: block; }
.share-btn--line { background: #06C755; }
.share-btn--x { background: #000; }
.share-btn--fb { background: #1877F2; }
.share-btn--mail { background: var(--c-navy); }

@media (min-width: 600px) {
  .share-block-inner { max-width: 440px; padding: 28px 32px; }
  .share-btn { width: 56px; height: 56px; }
  .share-block-title { font-size: 15px; }
}
@media (min-width: 900px) {
  .share-block-inner { max-width: 480px; }
  .share-btn { width: 56px; height: 56px; }
  .share-btn:hover { opacity: 0.8; }
}

/* ---------- CTA不安解消文 ---------- */
.cta-anshin {
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.cta-section .cta-anshin {
  color: rgba(255,255,255,0.85);
}
/* LP内CTAの場合（背景色違い対応） */
.lp-cta .cta-anshin {
  color: rgba(255,255,255,0.85);
}

/* ---------- 数字注記リスト ---------- */
.numbers-note-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--c-text-light);
  line-height: 1.7;
}
.numbers-note-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.numbers-note-list li::before {
  content: '・';
}

/* --- PC: ハンバーガー常時表示（v135でハイブリッドヘッダーに移行） --- */

/* 本文内テキストリンク（ページ横断利用） */
.step-detail-link { font-size: 14px; font-weight: 600; color: var(--c-navy); }
