/* =========================================================
   銀行目線の財務伴走パートナー｜style.css
   配色：ネイビー #1a3a5c 基調＋白／薄グレー、アクセント＝ゴールド
   方針：視認性・権威性・ベネフィット・親しみやすさ
   ========================================================= */

:root {
  --navy:        #1a3a5c;
  --navy-deep:   #112940;
  --navy-soft:   #2c4f78;
  --navy-line:   #244a72;
  --ink:         #1f2733;   /* 本文（ほぼ黒・視認性最優先） */
  --ink-soft:    #3d4858;   /* 補助でも十分に濃く */
  --hair:        #dde2ea;
  --hair-soft:   #e9edf3;
  --paper:       #ffffff;
  --wash:        #f3f6fa;
  --wash-warm:   #f7f4ec;
  --accent:      #c8a96a;
  --accent-hi:   #dcc188;
  --accent-deep: #8c6c2f;   /* テキスト用ゴールド（濃いめで視認性確保） */
  --radius:      12px;
  --radius-lg:   16px;
  --maxw:        1080px;
  --shadow-sm:   0 2px 8px rgba(20, 45, 71, 0.06);
  --shadow-md:   0 10px 28px rgba(20, 45, 71, 0.10);
  --shadow-lg:   0 18px 44px rgba(20, 45, 71, 0.16);
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* フォーカスリング（キーボード操作の視認性・全要素統一） */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--hair);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 18px rgba(17, 41, 64, 0.12);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  text-decoration: none;
  color: var(--navy);
  line-height: 1.3;
  position: relative;
  padding-left: 14px;
}
.header-logo::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 30px;
  border-radius: 4px;
  background: linear-gradient(var(--accent), var(--accent-deep));
}
.header-logo .logo-main {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.header-logo .logo-sub {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.global-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.global-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color 0.2s var(--ease);
}
.global-nav li:not(.nav-cta) a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.global-nav li:not(.nav-cta) a:hover { color: var(--navy); }
.global-nav li:not(.nav-cta) a:hover::after { transform: scaleX(1); }
.global-nav .nav-cta a {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 9px 20px;
  border-radius: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.22);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.global-nav .nav-cta a:hover {
  background: var(--navy-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 58, 92, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.menu-toggle .menu-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   ボタン（最重要コンバージョン要素）
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  border-radius: 40px;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  will-change: transform;
}
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--accent-hi) 0%, var(--accent) 55%, var(--accent-deep) 130%);
  color: var(--navy-deep);
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 17px 52px;
  box-shadow: 0 10px 24px rgba(140, 108, 47, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary::after {
  /* CTAに添える矢印（テキストではなくCSS装飾） */
  content: "";
  width: 8px; height: 8px;
  margin-left: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.22s var(--ease);
  opacity: 0.85;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e7cf99 0%, var(--accent-hi) 55%, var(--accent) 130%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(140, 108, 47, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn-primary:hover::after { transform: rotate(45deg) translate(2px, -2px); }
.btn-primary:active { transform: translateY(0); }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 6%, rgba(200, 169, 106, 0.16) 0%, rgba(200, 169, 106, 0) 46%),
    radial-gradient(90% 80% at 0% 100%, rgba(44, 79, 120, 0.55) 0%, rgba(44, 79, 120, 0) 50%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 84px 0 92px;
}
/* 背景の奥行き（微細グリッド＋上下のフェード） */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(120% 100% at 70% 40%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 40%, #000 35%, transparent 80%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent-hi) 50%, var(--accent) 70%, transparent);
  opacity: 0.9;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-hi);
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.hero-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 2px;
  background: var(--accent);
}
.hero-title {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.hero-lead {
  font-size: 16px;
  line-height: 2.05;
  color: #eef3f9;
  max-width: 600px;
  margin-bottom: 28px;
}
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 169, 106, 0.5);
  border-radius: 22px;
  padding: 8px 16px 8px 14px;
  backdrop-filter: blur(2px);
}
.hero-badges svg { color: var(--accent-hi); flex-shrink: 0; }
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta-note {
  font-size: 13.5px;
  color: #d6e1ee;
  font-weight: 600;
  position: relative;
  padding-left: 22px;
}
.cta-note::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 9px; height: 5px;
  border-left: 2px solid var(--accent-hi);
  border-bottom: 2px solid var(--accent-hi);
  margin-top: -2px;
}

/* 写真フレーム（権威性＋親しみやすさ） */
.hero-photo { text-align: center; }
.hero-photo-frame {
  position: relative;
  width: 252px;
  height: 252px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(150deg, var(--accent-hi), var(--accent) 45%, var(--accent-deep));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, 0.4);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--navy-deep);
}
.hero-photo-caption {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
.hero-photo-caption span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #cdd9e6;
  margin-top: 2px;
}

/* =========================================================
   セクション共通
   ========================================================= */
.section { padding: 88px 0; }
/* 背景は明示指定でリズムを作る（白とwashを交互に・主役を白地で引き立てる） */
.problems   { background: var(--wash); }
.reasons    { background: var(--paper); }
.plans      { background: var(--paper); }
.spot       { background: var(--wash); }
.flow       { background: var(--paper); }
.profile    { background: var(--wash); }
.faq        { background: var(--paper); }
.exclusions { background: var(--wash); }

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1.4;
}
.section-en {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}
/* タイトル下のアクセントライン（リズムと一貫性） */
.section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}
.title-note {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 6px;
}
.section-lead {
  text-align: center;
  font-size: 16px;
  color: var(--ink);
  margin: 0 auto 44px;
  max-width: 720px;
  line-height: 1.9;
}
/* section-title に続くlead以外（titleのみ）の下余白を確保 */
.section-title + .section-lead { margin-top: 6px; }
.problems .section-title,
.reasons .section-title,
.flow .section-title,
.profile .section-title,
.faq .section-title { margin-bottom: 48px; }

/* =========================================================
   2. お悩み
   ========================================================= */
.problems { background: var(--wash); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.problem-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 30px 30px 26px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  overflow: hidden;
}
.problem-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(var(--accent), var(--accent-deep));
  opacity: 0.85;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.9;
}
.problems-bridge {
  text-align: center;
  font-size: 18px;
  margin-top: 44px;
  line-height: 1.85;
  font-weight: 600;
}
.problems-bridge strong {
  color: var(--navy);
  font-weight: 800;
  box-shadow: inset 0 -0.5em 0 rgba(200, 169, 106, 0.4);
}

/* =========================================================
   3. 選ばれる理由
   ========================================================= */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.reason-item {
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.reason-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.reason-num {
  flex-shrink: 0;
  position: relative;
  width: 68px;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: 0.01em;
}
.reason-num::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 3px;
  background: var(--accent);
}
.reason-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.5;
}
.reason-body p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}

/* =========================================================
   4. 月額プラン（階段感：見える→付き合える→任せられる）
   ========================================================= */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 14px;
}
.plan-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 34px 26px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.plan-card:not(.plan-recommend):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan-step {
  display: inline-block;
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  background: var(--wash-warm);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.plan-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.06em;
}
.plan-catch {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent-deep);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.plan-price {
  text-align: center;
  color: var(--navy);
  margin: 20px 0 6px;
  line-height: 1;
  white-space: nowrap;
}
.price-num {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price-unit { font-size: 21px; font-weight: 700; margin-left: 3px; }
.price-per {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 10px;
}
.plan-features {
  list-style: none;
  border-top: 1px solid var(--hair);
  margin-top: 20px;
  padding-top: 18px;
  flex: 1;
}
.plan-features li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 14px; height: 14px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.plan-features .feature-inherit {
  font-weight: 700;
  color: var(--navy);
}
.plan-features b { color: var(--navy); }
.plan-note {
  font-size: 12.5px;
  color: var(--ink);
  background: var(--wash-warm);
  border-radius: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  line-height: 1.7;
  font-weight: 600;
}

/* おすすめ（スタンダード・中央で自然に目を引く） */
.plan-recommend {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--navy-line);
  box-shadow: 0 22px 50px rgba(17, 41, 64, 0.34);
  transform: translateY(-14px) scale(1.015);
  padding-top: 42px;
  z-index: 2;
}
.plan-recommend::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(160deg, rgba(220, 193, 136, 0.85), rgba(200, 169, 106, 0.15) 45%, rgba(200, 169, 106, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.plan-recommend .plan-name,
.plan-recommend .plan-price { color: #fff; }
.plan-recommend .plan-catch { color: var(--accent-hi); }
.plan-recommend .price-per { color: #cdd9e6; }
.plan-recommend .plan-step {
  color: var(--navy-deep);
  background: var(--accent-hi);
}
.plan-recommend .plan-features { border-top-color: rgba(255, 255, 255, 0.22); }
.plan-recommend .plan-features li { color: #eef3f9; }
.plan-recommend .plan-features li::before { background: var(--accent-hi); }
.plan-recommend .plan-features .feature-inherit { color: #fff; }
.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-hi), var(--accent-deep));
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 7px 24px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(140, 108, 47, 0.4);
}

.plan-terms {
  max-width: 880px;
  margin: 52px auto 0;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 34px;
  box-shadow: var(--shadow-sm);
}
.plans .plan-terms { background: var(--paper); }
.plan-terms h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
}
.plan-terms h3::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}
.plan-terms ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin-bottom: 16px;
}
.plan-terms li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.plan-terms li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px; height: 7px;
  background: var(--accent-deep);
  transform: rotate(45deg);
}
.legal-note {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.85;
  border-top: 1px dashed var(--hair);
  padding-top: 14px;
}

/* =========================================================
   CTAバンド（途中導線）
   ========================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(200, 169, 106, 0.16), transparent 60%),
    linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 52px 0;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent) 35%, var(--accent-hi) 50%, var(--accent) 65%, transparent);
}
.cta-band::before { top: 0; }
.cta-band::after  { bottom: 0; }
.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band .cta-note {
  color: #d6e1ee;
}

/* =========================================================
   5. スポット
   ========================================================= */
.spot-table {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.spot-row {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  border-bottom: 1px solid var(--hair-soft);
  transition: background 0.2s var(--ease);
}
.spot-row:last-child { border-bottom: none; }
.spot-row:hover { background: var(--wash); }
.spot-name { flex: 1; }
.spot-name h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.spot-name h3::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}
.spot-qual { font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-left: 4px; }
.spot-name p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 6px;
  padding-left: 16px;
}
.spot-price { flex: 1.2; text-align: right; }
.spot-price dl div {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 16px;
  font-size: 14.5px;
  padding: 3px 0;
}
.spot-price dt { color: var(--ink-soft); font-weight: 600; }
.spot-price dd b, .spot-single b { color: var(--navy); font-weight: 800; }
.spot-single { font-size: 18px; }
.spot-single b { font-size: 22px; }
.spot-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.7;
}
.spot-free {
  text-align: center;
  font-size: 16px;
  margin-top: 34px;
  font-weight: 600;
}
.spot-free b {
  color: var(--navy);
  font-weight: 800;
  box-shadow: inset 0 -0.5em 0 rgba(200, 169, 106, 0.4);
}

/* =========================================================
   6. ご支援の流れ
   ========================================================= */
.flow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: flow;
  position: relative;
}
/* ステップを横につなぐライン（PC） */
.flow-steps::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--hair) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.flow-step {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 26px 16px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.flow-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.flow-num {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy-soft), var(--navy-deep));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(26, 58, 92, 0.28);
  border: 2px solid var(--paper);
}
.flow-step:first-child .flow-num {
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  color: var(--navy-deep);
}
.flow-step:last-child .flow-num {
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  color: var(--navy-deep);
}
.flow-step h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.flow-step p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.8;
  text-align: left;
}

/* =========================================================
   7. プロフィール（権威性の格上げ）
   ========================================================= */
.profile-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 940px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.profile-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-hi), var(--accent), var(--accent-deep));
}
.profile-photo { flex-shrink: 0; text-align: center; }
.profile-photo-frame {
  position: relative;
  width: 208px;
  height: 208px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(150deg, var(--accent-hi), var(--accent) 50%, var(--accent-deep));
  box-shadow: 0 12px 28px rgba(20, 45, 71, 0.2);
}
.profile-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--paper);
}
.profile-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
}
.profile-kana { font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-left: 8px; }
.profile-role {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--wash-warm);
  border-radius: 16px;
  padding: 4px 14px;
  margin: 10px 0 18px;
  letter-spacing: 0.04em;
}
.profile-text {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 14px;
}
.profile-spec {
  border-top: 1px solid var(--hair);
  margin-top: 22px;
  padding-top: 18px;
}
.profile-spec div {
  display: flex;
  gap: 18px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.85;
  align-items: baseline;
}
.profile-spec div + div { border-top: 1px dashed var(--hair-soft); }
.profile-spec dt {
  flex-shrink: 0;
  width: 88px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  text-align: center;
  border-radius: 6px;
  font-size: 12.5px;
  padding: 4px 0;
  letter-spacing: 0.04em;
}
.profile-spec dd {
  color: var(--ink);
  font-weight: 500;
}

/* =========================================================
   8. FAQ
   ========================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 58px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  line-height: 1.6;
  transition: background 0.2s var(--ease);
}
.faq-item summary:hover { background: var(--wash); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 26px; height: 26px;
  background: linear-gradient(150deg, var(--navy-soft), var(--navy-deep));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 13px; height: 13px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s var(--ease);
  background:
    linear-gradient(var(--accent-deep), var(--accent-deep)) center/13px 2.4px no-repeat,
    linear-gradient(var(--accent-deep), var(--accent-deep)) center/2.4px 13px no-repeat;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(135deg);
}
.faq-answer {
  padding: 4px 26px 22px 58px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink);
}
.faq-answer p { position: relative; }

/* =========================================================
   9. 対応できないこと
   ========================================================= */
.exclusion-list {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.exclusion-list li {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.exclusion-list h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.exclusion-list h3::before {
  content: "";
  position: absolute;
  left: 0; top: 0.05em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--wash-warm);
}
.exclusion-list h3::after {
  content: "";
  position: absolute;
  left: 5px; top: 0.62em;
  width: 10px; height: 2px;
  background: var(--accent-deep);
  border-radius: 2px;
}
.exclusion-list p {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.85;
}

/* =========================================================
   10. お問い合わせ
   ========================================================= */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 80% at 85% 0%, rgba(200, 169, 106, 0.14), transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.contact .section-title { color: #fff; }
.contact .section-title::after {
  background: linear-gradient(90deg, var(--accent-hi), var(--accent));
}
.contact .section-en { color: var(--accent-hi); }
.contact .section-lead { color: #e3ebf4; }
.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap iframe {
  width: 100%;
  min-height: 720px;
  border: none;
  display: block;
  border-radius: 8px;
}
.contact-fallback {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* =========================================================
   11. フッター
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: #cdd9e6;
  padding: 44px 0;
  border-top: 3px solid var(--accent);
}
.footer-inner { text-align: center; }
.footer-site {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.footer-owner { font-size: 13.5px; margin-bottom: 14px; }
.footer-copy { font-size: 12px; color: #8298b0; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr 260px; gap: 40px; }
  .hero-title { font-size: 31px; }
  .hero-photo-frame { width: 220px; height: 220px; }
  .flow-steps { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .flow-steps::before { display: none; }
  .plan-recommend { transform: translateY(-8px) scale(1.01); }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 70px; }
  .global-nav {
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 12px 26px rgba(20, 45, 71, 0.14);
    display: none;
  }
  .global-nav.is-open { display: block; }
  .global-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .global-nav li { border-top: 1px solid var(--hair-soft); }
  .global-nav li:first-child { border-top: none; }
  .global-nav li:not(.nav-cta) a::after { display: none; }
  .global-nav a {
    display: block;
    padding: 15px 24px;
    font-size: 15px;
  }
  .global-nav .nav-cta { padding: 12px 20px; }
  .global-nav .nav-cta a {
    border-radius: 28px;
    text-align: center;
  }
  .menu-toggle { display: block; }

  .hero { padding: 52px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 38px; }
  .hero-photo { order: -1; }
  .hero-photo-frame { width: 184px; height: 184px; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-title { font-size: 27px; line-height: 1.5; }
  .hero-lead { font-size: 15.5px; line-height: 2.0; }
  .hero-cta { justify-content: flex-start; gap: 16px; }
  .hero-text { text-align: left; }

  .section { padding: 60px 0; }
  .section-title { font-size: 25px; }
  .section-lead { font-size: 15.5px; }

  .problem-grid { grid-template-columns: 1fr; gap: 18px; }
  .reason-item { gap: 18px; padding: 26px 24px; }
  .reason-num { width: 56px; font-size: 34px; }
  .plan-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 6px; }
  .plan-recommend { transform: none; order: -1; }
  .plan-recommend .plan-step { order: 0; }
  .exclusion-list { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; gap: 14px; }
  .flow-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 4px 18px;
    text-align: left;
    padding: 20px 22px;
    align-items: center;
  }
  .flow-num { grid-row: 1 / 3; margin: 0; }
  .flow-step h3 { margin-bottom: 4px; align-self: end; }
  .flow-step p { align-self: start; }

  .profile-card {
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 26px;
  }
  .profile-photo-frame { width: 168px; height: 168px; }
  .profile-body { width: 100%; }
  .profile-spec dt { width: 76px; font-size: 12px; }

  .spot-row { flex-direction: column; gap: 14px; align-items: stretch; padding: 22px 22px; }
  .spot-price { text-align: left; width: 100%; }
  .spot-price dl div { justify-content: space-between; }

  .cta-band { padding: 44px 0; }
  .contact-form-wrap { padding: 14px; }
  .contact-form-wrap iframe { min-height: 660px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .header-inner { padding: 10px 18px; }
  .header-logo .logo-main { font-size: 15px; }
  .hero-title { font-size: 24px; }
  .section-title { font-size: 22px; }
  .price-num { font-size: 54px; }
  .btn-primary { font-size: 16.5px; padding: 16px 38px; width: 100%; }
  .hero-cta { width: 100%; }
  .profile-name { font-size: 23px; }
  .reason-body h3 { font-size: 18px; }
}

/* =========================================================
   モーション抑制（アクセシビリティ）
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .btn-primary:hover,
  .problem-card:hover,
  .reason-item:hover,
  .plan-card:hover,
  .flow-step:hover { transform: none; }
}
