:root {
  --blue: #1738c8;
  --card-blue: #0a84d9;
  --blue-dark: #08209d;
  --yellow: #ffe000;
  --white: #fff;
  --black: #202020;
  --header-h: 86px;
  --marquee-font: "Montserrat", "Avenir Next", "Century Gothic", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  background: #fff;
  overflow-x: hidden;
}
body.is-menu-open { overflow: hidden; }
img, video { max-width: 100%; }
a { color: inherit; }

/* Loading */
.loading {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.18), transparent 28%),
    var(--blue);
  transition: opacity .75s ease, visibility .75s ease;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading__mark {
  width: 88px;
  animation: loadingPop .9s cubic-bezier(.2, 1.4, .35, 1) both;
}
.loading__mark img { display: block; width: 100%; }
.loading__logo {
  width: min(38vw, 292px);
  max-width: 292px;
  animation: fadeUp .8s ease .15s both;
}
.loading__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.loading__recruit {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--marquee-font);
  font-size: clamp(13px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: .34em;
  line-height: 1;
  text-indent: .34em;
  animation: fadeUp .8s ease .22s both;
}
.loading__bar {
  width: 160px;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
  animation: fadeUp .8s ease .28s both;
}
.loading__bar span {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: inherit;
  background: var(--yellow);
  animation: loadingSlide 1s ease-in-out infinite alternate;
}
@keyframes loadingPop {
  0% { transform: scale(.75) rotate(-8deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loadingSlide {
  from { transform: translateX(-15%); }
  to { transform: translateX(105%); }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;
  height: var(--header-h);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.site-header__lead {
  position: absolute;
  left: 26px;
  top: 8px;
  z-index: 2;
  margin: 0;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(255,255,255,.95);
}
.site-header__inner {
  height: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 24px 14px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-header__brand {
  flex: 0 0 auto;
  display: block;
  width: clamp(220px, 19vw, 310px);
}
.site-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header__site-name {
  flex: 0 0 auto;
  margin: 0 14px 0 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: .03em;
  white-space: nowrap;
}
.site-header__site-name span,
.site-header__site-name strong { display: block; }
.site-header__site-name strong { font-size: 15px; }
.site-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 40px;
  padding: 10px 17px 9px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: var(--blue);
  background: var(--yellow);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 4px 0 rgba(0,0,0,.15);
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header__nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #fff;
  transform: translateX(-104%) skewX(-18deg);
  transition: transform .36s cubic-bezier(.2,.8,.2,1);
}
.site-header__nav a::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-radius: 999px;
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%277%27%20height%3D%2710%27%20viewBox%3D%270%200%207%2010%27%3E%3Cpath%20d%3D%27M1%201l4%204-4%204%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 10px;
  transition: transform .25s ease, background-color .25s ease;
}
.site-header__nav a:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 rgba(0,0,0,.15);
}
.site-header__nav a:hover::before { transform: translateX(0) skewX(0); }
.site-header__nav a:hover::after { transform: translateX(3px) scale(1.08); }
.hamburger {
  flex: 0 0 auto;
  position: relative;
  z-index: 2300;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(0,0,0,.15);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.hamburger:hover {
  transform: rotate(7deg) scale(1.05);
  box-shadow: 0 9px 24px rgba(0,0,0,.2);
}
.hamburger span {
  position: absolute;
  left: 15px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transition: transform .38s ease, opacity .28s ease, top .38s ease;
}
.hamburger span:nth-child(1) { top: 17px; }
.hamburger span:nth-child(2) { top: 25px; }
.hamburger span:nth-child(3) { top: 33px; }
.hamburger.is-active { background: var(--yellow); }
.hamburger.is-active span:nth-child(1) { top: 25px; transform: rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.hamburger.is-active span:nth-child(3) { top: 25px; transform: rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1900;
  pointer-events: none;
  visibility: hidden;
}
.drawer::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  transform: scale(0);
  transition: transform .65s cubic-bezier(.66,0,.2,1);
}
.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.drawer.is-open::before { transform: scale(48); }
.drawer__inner {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 96px 24px 40px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease .18s, transform .35s ease .18s;
}
.drawer.is-open .drawer__inner {
  opacity: 1;
  transform: translateY(0);
}
.drawer__mark {
  position: absolute;
  left: 24px;
  bottom: 18px;
  width: min(44vw, 240px);
  opacity: .14;
  animation: floatMark 5.4s ease-in-out infinite;
}
.drawer__title {
  margin: 0;
  color: rgba(255,255,255,.35);
  font-family: var(--marquee-font);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 200;
  letter-spacing: .1em;
  line-height: .85;
}
.drawer__nav {
  display: grid;
  gap: 14px;
  width: min(560px, 100%);
}
.drawer__nav a {
  position: relative;
  display: block;
  padding: 18px 60px 18px 22px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: rgba(255,255,255,.08);
  text-decoration: none;
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: .06em;
  transform: translateX(0);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), border-color .32s ease, color .32s ease, box-shadow .32s ease;
}
.drawer__nav a span { position: relative; z-index: 2; }
.drawer__nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--yellow);
  transform: translateX(-105%) skewX(-12deg);
  transform-origin: left center;
  transition: transform .42s cubic-bezier(.2,.8,.2,1);
}
.drawer__nav a::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 2;
  transform: translate(-8px, -50%);
  opacity: .55;
  transition: transform .32s ease, opacity .32s ease, color .32s ease;
}
.drawer__nav a:hover,
.drawer__nav a:focus-visible {
  color: var(--blue);
  border-color: var(--yellow);
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.drawer__nav a:hover::before,
.drawer__nav a:focus-visible::before { transform: translateX(0) skewX(0); }
.drawer__nav a:hover::after,
.drawer__nav a:focus-visible::after {
  transform: translate(0, -50%);
  opacity: 1;
  color: var(--blue);
}
@keyframes floatMark {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

/* Main Visual */
.mv {
  position: relative;
  min-height: 760px;
  height: 100vh;
  height: 100svh;
  padding-top: var(--header-h);
  overflow: hidden;
  background: #0b2fcb;
  isolation: isolate;
}
.mv__video {
  position: absolute;
  inset: var(--header-h) 0 0 0;
  display: block;
  width: 100%;
  height: calc(100vh - var(--header-h));
  height: calc(100svh - var(--header-h));
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.mv__overlay {
  position: absolute;
  inset: var(--header-h) 0 0 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,25,122,.88) 0%, rgba(7,25,122,.70) 27%, rgba(7,25,122,.22) 52%, rgba(7,25,122,.08) 100%),
    linear-gradient(180deg, rgba(6,23,111,.20) 0%, rgba(6,23,111,.06) 48%, rgba(6,23,111,.30) 100%);
}
.mv__noise {
  position: absolute;
  inset: var(--header-h) 0 0 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 24% 38%, rgba(255,212,0,.35) 0 2px, transparent 2px),
    radial-gradient(circle at 76% 26%, rgba(255,255,255,.28) 0 1.5px, transparent 1.5px),
    radial-gradient(circle at 18% 76%, rgba(255,212,0,.24) 0 2px, transparent 2px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  opacity: .55;
  mix-blend-mode: screen;
}
.mv__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 64px));
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.mv__content {
  display: block;
  width: min(47.5vw, 560px);
  padding: clamp(16px, 2vw, 24px) 0 clamp(36px, 4vw, 56px);
}
.mv__title {
  display: block;
  width: min(100%, 640px);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.22));
}
.mv__lead {
  margin-top: clamp(22px, 2.4vw, 32px);
  color: #fff;
  font-size: clamp(20px, 1.72vw, 32px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .02em;
  text-shadow: 0 3px 18px rgba(0,0,0,.24);
}
.mv__lead p { margin: 0; }
.mv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(28px, 3vw, 44px);
}
.mv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.6vw, 24px);
  min-width: 208px;
  min-height: 72px;
  padding: 16px 22px 16px 28px;
  color: inherit;
  text-decoration: none;
  font-size: clamp(22px, 1.6vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .05em;
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease;
}
.mv__btn i {
  position: relative;
  flex: 0 0 auto;
  width: 1.4em;
  height: 1.4em;
  border: 2px solid currentColor;
  border-radius: 999px;
}
.mv__btn i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: .34em;
  height: .34em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}
.mv__btn--primary {
  color: #0b2fcb;
  background: var(--yellow);
}
.mv__btn--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(14,44,183,.42);
  backdrop-filter: blur(5px);
}
.mv__btn:hover,
.mv__btn:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(0,0,0,.24);
}

@supports (height: 100dvh) {
  .mv { height: 100dvh; }
  .mv__video { height: calc(100dvh - var(--header-h)); }
  .mv__inner { min-height: calc(100dvh - var(--header-h)); }
}

@media (max-width: 1024px) {
  .mv__inner { width: min(100%, calc(100% - 48px)); }
  .mv__content { width: min(54vw, 540px); }
  .mv__lead { font-size: clamp(18px, 1.8vw, 26px); }
}

@media (max-width: 767px) {
  .mv {
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
  }
  .mv__video {
    height: calc(100vh - var(--header-h));
    height: calc(100svh - var(--header-h));
    object-position: 64% center;
  }
  .mv__overlay {
    background:
      linear-gradient(180deg, rgba(6,22,115,.18) 0%, rgba(6,22,115,.08) 24%, rgba(6,22,115,.14) 40%, rgba(6,22,115,.42) 62%, rgba(6,22,115,.62) 80%, rgba(6,22,115,.82) 100%),
      linear-gradient(90deg, rgba(6,22,115,.48) 0%, rgba(6,22,115,.24) 30%, rgba(6,22,115,.05) 56%, rgba(6,22,115,.10) 100%);
  }
  .mv__noise { opacity: .32; }
  .mv__inner {
    width: calc(100% - 32px);
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    align-items: stretch;
  }
  .mv__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(20px, 5vw, 30px) 0 22px;
  }
  .mv__title {
    width: min(100%, 760px);
    margin-top: clamp(8px, 2vw, 16px);
  }
  .mv__lead {
    width: min(60%, 320px);
    margin-top: auto;
    padding-top: clamp(18px, 6vw, 34px);
    font-size: clamp(17px, 4.8vw, 29px);
    line-height: 1.6;
  }
  .mv__actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
  }
  .mv__btn {
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 14px 18px 14px 22px;
    border-radius: 16px;
    font-size: clamp(21px, 7vw, 34px);
  }
  .mv__btn i {
    width: 1.42em;
    height: 1.42em;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 767px) {
    .mv { min-height: 100dvh; height: 100dvh; }
    .mv__video { height: calc(100dvh - var(--header-h)); }
    .mv__inner { min-height: calc(100dvh - var(--header-h)); }
  }
}


/* Tour Banner */
.tour-banner-section {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4.3vw, 64px) 20px clamp(26px, 4vw, 56px);
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.28) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 28%, rgba(255,255,255,.28) 0 2px, transparent 3px),
    var(--yellow);
  background-size: 34px 34px, 38px 38px, auto;
}
.tour-banner {
  position: relative;
  display: block;
  width: min(1080px, 88vw);
  margin: 0 auto;
  border: 0;
  box-shadow: none;
  transform-origin: center;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.tour-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.75) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  pointer-events: none;
}
.tour-banner:hover {
  transform: translateY(-8px) scale(1.01);
  filter: saturate(1.08) brightness(1.02);
}
.tour-banner:hover::after { animation: shine .8s ease; }
.tour-banner img { display: block; width: 100%; height: auto; }
@keyframes shine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}


/* Message */
.message-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  padding: clamp(78px, 9vw, 132px) 20px clamp(88px, 10vw, 140px);
  isolation: isolate;
}
.message-marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.message-marquee__track {
  display: flex;
  width: max-content;
  animation: messageMarquee 24s linear infinite;
}
.message-marquee span {
  flex: 0 0 auto;
  color: rgba(255,255,255,.94);
  font-family: var(--marquee-font);
  font-size: clamp(58px, 8.4vw, 132px);
  font-weight: 200;
  line-height: .9;
  letter-spacing: .035em;
  margin-right: .18em;
}
@keyframes messageMarquee {
  from { transform: translateX(-22%); }
  to { transform: translateX(-55%); }
}
.message-section__inner {
  position: relative;
  z-index: auto;
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: clamp(26px, 6vw, 78px);
  align-items: start;
}
.message-copy {
  position: relative;
  z-index: 9;
  padding-top: clamp(18px, 2vw, 34px);
}
.message-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.1vw, 52px);
  line-height: 1.42;
  font-weight: 900;
  letter-spacing: .055em;
}
.message-copy h2 span,
.message-copy h2 mark {
  display: block;
  width: fit-content;
}
.message-copy h2 mark {
  padding: .02em .18em .05em;
  color: var(--blue);
  background: var(--yellow);
}
.message-copy__body {
  position: relative;
  width: min(500px, 100%);
  margin-top: clamp(28px, 3vw, 44px);
  margin-left: clamp(-18px, -1.2vw, -10px);
  padding: clamp(14px, 1.4vw, 22px) clamp(16px, 1.7vw, 26px);
  color: #fff;
  background: var(--blue);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 2.05;
  font-weight: 700;
  letter-spacing: .035em;
  border-radius: 0;
  box-decoration-break: clone;
}
.message-copy__body p { margin: 0; }
.message-copy__body p + p { margin-top: 1.8em; }
.message-president {
  position: relative;
  z-index: 5;
  align-self: end;
  justify-self: center;
  width: min(100%, 380px);
  margin-bottom: -56px;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.12));
}
.message-president img {
  display: block;
  width: 100%;
  height: auto;
}
.message-cloud {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  transform: none;
  pointer-events: none;
}

/* Belief */
.belief-section {
  position: relative;
  z-index: 1;
  margin-top: -124px;
  background: #fff;
  padding: calc(clamp(62px, 8vw, 110px) + 124px) 0 0;
  color: var(--blue);
  overflow: hidden;
}

.belief-section__inner {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}
.belief-heading {
  margin: 0 0 clamp(32px, 5vw, 58px);
  display: inline-grid;
  gap: 10px;
  color: var(--yellow);
  font-size: clamp(27px, 3.7vw, 46px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: .06em;
}
.belief-heading span {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: .05em .42em .12em;
  background: var(--blue);
}
.belief-text {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 2.05;
  font-weight: 800;
  letter-spacing: .045em;
}
.belief-text p { margin: 0; }
.belief-text p + p { margin-top: 1.55em; }
.belief-text mark {
  padding: .08em .25em .14em;
  color: var(--blue);
  background: var(--yellow);
}
.photo-scroll {
  width: 100%;
  margin-top: clamp(54px, 6.4vw, 86px);
  overflow: hidden;
}
.photo-scroll__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(18px, 2.6vw, 34px);
  padding: 0 clamp(20px, 3vw, 48px) clamp(12px, 1.4vw, 20px);
  animation: photoScroll 32s linear infinite;
}
.photo-scroll:hover .photo-scroll__track { animation-play-state: paused; }
.photo-scroll figure {
  flex: 0 0 auto;
  width: clamp(240px, 28vw, 365px);
  aspect-ratio: 967 / 678;
  margin: 0;
  overflow: hidden;
  background: #d7dde5;
  transform: translateZ(0);
}
.photo-scroll img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s ease;
}
.photo-scroll figure:hover img {
  transform: scale(1.07);
  filter: saturate(1.1);
}
@keyframes photoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wave-transition {
  position: relative;
  z-index: 2;
  margin-top: clamp(26px, 4vw, 58px);
  overflow: hidden;
  line-height: 0;
  background: #fff;
}
.wave-transition img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

/* Story */
.story-section {
  position: relative;
  margin-top: -1px;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  padding: clamp(52px, 6.4vw, 90px) 20px 0;
}
.story-section__inner {
  position: relative;
  z-index: 4;
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 400px);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
}
.story-copy {
  padding-bottom: clamp(58px, 7vw, 100px);
}
.story-copy h2 {
  margin: 0 0 clamp(36px, 5vw, 70px);
  text-align: center;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: .04em;
}
.story-copy h2 span {
  display: block;
  white-space: nowrap;
}
.story-copy__body {
  max-width: 620px;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 2.1;
  font-weight: 800;
  letter-spacing: .045em;
}
.story-copy__body p { margin: 0; }
.story-copy__body p + p { margin-top: 1.7em; }
.story-person {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
  margin-bottom: 0;
  text-align: left;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.16));
}
.story-person__photo {
  display: block;
  width: 100%;
  height: auto;
}
.story-person__profile {
  position: absolute;
  left: 40%;
  right: -4%;
  bottom: clamp(44px, 5.6vw, 78px);
  z-index: 2;
}
.story-person__logo {
  display: block;
  width: min(100%, 230px);
  height: auto;
  margin: 0 0 8px;
}
.story-person__name {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: .04em;
  text-shadow: 0 3px 12px rgba(0,0,0,.26);
}
.story-person__name span,
.story-person__name strong { display: block; }
.story-person__name strong {
  margin-top: 2px;
  font-size: 23px;
  line-height: 1.18;
}


/* Treatment / Strength */
.treatment-section {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--blue);
  padding: clamp(44px, 5vw, 76px) 20px 0;
}
.treatment-section__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .98fr) minmax(420px, 1fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}
.treatment-visual {
  position: relative;
  align-self: end;
  justify-self: start;
  width: min(100%, 640px);
  margin-left: clamp(-72px, -5vw, -24px);
  transform-origin: left bottom;
}
.treatment-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 20px rgba(8,32,157,.14));
}
.treatment-copy {
  padding: clamp(24px, 2vw, 34px) 0 clamp(58px, 7vw, 94px);
}
.treatment-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .055em;
}
.treatment-copy h2 span { display: block; }
.treatment-copy__body {
  width: min(560px, 100%);
  margin-top: clamp(34px, 4vw, 56px);
  color: var(--blue-dark);
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 2.05;
  font-weight: 800;
  letter-spacing: .045em;
}
.treatment-copy__body p { margin: 0; }
.treatment-copy__body p + p { margin-top: 2em; }

.strength-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  padding: clamp(78px, 8vw, 118px) 20px clamp(78px, 8vw, 118px);
  isolation: isolate;
}
.strength-section__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.strength-section__mascot {
  position: absolute;
  left: 50%;
  top: clamp(70px, 8vw, 118px);
  z-index: 0;
  width: min(64vw, 760px);
  max-width: none;
  transform: translateX(-50%);
  opacity: .34;
  pointer-events: none;
  animation: mascotFloat 6.2s ease-in-out infinite alternate;
}
.strength-heading {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: .055em;
}
.strength-heading span,
.strength-heading strong { display: block; }
.strength-heading strong { font-size: 1.12em; }
.strength-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 76px);
  margin-top: clamp(52px, 6vw, 86px);
  align-items: start;
}
.strength-card {
  position: relative;
  text-align: center;
}
.strength-card:nth-child(2) { transition-delay: .12s; }
.strength-card:nth-child(3) { transition-delay: .24s; }
.strength-card__num {
  margin: 0 0 clamp(18px, 2vw, 28px);
  color: #fff;
  font-family: var(--marquee-font);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 200;
  line-height: .9;
  letter-spacing: .04em;
}
.strength-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .045em;
}
.strength-card h3 em {
  color: var(--yellow);
  font-style: normal;
}
.strength-card figure {
  margin: clamp(26px, 3vw, 42px) 0 clamp(26px, 3vw, 42px);
  border: 4px solid var(--yellow);
  border-radius: clamp(18px, 2.2vw, 30px);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}
.strength-card figure img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .55s ease;
}
.strength-card:hover figure img {
  transform: scale(1.055);
  filter: saturate(1.08);
}
.strength-card__text {
  margin: 0;
  color: #fff;
  text-align: left;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.85;
  font-weight: 700;
  letter-spacing: .045em;
}
@keyframes mascotFloat {
  from { transform: translateX(-50%) translateY(0); }
  to { transform: translateX(-50%) translateY(-10px); }
}

/* Scroll animations */
.js-animate {
  opacity: 0;
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1), filter .8s ease;
  will-change: opacity, transform;
}
.js-animate[data-animate="fade-up"] { transform: translateY(36px); }
.js-animate[data-animate="slide-left"] { transform: translateX(52px); }
.js-animate[data-animate="slide-right"] { transform: translateX(-52px); }
.js-animate[data-animate="zoom-in"] { transform: scale(.94); filter: blur(4px); }
.js-animate.is-inview {
  opacity: 1;
  transform: translate(0,0) scale(1);
  filter: blur(0);
}

@media (max-width: 1180px) {
  :root { --header-h: 86px; }
  .site-header__inner { padding: 21px 18px 10px; gap: 12px; }
  .site-header__lead { left: 18px; top: 6px; font-size: 9px; }
  .site-header__brand { width: 200px; }
  .site-header__site-name { font-size: 11px; margin-right: 8px; }
  .site-header__site-name strong { font-size: 13px; }
  .site-header__nav { gap: 7px; }
  .site-header__nav a { min-width: auto; min-height: 31px; padding: 8px 11px 7px; font-size: 11px; }
  .site-header__nav a::after { width: 15px; height: 15px; margin-left: 6px; background-size: 6px 8px; }
  .hamburger { width: 44px; height: 44px; }
  .hamburger span { left: 12px; width: 20px; height: 2px; }
  .hamburger span:nth-child(1) { top: 14px; }
  .hamburger span:nth-child(2) { top: 21px; }
  .hamburger span:nth-child(3) { top: 28px; }
  .hamburger.is-active span:nth-child(1),
  .hamburger.is-active span:nth-child(3) { top: 21px; }
}

@media (max-width: 900px) {
  .site-header__site-name { display: block; }
  .site-header__brand { width: 200px; }
  .message-section__inner,
  .story-section__inner {
    grid-template-columns: 1fr;
  }
  .message-copy { text-align: left; }
  .message-president {
    width: min(66vw, 360px);
    margin: -8px auto -20px;
  }
  .story-copy h2 { text-align: center; }
  .story-person {
    width: min(70vw, 360px);
    margin: 0 auto;
  }
  .story-person__profile { left: 38%; right: -2%; bottom: 8px; }
}

@media (max-width: 767px) {
  :root { --header-h: 64px; }
  .loading { gap: 10px; }
  .loading__mark { width: 68px; }
  .loading__logo { width: min(54vw, 238px); }
  .loading__bar { width: 140px; }
  .site-header__lead,
  .site-header__nav,
  .site-header__site-name { display: none; }
  .site-header__inner {
    padding: 0 14px;
    align-items: center;
  }
  .site-header__brand { width: min(56vw, 250px); }
  .hamburger { width: 46px; height: 46px; margin-left: auto; }
  .hamburger span { left: 12px; width: 22px; height: 2px; }
  .hamburger span:nth-child(1) { top: 15px; }
  .hamburger span:nth-child(2) { top: 22px; }
  .hamburger span:nth-child(3) { top: 29px; }
  .hamburger.is-active span:nth-child(1),
  .hamburger.is-active span:nth-child(3) { top: 22px; }

  .mv {
    height: 100vh;
    height: 100svh;
    padding-top: var(--header-h);
  }
  .mv__video {
    inset: var(--header-h) 0 0 0;
    height: calc(100vh - var(--header-h));
    height: calc(100svh - var(--header-h));
    object-fit: cover;
    object-position: center center;
  }

  .tour-banner-section { padding: 30px 14px 34px; }
  .tour-banner { width: min(94vw, 640px); }

  .message-section {
    padding: 72px 20px 72px;
  }
  .message-section__inner { gap: 20px; }
  .message-copy { padding-top: 0; }
  .message-copy h2 { font-size: clamp(27px, 8.2vw, 43px); }
  .message-copy__body { width: 100%; margin: 28px 0 0; padding: 14px 16px; font-size: 13px; line-height: 1.9; }
  .message-president { width: min(64vw, 290px); margin: 0 auto -18px; }
  .message-cloud {
    left: 50%;
    width: 160vw;
    min-width: 160vw;
    transform: translateX(-50%);
  }

  .belief-section { margin-top: -74px; padding-top: calc(64px + 74px); }
  .belief-section__inner { width: min(100% - 32px, 640px); }
  .belief-heading { gap: 8px; }
  .belief-text { font-size: 14px; line-height: 2; }
  .photo-scroll__track { gap: 14px; animation-duration: 24s; padding-inline: 16px; }
  .photo-scroll figure { width: min(72vw, 310px); }
  .wave-transition { margin-top: 28px; }

  .story-section { padding: 54px 20px 0; }
  .story-copy h2 { font-size: clamp(28px, 8.2vw, 42px); text-align: center; margin-bottom: 34px; }
  .story-copy h2 span { white-space: normal; }
  .story-copy__body { font-size: 13px; line-height: 2; }
  .story-person { width: min(76vw, 300px); margin-bottom: 0; }
  .story-person__profile { left: 32%; right: -2%; bottom: 0; }
  .story-person__logo { width: min(100%, 178px); margin-bottom: 5px; }
  .story-person__name { font-size: 11px; line-height: 1.4; }
  .story-person__name strong { font-size: 19px; margin-top: 1px; }
}



@media (max-width: 1000px) {
  .treatment-section__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .treatment-visual {
    order: 2;
    justify-self: center;
    width: min(640px, 86vw);
    margin: 4px auto -26px;
  }
  .treatment-copy {
    order: 1;
    justify-self: center;
    width: min(680px, 100%);
    padding-bottom: 0;
    text-align: center;
  }
  .treatment-copy__body {
    margin-inline: auto;
    text-align: left;
  }
  .strength-cards {
    grid-template-columns: 1fr;
    width: min(520px, 100%);
    margin-inline: auto;
    gap: 56px;
  }
  .strength-card__text { text-align: center; }
  .strength-section__mascot {
    width: min(780px, 116vw);
    opacity: .22;
  }
}

@media (max-width: 767px) {
  .treatment-section {
    padding: 42px 18px 0;
  }
  .treatment-copy h2 {
    font-size: clamp(31px, 9.2vw, 42px);
    line-height: 1.32;
  }
  .treatment-copy__body {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.9;
  }
  .treatment-visual {
    width: min(108vw, 500px);
    margin-left: -8vw;
    margin-bottom: -20px;
  }
  .strength-section {
    padding: 70px 18px 76px;
  }
  .strength-section__mascot {
    top: 90px;
    width: 118vw;
    opacity: .28;
  }
  .strength-heading {
    font-size: clamp(30px, 8.2vw, 42px);
  }
  .strength-cards {
    margin-top: 54px;
    gap: 60px;
  }
  .strength-card__num {
    margin-bottom: 22px;
    font-size: clamp(54px, 15vw, 72px);
  }
  .strength-card h3 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .strength-card figure {
    margin: 22px 0 22px;
    border-width: 3px;
    border-radius: 22px;
  }
  .strength-card__text {
    font-size: 14px;
    line-height: 1.8;
  }
}


/* Team / Personality */
.team-section {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--blue);
  padding: clamp(72px, 8vw, 118px) 20px 0;
}
.team-section__inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}
.team-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
.team-intro__copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .055em;
}
.team-intro__body {
  margin-top: clamp(28px, 3vw, 44px);
  width: min(560px, 100%);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 2;
  font-weight: 800;
  letter-spacing: .045em;
}
.team-intro__body p { margin: 0; }
.team-intro__body p + p { margin-top: 1.8em; }
.team-intro__photo {
  margin: 0;
  border: 0;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}
.team-intro__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.persona-panel {
  margin: clamp(70px, 8vw, 108px) auto 0;
  padding: clamp(52px, 6vw, 76px) clamp(32px, 5vw, 70px) clamp(50px, 6vw, 72px);
  background: #fff;
  color: var(--blue);
}
.persona-heading {
  margin: 0 0 clamp(40px, 5vw, 64px);
  text-align: center;
  color: #2b9cf0;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .08em;
}
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3.4vw, 46px) clamp(26px, 3vw, 42px);
}
.persona-card {
  position: relative;
  min-height: 0;
  background: #2a9cea;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(8,32,157,.10);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease, background .32s ease;
}
.persona-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(8,32,157,.18);
  background: #2095e6;
}
.persona-card__button {
  position: relative;
  width: 100%;
  min-height: 116px;
  padding: 26px 62px 24px 30px;
  border: 0;
  background: transparent;
  color: var(--yellow);
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.persona-card__button span {
  display: block;
  color: var(--yellow);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .045em;
}
.persona-card__button i {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 30px;
  height: 30px;
  border: 1.8px solid rgba(255,255,255,.9);
  border-radius: 50%;
  transition: transform .32s ease, background .32s ease;
}
.persona-card__button i::before,
.persona-card__button i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.persona-card__button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .32s ease;
}
.persona-card.is-open .persona-card__button i {
  background: rgba(255,255,255,.12);
  transform: rotate(180deg);
}
.persona-card.is-open .persona-card__button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.persona-card__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.2,.8,.2,1), opacity .32s ease;
  opacity: 0;
}
.persona-card.is-open .persona-card__content {
  grid-template-rows: 1fr;
  opacity: 1;
}
.persona-card__content-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 30px 28px;
}
.persona-card__content p {
  margin: 0;
  color: #fff;
  font-size: clamp(12px, .95vw, 14px);
  line-height: 1.82;
  font-weight: 700;
  letter-spacing: .04em;
}
.persona-card__content img {
  display: block;
  width: min(46%, 132px);
  height: 132px;
  object-fit: contain;
  margin: clamp(20px, 2vw, 26px) auto 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.persona-card:hover .persona-card__content img { transform: translateY(-4px) scale(1.04); }
.team-photo {
  position: relative;
  margin: clamp(48px, 6vw, 76px) calc(50% - 50vw) 0;
  height: clamp(360px, 44vw, 560px);
  overflow: hidden;
  background: #d7dde5;
}
.team-photo__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.team-photo__img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 100%;
  height: 128%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(-50%, calc(-50% + var(--parallax-y, 0px)), 0);
  will-change: transform;
}
.team-photo figcaption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

@media (max-width: 1000px) {
  .team-intro {
    grid-template-columns: 1fr;
  }
  .team-intro__photo {
    width: min(620px, 100%);
    justify-self: center;
  }
  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .team-section {
    padding: 56px 16px 0;
  }
  .team-intro { gap: 30px; }
  .team-intro__copy h2 {
    font-size: clamp(28px, 8.2vw, 40px);
  }
  .team-intro__body {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.9;
  }
  .persona-panel {
    margin-top: 48px;
    padding: 42px 18px 44px;
  }
  .persona-heading {
    margin-bottom: 34px;
    font-size: clamp(22px, 6.3vw, 30px);
  }
  .persona-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .persona-card {
    min-height: 0;
  }
  .persona-card__button {
    min-height: auto;
    padding: 22px 58px 20px 22px;
  }
  .persona-card__button i {
    top: 23px;
    right: 20px;
  }
  .persona-card__content-inner {
    padding: 0 22px 24px;
  }
  .persona-card__content img {
    width: 112px;
    height: 112px;
    margin-top: 18px;
  }
  .team-photo {
    margin-top: 40px;
    height: 320px;
  }
  .team-photo__img {
    height: 132%;
  }
  .team-photo figcaption {
    bottom: 14px;
  }
}


/* Field / Locations */
.field-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  padding: clamp(92px, 9vw, 130px) 0 0;
}
.field-section__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.field-section__dots {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: clamp(-20px, -1vw, 0px);
  width: min(760px, 70vw);
  max-width: none;
  transform: translateX(-46%);
  opacity: .68;
  pointer-events: none;
}
.field-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  margin-bottom: clamp(58px, 7vw, 86px);
}
.field-hero__logo {
  justify-self: center;
  width: min(430px, 100%);
}
.field-hero__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.field-hero__copy {
  max-width: 540px;
  justify-self: start;
}
.field-hero__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .045em;
}
.field-hero__lead {
  margin: clamp(26px, 3.1vw, 42px) 0 0;
  color: #fff;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.85;
  font-weight: 900;
  letter-spacing: .045em;
}
.field-hero__body {
  margin-top: clamp(26px, 3vw, 38px);
  color: #fff;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.95;
  font-weight: 800;
  letter-spacing: .04em;
}
.field-hero__body p { margin: 0; }
.field-hero__body p + p { margin-top: 1.6em; }
.facility-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 4vw, 56px) clamp(28px, 3.2vw, 44px);
}
.facility-card {
  color: #fff;
  min-width: 0;
}
.facility-card h3 {
  margin: 0 0 12px;
  text-align: center;
  color: #fff;
  font-size: clamp(20px, 1.85vw, 28px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: .045em;
}
.facility-card h3 span {
  display: inline-block;
  font-size: .72em;
}
.facility-card__image {
  display: block;
  overflow: hidden;
  border: 5px solid var(--yellow);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  text-decoration: none;
}
.facility-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 343 / 211;
  height: auto;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .55s ease;
}
.facility-card:hover .facility-card__image img {
  transform: scale(1.06);
  filter: saturate(1.08) brightness(1.03);
}
.facility-card p {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(11px, .86vw, 13px);
  line-height: 1.48;
  font-weight: 700;
  letter-spacing: .035em;
}
.facility-card p a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.55);
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}
.facility-card p a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateX(4px);
}
.field-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(76px, 7.4vw, 104px);
  overflow: hidden;
}
.field-slider__track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 2vw, 28px);
  animation: fieldSlide 54s linear infinite;
}
.field-slider:hover .field-slider__track { animation-play-state: paused; }
.field-slider figure {
  flex: 0 0 auto;
  width: clamp(300px, 31vw, 450px);
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #fff;
}
.field-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .65s ease;
}
.field-slider figure:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}
@keyframes fieldSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - clamp(9px, 1vw, 14px))); }
}

@media (max-width: 1000px) {
  .field-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .field-hero__copy {
    justify-self: center;
  }
  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .field-section {
    padding-top: 68px;
  }
  .field-section__inner {
    width: min(100% - 32px, 640px);
  }
  .field-section__dots {
    top: 62px;
    width: 130vw;
    opacity: .5;
  }
  .field-hero {
    gap: 28px;
    margin-bottom: 48px;
  }
  .field-hero__logo {
    width: min(76vw, 330px);
  }
  .field-hero__copy h2 {
    font-size: clamp(29px, 8.4vw, 42px);
  }
  .field-hero__lead,
  .field-hero__body {
    text-align: left;
  }
  .facility-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .facility-card {
    width: min(100%, 420px);
    margin-inline: auto;
  }
  .facility-card h3 {
    font-size: clamp(22px, 6.4vw, 28px);
  }
  .field-slider {
    margin-top: 56px;
  }
  .field-slider__track {
    gap: 16px;
    animation-duration: 36s;
  }
  .field-slider figure {
    width: min(76vw, 330px);
  }
}


/* Movie */
.movie-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--yellow);
  color: #fff;
  padding: clamp(94px, 9.4vw, 138px) 20px clamp(110px, 11vw, 154px);
}
.movie-marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.movie-marquee__track {
  display: flex;
  width: max-content;
  animation: movieMarquee 32s linear infinite;
}
.movie-marquee span {
  flex: 0 0 auto;
  margin-right: .36em;
  color: rgba(255,255,255,.96);
  font-family: var(--marquee-font);
  font-size: clamp(82px, 10.4vw, 154px);
  font-weight: 200;
  line-height: .78;
  letter-spacing: .04em;
  white-space: nowrap;
}
@keyframes movieMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.movie-section__inner {
  position: relative;
  z-index: 3;
  width: min(1080px, 100%);
  margin: 0 auto;
}
.movie-section__mascot {
  position: absolute;
  z-index: 1;
  top: clamp(70px, 6.5vw, 104px);
  right: max(16px, calc((100vw - 1120px) / 2 - 88px));
  width: clamp(210px, 27vw, 374px);
  max-width: none;
  pointer-events: none;
  transform: rotate(1deg);
}
.movie-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  text-shadow: 0 4px 0 rgba(0,0,0,.05);
}
.movie-heading h2 {
  margin: 0;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
}
.movie-heading p {
  margin: .42em 0 0;
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
}
.movie-main {
  position: relative;
  z-index: 5;
  width: min(1040px, 100%);
  margin: clamp(52px, 5.4vw, 76px) auto clamp(76px, 8vw, 108px);
  background: #000;
  box-shadow: 0 22px 44px rgba(129, 102, 0, .2);
}
.movie-frame,
.movie-card__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}
.movie-frame iframe,
.movie-card__player iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.movie-interviews {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}
.movie-card {
  min-width: 0;
}
.movie-card__balloon {
  position: relative;
  width: min(430px, 100%);
  min-height: 100px;
  margin: 0 auto clamp(44px, 4.5vw, 58px);
  padding: 17px 22px 15px;
  border-radius: 20px;
  background: #fff;
  color: #2a97ec;
  box-shadow: 0 12px 28px rgba(129, 102, 0, .12);
}
.movie-card__balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 28px solid #fff;
}
.movie-card__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .03em;
}
.movie-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  font-weight: 900;
  line-height: 1.25;
}
.movie-card__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 4px 13px;
  color: #fff;
  background: #2a97ec;
  font-size: 16px;
}
.movie-card__meta strong {
  font-size: clamp(19px, 2.1vw, 24px);
  color: #2a97ec;
}
.movie-card__meta small {
  font-size: 14px;
  color: #2a97ec;
}
.movie-card__player {
  box-shadow: 0 16px 32px rgba(129, 102, 0, .15);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.movie-card:hover .movie-card__player {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(129, 102, 0, .22);
}

@media (max-width: 900px) {
  .movie-section__mascot {
    width: 250px;
    right: -54px;
    top: 90px;
    opacity: .92;
  }
  .movie-main {
    margin-top: 46px;
  }
  .movie-interviews {
    grid-template-columns: 1fr;
    gap: 58px;
  }
}

@media (max-width: 767px) {
  .movie-section {
    padding: 82px 16px 90px;
  }
  .movie-marquee span {
    font-size: clamp(66px, 20vw, 92px);
  }
  .movie-section__mascot {
    width: 220px;
    right: -92px;
    top: 108px;
    opacity: .38;
  }
  .movie-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .movie-heading p {
    font-size: clamp(22px, 7vw, 32px);
  }
  .movie-main {
    margin: 38px auto 62px;
  }
  .movie-card__balloon {
    padding: 15px 17px 14px;
    margin-bottom: 38px;
    border-radius: 16px;
  }
  .movie-card__title {
    font-size: 19px;
  }
  .movie-card__meta span {
    font-size: 13px;
  }
  .movie-card__meta strong {
    font-size: 18px;
  }
  .movie-card__meta small {
    font-size: 12px;
  }
}


/* Numbers / Welfare */
.numbers-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  padding: clamp(86px, 9vw, 132px) 20px clamp(116px, 11vw, 170px);
  isolation: isolate;
}
.numbers-section__inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto;
}
.numbers-head {
  position: relative;
  min-height: clamp(154px, 20vw, 250px);
  display: grid;
  place-items: center;
  margin-bottom: clamp(30px, 5vw, 62px);
}
.numbers-head__text {
  position: relative;
  z-index: 3;
  text-align: center;
}
.numbers-head h2 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .06em;
}
.numbers-head p {
  margin: .24em 0 0;
  font-size: clamp(24px, 2.9vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
}
.numbers-head__mascot {
  position: absolute;
  z-index: 2;
  right: clamp(8px, 4vw, 52px);
  top: 50%;
  width: clamp(150px, 23vw, 250px);
  transform: translateY(-47%);
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.12));
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 26px);
}
.stat-card {
  position: relative;
  min-height: clamp(170px, 18vw, 214px);
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.7vw, 30px);
  border-radius: 12px;
  background: var(--card-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 30px rgba(0,0,0,.08);
}
.stat-card h3 {
  position: absolute;
  top: 24px;
  left: 18px;
  right: 18px;
  margin: 0;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .04em;
}
.stat-card__value {
  margin: 20px 0 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .12em;
}
.stat-card__value strong,
.stat-card__large,
.club-count strong,
.stat-card--insurance strong,
.stat-card--patients strong,
.gender-ratio strong {
  color: #fff;
  font-family: var(--marquee-font);
  font-size: clamp(58px, 7vw, 82px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.02em;
}
.stat-card__value span {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
}
.gender-ratio {
  width: min(210px, 100%);
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.gender-ratio p {
  margin: 0;
  display: grid;
  grid-template-columns: 34px 1fr auto auto;
  align-items: center;
  column-gap: 7px;
  text-align: left;
}
.gender-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}
.gender-icon--female,
.stat-card--patients strong { color: #ff80ad; }
.gender-icon--male { color: #92dcff; }
.gender-ratio em,
.stat-card--insurance span {
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
}
.gender-ratio small,
.stat-card--insurance small {
  font-size: clamp(24px, 3vw, 37px);
  font-weight: 900;
}
.stat-card--travel {
  gap: 0;
}
.stat-card__mostly {
  margin: 24px 0 4px;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1;
  font-weight: 900;
}
.stat-card__large {
  margin: 0;
  font-family: inherit;
  font-size: clamp(50px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
}
.club-count {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  margin-top: 28px;
}
.club-count ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.55;
  font-weight: 800;
}
.stat-card--insurance p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .18em;
}
.stat-card--insurance p:first-of-type { margin-top: 35px; }
.stat-card--insurance strong { font-size: clamp(48px, 5.8vw, 70px); }
.stat-card--patients p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .12em;
}
.stat-card--patients p:first-of-type { margin-top: 28px; }
.stat-card--patients strong { font-size: clamp(52px, 6.2vw, 76px); }
.stat-card--patients span {
  color: #ff9abf;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
}
.stat-card--patients em {
  color: #ff9abf;
  font-style: normal;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: .8;
  font-weight: 900;
}
.welfare-area {
  position: relative;
  margin-top: clamp(108px, 13vw, 170px);
}
.welfare-area__mascot {
  position: absolute;
  z-index: 1;
  top: -70px;
  right: clamp(-18px, 1vw, 18px);
  width: clamp(150px, 21vw, 230px);
  pointer-events: none;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.12));
}
.welfare-heading {
  position: relative;
  z-index: 2;
  margin: 0 0 clamp(42px, 6vw, 72px);
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
}
.welfare-heading span,
.welfare-heading small {
  display: block;
}
.welfare-heading span {
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.05;
}
.welfare-heading small {
  margin-top: .28em;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}
.welfare-basic-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.7vw, 28px);
}
.welfare-basic-card {
  min-height: 145px;
  padding: 28px 24px 24px;
  border-radius: 10px;
  background: #fff;
  color: var(--card-blue);
  box-shadow: 0 16px 30px rgba(0,0,0,.08);
}
.welfare-basic-card h3,
.welfare-feature-card h3,
.welfare-trip-card h3 {
  margin: 0 0 18px;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .04em;
}
.welfare-basic-card p,
.welfare-feature-card p,
.welfare-trip-card p {
  margin: 0;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.8;
  font-weight: 800;
  letter-spacing: .035em;
}
.welfare-feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 34px);
  margin-top: clamp(32px, 4vw, 48px);
}
.welfare-feature-card,
.welfare-trip-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 185px);
  gap: clamp(18px, 2.6vw, 28px);
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 12px;
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 16px 34px rgba(0,0,0,.1);
}
.welfare-feature-card figure,
.welfare-trip-card figure {
  margin: 0;
  overflow: hidden;
}
.welfare-feature-card img,
.welfare-trip-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.welfare-feature-card:hover img,
.welfare-trip-card:hover img { transform: scale(1.055); }
.welfare-trip-card {
  width: min(590px, 100%);
  margin: clamp(32px, 4.8vw, 58px) auto 0;
  background: #ff4675;
  color: #fff;
}

@media (max-width: 900px) {
  .stats-grid,
  .welfare-basic-grid,
  .welfare-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .numbers-head__mascot,
  .welfare-area__mascot { opacity: .45; }
}

@media (max-width: 767px) {
  .numbers-section { padding: 78px 16px 96px; }
  .numbers-section__inner { width: min(100%, 520px); }
  .numbers-head {
    min-height: 140px;
    margin-bottom: 32px;
  }
  .numbers-head__text { text-align: left; justify-self: start; }
  .numbers-head__mascot {
    width: 138px;
    right: -28px;
    opacity: .65;
  }
  .stats-grid,
  .welfare-basic-grid,
  .welfare-feature-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 172px; }
  .welfare-area { margin-top: 92px; }
  .welfare-area__mascot {
    width: 140px;
    top: -46px;
    right: -30px;
    opacity: .55;
  }
  .welfare-heading { text-align: left; }
  .welfare-feature-card,
  .welfare-trip-card {
    grid-template-columns: 1fr;
  }
  .welfare-feature-card figure,
  .welfare-trip-card figure {
    order: -1;
  }
}


/* Philosophy / Closing / Footer */
.philosophy-section {
  position: relative;
  min-height: clamp(650px, 76vw, 960px);
  overflow: hidden;
  color: #fff;
  background: var(--blue) url("../assets/img/sky-bg.png") center center / cover no-repeat;
  isolation: isolate;
}
.philosophy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,40,145,.08), rgba(0,40,145,.18));
}
.philosophy-marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.philosophy-marquee__track {
  display: flex;
  width: max-content;
  animation: philosophyMarquee 30s linear infinite;
}
.philosophy-marquee span {
  flex: 0 0 auto;
  color: rgba(255,255,255,.92);
  font-family: var(--marquee-font);
  font-size: clamp(54px, 7.6vw, 120px);
  font-weight: 200;
  line-height: .9;
  letter-spacing: .04em;
  white-space: nowrap;
  margin-right: .28em;
}
@keyframes philosophyMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
.philosophy-section__inner {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(92px, 10vw, 150px) 0 clamp(76px, 7vw, 110px);
}
.philosophy-panel {
  width: min(620px, 92%);
  margin-left: clamp(-60px, -4vw, 0px);
  padding: clamp(34px, 4vw, 58px) clamp(30px, 4.6vw, 64px);
  background: rgba(18, 48, 184, .88);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(3px);
}
.philosophy-panel__kicker {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
}
.philosophy-panel__kicker img {
  display: block;
  width: 36px;
  height: auto;
}
.philosophy-panel h2 {
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: #fff;
  font-size: clamp(29px, 3.2vw, 48px);
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .04em;
}
.philosophy-panel__body {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 2.05;
  font-weight: 800;
  letter-spacing: .035em;
}
.philosophy-panel__body p { margin: 0; }
.philosophy-panel__body p + p { margin-top: 1.2em; }

.philosophy-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
}
.philosophy-image-card {
  position: relative;
  min-height: clamp(245px, 26vw, 420px);
  overflow: hidden;
  isolation: isolate;
}
.philosophy-image-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .9s ease;
}
.philosophy-image-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.philosophy-image-card p {
  position: absolute;
  left: clamp(20px, 4vw, 72px);
  bottom: clamp(22px, 4vw, 56px);
  margin: 0;
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .035em;
}
.philosophy-image-card p span {
  width: fit-content;
  padding: .04em .22em .12em;
  background: var(--yellow);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.closing-section {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--blue);
  text-align: center;
  padding: clamp(86px, 9vw, 135px) 20px 0;
  isolation: isolate;
}
.closing-section__pattern {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  z-index: -1;
  background-image: url("../assets/img/renda.png");
  background-size: 420px auto;
  background-repeat: repeat;
  opacity: .32;
  animation: patternDrift 38s linear infinite;
}
@keyframes patternDrift {
  from { background-position: 0 0; }
  to { background-position: 420px 260px; }
}
.closing-section__inner {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding-bottom: clamp(300px, 32vw, 460px);
}
.closing-message h2 {
  margin: 0 0 clamp(36px, 4vw, 56px);
  font-size: clamp(36px, 5.2vw, 74px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .045em;
}
.closing-message__body {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 2.1;
  font-weight: 900;
  letter-spacing: .04em;
}
.closing-message__body p { margin: 0; }
.closing-message__body p + p { margin-top: 1.3em; }
.closing-message__line {
  display: block;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transform-origin: center bottom;
}
.closing-message.is-inview .closing-message__line {
  animation: heartfeltText .82s cubic-bezier(.18,.9,.22,1.18) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes heartfeltText {
  0% { opacity: 0; transform: translateY(22px) scale(.96); filter: blur(4px); }
  58% { opacity: 1; transform: translateY(-4px) scale(1.025); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.closing-tour-banner {
  display: block;
  width: min(780px, 92vw);
  margin: clamp(58px, 7vw, 90px) auto clamp(66px, 8vw, 102px);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.closing-tour-banner:hover {
  transform: translateY(-8px) scale(1.015);
  filter: brightness(1.03) saturate(1.08);
}
.closing-tour-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.closing-entry h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .045em;
}
.closing-entry p {
  margin: 0 auto clamp(28px, 4vw, 48px);
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.9;
  font-weight: 800;
  letter-spacing: .035em;
}
.closing-entry__main {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(210px, 22vw, 300px);
  min-height: clamp(64px, 6vw, 86px);
  padding: 0 42px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-family: var(--marquee-font);
  font-size: clamp(28px, 3.1vw, 42px);
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 0 0 6px rgba(255,255,255,.85), 0 18px 36px rgba(8,32,157,.28);
  overflow: hidden;
  animation: entryPulse 2.4s ease-in-out infinite;
}
.closing-entry__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.55) 48%, transparent 58% 100%);
  transform: translateX(-120%);
}
.closing-entry__main:hover::after { animation: entryShine .75s ease; }
@keyframes entryPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes entryShine {
  to { transform: translateX(120%); }
}
.closing-entry__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(34px, 4vw, 54px);
}
.closing-entry__buttons a {
  min-width: 160px;
  padding: 14px 18px 13px;
  border: 2px solid var(--blue);
  border-radius: 7px;
  background: #fff;
  color: var(--blue);
  text-decoration: none;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 5px 0 rgba(8,32,157,.18);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.closing-entry__buttons a:first-child {
  background: var(--blue);
  color: #fff;
}
.closing-entry__buttons a:hover {
  transform: translateY(-4px);
  background: var(--blue);
  color: #fff;
}
.closing-banzai {
  position: absolute;
  left: 50%;
  bottom: -118px;
  width: clamp(210px, 29vw, 360px);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.12));
  animation: banzaiFloat 4.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes banzaiFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-10px) rotate(1deg); }
}

.site-footer {
  background: var(--blue);
  color: #fff;
  padding: clamp(70px, 8vw, 120px) 20px 32px;
  text-align: center;
}
.site-footer__inner {
  width: min(980px, 100%);
  margin: 0 auto;
}
.site-footer__logo {
  display: block;
  width: min(300px, 62vw);
  margin: 0 auto clamp(48px, 6vw, 76px);
}
.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 7vw, 100px);
  text-align: left;
}
.site-footer__menu h2 {
  margin: 0 0 14px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
}
.site-footer__menu a {
  display: block;
  width: fit-content;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.8;
  font-weight: 700;
  transition: color .22s ease, transform .22s ease;
}
.site-footer__menu a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}
.site-footer__copy {
  margin: clamp(60px, 7vw, 88px) 0 0;
  color: rgba(255,255,255,.72);
  font-family: var(--marquee-font);
  font-size: 11px;
  letter-spacing: .04em;
}

@media (max-width: 900px) {
  .philosophy-panel { margin-left: 0; }
  .philosophy-image-grid { grid-template-columns: 1fr; }
  .site-footer__menus { grid-template-columns: 1fr; text-align: center; }
  .site-footer__menu a { margin-inline: auto; }
}

@media (max-width: 767px) {
  .philosophy-section { min-height: 620px; }
  .philosophy-section__inner { width: min(100% - 32px, 520px); padding-top: 110px; justify-content: center; }
  .philosophy-panel { width: 100%; padding: 28px 22px; }
  .philosophy-panel h2 { font-size: clamp(26px, 8vw, 36px); }
  .philosophy-image-card { min-height: 260px; }
  .philosophy-image-card p { left: 18px; bottom: 18px; font-size: clamp(22px, 7vw, 34px); }
  .closing-section { padding-inline: 16px; }
  .closing-section__inner { padding-bottom: 210px; }
  .closing-message h2 { font-size: clamp(32px, 9.6vw, 46px); }
  .closing-message__body { font-size: 15px; line-height: 2; }
  .closing-entry__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .closing-entry__buttons a { min-width: 0; padding-inline: 10px; }
  .closing-banzai { width: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}



/* =========================
   v29 mobile/layout fixes
========================= */
.drawer__title {
  color: #fff;
  font-family: var(--marquee-font);
  font-size: clamp(30px, 7vw, 62px);
  font-weight: 300;
  letter-spacing: .045em;
  line-height: 1;
  text-align: center;
}
.drawer__title span,
.drawer__title small { display: block; }
.drawer__title small {
  margin-top: .4em;
  color: var(--yellow);
  font-size: .34em;
  font-weight: 800;
  letter-spacing: .38em;
  text-indent: .38em;
}
.movie-marquee { top: 0; }

/* 数字カードの長い見出しだけ、数値と重ならない構造にする */
.stat-card--patients {
  justify-content: center;
  gap: 2px;
}
.stat-card--patients h3 {
  position: static;
  inset: auto;
  margin: 0 0 16px;
}
.stat-card--patients p:first-of-type { margin-top: 0; }

@media (max-width: 767px) {
  .drawer__inner {
    gap: 18px;
    padding: 84px 14px 34px;
  }
  .drawer__title {
    font-size: clamp(31px, 9.4vw, 43px);
  }
  .drawer__nav { gap: 12px; }
  .drawer__nav a {
    padding: 16px 54px 16px 18px;
    font-size: 16px;
  }

  /* ② スマホ時の改行バランス調整 */
  .story-section { padding-top: 48px; }
  .story-copy { padding-bottom: 28px; }
  .story-copy h2 {
    width: max-content;
    max-width: 100%;
    margin: 0 auto 30px;
    font-size: clamp(21px, 6.65vw, 34px);
    line-height: 1.52;
    letter-spacing: .01em;
    text-align: center;
  }
  .story-copy h2 span {
    display: block;
    white-space: nowrap;
  }
  .story-copy__body {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.9;
  }

  /* ③ 代表者ロゴ・名前の位置調整 */
  .story-person {
    width: min(80vw, 320px);
    margin: 10px auto 0;
  }
  .story-person__profile {
    left: 50%;
    right: auto;
    bottom: 22px;
    width: min(84%, 244px);
    transform: translateX(-50%);
  }
  .story-person__logo {
    width: min(100%, 190px);
    margin-bottom: 4px;
  }
  .story-person__name {
    font-size: 10.5px;
    line-height: 1.35;
  }
  .story-person__name strong {
    font-size: 18px;
    line-height: 1.08;
  }

  /* ④ 黄色セクション見出しのはみ出し対策 */
  .treatment-copy h2 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.46;
    letter-spacing: .015em;
  }
  .treatment-copy h2 span {
    display: block;
    white-space: normal;
  }

  /* ⑤ 3つの力の見出しを1行＋1行のバランスにする */
  .strength-heading {
    width: 100%;
    margin-inline: auto;
    font-size: clamp(23px, 6.7vw, 34px);
    line-height: 1.42;
    letter-spacing: .02em;
  }
  .strength-heading span {
    white-space: nowrap;
  }
  .strength-heading strong {
    margin-top: .1em;
    font-size: 1.18em;
  }

  /* ⑦ 施術人数カードの文字かぶり修正 */
  .stat-card--patients {
    min-height: 176px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .stat-card--patients h3 {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.35;
  }
  .stat-card--patients strong { font-size: clamp(46px, 14vw, 62px); }
  .stat-card--patients em { font-size: clamp(30px, 9vw, 44px); }

  /* ⑧ クロージングのキャラをボタンより下に下げる */
  .closing-section__inner {
    padding-bottom: 270px;
  }
  .closing-banzai {
    bottom: -72px;
    width: 218px;
  }
}

@media (max-width: 360px) {
  .story-copy h2 { font-size: clamp(20px, 6.25vw, 23px); }
  .strength-heading { font-size: 22px; }
  .treatment-copy h2 { font-size: 25px; }
}


/* v31 drawer logo swap */
.drawer__title--logo {
  margin: 0 auto 4px;
  width: min(440px, 88vw);
  max-width: 100%;
  line-height: 0;
}
.drawer__title--logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .drawer__title--logo {
    width: min(360px, 82vw);
    margin-bottom: 6px;
  }
}


/* v32 desktop fix: lower closing mascot to avoid button overlap */
@media (min-width: 768px) {
  .closing-entry__buttons { margin-bottom: 24px; }
}




/* v35 drawer logo balance + animation */
.drawer__title--logo {
  position: relative;
  width: min(300px, 70vw);
  margin: -20px auto 10px;
  text-align: center;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  filter: blur(4px);
}
.drawer__title--logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.drawer__recruit {
  display: block;
  margin-top: 12px;
  color: var(--yellow);
  font-family: var(--marquee-font);
  font-size: clamp(12px, 2.9vw, 16px);
  font-weight: 800;
  letter-spacing: .42em;
  text-indent: .42em;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
}
.drawer.is-open .drawer__title--logo {
  animation: drawerLogoReveal .7s cubic-bezier(.18,.9,.22,1.12) .16s forwards;
}
.drawer.is-open .drawer__recruit {
  animation: drawerRecruitReveal .55s ease .36s forwards;
}
.drawer__nav a {
  opacity: 0;
}
.drawer.is-open .drawer__nav a {
  animation: drawerMenuItemReveal .46s cubic-bezier(.2,.8,.2,1) forwards;
}
.drawer.is-open .drawer__nav a:nth-child(1) { animation-delay: .44s; }
.drawer.is-open .drawer__nav a:nth-child(2) { animation-delay: .50s; }
.drawer.is-open .drawer__nav a:nth-child(3) { animation-delay: .56s; }
.drawer.is-open .drawer__nav a:nth-child(4) { animation-delay: .62s; }
.drawer.is-open .drawer__nav a:nth-child(5) { animation-delay: .68s; }
@keyframes drawerLogoReveal {
  0% { opacity: 0; transform: translateY(18px) scale(.96); filter: blur(4px); }
  58% { opacity: 1; transform: translateY(-4px) scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes drawerRecruitReveal {
  from { opacity: 0; transform: translateY(8px); letter-spacing: .7em; }
  to { opacity: 1; transform: translateY(0); letter-spacing: .42em; }
}
@keyframes drawerMenuItemReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 767px) {
  .drawer__inner {
    align-content: start;
    padding-top: 88px;
    gap: 14px;
  }
  .drawer__title--logo {
    width: min(238px, 66vw);
    margin: -8px auto 8px;
  }
  .drawer__recruit {
    margin-top: 9px;
    font-size: 12px;
    letter-spacing: .38em;
    text-indent: .38em;
  }
  .drawer__nav {
    width: min(100%, 350px);
  }
  .drawer__nav a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
@media (max-width: 360px) {
  .drawer__title--logo { width: min(220px, 64vw); }
  .drawer__inner { padding-top: 82px; }
}
