@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Shippori+Mincho:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  /* Brand Colors */
  --blue-deep:    #1B4F8A;
  --blue-mid:     #2B6CB0;
  --blue-bright:  #3B82C4;
  --blue-soft:    #D6E8F7;
  --blue-pale:    #EEF6FD;
  --blue-mist:    #F5FAFE;

  /* Warm Neutrals */
  --cream:        #FDFAF6;
  --warm-white:   #FFFEFB;
  --warm-50:      #F9F5EF;
  --warm-100:     #EDE7DC;
  --warm-200:     #D5CBBF;
  --warm-400:     #A09080;
  --warm-600:     #6B5F52;
  --warm-800:     #3A302A;

  /* Accent */
  --green-soft:   #E8F5EE;
  --green-mid:    #4CAF7D;

  /* Typography */
  --font-serif:  'Shippori Mincho', 'DM Serif Display', serif;
  --font-sans:   'Zen Kaku Gothic New', sans-serif;

  /* Spacing */
  --section-gap: 100px;
  --container:   1080px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   48px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(27,79,138,0.10);
  --shadow-lift: 0 12px 48px rgba(27,79,138,0.16);
  --shadow-soft: 0 2px 16px rgba(27,79,138,0.07);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fast: 0.2s;
  --mid:  0.4s;
  --slow: 0.7s;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--warm-800);
  background: var(--warm-white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

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

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 254, 251, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm-100);
  transition: box-shadow var(--mid) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(27,79,138,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 1.8; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 10px;
  color: var(--warm-400);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Nav */
.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.global-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--warm-600);
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--fast) var(--ease);
}
.global-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--blue-mid);
  transition: width var(--mid) var(--ease);
  border-radius: 2px;
}
.global-nav a:hover { color: var(--blue-deep); }
.global-nav a:hover::after { width: 100%; }

/* Header CTAs */
.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--mid) var(--ease);
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-md { font-size: 15px; padding: 13px 26px; }
.btn-lg { font-size: 16px; padding: 17px 36px; border-radius: var(--radius-md); }
.btn-xl { font-size: 17px; padding: 20px 44px; border-radius: var(--radius-md); }

.btn-primary {
  background: var(--blue-deep);
  color: white;
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-secondary {
  background: transparent;
  color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep);
}
.btn-secondary:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--blue-deep);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}
.btn-white-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-800);
  border-radius: 2px;
  transition: all var(--mid) var(--ease);
}

/* Mobile nav overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,254,251,0.98);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.06em;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  font-size: 32px;
  color: var(--warm-600);
  line-height: 1;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-mist);
}

/* Decorative background shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--warm-50) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 28px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--blue-soft);
  color: var(--blue-mid);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  letter-spacing: 0.05em;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--blue-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-subtext {
  font-size: 15px;
  color: var(--warm-600);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--blue-deep);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.hero-title-sub {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--warm-600);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-tag {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.hero-lead {
  font-size: 15.5px;
  color: var(--warm-600);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero image */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--blue-soft);
  box-shadow: var(--shadow-lift);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, #C8DEF5 0%, #A8C8ED 50%, #85AED9 100%);
  color: white;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.hero-img-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.7;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
}

/* Floating card on hero */
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -32px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lift);
  min-width: 180px;
  border: 1px solid var(--warm-100);
}
.hero-float-label { font-size: 11px; color: var(--warm-400); letter-spacing: 0.08em; margin-bottom: 4px; }
.hero-float-value { font-size: 22px; font-weight: 900; color: var(--blue-deep); line-height: 1; }
.hero-float-unit { font-size: 12px; color: var(--warm-600); margin-top: 2px; }

/* ═══════════════════════════════════════
   WORRY SECTION (お悩み)
═══════════════════════════════════════ */
.worry-section {
  background: var(--blue-deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.worry-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(59,130,196,0.15);
  border-radius: 50%;
}

.worry-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  color: white;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.worry-heading span {
  display: inline-block;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.worry-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--mid) var(--ease);
  backdrop-filter: blur(4px);
}
.worry-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.worry-check {
  width: 26px;
  height: 26px;
  background: var(--blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: white;
  font-weight: 700;
}
.worry-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.worry-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.worry-cta-text {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.8;
}
.worry-cta-text strong { color: white; }

/* ═══════════════════════════════════════
   PHILOSOPHY SECTION (理念)
═══════════════════════════════════════ */
.philosophy-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-mid);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  color: var(--blue-deep);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  font-weight: 700;
}
.section-lead {
  font-size: 15px;
  color: var(--warm-600);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 2;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.philosophy-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-soft);
  aspect-ratio: 4/3;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 13px;
}
.philosophy-text-block {}
.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--blue-deep);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}
.philosophy-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--blue-mid);
  border-radius: 2px;
}
.philosophy-body {
  font-size: 15px;
  color: var(--warm-600);
  line-height: 2;
  margin-bottom: 24px;
}
.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.philosophy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--warm-800);
  line-height: 1.6;
}
.philosophy-list li::before {
  content: '▸';
  color: var(--blue-mid);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   BEFORE → AFTER (変化)
═══════════════════════════════════════ */
.change-section {
  padding: var(--section-gap) 0;
  background: var(--warm-white);
}

.change-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}
.change-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--warm-100);
}
.change-card.before {
  background: var(--warm-50);
}
.change-card.after {
  background: var(--blue-pale);
  border-color: var(--blue-soft);
}
.change-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.change-label.before-label { color: var(--warm-400); }
.change-label.after-label { color: var(--blue-mid); }
.change-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.change-items { display: flex; flex-direction: column; gap: 12px; }
.change-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.6;
}
.change-item.before { color: var(--warm-600); }
.change-item.before .ci { color: var(--warm-400); font-size: 16px; }
.change-item.after { color: var(--blue-deep); font-weight: 500; }
.change-item.after .ci { color: var(--blue-mid); font-size: 16px; }

.change-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
}
.change-arrow-inner {
  width: 48px;
  height: 48px;
  background: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

/* ═══════════════════════════════════════
   WORK CONTENT (作業内容)
═══════════════════════════════════════ */
.work-section {
  padding: var(--section-gap) 0;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}
.work-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: rgba(59,130,196,0.12);
  border-radius: 50%;
}
.work-section .section-title { color: white; }
.work-section .section-eyebrow { color: var(--blue-soft); }
.work-section .section-lead { color: rgba(255,255,255,0.7); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.work-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  transition: all var(--mid) var(--ease);
  backdrop-filter: blur(4px);
}
.work-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.work-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.work-icon svg {
  width: 26px;
  height: 26px;
  stroke: rgba(255,255,255,0.85);
  fill: none;
  stroke-width: 1.6;
}
.work-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.work-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.work-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════ */
.video-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.video-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 16/9;
  background: var(--warm-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--warm-600);
}
.video-play-btn {
  width: 72px;
  height: 72px;
  background: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  cursor: pointer;
  transition: all var(--mid) var(--ease);
  box-shadow: var(--shadow-lift);
}
.video-play-btn:hover {
  transform: scale(1.08);
  background: var(--blue-mid);
}
.video-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--warm-600);
  line-height: 1.85;
}

/* ═══════════════════════════════════════
   CASEWORKER SECTION (相談支援員)
═══════════════════════════════════════ */
.caseworker-section {
  padding: var(--section-gap) 0;
  background: var(--blue-pale);
}
.caseworker-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.caseworker-tag {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(27,79,138,0.15);
}
.caseworker-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--blue-deep);
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 700;
}
.caseworker-body {
  font-size: 15px;
  color: var(--warm-600);
  line-height: 2;
  margin-bottom: 24px;
}
.caseworker-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.caseworker-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--warm-800);
}
.caseworker-check {
  width: 22px;
  height: 22px;
  background: var(--blue-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.caseworker-img {
  border-radius: var(--radius-lg);
  background: var(--blue-soft);
  aspect-ratio: 4/3;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--blue-mid);
}

/* ═══════════════════════════════════════
   VISIT CTA SECTION
═══════════════════════════════════════ */
.visit-section {
  padding: var(--section-gap) 0;
  background: var(--warm-white);
}
.visit-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--warm-100);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.visit-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--blue-pale) 0%, transparent 70%);
  pointer-events: none;
}
.visit-icon {
  width: 72px;
  height: 72px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.visit-icon svg { width: 36px; height: 36px; stroke: var(--blue-mid); fill: none; stroke-width: 1.5; }
.visit-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--blue-deep);
  margin-bottom: 14px;
  line-height: 1.5;
}
.visit-body {
  font-size: 15px;
  color: var(--warm-600);
  line-height: 2;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.visit-note {
  font-size: 13px;
  color: var(--warm-400);
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   SNS SECTION
═══════════════════════════════════════ */
.sns-section {
  padding: var(--section-gap) 0;
  background: var(--blue-pale);
}
.sns-inner {
  text-align: center;
}
.sns-icon-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--warm-100);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  transition: all var(--mid) var(--ease);
  box-shadow: var(--shadow-soft);
}
.sns-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.sns-link svg { width: 22px; height: 22px; }
.sns-caption {
  font-size: 14px;
  color: var(--warm-600);
  line-height: 2;
}

/* ═══════════════════════════════════════
   FINAL MESSAGE
═══════════════════════════════════════ */
.final-section {
  padding: 100px 0 120px;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,196,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.final-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.final-message {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 52px);
  color: white;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.final-message .accent { color: var(--blue-soft); }
.final-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 2;
  max-width: 580px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #0E2D4E;
  padding: 60px 0 28px;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { color: white; font-size: 18px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.35); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 2;
  margin-top: 14px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--fast) var(--ease);
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  background: var(--blue-mist);
  padding: 60px 0;
  border-bottom: 1px solid var(--warm-100);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--warm-400);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--blue-mid); transition: color var(--fast) var(--ease); }
.breadcrumb a:hover { color: var(--blue-deep); }
.breadcrumb-sep { opacity: 0.5; }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --section-gap: 72px; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 28px; gap: 40px; }
  .hero-visual { display: none; }
  .worry-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-img { display: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .change-grid { grid-template-columns: 1fr; gap: 20px; }
  .change-arrow { transform: rotate(90deg); width: 100%; justify-content: center; }
  .caseworker-inner { grid-template-columns: 1fr; }
  .caseworker-img { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .global-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .worry-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .visit-card { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .final-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
}
