/* ============================================
   Loading Overlay
   ============================================ */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #E5E7EB;
  border-top-color: #C4972A;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   Form Thanks
   ============================================ */
.form-thanks {
  text-align: center;
  padding: 40px 20px;
}
.form-thanks svg {
  margin: 0 auto 16px;
  display: block;
}
.form-thanks-title {
  margin-bottom: 8px;
  color: #1E3A5F;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.form-thanks-text {
  color: #6B7280;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================
   CSS変数
   ============================================ */
:root {
  --primary: #1E3A5F;
  --primary-dark: #152C49;
  --primary-light: #E8EDF3;
  --accent: #C4972A;
  --accent-light: #F5ECD7;
  --bg: #FFFFFF;
  --bg-alt: #F7F8FA;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --text-hero: clamp(36px, 5vw, 56px);
  --text-h2: clamp(28px, 3.5vw, 40px);
  --text-h3: clamp(20px, 2.5vw, 24px);
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12px;
  --space-section: clamp(80px, 10vw, 120px);
  --space-group: clamp(40px, 5vw, 64px);
  --space-element: clamp(16px, 2vw, 24px);
}

/* ============================================
   リセット・ベース
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Playfair Display', 'Noto Sans JP', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: 'Noto Sans JP', sans-serif; }

/* ============================================
   共通コンポーネント
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.section {
  padding: var(--space-section) 0;
}
.section:nth-child(even) {
  background: var(--bg-alt);
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.visible .stagger-item:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll.visible .stagger-item:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll.visible .stagger-item:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll.visible .stagger-item:nth-child(4) { transition-delay: 0.2s; }
.animate-on-scroll.visible .stagger-item:nth-child(5) { transition-delay: 0.25s; }
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.visible .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-group);
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}
.section-title {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: var(--text-body);
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(196,151,42,0.3);
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,151,42,0.4);
  filter: brightness(1.05);
}
.btn-full { width: 100%; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-family: 'Noto Sans JP', sans-serif;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: var(--text);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-input::placeholder { color: #9CA3AF; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: var(--text-small);
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
.required {
  font-size: 11px;
  color: #DC2626;
  margin-left: 4px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ============================================
   ヘッダー
   ============================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  line-height: 1.2;
}
header:not(.scrolled) .logo-text { color: #fff; }
header:not(.scrolled) .logo-mark { background: rgba(255,255,255,0.15); color: var(--accent); }
.logo-sub {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: var(--text-small);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.nav-link:hover { color: var(--accent); }
header.scrolled .nav-link { color: var(--text); }
header.scrolled .nav-link:hover { color: var(--accent); }
.header-cta {
  padding: 10px 24px;
  font-size: 13px;
}
header:not(.scrolled) .header-cta {
  background: var(--accent);
  color: #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
header.scrolled .hamburger span { background: var(--text); }

/* Mobile menu */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-close {
  background: none;
  border: none;
  color: var(--text);
  padding: 4px;
}
.mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-family: 'Noto Sans JP', sans-serif;
}
.mobile-link:hover { color: var(--accent); }
.mobile-cta {
  margin-top: 24px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
  padding: 14px;
}

/* ============================================
   ① Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(30,58,95,0.7) 50%, rgba(30,58,95,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-text {
  flex: 1;
}
.hero-label {
  font-size: var(--text-small);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}
.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: var(--text-body);
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  margin-bottom: 24px;
  font-family: 'Noto Sans JP', sans-serif;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* Hero form */
.hero-form-wrapper {
  flex: 0 0 420px;
}
.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-card-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 4px;
}
.form-card-subtitle {
  font-size: var(--text-small);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   ② Worries
   ============================================ */
.worries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.worry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.worry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.worry-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.worry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
.worry-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   ③ Features
   ============================================ */
.features {
  background: var(--primary) !important;
}
.features .section-label { color: var(--accent); }
.features .section-title { color: #fff; }
.features .section-subtitle { color: rgba(255,255,255,0.7); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: background 0.3s, transform 0.3s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}
.feature-card p {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   ④ Results
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.result-item {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.result-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px;
}
.result-label {
  font-size: var(--text-small);
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   ⑤ Flow
   ============================================ */
.flow-steps {
  max-width: 720px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.flow-step:last-child { padding-bottom: 0; }
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 24px;
  width: 2px;
  height: calc(100% - 56px);
  background: var(--accent-light);
}
.flow-step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.flow-step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  padding-top: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}
.flow-step-content p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   ⑥ Cases
   ============================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.case-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.case-profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}
.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 4px;
  font-family: 'Noto Sans JP', sans-serif;
}
.case-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}
.case-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
}
.case-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   ⑦ Advisor
   ============================================ */
.advisor-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.advisor-card {
  display: flex;
  gap: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.advisor-img-wrap {
  flex: 0 0 160px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
}
.advisor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advisor-info {
  flex: 1;
}
.advisor-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: 'Noto Sans JP', sans-serif;
}
.advisor-info h3 span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.advisor-title {
  font-size: var(--text-small);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
.advisor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.advisor-badges span {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}
.advisor-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   ⑧ Contact
   ============================================ */
.contact {
  background: var(--primary) !important;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact .section-label { color: var(--accent); }
.contact .section-title {
  color: #fff;
  text-align: left;
}
.contact-desc {
  font-size: var(--text-body);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-top: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}
.contact-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-small);
  font-family: 'Noto Sans JP', sans-serif;
}
.contact-tel {
  margin-top: 32px;
}
.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  transition: opacity 0.2s;
}
.tel-link:hover { opacity: 0.8; }
.tel-hours {
  display: block;
  font-size: var(--text-small);
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-family: 'Noto Sans JP', sans-serif;
}
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ============================================
   フッター
   ============================================ */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-mark {
  background: rgba(255,255,255,0.1);
}
.footer-logo .logo-text {
  color: #fff;
}
.footer-desc {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}
.footer-nav h4 {
  font-size: var(--text-small);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-nav a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  transition: color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-nav a:hover { color: var(--accent); }
.footer-address {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: var(--text-caption);
  color: rgba(255,255,255,0.4);
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text { max-width: 600px; }
  .hero-badges { justify-content: center; }
  .hero-form-wrapper { flex: 0 0 auto; width: 100%; max-width: 480px; }
  .advisor-card { flex-direction: column; }
  .advisor-img-wrap {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero-content { padding-top: 40px; }
  .hero-desc br { display: none; }
  .section-title br { display: none; }

  .worries-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .advisor-cards { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  .hero-form-card { padding: 24px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
  .worry-card { padding: 24px; }
  .feature-card { padding: 28px 24px; }
  .result-item { padding: 28px 16px; }
  .results-grid { gap: 16px; }
}
