/* =============================================
   ChangeTax — Bizreach-inspired Premium Design v6
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* =============================================
   DESIGN TOKENS — Bizreach-inspired
   ============================================= */
:root {
  /* Core — Black-based premium */
  --black:      #0A0A0A;
  --ink:        #111111;
  --ink-soft:   #1A1A1A;
  --charcoal:   #222222;
  --gray-dark:  #333333;
  --gray-mid:   #555555;
  --gray:       #777777;
  --gray-light: #AAAAAA;
  --border:     #E5E5E5;
  --surface:    #F7F7F7;
  --white:      #FFFFFF;

  /* Legacy aliases (used throughout codebase) */
  --navy-dark:  #0A0A0A;
  --navy:       #111111;
  --navy-mid:   #333333;
  --gray-50:    #F7F7F7;
  --gray-100:   #F0F0F0;
  --gray-200:   #E5E5E5;
  --gray-300:   #CCCCCC;
  --gray-400:   #AAAAAA;
  --gray-500:   #777777;
  --gray-600:   #555555;
  --gray-700:   #333333;
  --gray-800:   #222222;
  --gray-900:   #111111;

  /* Accent — Premium Red/Gold */
  --red:        #C8102E;
  --red-dark:   #A00D24;
  --gold:       #C9A84C;
  --gold-light: #E8C87A;
  --green:      #16A34A;
  --green-pale: #F0FDF4;
  --teal:       #0891B2;
  --blue:       #1D4ED8;
  --blue-light: #3B82F6;
  --blue-pale:  #EFF6FF;

  /* Amber — warm accent */
  --amber:      #C9A84C;
  --amber-dark: #A8873A;
  --amber-pale: #FDF8EE;

  /* Typography — Inter + Noto Sans JP */
  --font-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic UI', sans-serif;
  --font-ui:      'Inter', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-heading: 'Inter', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  /* Type Scale — bigger = more premium */
  --text-xs:    0.75rem;
  --text-sm:    0.8125rem;
  --text-base:  0.9375rem;
  --text-md:    1.0625rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   1.875rem;
  --text-3xl:   2.25rem;
  --text-4xl:   3rem;
  --text-5xl:   3.75rem;

  /* Spacing */
  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;  --s4: 1rem;
  --s5: 1.25rem;  --s6: 1.5rem;   --s8: 2rem;     --s10: 2.5rem;
  --s12: 3rem;    --s16: 4rem;    --s20: 5rem;    --s24: 6rem;

  /* Border radius */
  --r2: 2px;  --r4: 4px;  --r6: 6px;  --r8: 8px;
  --r12: 12px;  --r16: 16px;  --r20: 20px;  --r24: 24px;  --rfull: 9999px;

  /* Shadows */
  --sh-xs:   0 1px 2px rgba(0,0,0,0.08);
  --sh-sm:   0 2px 8px rgba(0,0,0,0.10);
  --sh-md:   0 4px 16px rgba(0,0,0,0.12);
  --sh-lg:   0 8px 32px rgba(0,0,0,0.14);
  --sh-xl:   0 16px 48px rgba(0,0,0,0.18);
  --sh-2xl:  0 24px 64px rgba(0,0,0,0.22);
  --sh-navy: 0 4px 20px rgba(0,0,0,0.30);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --t-fast: 140ms;
  --t-base: 240ms;
  --t-slow: 380ms;

  /* Layout */
  --max-w: 1140px;
  --nav-h: 64px;
}


/* =============================================
   BASE RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'palt' 1;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s6);
}

/* =============================================
   HEADER — Bizreach-style: Black, minimal
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--t-base) var(--ease);
}
.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s8);
  display: flex;
  align-items: center;
  height: 64px;
  gap: var(--s4);
}

/* Logo */
.site-title { flex: 1; }
.site-title a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.site-title a:hover { opacity: 0.75; text-decoration: none; }
.logo-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: logo-pulse 2.5s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.6); opacity: 0.45; }
}
.site-title span { display: none; }

/* Nav */
.global-nav { }
.global-nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 0;
}
.global-nav a {
  display: block;
  padding: var(--s2) var(--s4);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-radius: var(--r4);
  transition: color var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.global-nav a:hover { color: var(--white); text-decoration: none; }

/* Header CTA */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 10px 20px;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none !important;
  border-radius: var(--r4);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
  letter-spacing: 0.01em;
}
.header-cta-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r8);
  transition: background var(--t-fast);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .global-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--sh-xl);
    z-index: 490;
    padding: var(--s3) var(--s4) var(--s4);
  }
  .global-nav.is-open { display: block; }
  .global-nav ul { flex-direction: column; gap: 2px; }
  .global-nav a { padding: var(--s3) var(--s4); font-size: var(--text-md); }
}

.site-main { min-height: 60vh; }

/* =============================================
   HERO — Bizreach-style split: Left text + Right photo
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* 背景写真オーバーレイはなし - 右カラムが写真 */
.hero-section::before { display: none; }
.hero-section::after  { display: none; }

/* 左: テキストエリア */
.hero-inner {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s20) var(--s12) var(--s20) var(--s12);
  position: relative;
  z-index: 2;
  max-width: none;
  margin-inline: 0;
  gap: 0;
}

/* 右: 写真エリア */
.hero-image {
  grid-column: 2;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero-image img, .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 1;
  border-radius: 0;
  aspect-ratio: unset;
  filter: none;
  display: block;
}

.hero-content { max-width: 560px; }

/* eyecatch badge */
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s6);
}
.hero-eyecatch {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 4px 12px;
  border-radius: var(--r4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.eyecatch-dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: logo-pulse 2s ease-in-out infinite;
}

/* H1 — 超大・超太 */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: var(--s5);
}
.hero-title-em {
  color: var(--gold);
  position: relative;
  display: inline;
}
.hero-title-em::after { display: none; }

/* 不満チェック - タグ型（横並び） */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s8);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--r4);
  white-space: nowrap;
}
.hero-tag-x {
  font-size: 10px;
  font-weight: 700;
  color: rgba(200,16,46,0.8);
}

/* Buttons */
.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-bottom: var(--s8);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: 16px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--r4);
  letter-spacing: 0.01em;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform var(--t-fast) var(--ease);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.35);
  text-decoration: none;
  color: var(--white);
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 15px 24px;
  background: transparent;
  color: rgba(255,255,255,0.80);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r4);
  border: 1px solid rgba(255,255,255,0.20);
  letter-spacing: 0.01em;
  transition: all var(--t-base) var(--ease);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.50);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.40);
  font-weight: 500;
}
.trust-icon {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6);
  margin-bottom: var(--s8);
  padding: 0;
  background: none;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  width: auto;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-num em {
  font-size: 0.55em;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0;
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.40);
  line-height: 1.35;
  white-space: nowrap;
  max-width: 5em;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  align-self: center;
}

/* Hero strip */
.hero-strip {
  grid-column: 1 / -1;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--s4) var(--s12);
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.strip-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r4);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.strip-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.40);
}

@media (max-width: 860px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .hero-inner { padding: var(--s16) var(--s6) var(--s12); }
  .hero-content { max-width: 100%; }
  .hero-strip { grid-column: 1; }
  .hero-strip-inner { padding: var(--s4) var(--s6); }
}

/* =============================================

   ROUTE NAV — ヒーロー直下 2ルートナビゲーション
   ============================================= */
.route-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--s8) var(--s6);
  position: relative;
  z-index: 1;
}
.route-nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.route-card {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  border-radius: var(--r16);
  text-decoration: none;
  transition: all var(--t-base) var(--ease);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.route-card-change {
  background: linear-gradient(135deg, var(--blue-pale) 0%, #E8F0FE 100%);
  border-color: rgba(37,99,235,0.2);
}
.route-card-audit {
  background: linear-gradient(135deg, var(--amber-pale) 0%, var(--amber-ultra) 100%);
  border-color: rgba(245,158,11,0.25);
}
.route-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  text-decoration: none;
}
.route-card-change:hover { border-color: var(--blue); }
.route-card-audit:hover { border-color: var(--amber); }

.route-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.route-card-change .route-icon { background: var(--navy); color: var(--white); }
.route-card-audit .route-icon { background: var(--amber); color: var(--white); }

.route-text { flex: 1; }
.route-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.route-card-change .route-label { color: var(--blue); }
.route-card-audit .route-label { color: var(--amber-dark); }

.route-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--s1);
  letter-spacing: -0.01em;
}
.route-desc {
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.6;
}
.route-arrow {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--t-fast) var(--ease);
}
.route-card:hover .route-arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .route-nav-inner { grid-template-columns: 1fr; }
  .route-card { padding: var(--s4) var(--s5); }
  .route-icon { width: 44px; height: 44px; }
  .route-title { font-size: var(--text-base); }
}

/* =============================================
   TRUST NUMBERS — 信頼数字バッジ（ヒーロー内）
   ============================================= */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s6);
  padding: var(--s4) var(--s5);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--r12);
  border: 1px solid rgba(255,255,255,0.14);
  width: fit-content;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num em {
  font-size: var(--text-base);
  font-style: normal;
  color: var(--amber);
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

/* =============================================
   FUTURE PHOTO SECTION — 変更後の未来
   ============================================= */
.future-photo-section {
  background: #f8faff;
  padding: 0;
  overflow: hidden;
}
.future-photo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.future-photo-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.future-photo-right {
  padding: var(--s16) var(--s12) var(--s16) var(--s10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.future-photo-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--amber-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}
.future-photo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: var(--s7);
}
.future-photo-title span {
  color: var(--navy);
}
.future-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.future-check-list li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.6;
}
.fcheck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--r6);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: #059669;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.future-check-list li strong {
  color: var(--gray-800);
}
@media (max-width: 860px) {
  .future-photo-inner { grid-template-columns: 1fr; }
  .future-photo-left { height: 260px; }
  .future-photo-right { padding: var(--s10) var(--s6); }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.sec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
}
.eyebrow-line { width: 36px; height: 1px; background: var(--gray-300); }
.eyebrow-text {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sec-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: var(--s3);
  font-family: var(--font-heading);
}
.sec-title-em { color: var(--navy); }
.sec-sub {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.75;
}

/* =============================================
   WORRY SECTION
   ============================================= */
.worry-section {
  padding: var(--s20) 0 var(--s16);
  background: var(--white);
  border-top: 3px solid var(--amber-ultra);
}
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: var(--s12);
}
.worry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r16);
  padding: var(--s8) var(--s6) var(--s7);
  text-align: center;
  transition: all var(--t-slow) var(--ease);
  box-shadow: var(--sh-xs);
  position: relative;
  overflow: hidden;
}
/* top color bar */
.worry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.worry-card:hover {
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-7px);
}
.worry-card:hover::before { transform: scaleX(1); }

.worry-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: var(--r24);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s5);
  transition: transform var(--t-base) var(--ease), background var(--t-base);
}
.worry-card:hover .worry-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
  background: var(--blue-ultra);
}
.worry-icon-wrap svg { color: var(--navy); }

.worry-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--s3);
  letter-spacing: -0.01em;
}
.worry-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.8;
}
.worry-footer {
  text-align: center;
  margin-top: var(--s12);
  font-size: var(--text-base);
  color: var(--gray-600);
  padding: var(--s5) var(--s8);
  background: var(--gray-50);
  border-radius: var(--r12);
  border: 1px solid var(--gray-200);
  font-weight: 500;
}

@media (max-width: 680px) { .worry-grid { grid-template-columns: 1fr; } }

/* =============================================
   BLOCK QA — 4つの不安を解消するセクション
   ============================================= */
.block-qa-section {
  padding: var(--s20) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.block-qa-section::before {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.block-qa-eyebrow {
  text-align: center;
  margin-bottom: var(--s4);
}
.block-qa-eyebrow-text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.block-qa-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: var(--s4);
}
.block-qa-title em {
  font-style: normal;
  color: var(--amber);
}
.block-qa-sub {
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s12);
}
.block-qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
}
.qa-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r16);
  padding: var(--s7) var(--s7) var(--s8);
  transition: all var(--t-base) var(--ease);
}
.qa-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
}
.qa-num {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: var(--s3);
}
.qa-question {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: var(--s5);
  padding-bottom: var(--s4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.qa-question::before {
  content: 'Q.';
  color: var(--amber);
  margin-right: var(--s2);
}
.qa-answer-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.06em;
  margin-bottom: var(--s3);
}
.qa-answer {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}
.qa-answer strong {
  color: var(--white);
  font-weight: 600;
}
.qa-answer ul {
  list-style: none;
  padding: 0;
  margin: var(--s3) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.qa-answer ul li {
  padding-left: var(--s5);
  position: relative;
  color: rgba(255,255,255,0.7);
}
.qa-answer ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.75rem;
}
.block-qa-cta {
  margin-top: var(--s12);
  text-align: center;
  padding: var(--s8) var(--s10);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r16);
}
.block-qa-cta p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--s5);
  line-height: 1.8;
}

@media (max-width: 680px) {
  .block-qa-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FLOW SECTION

   ============================================= */
.flow-section {
  padding: var(--s20) 0;
  background: linear-gradient(180deg, var(--amber-50) 0%, #F8FAFF 100%);
  position: relative;
}
.flow-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s12);
  position: relative;
}
/* 点線コネクター */
.flow-connector {
  position: absolute;
  top: 46px;
  left: calc(25% / 2 + 44px);
  right: calc(25% / 2 + 44px);
  height: 1px;
  border-top: 2px dashed var(--gray-300);
  pointer-events: none;
}

.flow-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r16);
  padding: var(--s8) var(--s5) var(--s6);
  text-align: center;
  transition: all var(--t-base) var(--ease);
  box-shadow: var(--sh-xs);
  position: relative;
}
.flow-step:hover {
  border-color: var(--navy);
  box-shadow: var(--sh-blue);
  transform: translateY(-5px);
}

.flow-badge {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: var(--r12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s5);
  box-shadow: var(--sh-navy);
  transition: transform var(--t-base) var(--ease);
}
.flow-step:hover .flow-badge { transform: scale(1.08) rotate(-3deg); }
.badge-label {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  line-height: 1;
}
.badge-num {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.flow-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s3);
  width: 40px;
  height: 40px;
  color: var(--navy-mid);
}
.flow-step h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--s2);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.flow-step p { font-size: var(--text-xs); color: var(--gray-500); line-height: 1.7; }
.flow-note {
  text-align: center;
  margin-top: var(--s8);
  font-size: var(--text-xs);
  color: var(--gray-400);
}

@media (max-width: 720px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-connector { display: none; }
}

/* =============================================
   ARTICLES SECTION
   ============================================= */
.news-section {
  padding: var(--s20) 0;
  background: var(--white);
}
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s8);
  gap: var(--s4);
}
.section-title-left {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}
.section-link-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: var(--rfull);
  border: 1.5px solid rgba(37,99,235,0.28);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.link-arrow { transition: transform var(--t-fast); }
.section-link-all:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  text-decoration: none;
}
.section-link-all:hover .link-arrow { transform: translateX(2px); }

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r16);
  overflow: hidden;
  text-decoration: none;
  color: var(--gray-700);
  transition: all var(--t-base) var(--ease);
  box-shadow: var(--sh-xs);
}
.article-card:hover {
  border-color: transparent;
  box-shadow: var(--sh-md);
  transform: translateY(-6px);
  text-decoration: none;
  color: var(--gray-700);
}
.article-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--blue-pale);
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.article-card:hover .article-thumb img { transform: scale(1.06); }

.article-meta { padding: var(--s4) var(--s4) 0; }
.article-category {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 8px;
  border-radius: var(--r4);
  letter-spacing: 0.04em;
}

.article-body { padding: var(--s3) var(--s4) var(--s4); flex: 1; }
.article-title {
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: var(--s2);
  color: var(--gray-800);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
}
.article-card:hover .article-title { color: var(--navy); }
.article-desc {
  font-size: var(--text-xs);
  color: var(--gray-400);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-footer {
  padding: 0 var(--s4) var(--s4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-date {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--gray-400);
}

@media (max-width: 860px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .article-grid { grid-template-columns: 1fr; } }

/* =============================================
   AREA SECTION — Dark Navy Prestige Block
   ============================================= */
.area-section {
  padding: var(--s20) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.area-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.area-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.area-section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s6);
  position: relative;
  z-index: 1;
}
.area-eyebrow { margin-bottom: var(--s4); }
.area-eyebrow .eyebrow-line { background: rgba(255,255,255,0.2); }
.area-eyebrow .eyebrow-text { color: rgba(255,255,255,0.4); }
.area-section-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s12);
  font-family: var(--font-heading);
}

.area-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s12);
  align-items: start;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r24);
  padding: var(--s10) var(--s10);
}

.area-map-wrap { text-align: center; }
.area-map-img {
  width: 100%;
  max-width: 180px;
  border-radius: var(--r16);
  opacity: 0.9;
  margin: 0 auto;
  filter: brightness(1.1) saturate(0.8);
}

.area-right h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.area-right p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--s6);
  line-height: 1.85;
}
.area-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s2);
  margin-bottom: var(--s5);
}
.area-city-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--s2) var(--s3);
  border-radius: var(--r8);
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all var(--t-fast) var(--ease);
  letter-spacing: 0.01em;
}
.area-city-tag:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}
.area-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--rfull);
  border: 1px solid rgba(255,255,255,0.16);
  transition: all var(--t-base) var(--ease);
}
.area-more-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  text-decoration: none;
}

@media (max-width: 700px) {
  .area-content { grid-template-columns: 1fr; padding: var(--s8) var(--s6); }
  .area-city-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section-v2 {
  padding: var(--s20) 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-top: var(--s8);
}
.faq-item-v2 {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r16);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
}
.faq-item-v2:hover { border-color: var(--navy); box-shadow: var(--sh-sm); }
.faq-item-v2[open] { border-color: var(--navy); box-shadow: var(--sh-sm); }

.faq-q-v2 {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s5) var(--s6);
  cursor: pointer;
  list-style: none;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-800);
  justify-content: space-between;
  transition: color var(--t-fast);
  user-select: none;
}
.faq-q-v2::-webkit-details-marker { display: none; }
.faq-q-v2:hover { color: var(--navy); }
.faq-q-text {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  flex: 1;
  line-height: 1.55;
}
.faq-q-badge {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
  letter-spacing: 0;
}
.faq-toggle-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: var(--r6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 14px;
  transition: all var(--t-fast);
  margin-top: 1px;
}
.faq-item-v2[open] .faq-toggle-icon {
  background: var(--blue-pale);
  color: var(--blue);
  transform: rotate(45deg);
}
.faq-a-v2 {
  padding: 0 var(--s6) var(--s5);
  padding-left: calc(var(--s6) + 24px + var(--s3));
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.9;
  border-top: 1px solid var(--gray-100);
  padding-top: var(--s4);
}

@media (max-width: 640px) { .faq-grid { grid-template-columns: 1fr; } }

/* =============================================
   CTA BLOCK
   ============================================= */
.cta-block {
  margin: var(--s12) 0;
  padding: var(--s10) var(--s12);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%, #1e4a8c 100%);
  border-radius: var(--r24);
  box-shadow: var(--sh-xl);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--amber);
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--s3);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta-btn-wrap { margin-bottom: var(--s5); }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--r12);
  transition: all var(--t-base) var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  letter-spacing: 0.01em;
}
.cta-btn-arrow { transition: transform var(--t-fast); }
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  text-decoration: none;
  color: var(--navy);
}
.cta-btn:hover .cta-btn-arrow { transform: translateX(4px); }

.cta-warnings-accordion {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r8);
  overflow: hidden;
}
.cta-warnings-accordion summary {
  cursor: pointer;
  padding: 10px 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.cta-warnings-accordion summary::-webkit-details-marker { display: none; }
.cta-warnings-accordion summary::after { content: '＋'; font-weight: 400; }
.cta-warnings-accordion[open] summary::after { content: '－'; }
.cta-warnings-accordion ul { padding: 10px 16px 12px 28px; border-top: 1px solid rgba(255,255,255,0.07); margin: 0; }
.cta-warnings-accordion li { margin-bottom: 4px; }

@media (max-width: 600px) { .cta-block { padding: var(--s8) var(--s6); } }

/* =============================================
   PAGE TITLE BAR — Bizreach style
   ============================================= */
.page-title-bar {
  background: var(--black);
  padding: var(--s20) var(--s8) var(--s16);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* 右上の微細グラデーション */
.page-title-bar::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-title-bar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
/* パンくず */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s5);
  flex-wrap: wrap;
}
.page-breadcrumb a,
.page-breadcrumb span {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
}
.page-breadcrumb a:hover { color: rgba(255,255,255,0.65); text-decoration: none; }
.page-breadcrumb .sep { color: rgba(255,255,255,0.20); }
.page-breadcrumb .current { color: rgba(255,255,255,0.55); }

.page-title-bar h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.25;
  max-width: 800px;
}
/* 下線アクセント */
.page-title-bar h1 em {
  color: var(--gold);
  font-style: normal;
}
/* ページヒーローラベル（小） */
.page-title-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}
.page-title-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

/* =============================================
   PAGE TITLE BAR — Split variant (text + photo)
   ============================================= */
.page-title-bar--split {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.page-title-bar--split .page-title-bar-inner {
  padding: var(--s20) var(--s12) var(--s16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-title-bar--split .page-title-bar-photo {
  position: relative;
  overflow: hidden;
}
.page-title-bar--split .page-title-bar-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* 写真上のグラデーションオーバーレイ */
.page-title-bar--split .page-title-bar-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, transparent 60%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .page-title-bar--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-title-bar--split .page-title-bar-photo {
    height: 240px;
    position: relative;
  }
  .page-title-bar--split .page-title-bar-inner {
    padding: var(--s12) var(--s6) var(--s10);
  }
}

/* =============================================
   FUTURE PHOTO SECTION — After Change
   ============================================= */
.future-photo-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.future-photo-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.future-photo-left {
  position: relative;
  overflow: hidden;
}
.future-photo-left img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.future-photo-right {
  padding: var(--s16) var(--s12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.future-photo-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.future-photo-eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--green);
}
.future-photo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin-bottom: var(--s6);
}
.future-photo-title span { color: var(--green); }
.future-check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s8);
}
.future-check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--text-base);
  color: var(--gray-mid);
  line-height: 1.7;
}
.fcheck {
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.future-check-list strong { color: var(--ink); font-weight: 700; }

@media (max-width: 860px) {
  .future-photo-inner { grid-template-columns: 1fr; }
  .future-photo-left { height: 260px; position: relative; }
  .future-photo-right { padding: var(--s10) var(--s6) var(--s12); }
}

/* =============================================
   PAGE VISUAL — slim photo strip
   ============================================= */
.page-visual {
  display: none;
}
.edu-visual {
  display: none;
}



/* =============================================
   PAGE CONTENT — clean, readable
   ============================================= */
.page-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--s12) var(--s8) var(--s20);
}
.page-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--ink);
  border-left: 3px solid var(--black);
  padding: var(--s3) var(--s5);
  margin: var(--s12) 0 var(--s5);
  background: var(--surface);
  border-radius: 0 var(--r4) var(--r4) 0;
  letter-spacing: -0.02em;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--gray-dark);
  margin: var(--s8) 0 var(--s4);
  padding-left: var(--s4);
  border-left: 2px solid var(--gray-mid);
}
.page-content p { margin-bottom: var(--s4); line-height: 1.9; color: var(--gray-mid); }
.page-content ul, .page-content ol { padding-left: 1.5em; margin-bottom: var(--s4); }
.page-content li { margin-bottom: var(--s2); color: var(--gray-mid); }
.page-content a { color: var(--blue); }
.page-content a:hover { color: var(--navy); }

/* コンテンツ内画像ブロック */
.content-image-block {
  margin: var(--s10) 0;
  border-radius: var(--r8);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.content-image-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.content-image-block:hover img { transform: scale(1.02); }
.content-image-caption {
  background: var(--surface);
  padding: var(--s2) var(--s4);
  font-size: var(--text-xs);
  color: var(--gray-light);
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
}

/* 2カラム画像グリッド */
.content-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin: var(--s10) 0;
}
.content-image-grid .content-image-block { margin: 0; }

@media (max-width: 600px) {
  .content-image-grid { grid-template-columns: 1fr; }
}


/* =============================================
   COMPONENT LIBRARY
   ============================================= */
.section { padding: var(--s16) 0; }
.section + .section { border-top: 1px solid var(--gray-200); }
.section-title { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 800; color: var(--gray-900); margin-bottom: var(--s6); letter-spacing: -0.02em; }

.notice-box {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  padding: var(--s5) var(--s6);
  margin: var(--s5) 0;
  font-size: var(--text-sm);
  line-height: 1.85;
  border-radius: 0 var(--r8) var(--r8) 0;
}
.notice-box strong { color: var(--navy); }
.notice-box ul { margin: var(--s2) 0 0 1.2em; }

.info-box {
  background: var(--gray-50);
  border-left: 3px solid var(--gray-300);
  padding: var(--s4) var(--s5);
  margin: var(--s5) 0;
  font-size: var(--text-sm);
  border-radius: 0 var(--r8) var(--r8) 0;
  color: var(--gray-500);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s4);
}
.quick-link-card {
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: var(--s5);
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--t-base) var(--ease);
  border-radius: var(--r16);
  box-shadow: var(--sh-xs);
}
.quick-link-card::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease);
}
.quick-link-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-3px);
  text-decoration: none;
}
.quick-link-card:hover::before { transform: scale(1.5); }

.worry-tags { display: flex; flex-wrap: wrap; gap: var(--s2); }
.worry-tag {
  display: inline-block;
  padding: var(--s2) var(--s4);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: var(--text-sm);
  border-radius: var(--rfull);
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--sh-xs);
  font-weight: 500;
}
.worry-tag:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-navy);
  text-decoration: none;
}

.area-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--s3); }
.area-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r16);
  padding: var(--s5) var(--s4);
  background: var(--white);
  transition: all var(--t-base) var(--ease);
  box-shadow: var(--sh-xs);
}
.area-item:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.area-item .area-name { font-weight: 700; font-size: var(--text-md); margin-bottom: var(--s1); }
.area-item .area-status { font-size: var(--text-xs); color: var(--gray-400); }
.area-item.is-active {
  border-color: var(--navy);
  border-top: 3px solid var(--navy);
  background: var(--blue-pale);
}
.area-item.is-active .area-status { color: var(--blue); font-weight: 600; }
.area-links { margin-top: var(--s3); display: flex; flex-direction: column; gap: var(--s1); }
.area-links a { font-size: var(--text-xs); color: var(--blue); text-decoration: none; }
.area-links a:hover { text-decoration: underline; }

.industry-tag-grid { display: flex; flex-wrap: wrap; gap: var(--s2); }
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--r12);
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--sh-xs);
  font-weight: 500;
}
.industry-tag::before { content: '›'; color: var(--blue); font-weight: 700; }
.industry-tag:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-navy);
  text-decoration: none;
}
.industry-tag:hover::before { color: rgba(255,255,255,0.6); }
.industry-tag.is-disabled { color: var(--gray-300); border-style: dashed; pointer-events: none; }
.industry-tag.is-disabled::before { color: var(--gray-300); }

.flow-list { counter-reset: flow; }
.flow-item { display: flex; gap: var(--s4); align-items: flex-start; padding: var(--s5) 0; border-bottom: 1px solid var(--gray-100); }
.flow-item:first-child { border-top: 1px solid var(--gray-100); }
.flow-num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--navy); color: var(--white);
  border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: var(--text-sm); font-weight: 700;
}
.flow-body h3 { margin: 0 0 var(--s1); font-size: var(--text-md); }
.flow-body p { margin: 0; font-size: var(--text-sm); color: var(--gray-500); }

.news-list { border-top: 1px solid var(--gray-200); }
.news-item { display: flex; gap: var(--s4); align-items: baseline; padding: var(--s3) 0; border-bottom: 1px solid var(--gray-100); font-size: var(--text-sm); }
.news-date { color: var(--gray-400); font-family: var(--font-ui); font-size: var(--text-xs); white-space: nowrap; min-width: 80px; }
.news-item a { color: var(--gray-700); text-decoration: none; }
.news-item a:hover { color: var(--navy); text-decoration: underline; }
/* =============================================
   ABOUT / PROFILE SECTION
   ============================================= */
.about-section {
  padding: var(--s20) 0;
  background: linear-gradient(180deg, #F0F4FF 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s6);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--amber-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.about-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: var(--s6);
}
.about-title em {
  font-style: normal;
  color: var(--navy);
}
.about-story {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: var(--s6);
}
.about-story strong {
  color: var(--gray-900);
  font-weight: 700;
}
.about-company {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r8);
  width: fit-content;
  box-shadow: var(--sh-xs);
}
.about-company-label {
  font-size: var(--text-xs);
  color: var(--gray-400);
}
.about-company-name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
}

/* 右側のスタッツカード */
.about-stats-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r24);
  padding: var(--s8);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.about-stats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-dark) 100%);
}
.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-bottom: var(--s4);
}
.about-stat-item {
  padding: var(--s5);
  background: var(--gray-50);
  border-radius: var(--r12);
  text-align: center;
  border: 1px solid var(--gray-100);
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s1);
}
.about-stat-num span {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--amber-dark);
  letter-spacing: 0;
}
.about-stat-label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.4;
}
.about-stat-wide {
  padding: var(--s4) var(--s5);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.about-stat-wide-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.about-stat-wide-num span { font-size: 0.6em; color: var(--amber); }
.about-stat-wide-text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: var(--s8); }
  .about-stats-card { order: -1; }
}
@media (max-width: 500px) {
  .about-stat-row { grid-template-columns: 1fr; }
}

.role-box {

  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: var(--s6) var(--s8);
  border-radius: var(--r16);
}
.role-box ul { list-style: none; padding: 0; margin: 0; }
.role-box li { padding: var(--s2) 0 var(--s2) var(--s6); position: relative; font-size: var(--text-sm); border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.role-box li:last-child { border-bottom: none; }
.role-box li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.faq-section { border-top: 1px solid var(--gray-200); margin-top: var(--s2); }
.faq-section .faq-item { border-bottom: 1px solid var(--gray-100); padding: var(--s5) 0; }
.faq-section .faq-q {
  font-size: var(--text-base); font-weight: 700;
  color: var(--gray-800); line-height: 1.55;
  margin-bottom: var(--s3); padding-left: 36px;
  position: relative; letter-spacing: -0.005em;
}
.faq-section .faq-q::before {
  content: 'Q'; position: absolute; left: 0; top: 0;
  color: var(--white); background: var(--navy);
  width: 24px; height: 24px; border-radius: var(--r6);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 11px; font-weight: 800;
}
.faq-section .faq-a {
  font-size: var(--text-sm); color: var(--gray-500);
  line-height: 1.85; padding-left: 36px; position: relative;
}
.faq-section .faq-a::before {
  content: 'A'; position: absolute; left: 0; top: 0;
  color: var(--white); background: var(--teal);
  width: 24px; height: 24px; border-radius: var(--r6);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 11px; font-weight: 800;
}
.faq-section .faq-a a { color: var(--blue); }

.faq-list { border-top: 1px solid var(--gray-200); }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item summary {
  cursor: pointer; padding: var(--s5) 0;
  font-size: var(--text-base); font-weight: 600;
  list-style: none; display: flex;
  align-items: center; justify-content: space-between;
  color: var(--gray-800); transition: color var(--t-fast);
  gap: var(--s4);
}
.faq-item summary:hover { color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: 'Q'; color: var(--white); background: var(--navy);
  width: 24px; height: 24px; border-radius: var(--r6);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.faq-item summary::after { content: '＋'; font-size: 1rem; font-weight: 400; color: var(--gray-400); flex-shrink: 0; }
.faq-item[open] summary::after { content: '－'; }
.faq-item p {
  padding: 0 0 var(--s5) 36px;
  font-size: var(--text-sm); color: var(--gray-500);
  margin: 0; line-height: 1.85;
}

/* Visual helpers */
.edu-visual, .page-visual { width: 100%; overflow: hidden; background: var(--gray-100); }
.edu-visual { max-height: 220px; }
.edu-visual img { width: 100%; max-height: 220px; object-fit: cover; object-position: center 40%; }
.page-visual { max-height: 300px; }
.page-visual img { width: 100%; max-height: 300px; object-fit: cover; object-position: center 30%; }
.hero-visual { display: none; }

.image-placeholder {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: var(--s2);
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-ultra));
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--r12); color: var(--gray-400);
  font-size: var(--text-xs); text-align: center;
  padding: var(--s8); min-height: 160px;
}
.image-placeholder::before { content: '🖼'; font-size: 2rem; opacity: 0.35; }

.checklist-section { background: var(--gray-50) !important; border-radius: var(--r16) !important; border: 1px solid var(--gray-200); }
.checklist-section ul { list-style: none; padding-left: 0; }
.checklist-section li { padding: var(--s2) 0; border-bottom: 1px solid var(--gray-100); font-size: var(--text-sm); color: var(--gray-600); }
.checklist-section li:last-child { border-bottom: none; }

.nearby-links { display: flex; flex-wrap: wrap; gap: var(--s2); list-style: none; padding: 0; }
.nearby-links a {
  display: inline-block; padding: 6px 14px;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--rfull); color: var(--blue);
  text-decoration: none; font-size: var(--text-xs); font-weight: 600;
  transition: all var(--t-fast) var(--ease); box-shadow: var(--sh-xs);
}
.nearby-links a:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); transform: translateY(-1px); text-decoration: none;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0A1628;
  color: #9BA8BA;
  padding: var(--s16) var(--s6) var(--s8);
  font-size: var(--text-sm);
}
.footer-inner { max-width: var(--max-w); margin-inline: auto; }
.footer-top {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: var(--s10);
  padding-bottom: var(--s12);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: var(--s8);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
  display: flex; align-items: center; gap: var(--s2);
  letter-spacing: -0.015em;
}
.footer-logo-dot {
  width: 7px; height: 7px;
  background: var(--blue); border-radius: 50%;
}
.footer-tagline {
  font-size: var(--text-xs);
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: var(--s6);
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #4A5568;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--s2); }
.footer-col a {
  color: #6B7A8D;
  text-decoration: none;
  font-size: var(--text-xs);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-contact { font-size: var(--text-xs); color: #4A5568; margin-bottom: var(--s2); }
.footer-tel { font-family: var(--font-ui); font-size: var(--text-xl); font-weight: 800; color: var(--white); letter-spacing: 0.02em; margin-bottom: var(--s1); }
.footer-hours { font-size: var(--text-xs); color: #4A5568; }

.footer-disclaimer {
  font-size: var(--text-xs);
  color: #374151;
  line-height: 1.85;
  padding: var(--s5) var(--s6);
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--r12);
  margin-bottom: var(--s6);
}
.footer-disclaimer strong { color: #4A5568; }

.footer-nav { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s6); margin-bottom: var(--s6); }
.footer-nav a { color: #4A5568; font-size: var(--text-xs); text-decoration: none; transition: color var(--t-fast); }
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--s6);
  border-top: 1px solid rgba(255,255,255,0.03);
}
.footer-copy { font-family: var(--font-ui); font-size: var(--text-xs); color: #2D3748; }

@media (max-width: 900px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max-w); margin-inline: auto;
  padding: var(--s3) var(--s6);
  font-size: var(--text-xs); color: var(--gray-400);
  display: flex; flex-wrap: wrap; gap: var(--s1); align-items: center;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-300); }

.page-img-wrap {
  overflow: hidden; border-radius: var(--r16);
  background: var(--gray-100); margin-bottom: var(--s8); box-shadow: var(--sh-md);
}
.page-img-wrap img { width: 100%; height: 240px; object-fit: cover; object-position: center 30%; }
.hero-img { width: 100%; height: 300px; object-fit: cover; object-position: center 35%; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
  .section { padding: var(--s10) 0; }
  .worry-section, .flow-section, .news-section, .faq-section-v2, .area-section { padding: var(--s10) 0; }
  .page-content { padding: var(--s8) var(--s4) var(--s12); }
  .quick-links { grid-template-columns: 1fr; }
  .cta-block { padding: var(--s8) var(--s5); }
  .page-content h2 { font-size: var(--text-md); }
  .inner { padding-inline: var(--s4); }
  .section-header-row { flex-direction: column; gap: var(--s2); }
}
