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

:root {
  --ink-900: #071824;
  --ink-700: #1a3347;
  --ink-500: #4a6578;
  --base-text: #2a3f4f;
  --paper: #f5f8fb;
  --line: rgba(12, 48, 72, 0.12);
  --brand-blue: #1a6d94;
  --brand-cyan: #1f9e9f;
  --brand-steel: #0a2d42;
  --brand-gold: #c9a962;
  --surface-elevated: #ffffff;
  --shadow-sm: 0 2px 8px rgba(8, 32, 48, 0.06);
  --shadow-md: 0 12px 32px rgba(8, 32, 48, 0.1);
  --shadow-lg: 0 24px 48px rgba(8, 32, 48, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --header-height: 64px;
  --trust-bar-height: 30px;
  --mobile-cta-height: 0px;
  --site-chrome-height: 94px;
  --site-header-bg: rgba(6, 28, 44, 0.94);
  --font-body: 'Noto Sans JP', 'Inter', system-ui, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
  --font-display: 'Shippori Mincho B1', 'Noto Sans JP', serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --text-lead: clamp(0.9375rem, 2vw, 1.0625rem);
  --text-body: clamp(0.875rem, 1.9vw, 1rem);
  --text-caption: 0.8125rem;
  --space-section: clamp(40px, 6vw, 60px);
  --space-section-landing: clamp(28px, 4.5vw, 44px);
  --copy-measure: 34rem;
  --copy-line: 1.72;
  --copy-body: 0.9375rem;
  --copy-lead: 0.9375rem;
  /* 短い見出し・肩書きは一行表示（font-size は各所で clamp 調整） */
  --heading-oneline-size: clamp(0.6875rem, 2.85vw, 0.9375rem);
  --content-max: 1080px;
  --gutter: clamp(16px, 4vw, 28px);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  line-height: var(--copy-line);
  color: var(--base-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  overflow-wrap: break-word;
  word-break: normal;
}

#main-content {
  margin: 0;
  padding: 0;
}

#main-content > .hero-section:first-child {
  margin-top: 0;
}

body.has-mobile-cta {
  padding-bottom: calc(var(--mobile-cta-height, 72px) + env(safe-area-inset-bottom, 0));
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--brand-steel);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

.site-chrome {
  position: relative;
  top: auto;
  z-index: 500;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .site-chrome {
    position: sticky;
    top: 0;
  }
}

.trust-bar {
  position: relative;
  top: auto;
  z-index: 1;
  background: linear-gradient(90deg, #0a2d42 0%, #0f3d56 50%, #0a2d42 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.trust-bar-item svg {
  opacity: 0.85;
  flex-shrink: 0;
}

.trust-bar-item--accent {
  color: #9ee8f0;
}

#top,
#page-menu,
#program,
#staff,
#testimonials,
#rapport,
#grouphome,
#guide,
#family-guide,
#contact {
  scroll-margin-top: calc(var(--site-chrome-height, 94px) + 16px);
}

.header {
  position: sticky;
  top: var(--trust-bar-height);
  z-index: 100;
  background: rgba(10, 45, 68, 0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.header--scrolled {
  background: rgba(7, 34, 52, 0.98);
  box-shadow: var(--shadow-md);
}

.header-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 8px 0;
}

.header-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  padding: 0 12px;
}

.header-nav-link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.header-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-call-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s, border-color 0.2s;
}

.header-call-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.header-call-label {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.header-call-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.header-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--brand-steel);
  background: linear-gradient(180deg, #ffffff 0%, #e8f4fa 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  white-space: nowrap;
}

.header-primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.header-consult-btn {
  display: none;
}

.header-sections-btn {
  display: none;
}

.header-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.header-menu-icon,
.header-menu-icon::before,
.header-menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: relative;
}

.header-menu-icon::before,
.header-menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.header-menu-icon::before {
  top: -6px;
}

.header-menu-icon::after {
  top: 6px;
}

.mobile-cta-bar {
  display: none;
}

.mobile-cta-bar[hidden] {
  display: none !important;
}

body.mobile-menu-open .mobile-cta-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(13, 29, 44, 0.98);
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(38, 113, 148, 0.22);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.mobile-menu-logo-img {
  height: 40px;
  width: auto;
  max-width: min(72vw, 220px);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.mobile-menu-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-description {
  padding: 18px 20px;
  font-size: 0.94rem;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-nav {
  padding: 16px 0;
}

.mobile-menu-section-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
  padding: 8px 20px;
}

.mobile-menu-item {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-contact {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-contact-phone {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 8px 0;
}

.mobile-menu-contact-hours,
.mobile-menu-contact-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-section {
  position: relative;
  min-height: min(78vh, 680px);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(72px, 14vw, 96px) 20px clamp(88px, 12vw, 112px);
  background: #061a28;
  overflow: hidden;
}

.hero-cover-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
  filter: brightness(1.1) saturate(1.14) contrast(1.03);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(72, 168, 235, 0.12) 0%, transparent 42%),
    linear-gradient(125deg, rgba(5, 18, 28, 0.2) 0%, rgba(12, 52, 76, 0.14) 45%, rgba(8, 38, 58, 0.24) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(36, 166, 167, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  background: linear-gradient(to top, var(--paper), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  letter-spacing: 0.2em;
  margin-bottom: clamp(14px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.92);
}

.hero-title {
  font-size: clamp(2.25rem, 8vw, 4.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.12;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  margin-top: clamp(10px, 2.5vw, 16px);
  font-size: clamp(1.0625rem, 4vw, 1.625rem);
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.34);
  text-wrap: pretty;
}

.hero-message {
  margin: clamp(18px, 4vw, 28px) auto 0;
  max-width: min(36rem, 92vw);
  font-size: clamp(0.9375rem, 2.8vw, 1.125rem);
  line-height: 1.78;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.36);
}

.hero-chip-list {
  margin: 24px auto 0;
  width: min(100%, 360px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: center;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(151, 223, 237, 0.56);
  background: rgba(8, 40, 58, 0.35);
}

.hero-actions {
  margin: clamp(24px, 5vw, 36px) auto 0;
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(48px, 12vw, 56px);
  width: 100%;
  min-width: 0;
  padding: 12px 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.35;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-action:hover {
  transform: translateY(-2px);
}

.hero-action.primary {
  color: var(--brand-steel);
  background: linear-gradient(180deg, #ffffff 0%, #e5f2f8 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-action.ghost {
  color: #e8f7ff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.visual-strip {
  width: min(1080px, calc(100% - 28px));
  margin: -28px auto 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 3;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #061a28;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.visual-card img {
  width: 100%;
  height: clamp(140px, 24vw, 200px);
  object-fit: cover;
  display: block;
}

.visual-card__caption,
.visual-card p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 32px 14px 14px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: #fff;
  font-family: var(--font-body);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  background: linear-gradient(
    to top,
    rgba(6, 26, 40, 0.92) 0%,
    rgba(6, 26, 40, 0.55) 48%,
    transparent 100%
  );
}

.brand-axis {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.axis-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(155deg, #0a2d42 0%, #134a66 50%, #0f3d56 100%);
  color: #dff6ff;
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.axis-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.axis-card h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 8px;
  color: #9ce9ff;
}

.axis-card p {
  font-size: 0.86rem;
  line-height: 1.72;
  color: rgba(233, 248, 255, 0.95);
}

.content-section {
  width: min(var(--content-max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: var(--space-section) 0;
}

.section-kicker {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
  color: var(--ink-900);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  border-radius: 2px;
}

.text-content {
  font-size: var(--text-body);
  line-height: var(--copy-line);
  color: #314a5f;
  max-width: var(--copy-measure);
  margin-left: auto;
  margin-right: auto;
  word-break: normal;
  overflow-wrap: break-word;
}

.text-content + .text-content {
  margin-top: 1.25em;
}

.section-lead {
  font-size: var(--text-lead);
  line-height: 1.85;
}

.section-showcase {
  margin: 28px auto 0;
  max-width: 920px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--surface-elevated);
}

.section-showcase img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 420px;
  object-fit: cover;
}

.section-showcase figcaption {
  padding: 14px 18px 16px;
  font-size: var(--text-caption);
  line-height: 1.7;
  color: var(--ink-500);
  background: linear-gradient(180deg, #fafcfd 0%, #f0f6fa 100%);
  border-top: 1px solid var(--line);
}

.family-program-visual {
  margin-bottom: 28px;
}

.route-summary {
  background: linear-gradient(160deg, #f3f8fc, #ecf3f7);
  border: 1px solid rgba(25, 78, 109, 0.22);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 32px) clamp(16px, 3vw, 20px);
  margin-top: 4px;
}

.route-summary .text-content {
  max-width: 44em;
  margin: 0 auto 12px;
  text-align: center;
}

.route-summary-list {
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 18px auto 0;
}

.route-summary-list li {
  border-radius: 8px;
  border: 1px solid rgba(23, 90, 122, 0.26);
  background: rgba(255, 255, 255, 0.88);
  padding: 11px 14px;
  color: #1f445a;
  font-size: 0.95rem;
}

.copy-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.copy-grid .text-content {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 9px 24px rgba(24, 56, 78, 0.08);
  padding: 20px 18px;
}

.mini-gallery {
  margin-top: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(20, 53, 73, 0.15);
}

.pillars-section {
  background: linear-gradient(170deg, #f3f8fb, #edf4f7);
  border: 1px solid rgba(22, 80, 109, 0.2);
  border-radius: 12px;
  padding: 34px 20px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pillar-item {
  border-radius: 10px;
  border: 1px solid rgba(27, 86, 114, 0.2);
  background: #fff;
  padding: 18px 16px;
  box-shadow: 0 10px 22px rgba(20, 52, 75, 0.1);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: #143852;
  margin-bottom: 10px;
}

.pillar-description {
  font-size: 0.93rem;
  line-height: 1.8;
  color: #365062;
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-step {
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 9px 20px rgba(21, 57, 78, 0.08);
  padding: 16px;
}

.support-step h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.support-step p {
  font-size: 0.9rem;
  color: #3c5668;
  line-height: 1.75;
}

.section-lead {
  max-width: 50em;
  margin: 0 auto 18px;
  text-align: center;
  color: #294458;
}

.program-track-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.program-track-card {
  border-radius: 10px;
  border: 1px solid rgba(18, 69, 101, 0.25);
  background: #f7fbff;
  box-shadow: 0 10px 20px rgba(16, 48, 68, 0.08);
  padding: 14px;
}

.program-track-card h3 {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  color: #133d5a;
  margin-bottom: 7px;
}

.program-track-card p {
  font-size: 0.86rem;
  line-height: 1.68;
  color: #355264;
}

.program-marathon-note {
  margin-top: 18px;
  border-radius: 10px;
  border: 1px solid rgba(18, 67, 97, 0.28);
  background: linear-gradient(145deg, #0f2f44, #1a4f6a);
  color: #e8f7ff;
  box-shadow: 0 14px 24px rgba(10, 34, 49, 0.2);
  padding: 18px 16px;
}

.program-marathon-note h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
  color: #a9ecff;
}

.program-marathon-note p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.program-marathon-note p:last-child {
  margin-bottom: 0;
}

.program-manifesto {
  margin: 22px auto 24px;
  padding: 22px 20px 20px;
  border-radius: 12px;
  border: 1px solid rgba(40, 179, 174, 0.35);
  background: linear-gradient(165deg, #f8fcfe 0%, #eef6fa 55%, #e8f4f8 100%);
  box-shadow: 0 12px 28px rgba(16, 48, 68, 0.08);
  width: 100%;
  max-width: 52em;
  box-sizing: border-box;
}

.program-manifesto p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #2a4558;
  letter-spacing: 0.02em;
}

.program-manifesto__lead {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f3d56;
  line-height: 1.75;
}

.program-manifesto__emphasis {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  border-left: 4px solid var(--brand-teal);
  font-size: 0.98rem;
  line-height: 1.85;
  color: #143852;
}

.program-section-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
  text-align: center;
  margin: 28px 0 10px;
}

.program-section-lead {
  max-width: 48em;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.78;
  color: #3a5568;
}

.program-phase-block,
.program-daily-block,
.program-relationship-block {
  margin-top: 8px;
}

.program-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.program-phase-card {
  border-radius: 10px;
  border: 1px solid rgba(22, 80, 109, 0.22);
  background: #fff;
  padding: 16px 14px;
  box-shadow: 0 8px 18px rgba(18, 52, 75, 0.08);
}

.program-phase-card__label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a4a62;
  background: rgba(40, 179, 174, 0.18);
}

.program-phase-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #133d5a;
  margin: 0 0 8px;
  line-height: 1.45;
}

.program-phase-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.72;
  color: #3d5668;
}

.program-daily-list {
  max-width: 40em;
  margin: 0 auto;
  padding: 0;
}

.program-daily-list__row {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 8px 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  line-height: 1.7;
}

.program-daily-list__row:last-child {
  border-bottom: none;
}

.program-daily-list dt {
  font-weight: 700;
  color: var(--brand-blue);
}

.program-daily-list dd {
  margin: 0;
  color: var(--ink-700);
}

.program-relationship-block .text-content {
  max-width: 48em;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.88;
  color: #334d5f;
}

.program-relationship-block .text-content p {
  margin-bottom: 14px;
}

.program-marathon-note__cta {
  margin-top: 12px;
  margin-bottom: 0 !important;
}

.program-marathon-note__cta a {
  color: #9ee8f0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.program-marathon-note__cta a:hover {
  color: #fff;
}

.program-ref-note {
  margin-top: 20px;
}

.program-page .program-track-grid {
  margin-top: 12px;
}

/* Program page — typographic rhythm (pro layout) */
.program-page {
  --program-measure: 34rem;
  --program-lead-size: 0.9375rem;
  --program-body-size: 0.875rem;
  --program-line: 1.72;
}

.program-page .section-kicker {
  margin-bottom: 10px;
}

.program-page__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
  margin-bottom: 22px;
  line-height: 1.38;
  text-wrap: pretty;
}

.program-page__title::after {
  margin-top: 14px;
}

.program-page__title-line {
  display: block;
}

.program-page__title-line--sub {
  font-size: clamp(0.95rem, 3.8vw, 1.125rem);
  font-weight: 600;
  color: #2f4a5c;
  letter-spacing: 0.04em;
  max-width: 20em;
  text-align: center;
}

.program-page__lead {
  width: 100%;
  max-width: var(--program-measure);
  margin: 0 auto 22px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.program-page__lead p {
  margin: 0;
  text-align: left;
  font-size: var(--program-lead-size);
  line-height: var(--program-line);
  color: #3a5568;
  word-break: normal;
  overflow-wrap: break-word;
}

.br-md-up {
  display: none;
}

.br-sm-only {
  display: block;
}

.hero-tagline__end {
  white-space: nowrap;
}

.program-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
  line-height: 1.42;
  text-wrap: pretty;
}

.program-section-title__main {
  display: block;
  text-align: center;
  max-width: 20em;
  word-break: normal;
  overflow-wrap: break-word;
}

.program-section-title__sub {
  display: block;
  font-size: 0.78em;
  font-weight: 500;
  color: #5a7282;
  letter-spacing: 0.03em;
  text-align: center;
  max-width: 22em;
}

.program-section-lead {
  max-width: var(--program-measure);
  text-align: left;
  padding: 0 4px;
  word-break: normal;
}

.program-page .program-manifesto {
  max-width: var(--program-measure);
  text-align: left;
}

.program-manifesto p {
  text-align: left;
  orphans: 2;
  widows: 2;
}

.program-phase-card h4 {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  line-height: 1.42;
}

.program-phase-card__heading {
  display: block;
}

.program-phase-card__heading-sub {
  display: block;
  font-size: 0.88em;
  font-weight: 500;
  color: #4d6a7c;
}

.program-phase-card p,
.program-track-card p,
.program-relationship-block .text-content p {
  text-align: left;
  word-break: normal;
  orphans: 2;
}

.program-track-card h3 {
  line-height: 1.4;
  text-wrap: pretty;
}

.pillar-description {
  text-align: left;
  word-break: normal;
}

.program-leader-block {
  margin: 28px auto 20px;
  max-width: 40rem;
}

.program-leader-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.program-leader-gallery__main {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(22, 80, 109, 0.2);
  box-shadow: 0 10px 22px rgba(16, 48, 68, 0.12);
}

.program-leader-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 15%;
  opacity: 1 !important;
  visibility: visible !important;
}

.program-leader-gallery__sub {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.program-leader-gallery__sub figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(22, 80, 109, 0.15);
}

.program-leader-gallery__sub img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  object-position: center 20%;
  opacity: 1 !important;
  visibility: visible !important;
}

.program-leader-caption {
  margin: 12px 0 6px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-900);
}

.program-leader-note {
  margin: 0 0 8px;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.72;
  color: #3d5668;
  word-break: normal;
}

.program-leader-link {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
}

.program-leader-link a {
  color: var(--brand-blue);
  font-weight: 700;
}

@media (min-width: 640px) {
  .br-md-up {
    display: inline;
  }

  .br-sm-only {
    display: none;
  }
}

@media (max-width: 900px) {
  .program-phase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .program-page {
    --program-measure: none;
    --program-gutter: clamp(14px, 4vw, 20px);
    width: calc(100% - var(--program-gutter) * 2);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 28px var(--program-gutter) 36px;
    box-sizing: border-box;
  }

  .program-page > .section-kicker,
  .program-page > .section-title,
  .program-page > .program-page__lead,
  .program-page > .program-manifesto,
  .program-page > .pillar-grid,
  .program-page > .section-showcase,
  .program-page > .program-phase-block,
  .program-page > .program-daily-block,
  .program-page > .program-relationship-block,
  .program-page > .program-track-grid,
  .program-page > .program-marathon-note,
  .program-page > .program-leader-block,
  .program-page > .program-ref-note,
  .program-page > .program-section-title,
  .program-page > .program-section-lead {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .program-page__title-line--sub {
    max-width: none;
  }

  .program-page__lead,
  .program-section-lead {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .program-page .program-manifesto {
    margin: 20px 0 22px;
    padding: 16px 14px;
  }

  .program-page .program-manifesto p {
    font-size: 0.875rem;
  }

  .program-page .section-showcase {
    margin-left: 0;
    margin-right: 0;
  }

  .program-page .program-daily-list {
    max-width: none;
    width: 100%;
  }

  .program-page .program-daily-list__row {
    grid-template-columns: 3.5em minmax(0, 1fr);
  }

  .program-page .pillar-grid,
  .program-page .program-track-grid,
  .program-page .program-phase-grid {
    grid-template-columns: 1fr;
  }

  .program-track-grid {
    grid-template-columns: 1fr;
  }

  .program-leader-gallery {
    grid-template-columns: 1fr;
  }

  .program-leader-gallery__main img {
    min-height: 280px;
  }

  .program-leader-gallery__sub {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
}

.text-content.highlight {
  margin-top: 18px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(24, 93, 124, 0.25);
  background: linear-gradient(145deg, rgba(235, 248, 255, 0.95), rgba(229, 247, 243, 0.95));
  box-shadow: 0 9px 20px rgba(24, 62, 80, 0.1);
  padding: 16px;
  color: #154967;
  font-weight: 700;
}

.navigation-section {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
  padding: var(--space-section) 0;
}

.nav-section-header {
  text-align: center;
  margin-bottom: 22px;
}

.nav-section-subtitle {
  max-width: 40em;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #3f5e72;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nav-card {
  --card-image: url("/static/aso-landscape.jpg");
  --card-overlay: linear-gradient(150deg, rgba(6, 27, 40, 0.62), rgba(13, 54, 78, 0.48));
  --card-position: center center;
  --card-title-color: #e8f7ff;
  --card-subtitle-color: #c7ebfa;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 174px;
  border: 1px solid rgba(23, 72, 98, 0.28);
  box-shadow: 0 14px 24px rgba(12, 36, 53, 0.22);
  text-decoration: none;
  isolation: isolate;
}

.nav-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-overlay), var(--card-image);
  background-size: cover;
  background-position: center center, var(--card-position);
}

.nav-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.nav-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--card-title-color);
}

.nav-subtitle {
  font-size: 0.9rem;
  color: var(--card-subtitle-color);
}

.nav-card:hover {
  transform: translateY(-3px);
}

.nav-card-top {
  --card-image: url("/static/hero-nature-majestic.jpg");
}

.nav-card-menu {
  --card-image: url("/static/hero-amakusa-sea.jpg");
}

.nav-card-staff {
  --card-image: url("/static/staff-energetic-laughing.jpg");
}

.nav-card-program {
  --card-image: url("/static/program-recovery-session.jpg");
  --card-position: center center;
}

.nav-card-voice {
  --card-image: url("/static/testimonial-young-woman-sharing.jpg");
  --card-position: center 30%;
}

.nav-card-women {
  --card-image: url("/static/women-facility-rapport.jpg");
}

.nav-card-home {
  --card-image: url("/static/grouphome-cozy-home.jpg");
}

.nav-card-usage,
.nav-card-blog {
  --card-image: url("/static/hero-kyushu-green.jpg");
}

.nav-card-family {
  --card-image: url("/static/family-meeting-laughing.jpg");
}

.nav-card-contact {
  --card-image: url("/static/amakusa-coast.jpg");
}

.detail-section .section-title {
  margin-bottom: 18px;
}

.prose-section {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.prose-section.site-copy .prose-lead,
.prose-section.site-copy .prose-highlights,
.prose-section.site-copy .section-showcase {
  max-width: var(--copy-measure);
  margin-left: auto;
  margin-right: auto;
}

.prose-lead {
  margin: 0 auto 18px;
  max-width: var(--copy-measure);
  font-size: var(--copy-lead);
  line-height: var(--copy-line);
  color: var(--ink-700);
  letter-spacing: 0.02em;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
}

.prose-highlights {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.prose-highlights li {
  position: relative;
  padding: 14px 16px 14px 40px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-700);
  background: linear-gradient(180deg, #fafcfd 0%, #f3f8fb 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(19, 71, 100, 0.08);
}

.prose-highlights li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 1.35em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-teal);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(40, 179, 174, 0.2);
}

.support-banner {
  margin-top: 20px;
  border-radius: 12px;
  background: #123f5c;
  color: #fff;
  padding: 14px 16px;
  font-size: 0.92rem;
  line-height: 1.76;
}

.home-feature-list {
  margin: 16px 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-feature-list li {
  border-radius: 8px;
  border: 1px solid rgba(16, 70, 101, 0.24);
  background: rgba(241, 248, 252, 0.9);
  padding: 10px 12px;
  font-size: 0.88rem;
  color: #23465e;
}

.home-showcase-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-showcase-grid img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(19, 71, 100, 0.24);
  box-shadow: 0 10px 18px rgba(17, 45, 64, 0.12);
}

.home-showcase-single {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.home-showcase-single img {
  width: 100%;
  height: min(320px, 52vw);
  object-fit: cover;
  display: block;
}

.home-showcase-single figcaption {
  font-size: var(--text-caption);
  line-height: 1.7;
  color: var(--ink-500);
  padding: 14px 18px 16px;
  background: linear-gradient(180deg, #fafcfd 0%, #f0f6fa 100%);
  border-top: 1px solid var(--line);
}

.prose-section .section-showcase {
  margin-top: 8px;
  border: none;
  box-shadow: var(--shadow-md);
}

.kyushu-culture-section {
  border-radius: 12px;
  border: 1px solid rgba(17, 67, 95, 0.2);
  background: linear-gradient(160deg, #f4f9fc, #edf4f9);
  padding: 34px 20px;
}

.culture-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.culture-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 66, 95, 0.2);
  box-shadow: 0 10px 20px rgba(20, 47, 66, 0.1);
}

.culture-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.culture-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: #2b4659;
  padding: 10px 11px 12px;
}

.family-process {
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 104, 0.24);
  background: #fff;
  box-shadow: 0 10px 18px rgba(22, 55, 77, 0.08);
  padding: 16px;
}

.family-process h3 {
  font-family: var(--font-heading);
  color: #173f58;
  font-size: 0.98rem;
  margin-bottom: 9px;
}

.family-process-list {
  list-style: none;
  display: grid;
  gap: 7px;
}

.family-process-list li {
  border-left: 3px solid #2a7da9;
  background: #f4fafc;
  padding: 8px 10px;
  font-size: 0.87rem;
  line-height: 1.7;
  color: #2c495d;
}

.family-recovery-chart {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid rgba(24, 76, 106, 0.22);
  background: #fff;
  box-shadow: 0 10px 18px rgba(16, 49, 68, 0.08);
  padding: 14px;
}

/* らぽーる（女性専用）ページ */
.rapport-page .rapport-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.rapport-page .rapport-chart--wide {
  margin-bottom: 20px;
}

.rapport-chart__intro {
  margin: 0 0 12px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #2c495d;
}

.rapport-chart__note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #4a6578;
}

.rapport-chart-bar--research::after {
  background: linear-gradient(90deg, #5a6d9a, #8b7ab8);
}

.rapport-chart-bar--pillar::after {
  background: linear-gradient(90deg, #c45c8a, #e8a0b8);
}

.rapport-callout {
  border-color: rgba(196, 92, 138, 0.35);
  background: linear-gradient(145deg, #fff8fb 0%, #f4fafc 100%);
}

.rapport-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rapport-program-item {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(24, 76, 106, 0.14);
  background: #f8fcfe;
}

.rapport-program-item h4 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: #9b3d6b;
}

.rapport-program-item p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #335568;
}

.rapport-checklist {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #2c495d;
}

.rapport-checklist li + li {
  margin-top: 6px;
}

.rapport-showcase + .rapport-showcase {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .rapport-page .rapport-chart-grid {
    grid-template-columns: 1fr;
  }

  .rapport-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.rapport-daily-list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #2c495d;
}

.rapport-daily-list li + li {
  margin-top: 6px;
}

.rapport-table-wrap {
  margin-top: 8px;
  overflow-x: auto;
}

.rapport-matrix {
  min-width: 520px;
}

.rapport-matrix th,
.rapport-matrix td {
  font-size: 0.8125rem;
  line-height: 1.6;
  vertical-align: top;
}

.rapport-matrix tbody th {
  width: 34%;
  font-weight: 600;
  color: #173f58;
}

.rapport-program-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rapport-quote {
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 4px solid #c45c8a;
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, #fff5f9 0%, #f8fcfe 100%);
}

.rapport-quote p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #2c495d;
  font-style: italic;
}

.rapport-quote footer {
  margin-top: 10px;
  font-size: 0.75rem;
  color: #4a6578;
}

.rapport-quote footer a {
  margin-left: 6px;
}

.rapport-faq-block {
  margin: 8px 0 16px;
}

.rapport-faq-block__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: #9b3d6b;
  margin: 0 0 12px;
}

.rapport-faq-block .faq-item {
  margin-bottom: 10px;
}

.rapport-faq-block .faq-item h4 {
  font-size: 0.9375rem;
  color: #173f58;
  margin: 0 0 6px;
}

.rapport-faq-block .faq-item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #335568;
}

.rapport-milestones .info-steps__body strong {
  color: #173f58;
}

@media (max-width: 900px) {
  .rapport-program-grid--two {
    grid-template-columns: 1fr;
  }
}

.family-recovery-chart h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #173f58;
  margin-bottom: 10px;
}

.chart-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.chart-row span {
  font-size: 0.84rem;
  color: #335568;
}

.chart-bar {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: #e5eef4;
  overflow: hidden;
}

.chart-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--bar);
  background: linear-gradient(90deg, #2f80ab, #28b3ae);
}

.family-emphasis {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid rgba(23, 80, 109, 0.24);
  background: #f4fbff;
  padding: 14px;
}

.story-section {
  width: 100%;
  margin: 10px 0 0;
  color: #fff;
  padding: 72px 20px;
  text-align: center;
  background:
    linear-gradient(130deg, rgba(3, 12, 18, 0.86), rgba(11, 64, 89, 0.72)),
    url("/static/peers-laughing-kumamoto.jpg") center/cover no-repeat;
}

.story-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.story-label {
  font-family: var(--font-heading);
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.story-title {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  margin-bottom: 16px;
}

.story-subtitle {
  font-size: 1rem;
  line-height: 1.9;
}

.landing-only {
  display: none;
}

body.is-landing .landing-heavy {
  display: none;
}

body.is-landing .landing-only {
  display: block;
}

/* 表紙も各セクションは通常の余白（長いスクロール表示） */

body.is-landing .hero-section {
  min-height: min(88vh, 820px);
  height: auto;
  padding: clamp(40px, 9vh, 72px) clamp(16px, 3vw, 28px) clamp(64px, 9vh, 96px);
  align-items: center;
  justify-content: center;
}

body.is-landing .hero-section::after {
  height: 80px;
  opacity: 0.75;
}

body.is-landing .hero-section::before {
  background:
    linear-gradient(180deg, rgba(130, 195, 235, 0.28) 0%, rgba(80, 150, 200, 0.08) 42%, transparent 62%),
    linear-gradient(0deg, rgba(6, 22, 34, 0.62) 0%, rgba(6, 22, 34, 0.28) 32%, transparent 58%);
}

body.is-landing .hero-cover-photo {
  object-position: center 32%;
  filter: brightness(1.2) saturate(1.14) contrast(1.03);
}

body.is-landing .hero-inner.hero-inner--editorial {
  width: 100%;
  max-width: min(1240px, 100%);
  margin-inline: auto;
  padding: clamp(8px, 2vh, 16px) clamp(16px, 4vw, 28px);
  text-align: center;
  box-sizing: border-box;
}

body.is-landing .hero-inner--editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vh, 20px);
}

body.is-landing.hero-variant-glass .hero-copy-stack {
  width: 100%;
  max-width: min(36rem, 100%);
  margin-inline: auto;
  padding: clamp(18px, 4.5vw, 28px) clamp(16px, 4vw, 24px);
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(165deg, rgba(8, 32, 48, 0.72) 0%, rgba(6, 22, 34, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-head {
  gap: clamp(8px, 1.6vh, 12px);
  padding-bottom: clamp(10px, 2vh, 14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-body {
  gap: clamp(8px, 1.6vh, 12px);
  padding-top: clamp(10px, 2vh, 14px);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-eyebrow {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(126, 232, 244, 0.45);
  color: rgba(158, 232, 240, 0.95);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-title {
  background: linear-gradient(180deg, #ffffff 0%, #d4eef8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-tagline {
  font-weight: 600;
  letter-spacing: 0.05em;
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-deck {
  margin: 0;
  padding: 0;
  font-size: clamp(0.875rem, 2.6vw, 1.0625rem);
  line-height: 1.72;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-lead {
  margin: 0;
  font-size: clamp(0.8125rem, 2.3vw, 0.9375rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32em;
  margin-inline: auto;
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-actions--cta {
  width: 100%;
  max-width: none;
  margin: clamp(12px, 2vh, 16px) 0 0;
  padding-top: clamp(10px, 2vh, 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-landing .hero-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(10px, 2vh, 16px);
  width: 100%;
}

body.is-landing .hero-eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
}

body.is-landing .hero-org {
  margin: 0;
  font-size: clamp(0.6875rem, 1.9vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

body.is-landing .hero-title {
  font-size: clamp(3rem, 10.8vw, 5.1rem);
  margin: 0;
  line-height: 1.08;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

body.is-landing .hero-tagline {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: clamp(1.35rem, 4.8vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(0, 0, 0, 0.25);
}

body.is-landing .hero-tagline__row {
  display: block;
}

body.is-landing .hero-tagline__keep {
  white-space: nowrap;
}

@media (min-width: 640px) {
  body.is-landing .hero-tagline__row {
    display: inline;
  }

  body.is-landing .hero-tagline__row + .hero-tagline__row::before {
    content: ' ';
  }
}

body.is-landing .hero-deck {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: clamp(1rem, 2.9vw, 1.2rem);
  line-height: 1.68;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 0 16px rgba(0, 0, 0, 0.22);
}

body.is-landing .hero-deck__row {
  display: block;
}

@media (min-width: 640px) {
  body.is-landing .hero-deck__row {
    display: inline;
  }

  body.is-landing .hero-deck__row + .hero-deck__row::before {
    content: ' ';
  }
}

body.is-landing .hero-org,
body.is-landing .hero-eyebrow {
  width: 100%;
  text-align: center;
}

body.is-landing .hero-title {
  width: 100%;
  text-align: center;
}

body.is-landing .hero-tagline {
  text-align: center;
}

body.is-landing .hero-tagline__row {
  text-align: center;
}

body.is-landing .hero-deck {
  text-align: center;
}

body.is-landing .hero-deck__row {
  text-align: center;
}

body.is-landing .hero-copy-panel,
body.is-landing .hero-highlights,
body.is-landing .hero-facts {
  display: none !important;
}

body.is-landing .hero-body {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2vh, 16px);
  text-align: center;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.is-landing .hero-body.site-copy .hero-lead {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.is-landing .hero-lead {
  margin: 0;
  width: 100%;
  max-width: none;
  text-align: center;
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  line-height: 1.68;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 0 18px rgba(0, 0, 0, 0.35);
}

body.is-landing .hero-meta-line {
  display: none;
}

body.is-landing .hero-actions--cta {
  position: relative;
  z-index: 3;
  margin-top: 0;
  width: 100%;
  max-width: min(36rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2.8vw, 14px);
  align-items: stretch;
}

body.is-landing .hero-actions--premium .hero-action--premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  min-height: clamp(52px, 13vw, 60px);
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  text-shadow: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out),
    background 0.18s var(--ease-out),
    border-color 0.18s var(--ease-out);
}

body.is-landing .hero-action__label {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.8125rem, 2.6vw, 0.9375rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

body.is-landing .hero-action__hint {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.625rem, 2vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  opacity: 0.88;
}

body.is-landing .hero-actions--premium .hero-action.primary {
  color: var(--brand-steel);
  background: linear-gradient(165deg, #ffffff 0%, #e2f3fa 55%, #c8e8f4 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(126, 232, 244, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.is-landing .hero-actions--premium .hero-action.primary .hero-action__hint {
  color: rgba(6, 38, 56, 0.72);
}

body.is-landing .hero-actions--premium .hero-action.ghost {
  color: #fff;
  background: linear-gradient(165deg, rgba(14, 58, 82, 0.88) 0%, rgba(6, 28, 44, 0.92) 100%);
  border: 1.5px solid rgba(126, 232, 244, 0.55);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.is-landing .hero-actions--premium .hero-action.ghost .hero-action__hint {
  color: rgba(200, 240, 248, 0.9);
}

body.is-landing .hero-actions--premium .hero-action:hover {
  transform: translateY(-2px);
}

body.is-landing .hero-actions--premium .hero-action:active {
  transform: translateY(1px) scale(0.98);
}

body.is-landing .hero-actions--premium .hero-action:focus-visible {
  outline: 2px solid #7ee8f4;
  outline-offset: 3px;
}

body.is-landing .site-header__menu-toggle {
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 14px;
  border-color: rgba(126, 232, 244, 0.45);
  background: rgba(6, 26, 40, 0.88);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.is-landing .site-header__menu-bar {
  width: 22px;
  height: 2.5px;
}

body.is-landing .visual-strip {
  margin-top: clamp(20px, 4vw, 32px);
  margin-bottom: 20px;
}

body.is-landing .visual-card:not(:first-child) {
  display: none;
}

body.is-landing .visual-card img {
  height: clamp(128px, 22vw, 180px);
}

body.is-landing .brand-axis {
  margin-bottom: 16px;
}

body.is-landing .axis-card {
  padding: 18px 14px;
}

body.is-landing .axis-card p {
  font-size: 0.8125rem;
  line-height: 1.65;
}

body.is-landing .content-section {
  padding: var(--space-section-landing) 0;
}

body.is-landing .route-summary {
  padding: 24px 16px;
  margin-top: 0;
}

body.is-landing .navigation-section {
  padding: var(--space-section-landing) 0;
}

body.is-landing .nav-card {
  min-height: 174px;
}

body.is-landing .nav-section-subtitle {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: var(--copy-measure);
}

body.is-landing .compact-testimonial-wrap {
  padding: var(--space-section-landing) 16px;
}

body.is-landing .contact-section {
  padding: var(--space-section-landing) 20px;
}

body.is-landing .story-section {
  display: none;
}

body.is-landing .nav-card-menu {
  display: none;
}

@media (min-width: 981px) {
  .landing-overview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-overview__card--blog {
    grid-column: span 2;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .landing-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Landing overview cards */
.landing-overview {
  width: min(var(--content-max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: var(--space-section-landing) 0;
}

.landing-overview__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.landing-overview__lead {
  max-width: var(--copy-measure);
  margin: 0 auto 18px;
  text-align: center;
  font-size: var(--copy-lead);
  line-height: var(--copy-line);
  color: var(--ink-500);
}

.landing-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-overview__card {
  --card-overlay: linear-gradient(180deg, rgba(6, 27, 40, 0.08) 0%, rgba(6, 27, 40, 0.35) 42%, rgba(6, 27, 40, 0.88) 100%);
  --card-position: center center;
  position: relative;
  display: block;
  min-height: clamp(168px, 38vw, 220px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 80, 109, 0.22);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-overview__card:hover {
  transform: translateY(-3px);
  border-color: rgba(40, 179, 174, 0.45);
  box-shadow: var(--shadow-md);
}

.landing-overview__card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-overlay), var(--card-image);
  background-size: cover;
  background-position: center center, var(--card-position);
}

.landing-overview__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  min-height: 100%;
  padding: 14px 14px 16px;
  box-sizing: border-box;
}

.landing-overview__card-title {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 2.6vw, 1.0625rem);
  font-weight: 700;
  color: #f4fbff;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.landing-overview__card-text {
  font-size: clamp(0.75rem, 2.2vw, 0.8125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  word-break: normal;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.landing-overview__card--program {
  --card-image: url("/static/program-recovery-session.jpg");
}

.landing-overview__card--rapport {
  --card-image: url("/static/women-facility-rapport.jpg");
}

.landing-overview__card--blog {
  --card-image: url("/static/peers-laughing-kumamoto.jpg");
  --card-position: center 35%;
}

.landing-overview__card--family {
  --card-image: url("/static/family-meeting-laughing.jpg");
}

.landing-overview__card--grouphome {
  --card-image: url("/static/grouphome-cozy-home.jpg");
}

.landing-overview__card-link {
  display: none;
}

@media (max-width: 768px) {
  .landing-overview__grid {
    grid-template-columns: 1fr;
  }

  body.is-landing .brand-axis {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }
}

/* Site-wide copy rhythm (all pages) */
.site-copy .text-content,
.site-copy .prose-lead,
.site-copy .section-lead,
.site-copy .leader-message p,
.site-copy .leader-profile-copy p,
.site-copy .staff-profile-card p,
.site-copy .faq-item p,
.site-copy .contact-subtitle,
.site-copy .contact-message,
.site-copy .route-summary .text-content,
.detail-section.site-copy .info-panel__text,
.info-sheet.site-copy .info-panel__text {
  max-width: var(--copy-measure);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
}

.site-copy .copy-grid .text-content {
  max-width: none;
}

.site-copy .prose-highlights {
  max-width: var(--copy-measure);
  margin-left: auto;
  margin-right: auto;
}

.site-copy .prose-highlights li {
  font-size: 0.875rem;
  line-height: var(--copy-line);
  padding: 12px 14px 12px 36px;
}

.site-copy .section-title {
  margin-bottom: 18px;
}

/* Stacked headings — controlled line breaks (no awkward mid-phrase wraps) */
.section-title--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35em;
  line-height: 1.4;
  text-wrap: wrap;
}

.section-title__main {
  display: block;
}

.section-title__sub {
  display: block;
  font-size: 0.78em;
  font-weight: 600;
  color: #4d6a7c;
  letter-spacing: 0.02em;
  max-width: 22em;
}

.staff-story.site-copy .leader-message {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.staff-story.site-copy .leader-profile {
  max-width: none;
}

.staff-story.site-copy .leader-message > p {
  max-width: var(--copy-measure);
}

@media (max-width: 768px) {
  .site-copy .text-content,
  .site-copy .prose-lead,
  .site-copy .section-lead,
  .site-copy .leader-message > p,
  .site-copy .leader-profile-copy p {
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .leader-message__heading.heading-oneline {
    font-size: clamp(1rem, 4.6vw, 1.125rem);
    letter-spacing: 0.05em;
  }

  .leader-profile-name.heading-oneline {
    font-size: clamp(0.625rem, 2.9vw, 0.875rem);
    letter-spacing: -0.02em;
  }

  .heading-oneline {
    white-space: nowrap;
    text-wrap: nowrap;
    overflow-wrap: normal;
  }

  .program-page__lead p,
  .program-page .program-manifesto p,
  .program-page .program-section-lead,
  .program-page .program-phase-card p,
  .program-page .program-track-card p,
  .program-page .program-section-title,
  .program-page .pillar-description,
  .program-page .program-leader-note,
  .program-page .program-marathon-note p,
  .detail-section.site-copy .info-panel__text,
  .info-sheet.site-copy .info-panel__text,
  .section-title,
  .section-title--stack,
  .program-section-title,
  .nav-section-subtitle,
  .landing-overview__card-text,
  .hero-message {
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .section-title__sub,
  .program-page__title-line--sub,
  .program-section-title__sub {
    max-width: none;
  }

  .leader-profile-image {
    height: auto;
    min-height: 200px;
    max-height: 320px;
  }
}

/* Standalone page view: show one content section per route */
body.is-standalone-view #main-content > *:not(.standalone-target) {
  display: none !important;
}

body.is-standalone-view {
  overflow-x: clip;
}

body.is-standalone-view #main-content {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body.is-standalone-view .standalone-target {
  display: block !important;
  width: min(var(--content-max), calc(100% - var(--gutter) * 2));
  margin-left: auto;
  margin-right: auto;
}

body.is-standalone-view .standalone-target.program-page,
body.is-standalone-view .standalone-target.pillars-section.program-page {
  width: calc(100% - clamp(28px, 6vw, 40px));
  max-width: none;
  box-sizing: border-box;
}

body.is-standalone-view .standalone-target.story-section,
body.is-standalone-view .standalone-target.staff-story,
body.is-standalone-view .standalone-target.contact-section {
  width: 100%;
  max-width: none;
}

body.is-standalone-view .standalone-target {
  padding-top: clamp(32px, 6vw, 48px);
  padding-bottom: clamp(40px, 8vw, 64px);
}

body.is-standalone-view .compact-testimonial-wrap.standalone-target,
body.is-standalone-view .testimonial-grid-wrap.standalone-target {
  width: min(1080px, calc(100% - 28px));
}

/* 単体ページではフェードインを無効化（表示されない不具合を防ぐ） */
body.is-standalone-view .standalone-target.reveal-on-scroll,
body.is-standalone-view .standalone-target .reveal-on-scroll {
  opacity: 1;
  transform: none;
}

/* らぽーる単体ページ：子要素まで確実に表示 */
body.is-standalone-view .standalone-target.rapport-page,
body.is-standalone-view .standalone-target.rapport-page * {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* 代表理事ギャラリーは常に表示（reveal-on-scroll で消えないように） */
.program-leader-block,
.program-leader-block img {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.reveal-on-scroll.program-page.is-visible .program-leader-block,
.program-page .program-leader-block {
  opacity: 1 !important;
  transform: none !important;
}

/* Info panels & diagrams */
.subsection-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
  text-align: center;
  margin: 32px 0 16px;
}

.info-panel {
  margin: 24px 0;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fafcfd 0%, #f3f8fb 100%);
}

.info-panel--highlight {
  border-color: rgba(40, 179, 174, 0.35);
  background: linear-gradient(180deg, #f0faf9 0%, #e8f4fa 100%);
}

.info-panel__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
}

.info-panel__text {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--ink-700);
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.info-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-700);
}

.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-cyan);
}

.service-diagram {
  margin: 28px 0;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(19, 71, 100, 0.12);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-diagram__track {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.service-diagram__track--stack {
  flex-direction: column;
  align-items: center;
}

.service-diagram__box {
  flex: 1 1 140px;
  min-width: 120px;
  max-width: 220px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #f7fbfd;
  text-align: center;
}

.service-diagram__box--accent {
  background: linear-gradient(145deg, #0c3549 0%, #145a78 100%);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.service-diagram__box--accent .service-diagram__desc {
  color: rgba(255, 255, 255, 0.85);
}

.service-diagram__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-diagram__desc {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-500);
}

.service-diagram__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

.service-diagram__arrow--down {
  padding: 4px 0;
}

.service-diagram__caption {
  margin-top: 14px;
  font-size: var(--text-caption);
  line-height: 1.7;
  color: var(--ink-500);
  text-align: center;
}

.info-flow {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: flow;
}

.info-flow__step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.info-flow__step:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-top: 1px solid var(--line);
}

.info-flow__step:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-bottom: 1px solid var(--line);
}

.info-flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-blue), var(--brand-cyan));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
}

.info-flow__body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.info-flow__body p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin: 0;
}

.support-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.support-pillar {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.support-pillar h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.support-pillar p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-500);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.guide-card {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.guide-card__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(40, 179, 174, 0.35);
}

.guide-card__text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--ink-700);
}

.guide-dl {
  display: grid;
  gap: 8px;
}

.guide-dl dt {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.06em;
}

.guide-dl dd {
  font-size: 0.875rem;
  color: var(--ink-700);
  margin: 0 0 4px;
}

.guide-dl a {
  color: var(--brand-blue);
  font-weight: 600;
}

.page-cta-box {
  margin-top: 32px;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #0a2d42 0%, #123f5c 100%);
  text-align: center;
}

.page-cta-box p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.page-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  margin: 4px 6px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-steel);
  background: #fff;
}

.page-cta-link--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.content-block {
  margin: 28px 0;
}

.content-block__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--brand-cyan);
}

.content-block__text {
  font-size: 0.9375rem;
  line-height: 1.88;
  color: var(--ink-700);
  margin-bottom: 14px;
}

/* グループホーム・利用案内：情報は維持しつつ表示量を約70%に */
.detail-section--volume-70 {
  font-size: 87.5%;
}

.detail-section--volume-70 .prose-lead {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.detail-section--volume-70 .content-block {
  margin: 18px 0;
}

.detail-section--volume-70 .content-block__title {
  font-size: 0.9375rem;
  margin-bottom: 7px;
}

.detail-section--volume-70 .content-block__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  margin-bottom: 9px;
}

.detail-section--volume-70 .data-table-wrap {
  margin: 11px 0 16px;
}

.detail-section--volume-70 .data-table {
  font-size: 0.75rem;
  line-height: 1.5;
}

.detail-section--volume-70 .data-table caption {
  padding: 9px 10px 7px;
  font-size: 0.8125rem;
}

.detail-section--volume-70 .data-table th,
.detail-section--volume-70 .data-table td {
  padding: 7px 9px;
}

.detail-section--volume-70 .data-table__note {
  font-size: 0.6875rem;
  margin-top: 4px;
}

.detail-section--volume-70 .ref-note {
  margin-top: 20px;
  padding: 10px 12px;
  font-size: 0.6875rem;
  line-height: 1.55;
}

.detail-section--volume-70 .page-cta-box {
  margin-top: 20px;
  padding: 18px 16px;
}

.detail-section--volume-70 .page-cta-box p {
  font-size: 0.8125rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.detail-section--volume-70 .service-diagram {
  margin: 14px 0;
}

.detail-section--volume-70 .support-banner {
  font-size: 0.8125rem;
  padding: 12px 14px;
  margin: 16px 0;
}

.detail-section--volume-70 .home-showcase-single {
  margin: 16px 0;
}

.detail-section--volume-70 .home-showcase-single figcaption {
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Compact info layout — group home & user guide (~70% volume) */
.info-sheet .prose-lead {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.info-sheet__layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-sheet__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info-panel {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.info-panel__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 8px;
  padding-left: 10px;
  border-left: 3px solid var(--brand-cyan);
}

.info-panel__text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-700);
  margin: 0 0 8px;
}

.info-panel__note {
  font-size: 0.6875rem;
  color: var(--ink-500);
  margin: 6px 0 0;
  line-height: 1.45;
}

.info-dl {
  margin: 0;
}

.info-dl__row {
  display: grid;
  grid-template-columns: minmax(4.2em, 30%) 1fr;
  gap: 4px 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  line-height: 1.45;
}

.info-dl__row:last-child {
  border-bottom: none;
}

.info-dl dt {
  font-weight: 700;
  color: var(--ink-900);
}

.info-dl dd {
  margin: 0;
  color: var(--ink-700);
}

.info-dl dd a {
  color: var(--brand-blue);
}

.info-dl--faq .info-dl__row {
  grid-template-columns: minmax(5.5em, 36%) 1fr;
}

.info-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-steps li {
  display: grid;
  grid-template-columns: 1.75rem 1fr auto;
  gap: 4px 8px;
  align-items: start;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  line-height: 1.45;
}

.info-steps li:last-child {
  border-bottom: none;
}

.info-steps__label {
  font-weight: 700;
  color: var(--brand-blue);
}

.info-steps__body {
  color: var(--ink-700);
}

.info-steps__time {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink-500);
  white-space: nowrap;
  text-align: right;
}

.info-sheet .ref-note {
  margin-top: 18px;
  padding: 10px 12px;
  font-size: 0.6875rem;
  line-height: 1.5;
}

.info-sheet .page-cta-box {
  margin-top: 18px;
  padding: 16px;
}

.info-sheet .support-banner {
  font-size: 0.8125rem;
  padding: 10px 12px;
  margin: 14px 0 0;
}

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

  .info-steps li {
    grid-template-columns: 1.5rem 1fr;
  }

  .info-steps__time {
    grid-column: 2;
    text-align: left;
    margin-top: 2px;
  }
}

.data-table-wrap {
  margin: 16px 0 24px;
  overflow-x: visible;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.data-table caption {
  caption-side: top;
  padding: 14px 14px 10px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-900);
  background: linear-gradient(180deg, #f8fbfd 0%, #f2f7fb 100%);
  border-bottom: 1px solid var(--line);
}

.data-table thead th {
  padding: 11px 12px;
  text-align: left;
  font-weight: 700;
  color: var(--ink-900);
  background: #eef4f8;
  border-bottom: 2px solid rgba(40, 179, 174, 0.35);
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
}

.data-table tbody th {
  padding: 11px 12px;
  font-weight: 700;
  color: var(--ink-900);
  background: #f7fbfd;
  border-right: 1px solid var(--line);
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
}

.data-table td {
  padding: 11px 12px;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
}

.data-table tbody tr:last-child td,
.data-table tbody tr:last-child th {
  border-bottom: none;
}

.data-table tbody tr:nth-child(even) td {
  background: #fafcfd;
}

.data-table__note {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--ink-500);
  line-height: 1.55;
}

.ref-note {
  margin-top: 32px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #f5f8fb;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--ink-500);
}

.ref-note a {
  color: var(--brand-blue);
  word-break: break-all;
}

.compact-testimonial-wrap {
  width: min(1080px, calc(100% - 28px));
  margin: -30px auto 0;
  position: relative;
  z-index: 2;
  border-radius: 14px;
  border: 1px solid rgba(23, 82, 112, 0.2);
  background: linear-gradient(145deg, #ffffff, #f2f8fc);
  box-shadow: 0 16px 28px rgba(13, 43, 63, 0.14);
  padding: 22px 18px;
}

.compact-testimonial-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  color: #154765;
  margin-bottom: 14px;
  text-align: center;
}

.compact-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.compact-testimonial-card {
  border-radius: 10px;
  border: 1px solid rgba(25, 89, 122, 0.16);
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 48, 68, 0.09);
  padding: 14px 12px;
}

.compact-testimonial-card h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: #0f4b6c;
  margin-bottom: 7px;
}

.compact-testimonial-card p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: #35556a;
}

.compact-testimonial-link {
  margin: 14px auto 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f4a66;
  border: 1px solid rgba(24, 104, 139, 0.35);
  background: #e8f6ff;
}

.compact-testimonial-link:hover {
  background: #dff1fd;
}

.testimonial-grid-wrap {
  width: min(1080px, calc(100% - 28px));
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(26, 82, 110, 0.18);
  box-shadow: 0 14px 26px rgba(15, 45, 64, 0.13);
  padding: 18px 16px;
}

.testimonial-card h3 {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  color: #194c67;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.78;
  color: #365264;
}

.testimonial-card .name {
  margin-top: 8px;
  font-size: 0.86rem;
  color: #587286;
}

.staff-story {
  width: min(1080px, calc(100% - 28px));
  margin: 28px auto 0;
  padding: var(--space-section) 0;
}

.staff-visual-grid {
  display: grid;
  gap: 20px;
  margin: 0 0 24px;
}

.staff-activity-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(21, 78, 106, 0.24);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.staff-activity-visual img {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.staff-activity-visual figcaption {
  padding: 12px 16px 14px;
  font-size: var(--text-caption);
  line-height: 1.7;
  color: var(--ink-500);
  background: linear-gradient(180deg, #fafcfd 0%, #f0f6fa 100%);
  border-top: 1px solid var(--line);
}

@media (min-width: 769px) {
  .staff-visual-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.community-energy-section .section-showcase {
  margin-top: 20px;
}

.leader-message {
  border-radius: 10px;
  border: 1px solid rgba(21, 82, 111, 0.2);
  background: linear-gradient(145deg, #f4faff, #f2f9f5);
  box-shadow: 0 12px 24px rgba(20, 58, 78, 0.09);
  padding: 24px 18px;
  margin-bottom: 18px;
}

/* 一行見出し — 2行に割れて中途半端に見えるのを防ぐ（全ページ共通の基本） */
.heading-oneline {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  word-break: normal;
  overflow: hidden;
  text-overflow: clip;
  box-sizing: border-box;
}

.leader-message__heading {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #164868;
  letter-spacing: 0.06em;
}

.leader-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 0 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(26, 89, 120, 0.2);
  background: rgba(255, 255, 255, 0.84);
  padding: 12px;
  min-width: 0;
}

@media (min-width: 560px) {
  .leader-profile {
    grid-template-columns: minmax(160px, 38%) minmax(0, 1fr);
    align-items: start;
  }
}

.leader-profile-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(22, 79, 108, 0.18);
}

.leader-profile-copy p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.78;
  color: #2f4c60;
}

.leader-profile-copy p:last-child {
  margin-bottom: 0;
}

.leader-profile-name {
  font-family: var(--font-heading);
  font-size: var(--heading-oneline-size);
  font-weight: 700;
  line-height: 1.35;
  color: #134561;
  letter-spacing: -0.01em;
}

.leader-profile-copy {
  min-width: 0;
}

.leader-message > p {
  max-width: var(--copy-measure);
  margin-left: auto;
  margin-right: auto;
  font-size: var(--copy-body);
  line-height: var(--copy-line);
  color: #2f4c60;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
}

.staff-profile-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-profile-card {
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(19, 74, 103, 0.19);
  box-shadow: 0 12px 22px rgba(20, 58, 78, 0.11);
  padding: 18px 16px;
  min-width: 0;
}

.staff-profile-card h3,
.staff-profile-card p,
.profile-type {
  word-break: normal;
  overflow-wrap: break-word;
}

.profile-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: #0f5c7f;
  background: #eaf7ff;
  border: 1px solid rgba(20, 108, 143, 0.25);
  border-radius: 999px;
  padding: 4px 9px;
  margin-bottom: 9px;
}

.staff-profile-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #153f58;
  margin-bottom: 8px;
}

.staff-profile-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #355164;
}

.assurance-section .text-content {
  max-width: 44em;
  margin: 0 auto;
  text-align: center;
}

.faq-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  border-radius: 10px;
  border: 1px solid rgba(25, 77, 105, 0.18);
  background: #fff;
  box-shadow: 0 10px 18px rgba(20, 55, 77, 0.09);
  padding: 14px;
}

.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: #164967;
  margin-bottom: 7px;
}

.faq-item p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: #355365;
}

.contact-section {
  width: 100%;
  margin-top: 24px;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  background:
    linear-gradient(135deg, rgba(8, 45, 66, 0.92), rgba(17, 109, 120, 0.88)),
    url("/static/hero-nature-majestic.jpg") center/cover no-repeat;
}

.contact-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 16px;
}

.contact-subtitle {
  max-width: 34em;
  margin: 0 auto 8px;
  font-size: 1rem;
}

.contact-message {
  margin-bottom: 26px;
  font-size: 0.98rem;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(620px, 100%);
  margin: 0 auto 18px;
}

.contact-button {
  min-height: 54px;
  border-radius: 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-button.primary {
  background: linear-gradient(135deg, #e8f8ff, #d9f2ff);
  color: #0f4665;
}

.contact-button.outline {
  color: #d8f5ff;
  border: 1px solid rgba(171, 230, 240, 0.84);
  background: rgba(4, 37, 54, 0.4);
}

.phone-number {
  font-size: 1.08rem;
  margin-top: 2px;
}

.contact-hours {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer {
  background:
    linear-gradient(145deg, rgba(8, 27, 43, 0.98), rgba(16, 53, 81, 0.97)),
    url("/static/hero-image.jpg") center/cover no-repeat;
  color: #fff;
  padding: 58px 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(140, 216, 230, 0.2), rgba(140, 216, 230, 0.8), rgba(140, 216, 230, 0.2));
  margin-bottom: 20px;
}

.footer-lead {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(171, 231, 244, 0.9);
  margin: 0 0 12px;
}

.footer-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  gap: 22px 28px;
}

.footer-section {
  text-align: left;
}

.footer-section-brand,
.footer-nav-section,
.consultation-section {
  border-radius: 14px;
  border: 1px solid rgba(178, 227, 238, 0.26);
  background: linear-gradient(165deg, rgba(9, 38, 57, 0.78), rgba(8, 30, 47, 0.65));
  box-shadow: 0 16px 28px rgba(8, 27, 43, 0.28);
}

.footer-section-brand,
.footer-nav-section {
  padding: 20px 18px;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footer-logo-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 12px;
}

.footer-logo {
  width: 76px;
  height: 76px;
  background: transparent;
  border: 0;
  padding: 0;
  object-fit: contain;
}

.footer-brand-copy {
  padding-top: 8px;
}

.footer-info {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 7px;
}

.footer-nav-title,
.consultation-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #7ad2df;
  margin-bottom: 10px;
}

.footer-nav-item {
  display: block;
  margin-bottom: 9px;
  color: rgba(240, 251, 255, 0.86);
  text-decoration: none;
  font-size: 0.93rem;
  padding-bottom: 7px;
  border-bottom: 1px dashed rgba(173, 229, 241, 0.26);
}

.footer-nav-item:hover {
  color: #fff;
}

.consultation-section {
  grid-column: 1 / -1;
  padding: 18px 18px 12px;
}

.consultation-info,
.consultation-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 7px;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 6px;
  padding-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-grid,
  .support-steps,
  .compact-testimonial-grid,
  .testimonial-grid-wrap,
  .staff-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-page .pillar-grid,
  .program-page .program-track-grid {
    grid-template-columns: 1fr;
  }

  .visual-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-axis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-track-grid,
  .culture-gallery,
  .home-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .header-primary-cta {
    display: none;
  }

  .header-call-cta {
    display: none;
  }

  .header-consult-btn,
  .header-sections-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 72px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
  }

  .header-menu {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 44px;
    --trust-bar-height: 26px;
  }

  .trust-bar-inner {
    padding: 3px 10px;
    gap: 4px 8px;
  }

  .trust-bar-item {
    font-size: 0.5rem;
  }

  .header-shell {
    padding: 0 12px;
    min-height: var(--header-height);
    gap: 10px;
  }

  .header-logo {
    height: 26px;
  }

  .mobile-cta-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    isolation: isolate;
    transform: translateZ(0);
  }

  .mobile-cta-bar:not([hidden]) {
    display: grid;
  }

  .mobile-cta-bar {
    padding:
      10px max(14px, env(safe-area-inset-left, 0))
      calc(10px + env(safe-area-inset-bottom, 0))
      max(14px, env(safe-area-inset-right, 0));
    background: rgba(5, 24, 38, 0.96);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-top: 1px solid rgba(126, 232, 244, 0.22);
    box-shadow:
      0 -12px 32px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .mobile-cta-bar__btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    box-sizing: border-box;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    transition:
      transform 0.15s var(--ease-out),
      box-shadow 0.15s var(--ease-out),
      background 0.15s var(--ease-out),
      border-color 0.15s var(--ease-out);
  }

  .mobile-cta-bar__btn:active {
    transform: scale(0.98);
  }

  .mobile-cta-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mobile-cta-bar__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
  }

  .mobile-cta-bar__label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  .mobile-cta-bar__sub {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    opacity: 0.85;
  }

  .mobile-cta-bar__btn--phone {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(165deg, rgba(18, 72, 98, 0.95) 0%, rgba(8, 38, 56, 0.98) 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  }

  .mobile-cta-bar__btn--phone .mobile-cta-bar__icon {
    color: #9ee8f0;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-cta-bar__btn--contact {
    color: var(--brand-steel);
    border: 1.5px solid rgba(255, 255, 255, 0.88);
    background: linear-gradient(165deg, #ffffff 0%, #e4f4fb 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
  }

  .mobile-cta-bar__btn--contact .mobile-cta-bar__icon {
    color: var(--brand-steel);
    background: rgba(6, 38, 56, 0.08);
  }

  body {
    padding-bottom: calc(var(--mobile-cta-height, 76px) + env(safe-area-inset-bottom, 0));
  }

  .hero-section {
    min-height: min(82vh, 640px);
    padding: 56px 16px 88px;
    background-attachment: scroll;
  }

  body.is-landing .hero-section {
    min-height: auto;
    padding:
      calc(var(--site-chrome-height, 70px) + 10px)
      16px
      calc(var(--mobile-cta-height, 76px) + 20px + env(safe-area-inset-bottom, 0));
    align-items: center;
    justify-content: flex-start;
    overflow-x: clip;
  }

  body.is-landing .hero-section::before {
    background:
      linear-gradient(180deg, rgba(110, 175, 215, 0.2) 0%, transparent 50%),
      linear-gradient(0deg, rgba(6, 20, 32, 0.72) 0%, rgba(6, 20, 32, 0.4) 38%, transparent 72%);
  }

  body.is-landing .hero-cover-photo {
    object-position: center 36%;
    filter: brightness(1.14) saturate(1.1) contrast(1.04);
  }

  body.is-landing .hero-inner.hero-inner--editorial {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    gap: clamp(10px, 2.2svh, 14px);
    text-align: center;
    align-items: center;
  }

  body.is-landing .hero-head {
    gap: clamp(6px, 1.4svh, 10px);
    align-items: center;
    text-align: center;
  }

  body.is-landing .hero-org {
    font-size: 0.625rem;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }

  body.is-landing .hero-title {
    font-size: clamp(1.75rem, 8.5vw, 2.375rem);
    line-height: 1.12;
    letter-spacing: 0.08em;
  }

  body.is-landing .hero-tagline {
    font-size: clamp(0.9375rem, 4.1vw, 1.125rem);
    line-height: 1.5;
    letter-spacing: 0.05em;
  }

  body.is-landing .hero-tagline__row {
    display: block;
  }

  body.is-landing.hero-variant-glass .hero-copy-stack {
    max-width: 100%;
    padding: clamp(16px, 4vw, 22px) clamp(14px, 3.5vw, 18px);
    border-radius: 16px;
  }

  body.is-landing.hero-variant-glass .hero-copy-stack .hero-deck {
    font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
    line-height: 1.65;
  }

  body.is-landing.hero-variant-glass .hero-copy-stack .hero-lead {
    font-size: clamp(0.75rem, 3.1vw, 0.8125rem);
    line-height: 1.62;
    max-width: none;
  }

  body.is-landing .hero-body {
    gap: clamp(8px, 1.6svh, 12px);
  }

  .hero-inner {
    margin-top: 0;
  }

  .hero-cover-photo {
    filter: brightness(1.14) saturate(1.1) contrast(1.04);
    object-position: center 36%;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(90, 180, 245, 0.14) 0%, transparent 48%),
      linear-gradient(125deg, rgba(5, 18, 28, 0.18) 0%, rgba(12, 52, 76, 0.12) 45%, rgba(8, 38, 58, 0.22) 100%),
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(36, 166, 167, 0.05) 0%, transparent 70%);
  }

  .hero-chip-list,
  .hero-actions:not(.hero-actions--cta) {
    width: min(100%, 380px);
    gap: 10px;
  }

  .hero-chip {
    min-height: 34px;
    font-size: 0.625rem;
    padding: 6px 8px;
  }

  .hero-action {
    min-height: 40px;
    font-size: 0.75rem;
    padding: 8px 6px;
  }

  body.is-landing .hero-actions--cta {
    width: 100%;
    max-width: 100%;
    gap: clamp(8px, 2.5vw, 12px);
  }

  body.is-landing .hero-actions--premium .hero-action--premium {
    min-height: 52px;
    padding: 10px 8px;
    border-radius: 12px;
  }

  body.is-landing .hero-action__label {
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  }

  body.is-landing .site-header__menu-toggle {
    width: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .visual-strip {
    width: calc(100% - 20px);
    margin-top: -38px;
    grid-template-columns: 1fr;
  }

  body.is-landing .visual-strip {
    margin-top: clamp(12px, 3vw, 24px);
  }

  .brand-axis {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  .visual-card img {
    height: clamp(168px, 42vw, 220px);
  }

  .visual-card__caption,
  .visual-card p {
    padding: 36px 16px 16px;
    font-size: 0.875rem;
    line-height: 1.72;
  }

  .content-section,
  .navigation-section,
  .staff-story,
  .compact-testimonial-wrap,
  .testimonial-grid-wrap {
    width: calc(100% - 20px);
  }

  .content-section.program-page,
  body.is-standalone-view .standalone-target.program-page {
    width: calc(100% - 28px);
    max-width: none;
    padding: 28px 14px 36px;
    box-sizing: border-box;
  }

  .content-section,
  .navigation-section,
  .staff-story {
    padding: 40px 0;
  }

  body.is-landing .content-section,
  body.is-landing .navigation-section,
  body.is-landing .staff-story {
    padding: var(--space-section-landing) 0;
  }

  .content-section.program-page {
    padding: 28px 14px 36px;
  }

  .section-kicker {
    font-size: 0.66rem;
  }

  .section-title {
    font-size: 1.42rem;
    margin-bottom: 18px;
  }

  .text-content {
    font-size: 0.95rem;
    line-height: 1.86;
  }

  .copy-grid,
  .mini-gallery,
  .pillar-grid,
  .support-steps,
  .program-track-grid,
  .home-feature-list,
  .home-showcase-grid,
  .culture-gallery,
  .compact-testimonial-grid,
  .testimonial-grid-wrap,
  .staff-profile-grid,
  .faq-grid,
  .contact-buttons,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .leader-profile {
    grid-template-columns: 1fr;
  }

  .leader-profile-image {
    height: 178px;
  }

  .mini-gallery img {
    height: 190px;
  }

  .culture-card img,
  .home-showcase-grid img,
  .home-showcase-single img,
  .staff-activity-visual img {
    height: 168px;
  }

  .chart-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav-card {
    min-height: 132px;
    border-radius: var(--radius-sm);
  }

  .nav-card-content {
    padding: 16px 10px;
    gap: 6px;
  }

  .nav-title {
    font-size: 1rem;
  }

  .nav-subtitle {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .support-pillars,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .service-diagram__track:not(.service-diagram__track--stack) {
    flex-direction: column;
    align-items: stretch;
  }

  .service-diagram__box {
    max-width: none;
  }

  .service-diagram__arrow:not(.service-diagram__arrow--down) {
    transform: rotate(90deg);
    padding: 6px 0;
  }

  .page-cta-link {
    display: flex;
    width: calc(100% - 12px);
    margin: 6px auto;
  }

  .data-table {
    min-width: 0;
    font-size: 0.75rem;
  }

  .data-table th,
  .data-table td {
    padding: 9px 8px;
  }

  .data-table--stack-sm thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .data-table--stack-sm tbody tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
  }

  .data-table--stack-sm tbody th[scope='row'] {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    background: #eef4f8;
  }

  .data-table--stack-sm tbody td {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding-top: 8px;
  }

  .data-table--stack-sm tbody td:last-child {
    border-bottom: none;
  }

  .data-table--stack-sm tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ink-500);
    text-transform: none;
  }

  .data-table--stack-sm tbody td[data-label='']::before,
  .data-table--stack-sm tbody td:not([data-label])::before {
    display: none;
  }

  .story-section {
    padding: 56px 14px;
  }

  .story-subtitle {
    font-size: 0.95rem;
  }

  .compact-testimonial-wrap {
    margin-top: -20px;
    padding: 18px 12px;
  }

  .testimonial-grid-wrap {
    margin-top: -26px;
  }

  .contact-section {
    padding: 62px 16px;
  }

  .contact-subtitle,
  .contact-message {
    font-size: 0.92rem;
  }

  .contact-button {
    min-height: 48px;
    font-size: 0.9rem;
  }

  .phone-number {
    font-size: 1rem;
  }

  .footer {
    padding: 40px 14px 16px;
  }

  .footer-section {
    text-align: left;
  }

  .footer-section-brand,
  .footer-nav-section,
  .consultation-section {
    padding: 16px 12px;
  }

  .footer-brand-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }

  .footer-logo-container {
    justify-content: flex-start;
    padding-top: 8px;
  }

  .footer-logo {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .trust-bar-item--accent {
    width: 100%;
    justify-content: center;
  }
}
/* Enterprise site chrome — header, trust bar, footer */

.trust-bar {
  position: relative;
  top: auto;
  z-index: 1;
  background: #061a28;
  border-bottom: 1px solid rgba(120, 210, 230, 0.15);
}

.trust-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 16px;
}

.trust-bar-brand {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.trust-bar-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}

.trust-bar-item {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 1px 0;
  border-bottom: 2px solid transparent;
}

.trust-bar-item--accent {
  color: #7ee8f4;
  border-bottom-color: #28b3ae;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 2;
  background: var(--site-header-bg);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(4, 18, 28, 0.12);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #28b3ae 20%, #5ed4e8 50%, #28b3ae 80%, transparent);
  opacity: 0.85;
  pointer-events: none;
}

.site-header--scrolled {
  background: rgba(4, 22, 34, 0.98);
  box-shadow: 0 12px 40px rgba(4, 18, 28, 0.22);
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.site-header__logo {
  height: 32px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-header__tagline {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(126, 232, 244, 0.9);
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.site-header__link {
  position: relative;
  padding: 7px 12px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.site-header__link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, #28b3ae, #5ed4e8);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-out);
}

.site-header__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-header__link:hover::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.site-header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.site-header__phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header__phone-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.site-header__phone-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #062636;
  background: linear-gradient(135deg, #ffffff 0%, #b8ecf8 100%);
  box-shadow: 0 4px 20px rgba(40, 179, 174, 0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.site-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(40, 179, 174, 0.45);
}

.site-header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(6, 26, 40, 0.78);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 2;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 2px 14px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    background 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform 0.15s var(--ease-out);
}

.site-header__menu-toggle:hover {
  background: rgba(10, 36, 54, 0.92);
  border-color: rgba(126, 232, 244, 0.55);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-header__menu-toggle:active {
  transform: scale(0.96);
}

.site-header__menu-toggle[aria-expanded='true'] {
  background: rgba(126, 232, 244, 0.16);
  border-color: rgba(126, 232, 244, 0.65);
}

.site-header__menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 20px;
  height: 16px;
}

.site-header__menu-bar {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transform-origin: center;
  transition:
    transform 0.24s var(--ease-out),
    opacity 0.18s var(--ease-out),
    width 0.2s var(--ease-out);
}

.site-header__menu-toggle[aria-expanded='true'] .site-header__menu-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.site-header__menu-toggle[aria-expanded='true'] .site-header__menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.site-header__menu-toggle[aria-expanded='true'] .site-header__menu-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Footer */
.site-footer {
  margin-top: 48px;
  background: #061a28;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(40, 179, 174, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(30, 109, 148, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.site-footer__cta-band {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(14, 58, 82, 0.95) 0%, rgba(8, 38, 56, 0.98) 100%);
}

.site-footer__cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__cta-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #7ee8f4;
  margin: 0 0 10px;
}

.site-footer__cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  color: #fff;
}

.site-footer__cta-text {
  margin: 0;
  max-width: 36em;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-footer__cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #062636;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s var(--ease-out);
}

.site-footer__cta-phone:hover {
  transform: translateY(-2px);
}

.site-footer__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s, border-color 0.2s;
}

.site-footer__cta-button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.65);
}

.site-footer__main {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: 40px 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer__org {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.site-footer__address,
.site-footer__contact-line {
  margin: 0 0 6px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.site-footer__nav-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ee8f4;
  margin: 0 0 14px;
}

.site-footer__nav-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.site-footer__nav-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.site-footer__legal {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal p {
  margin: 0;
}

.leader-profile-image {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
}

@media (max-width: 1024px) {
  .site-header__tagline {
    display: none;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__phone,
  .site-header__cta {
    display: none;
  }

  .site-header__inner {
    justify-content: flex-start;
    gap: 10px;
    padding: 0 12px;
  }

  .site-header__brand {
    flex: 1;
    min-width: 0;
    gap: 10px;
  }

  .site-header__logo {
    height: 30px;
    max-width: min(58vw, 200px);
  }

  .site-header__actions {
    flex-shrink: 0;
    gap: 0;
    margin-left: 0;
  }

  .site-header__menu-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 44px;
    --trust-bar-height: 26px;
  }

  .trust-bar-inner {
    padding: 3px 10px;
    gap: 4px 8px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .trust-bar-brand {
    flex: 1;
    min-width: 0;
    text-align: left;
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .trust-bar-items {
    flex-shrink: 0;
    gap: 0;
  }

  .trust-bar-items .trust-bar-item:not(.trust-bar-item--accent) {
    display: none;
  }

  .trust-bar-item--accent {
    font-size: 0.5rem;
    line-height: 1.15;
    white-space: nowrap;
    padding: 0;
  }

  .site-header__inner {
    min-height: var(--header-height);
    padding: 0 8px;
    gap: 6px;
  }

  .site-header__logo {
    height: 28px;
    max-width: min(38vw, 140px);
  }

  .site-footer__cta-inner {
    padding: 36px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .site-footer__cta-phone,
  .site-footer__cta-button {
    width: 100%;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .trust-bar-items {
    gap: 6px 12px;
  }

  .trust-bar-item {
    font-size: 0.6rem;
  }

  .hero-message br {
    display: none;
  }

  .section-showcase img {
    max-height: 280px;
  }
}

/* iPhone Safari: safe areas & touch targets */
@supports (padding: max(0px)) {
  .site-header__inner {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .trust-bar-inner {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .mobile-cta-bar {
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
  }
}

.mobile-menu {
  background: rgba(6, 22, 34, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-header {
  background: linear-gradient(135deg, rgba(14, 58, 82, 0.95), rgba(8, 38, 56, 0.98));
  padding-top: max(20px, env(safe-area-inset-top));
}

.mobile-menu-item {
  min-height: 48px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.site-footer__cta-band {
  background: linear-gradient(145deg, #0c3a54 0%, #061a28 55%, #082838 100%);
}

.site-footer__main {
  padding-bottom: max(28px, env(safe-area-inset-bottom));
}

/* Family guide page */
.family-page .family-hero-visual,
.family-page .family-support-visual {
  margin: 18px 0 20px;
}

.family-callout {
  border-color: rgba(40, 179, 174, 0.35);
  background: linear-gradient(145deg, #f4fbff 0%, #eef8f6 100%);
}

.family-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.family-chart {
  margin-top: 0;
}

.family-chart__intro {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #2c495d;
}

.family-chart__note {
  margin: 10px 0 0;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: #4a6578;
}

.family-chart-bar--focus::after {
  background: linear-gradient(90deg, #2f80ab, #28b3ae);
}

.family-chart-bar--worry::after {
  background: linear-gradient(90deg, #3a7a9e, #5eb8c4);
}

.family-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.family-program-item {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(24, 76, 106, 0.14);
  background: #f8fcfe;
}

.family-program-item h4 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #173f58;
}

.family-program-item p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #335568;
}

.family-support-banner {
  background: linear-gradient(135deg, #0a3d56 0%, #134a66 100%);
  color: #fff;
  border: none;
}

.family-page .info-steps.family-steps .info-steps__body {
  line-height: 1.55;
}

@media (max-width: 900px) {
  .family-chart-grid {
    grid-template-columns: 1fr;
  }

  .family-program-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .family-page .chart-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .family-page .chart-row span {
    font-size: 0.8125rem;
  }
}

.story-section {
  width: 100%;
  margin: 10px 0 0;
  color: #fff;
  padding: 72px 20px;
  text-align: center;
  background:
    linear-gradient(130deg, rgba(3, 12, 18, 0.86), rgba(11, 64, 89, 0.72)),
    url("/static/peers-laughing-kumamoto.jpg") center/cover no-repeat;
}

.story-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.story-label {
  font-family: var(--font-heading);
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.story-title {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  margin-bottom: 16px;
}

.story-subtitle {
  font-size: 1rem;
  line-height: 1.9;
}

.landing-only {
  display: none;
}

body.is-landing .landing-heavy {
  display: none;
}

body.is-landing .landing-only {
  display: block;
}

/* 表紙も各セクションは通常の余白（長いスクロール表示） */

body.is-landing .hero-section {
  min-height: min(88vh, 820px);
  height: auto;
  padding: clamp(40px, 9vh, 72px) clamp(16px, 3vw, 28px) clamp(64px, 9vh, 96px);
  align-items: center;
  justify-content: center;
}

body.is-landing .hero-section::after {
  height: 80px;
  opacity: 0.75;
}

body.is-landing .hero-section::before {
  background:
    linear-gradient(180deg, rgba(130, 195, 235, 0.28) 0%, rgba(80, 150, 200, 0.08) 42%, transparent 62%),
    linear-gradient(0deg, rgba(6, 22, 34, 0.62) 0%, rgba(6, 22, 34, 0.28) 32%, transparent 58%);
}

body.is-landing .hero-cover-photo {
  object-position: center 32%;
  filter: brightness(1.2) saturate(1.14) contrast(1.03);
}

body.is-landing .hero-inner.hero-inner--editorial {
  width: 100%;
  max-width: min(1240px, 100%);
  margin-inline: auto;
  padding: clamp(8px, 2vh, 16px) clamp(16px, 4vw, 28px);
  text-align: center;
  box-sizing: border-box;
}

body.is-landing .hero-inner--editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vh, 20px);
}

body.is-landing.hero-variant-glass .hero-copy-stack {
  width: 100%;
  max-width: min(36rem, 100%);
  margin-inline: auto;
  padding: clamp(18px, 4.5vw, 28px) clamp(16px, 4vw, 24px);
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(165deg, rgba(8, 32, 48, 0.72) 0%, rgba(6, 22, 34, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-head {
  gap: clamp(8px, 1.6vh, 12px);
  padding-bottom: clamp(10px, 2vh, 14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-body {
  gap: clamp(8px, 1.6vh, 12px);
  padding-top: clamp(10px, 2vh, 14px);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-eyebrow {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(126, 232, 244, 0.45);
  color: rgba(158, 232, 240, 0.95);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-title {
  background: linear-gradient(180deg, #ffffff 0%, #d4eef8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-tagline {
  font-weight: 600;
  letter-spacing: 0.05em;
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-deck {
  margin: 0;
  padding: 0;
  font-size: clamp(0.875rem, 2.6vw, 1.0625rem);
  line-height: 1.72;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-lead {
  margin: 0;
  font-size: clamp(0.8125rem, 2.3vw, 0.9375rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32em;
  margin-inline: auto;
}

body.is-landing.hero-variant-glass .hero-copy-stack .hero-actions--cta {
  width: 100%;
  max-width: none;
  margin: clamp(12px, 2vh, 16px) 0 0;
  padding-top: clamp(10px, 2vh, 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-landing .hero-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(10px, 2vh, 16px);
  width: 100%;
}

body.is-landing .hero-eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
}

body.is-landing .hero-org {
  margin: 0;
  font-size: clamp(0.6875rem, 1.9vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

body.is-landing .hero-title {
  font-size: clamp(3rem, 10.8vw, 5.1rem);
  margin: 0;
  line-height: 1.08;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

body.is-landing .hero-tagline {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: clamp(1.35rem, 4.8vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(0, 0, 0, 0.25);
}

body.is-landing .hero-tagline__row {
  display: block;
}

body.is-landing .hero-tagline__keep {
  white-space: nowrap;
}

@media (min-width: 640px) {
  body.is-landing .hero-tagline__row {
    display: inline;
  }

  body.is-landing .hero-tagline__row + .hero-tagline__row::before {
    content: ' ';
  }
}

body.is-landing .hero-deck {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: clamp(1rem, 2.9vw, 1.2rem);
  line-height: 1.68;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 0 16px rgba(0, 0, 0, 0.22);
}

body.is-landing .hero-deck__row {
  display: block;
}

@media (min-width: 640px) {
  body.is-landing .hero-deck__row {
    display: inline;
  }

  body.is-landing .hero-deck__row + .hero-deck__row::before {
    content: ' ';
  }
}

body.is-landing .hero-org,
body.is-landing .hero-eyebrow {
  width: 100%;
  text-align: center;
}

body.is-landing .hero-title {
  width: 100%;
  text-align: center;
}

body.is-landing .hero-tagline {
  text-align: center;
}

body.is-landing .hero-tagline__row {
  text-align: center;
}

body.is-landing .hero-deck {
  text-align: center;
}

body.is-landing .hero-deck__row {
  text-align: center;
}

body.is-landing .hero-copy-panel,
body.is-landing .hero-highlights,
body.is-landing .hero-facts {
  display: none !important;
}

body.is-landing .hero-body {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2vh, 16px);
  text-align: center;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.is-landing .hero-body.site-copy .hero-lead {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.is-landing .hero-lead {
  margin: 0;
  width: 100%;
  max-width: none;
  text-align: center;
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  line-height: 1.68;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 0 18px rgba(0, 0, 0, 0.35);
}

body.is-landing .hero-meta-line {
  display: none;
}

body.is-landing .hero-actions--cta {
  position: relative;
  z-index: 3;
  margin-top: 0;
  width: 100%;
  max-width: min(36rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2.8vw, 14px);
  align-items: stretch;
}

body.is-landing .hero-actions--premium .hero-action--premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  min-height: clamp(52px, 13vw, 60px);
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  text-shadow: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out),
    background 0.18s var(--ease-out),
    border-color 0.18s var(--ease-out);
}

body.is-landing .hero-action__label {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.8125rem, 2.6vw, 0.9375rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

body.is-landing .hero-action__hint {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.625rem, 2vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  opacity: 0.88;
}

body.is-landing .hero-actions--premium .hero-action.primary {
  color: var(--brand-steel);
  background: linear-gradient(165deg, #ffffff 0%, #e2f3fa 55%, #c8e8f4 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(126, 232, 244, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.is-landing .hero-actions--premium .hero-action.primary .hero-action__hint {
  color: rgba(6, 38, 56, 0.72);
}

body.is-landing .hero-actions--premium .hero-action.ghost {
  color: #fff;
  background: linear-gradient(165deg, rgba(14, 58, 82, 0.88) 0%, rgba(6, 28, 44, 0.92) 100%);
  border: 1.5px solid rgba(126, 232, 244, 0.55);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.is-landing .hero-actions--premium .hero-action.ghost .hero-action__hint {
  color: rgba(200, 240, 248, 0.9);
}

body.is-landing .hero-actions--premium .hero-action:hover {
  transform: translateY(-2px);
}

body.is-landing .hero-actions--premium .hero-action:active {
  transform: translateY(1px) scale(0.98);
}

body.is-landing .hero-actions--premium .hero-action:focus-visible {
  outline: 2px solid #7ee8f4;
  outline-offset: 3px;
}

body.is-landing .site-header__menu-toggle {
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 14px;
  border-color: rgba(126, 232, 244, 0.45);
  background: rgba(6, 26, 40, 0.88);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.is-landing .site-header__menu-bar {
  width: 22px;
  height: 2.5px;
}


/* ===== Blog page ===== */
.blog-page {
  width: min(var(--content-max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: var(--space-section-standalone) 0 calc(var(--space-section-standalone) + 24px);
}

.blog-page.standalone-target {
  padding-top: calc(var(--header-height, 72px) + 24px);
}

body.is-standalone-view .standalone-target.blog-page {
  width: min(1120px, calc(100% - var(--gutter) * 2));
  max-width: none;
  box-sizing: border-box;
}

.blog-hero {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.blog-hero__lead {
  max-width: var(--copy-measure);
  margin: 0 auto 12px;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.85;
  color: var(--ink-600);
}

.blog-hero__note {
  font-size: 0.875rem;
  color: var(--ink-500);
  margin-bottom: 20px;
}

.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.blog-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-hero__cta--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-teal, #28b3ae), #1a8f8a);
  box-shadow: 0 8px 24px rgba(40, 179, 174, 0.35);
}

.blog-hero__cta--ghost {
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(40, 179, 174, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-filter {
  appearance: none;
  border: 1px solid rgba(12, 58, 82, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-600);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.blog-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, #0c3a54, #1a6b7a);
  border-color: transparent;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 28px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 253, 0.92));
  border: 1px solid rgba(40, 179, 174, 0.22);
  box-shadow: 0 20px 50px rgba(12, 58, 82, 0.1);
}

.blog-featured__media {
  margin: 0;
  min-height: 220px;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.blog-featured__content {
  padding: clamp(20px, 3vw, 32px);
}

.blog-featured__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 8px 0 12px;
}

.blog-featured__excerpt {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--ink-600);
  margin: 0 0 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 58, 82, 0.08);
  box-shadow: 0 8px 28px rgba(12, 58, 82, 0.06);
}

.blog-card[hidden],
.blog-featured[hidden] {
  display: none !important;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
}

.blog-card__category {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
}

.blog-card__category--news {
  color: #0c3a54;
  background: rgba(40, 179, 174, 0.18);
}

.blog-card__category--diary {
  color: #5a3d6b;
  background: rgba(186, 140, 210, 0.22);
}

.blog-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-500);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--ink-600);
  margin: 0;
  flex: 1;
}

.blog-card__summary {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-teal, #28b3ae);
  cursor: pointer;
  list-style: none;
}

.blog-card__summary::-webkit-details-marker {
  display: none;
}

.blog-prose {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(12, 58, 82, 0.08);
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--ink-600);
}

.blog-card__more {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-teal, #28b3ae);
  text-decoration: none;
}

.blog-reassure {
  margin-top: 32px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 58, 82, 0.06), rgba(40, 179, 174, 0.1));
  border: 1px solid rgba(40, 179, 174, 0.2);
}

.blog-aside__panel {
  border-radius: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 58, 82, 0.1);
  box-shadow: 0 12px 32px rgba(12, 58, 82, 0.08);
}

.blog-aside__panel--sticky {
  position: sticky;
  top: calc(var(--header-height, 72px) + 16px);
}

.blog-aside__heading {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(40, 179, 174, 0.35);
}

.blog-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-aside__list a {
  display: grid;
  grid-template-columns: 3.2em 1fr;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--ink-700);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
}

.blog-aside__contact a {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-teal, #28b3ae);
  text-decoration: none;
}

/* Dark banners: readable phone / mail links */
.support-banner a,
.support-banner a:visited,
.family-support-banner a,
.family-support-banner a:visited {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-menu-contact-phone,
.mobile-menu-contact-phone:visited {
  color: #fff;
  text-decoration: none;
}

body.is-standalone-view .compact-testimonial-wrap {
  display: none !important;
}

@media (max-width: 960px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-aside__panel--sticky {
    position: static;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }
}

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