*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #4d4c46;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #4d4c46;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.site-header__bar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .site-header__bar {
    min-height: 3.75rem;
    padding: 0.75rem 0.75rem 0.75rem 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .site-header__bar {
    min-height: 6rem;
    padding: 1.25rem;
  }
}

.site-header__brand img {
  display: block;
  width: clamp(200px, 40vw, 317px);
  height: auto;
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1023px) {
  .site-header__brand img {
    width: 18rem;
    max-width: min(18rem, 100% - 4.5rem);
    height: 2.25rem;
    object-fit: contain;
    object-position: left center;
  }
}
@media (min-width: 1024px) {
  .site-header__brand img {
    width: clamp(250px, 24vw, 317px);
    max-width: clamp(250px, 24vw, 317px);
    height: auto;
    max-height: none;
  }
}

.site-header__brand:hover img,
.site-header__brand:focus-visible img {
  opacity: 0.82;
  transform: translateY(-1px);
}

.site-header__menu {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: auto;
  min-width: 2.375rem;
  margin: 0 0 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  flex-shrink: 0;
  color: #4d4c46;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__menu .site-header__menu-bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.site-header__menu .site-header__menu-bars span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__menu .site-header__menu-caption {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.48px;
  color: currentColor;
}
@media (min-width: 1024px) {
  .site-header__menu {
    display: none;
    margin-left: 0;
  }
}

.site-header__menu:hover,
.site-header__menu:focus-visible {
  color: #7fae92;
}
.site-header__menu:hover .site-header__menu-bars span,
.site-header__menu:focus-visible .site-header__menu-bars span {
  background: #7fae92;
}
.site-header__menu:hover .site-header__menu-bars span:first-child,
.site-header__menu:focus-visible .site-header__menu-bars span:first-child {
  transform: translateX(0.1875rem);
}
.site-header__menu:hover .site-header__menu-bars span:last-child,
.site-header__menu:focus-visible .site-header__menu-bars span:last-child {
  transform: translateX(-0.1875rem);
}

@media (max-width: 1023px) {
  .site-header__nav {
    display: none;
  }
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.75rem, 1.6vw, 2rem);
    margin-left: auto;
  }
}

.site-header__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 500;
}
.site-header__links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__links a:hover {
  color: #7fae92;
}
.site-header__links a:focus-visible {
  color: #7fae92;
  outline: 2px solid rgba(127, 174, 146, 0.45);
  outline-offset: 0.25rem;
}
@media (min-width: 1024px) {
  .site-header__links {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
  .site-header__links a {
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .site-header__links--primary {
    gap: clamp(0.75rem, 1.4vw, 2rem);
    font-size: clamp(0.8125rem, 0.72rem + 0.24vw, 1rem);
    line-height: 1.5;
  }
  .site-header__links--primary li {
    flex: 0 0 auto;
  }
  .site-header__links--primary a {
    white-space: nowrap;
    word-break: keep-all;
  }
}

@media (min-width: 1024px) {
  .site-header__links--sub {
    gap: clamp(0.5rem, 1.1vw, 1.25rem);
    font-size: clamp(0.75rem, 0.7rem + 0.14vw, 0.875rem);
    line-height: 1.5;
  }
  .site-header__links--sub li {
    flex: 0 0 auto;
  }
  .site-header__links--sub a {
    white-space: nowrap;
    word-break: keep-all;
  }
}

.site-header__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__nav-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  line-height: 0;
  color: #7fae92;
  transition: background-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__nav-ico svg,
.site-header__nav-ico img {
  display: block;
}
.site-header__nav-ico img {
  width: 0.75rem;
  height: auto;
}

.site-header__link--icon:hover .site-header__nav-ico,
.site-header__link--icon:focus-visible .site-header__nav-ico {
  background: rgb(240, 250, 242);
  transform: translateY(-1px);
}

.site-header__tel {
  font-family: "Libre Baskerville", serif;
  text-decoration: none;
  white-space: nowrap;
  color: #4d4c46;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__tel:hover, .site-header__tel:focus-visible {
  color: #7fae92;
  opacity: 0.9;
}
@media (min-width: 1024px) {
  .site-header__tel {
    display: flex;
    align-items: baseline;
    gap: 0.12em;
    line-height: 1;
  }
  .site-header__tel .site-header__tel-prefix {
    font-size: clamp(0.8125rem, 0.7rem + 0.22vw, 1rem);
  }
  .site-header__tel .site-header__tel-num {
    font-size: clamp(1.25rem, 1.05rem + 0.45vw, 1.5rem);
  }
}

body.is-sp-menu-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .sp-menu {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .sp-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    flex-direction: column;
    min-height: 100dvh;
    max-height: 100dvh;
    opacity: 1;
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sp-menu[hidden] {
    display: none !important;
  }
  .sp-menu:not([hidden]) {
    display: flex;
  }
  .sp-menu.is-open {
    opacity: 1;
  }
  .sp-menu.is-closing {
    opacity: 0;
  }
}
.sp-menu__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sp-menu__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-menu__bg-scrim {
  position: absolute;
  inset: 0;
  background: #a18b84;
  opacity: 0;
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  box-sizing: border-box;
  min-height: 3.75rem;
  padding: 0.75rem 0.75rem 0.75rem 0.9375rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  backdrop-filter: blur(6px);
  background: rgba(245, 250, 247, 0.9);
  opacity: 0;
  transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-menu__brand {
  line-height: 0;
  display: block;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.sp-menu__brand img {
  display: block;
  width: 18rem;
  max-width: min(18rem, 100% - 4.5rem);
  height: 2.25rem;
  object-fit: contain;
  object-position: left center;
}

.sp-menu__close {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  flex-shrink: 0;
  color: #4d4c46;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-menu__close:hover, .sp-menu__close:focus-visible {
  color: #7fae92;
}

.sp-menu__close-ico {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.sp-menu__close-ico span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-menu__close-ico span:first-child {
  transform: translateY(-50%) rotate(25deg);
}
.sp-menu__close-ico span:last-child {
  transform: translateY(-50%) rotate(-25deg);
}

.sp-menu__close-cap {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.48px;
}

.sp-menu__body {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-height: 0;
  padding: 2.5rem 0.9375rem calc(1.5rem + env(safe-area-inset-bottom, 0));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(6px);
  background: rgba(245, 250, 247, 0.9);
  opacity: 0;
  transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-menu.is-open .sp-menu__bg-scrim {
  opacity: 0.18;
}
.sp-menu.is-open .sp-menu__head,
.sp-menu.is-open .sp-menu__body {
  opacity: 1;
}
.sp-menu.is-open .sp-menu__inner {
  opacity: 1;
  transform: translateY(0);
}

.sp-menu.is-closing .sp-menu__bg-scrim {
  opacity: 0;
}
.sp-menu.is-closing .sp-menu__head,
.sp-menu.is-closing .sp-menu__body,
.sp-menu.is-closing .sp-menu__inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.sp-menu__inner {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(0.375rem);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}

.sp-menu__primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4d4c46;
  text-align: center;
}
.sp-menu__primary a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-menu__primary a:hover, .sp-menu__primary a:focus-visible {
  color: #7fae92;
  transform: translateY(-1px);
}

.sp-menu__subrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.25rem;
}

.sp-menu__subitem {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4d4c46;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-menu__subitem:hover, .sp-menu__subitem:focus-visible {
  color: #7fae92;
  transform: translateY(-1px);
}

.sp-menu__box {
  box-sizing: border-box;
  width: 100%;
  padding: 1.25rem;
  border: 1px solid #d9d6d4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.sp-menu__tel {
  display: block;
  margin: 0;
  text-align: center;
  font-family: "Libre Baskerville", serif;
  font-style: normal;
  color: #4d4c46;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-menu__tel:hover, .sp-menu__tel:focus-visible {
  color: #7fae92;
  opacity: 0.9;
}

.sp-menu__tel-prefix {
  margin-right: 0.1em;
  font-size: 1rem;
  line-height: 1;
}

.sp-menu__tel-num {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.sp-menu__ctas {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sp-menu__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  width: 100%;
  padding: 0.5rem 1.25rem;
  border-radius: 3rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.07em;
  text-decoration: none;
  color: #fff;
  transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), filter 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-menu__btn--primary {
  background: #043a77;
}
.sp-menu__btn--accent {
  background: #b35864;
}
.sp-menu__btn img {
  flex-shrink: 0;
}
.sp-menu__btn:is(a):hover, .sp-menu__btn:is(a):focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}
.sp-menu__btn:is(a):active {
  transform: translateY(0);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  color: #4d4c46;
}

.hero__stage {
  position: relative;
  min-height: 31.25rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .hero__stage {
    overflow: visible;
  }
}
@media (min-width: 1024px) {
  .hero__stage {
    min-height: clamp(42rem, 100svh - 6rem, 55.625rem);
  }
}

.hero__stage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: clamp(24rem, 52svh, 34rem);
  background: linear-gradient(180deg, rgba(245, 250, 247, 0.58) 0%, rgba(245, 250, 247, 0.42) 42%, rgba(245, 250, 247, 0) 100%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 1023px) {
  .hero__stage::after {
    height: 27rem;
    background: linear-gradient(180deg, rgba(245, 250, 247, 0.64) 0%, rgba(245, 250, 247, 0.46) 48%, rgba(245, 250, 247, 0) 100%);
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #7fae92;
  opacity: 0.28;
  pointer-events: none;
}

.hero__main {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 2.5rem 1.25rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .hero__main {
    min-height: clamp(42rem, 100svh - 6rem, 55.625rem);
    padding: 6rem 1.25rem 3.5rem;
    gap: 3.25rem;
  }
}

.hero__main::before {
  content: "";
  position: absolute;
  top: 5.75rem;
  left: 50%;
  z-index: -1;
  width: min(42rem, 90vw);
  height: 14rem;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0) 76%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero__main::before {
    top: 7rem;
    width: min(46rem, 68vw);
    height: 15rem;
  }
}

.hero__intro {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  color: #4a4944;
}

.hero__intro-mark {
  position: absolute;
  top: -2.75rem;
  left: calc(50% - 15.5rem);
  z-index: 0;
  width: 7.25rem;
  height: auto;
  opacity: 0.12;
  filter: saturate(0.68) brightness(1.14);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 1023px) {
  .hero__intro-mark {
    top: -0.5rem;
    left: 1.75rem;
    opacity: 0.14;
  }
}
@media (min-width: 1024px) {
  .hero__intro-mark {
    top: -3.25rem;
    left: calc(50% - 16.75rem);
    width: 8.5rem;
  }
}

.hero__intro-h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  padding-bottom: 1.75rem;
}
@media (max-width: 1023px) {
  .hero__intro-h1 {
    gap: 0.2em;
  }
}
@media (min-width: 1024px) {
  .hero__intro-h1 {
    gap: 0.35em;
  }
}

.hero__intro-h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: min(5rem, 24vw);
  height: 1px;
  transform: translateX(-50%);
  background: rgba(127, 174, 146, 0.5);
}

.hero__intro-clinic {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #043a77;
  text-shadow: 0 0 1.25em rgba(255, 255, 255, 0.55);
}
@media (max-width: 1023px) {
  .hero__intro-clinic {
    font-size: clamp(0.9375rem, 3.85vw, 1.1875rem);
    line-height: 1.35;
    letter-spacing: 0.02em;
  }
}

.hero__intro-brand {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em 0.35em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.85vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0.06em;
  color: #043a77;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45), 0 0.5rem 1.75rem rgba(77, 76, 70, 0.1), 0 0 1.25em rgba(255, 255, 255, 0.6);
}
@media (max-width: 1023px) {
  .hero__intro-brand {
    font-size: clamp(1.1875rem, 5.25vw, 1.5625rem);
    line-height: 1.25;
    letter-spacing: 0.04em;
  }
}

.hero__intro-lead {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  box-sizing: border-box;
  margin: 0.875rem 0 0;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 1.35vw, 0.9375rem);
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #5a5954;
  text-shadow: 0 0 1.25em rgba(255, 255, 255, 0.58);
}
@media (max-width: 1023px) {
  .hero__intro-lead {
    gap: 0.35rem;
    margin-top: 1rem;
    max-width: 21rem;
  }
}

.hero__intro-anniversary {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #4d4c46;
}

.hero__intro-anniversary-label {
  font-size: clamp(1.125rem, 2.4vw, 1.625rem);
}
@media (max-width: 1023px) {
  .hero__intro-anniversary-label {
    font-size: 1.25rem;
  }
}

.hero__intro-anniversary-num {
  margin: 0 -0.02em;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.75rem, 4.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #043a77;
}

.hero__intro-lead-line {
  display: block;
}

.hero__intro-lead-line--main {
  margin-top: 0.375rem;
  font-weight: 700;
  font-size: clamp(1rem, 2.1vw, 1.375rem);
  letter-spacing: 0.08em;
  color: #4d4c46;
}
@media (max-width: 1023px) {
  .hero__intro-lead-line--main {
    font-size: 1.125rem;
    line-height: 1.55;
  }
}

.hero__intro-lead-link {
  text-decoration: none;
  color: rgba(4, 58, 119, 0.78);
  background-image: linear-gradient(rgba(127, 174, 146, 0.32), rgba(127, 174, 146, 0.32));
  background-repeat: no-repeat;
  background-size: 100% 0.45em;
  background-position: 0 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), background-size 0.18s cubic-bezier(0.4, 0, 0.2, 1), background-image 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__intro-lead-link:hover, .hero__intro-lead-link:focus-visible {
  color: #043a77;
  background-image: linear-gradient(rgba(127, 174, 146, 0.48), rgba(127, 174, 146, 0.48));
  background-size: 100% 0.52em;
}
.hero__intro-lead-link:focus-visible {
  outline: 2px solid #7fae92;
  outline-offset: 3px;
  border-radius: 2px;
}

.hero__intro-lead-line--sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.75rem;
  margin-top: 0.125rem;
  padding: 0.25rem 0.875rem;
  border: 1px solid rgba(127, 174, 146, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #66645d;
  backdrop-filter: blur(2px);
}
.hero__intro-lead-line--sub span {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.hero__intro-lead-line--sub span + span::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: rgba(127, 174, 146, 0.7);
}
@media (max-width: 1023px) {
  .hero__intro-lead-line--sub {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.375rem;
    width: auto;
    max-width: calc(100vw - 1.5rem);
    overflow: visible;
    padding: 0.5rem 0.625rem;
    border-radius: 0.875rem;
    font-size: clamp(0.625rem, 2.7vw, 0.6875rem);
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .hero__intro-lead-line--sub span + span::before {
    width: 0.1875rem;
    height: 0.1875rem;
    margin-right: 0.375rem;
  }
}
@media (max-width: 360px) {
  .hero__intro-lead-line--sub {
    flex-wrap: wrap;
    max-width: 20rem;
    border-radius: 0.75rem;
    font-size: 0.625rem;
  }
  .hero__intro-lead-line--sub span + span::before {
    margin-right: 0.375rem;
  }
}

.hero__intro-facility-label {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(127, 174, 146, 0.16);
  color: #5f7568;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .hero__intro-facility-label {
    flex-basis: 100%;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 0.125rem;
  }
}

.hero__card-center {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding-top: 1rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 1024px) {
  .hero__card-center {
    padding-top: 0;
    padding-bottom: 4rem;
  }
}

.hours-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .hours-layout {
    grid-template-columns: minmax(0, 36.25rem) minmax(18rem, 1fr);
    justify-content: center;
    gap: 2rem;
  }
}

.hours-card {
  box-sizing: border-box;
  max-width: 36.25rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgba(77, 76, 70, 0.08);
  padding: 1.25rem 1.1171875rem 1.25rem;
  border: none;
}
@media (max-width: 1023px) {
  .hours-card {
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .hours-card {
    min-height: 21.8125rem;
  }
}

.hours-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hours-table__col-label {
  width: 34.45%;
}

.hours-table {
  width: 100%;
  min-width: 17.5rem;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: #4d4c46;
}
.hours-table thead th {
  padding: 0 0.125rem 0.6875rem;
  border-bottom: 1px solid #d9d6d4;
  vertical-align: bottom;
  font-weight: normal;
}
.hours-table thead th.hours-table__head-label {
  padding-left: 0;
  text-align: center;
}
.hours-table tbody th,
.hours-table tbody td {
  padding: 0.5rem 0.125rem;
  border-bottom: 1px solid #d9d6d4;
  vertical-align: middle;
}
.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td {
  border-bottom: none;
}
.hours-table tbody th.hours-table__row-head {
  font-weight: 500;
  white-space: normal;
}

.hours-table__row-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  text-align: center;
}

.hours-table__label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
}

.hours-table__time {
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
}

.hours-table__mark {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.hours-table__mark--open {
  color: #7fae92;
}

.hours-table__mark--closed {
  color: #4d4c46;
}

.hours-card__note {
  box-sizing: border-box;
  width: calc(100% - 2.25rem);
  margin: 0.5rem auto 0;
  min-height: 2rem;
  padding: 0.375rem 1.875rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  background: #f0faf4;
  color: #4d4c46;
}
@media (max-width: 1023px) {
  .hours-card__note {
    width: 100%;
    margin: 1rem 0 0;
    padding: 0.5rem 1.25rem;
  }
}

.booking-cta {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.125rem;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(217, 214, 212, 0.7);
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgba(77, 76, 70, 0.08);
  padding: 1.25rem;
  color: #4d4c46;
  scroll-margin-top: 5rem;
}
@media (max-width: 1023px) {
  .booking-cta {
    gap: 0.875rem;
    padding: 1.25rem 1rem;
  }
}
@media (min-width: 1024px) {
  .booking-cta {
    gap: 1.25rem;
    scroll-margin-top: 7rem;
  }
}

.booking-cta--hours {
  max-width: 36.25rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .booking-cta--hours {
    max-width: none;
    min-height: 21.8125rem;
    padding: 2rem;
  }
}

.booking-cta__eyebrow {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #7fae92;
  text-align: center;
}
@media (max-width: 1023px) {
  .booking-cta__eyebrow {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .booking-cta__eyebrow {
    text-align: left;
  }
}

.booking-cta__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.125rem auto 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-align: center;
  color: #4d4c46;
}
@media (max-width: 1023px) {
  .booking-cta__title {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    max-width: 21rem;
    font-size: clamp(1.0625rem, 5.1vw, 1.25rem);
    line-height: 1.45;
    letter-spacing: 0.025em;
  }
  .booking-cta__title span {
    display: block;
  }
}
@media (min-width: 1024px) {
  .booking-cta__title {
    margin-left: 0;
    text-align: left;
  }
}

.booking-cta__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.125rem;
  text-decoration: none;
  color: #4d4c46;
}
@media (min-width: 1024px) {
  .booking-cta__tel {
    align-items: flex-start;
  }
}

.booking-cta__tel-label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #a18b84;
}

.booking-cta__tel-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  font-family: "Libre Baskerville", serif;
  line-height: 1;
}

.booking-cta__tel-prefix {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
}
@media (max-width: 1023px) {
  .booking-cta__tel-prefix {
    font-size: 0.875rem;
  }
}

.booking-cta__tel-num {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #7fae92;
}
@media (max-width: 1023px) {
  .booking-cta__tel-num {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
  }
}

.site-cta-bar {
  z-index: 40;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 1;
}
@media (max-width: 1023px) {
  .site-cta-bar {
    position: fixed;
    left: auto;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    padding: 0 0.75rem calc(1rem + env(safe-area-inset-bottom, 0)) 0;
    pointer-events: none;
  }
}
@media (min-width: 1024px) {
  .site-cta-bar {
    position: fixed;
    right: 1.25rem;
    bottom: 1rem;
    left: auto;
    top: auto;
    padding: 0;
    pointer-events: auto;
  }
}

.site-cta-bar.is-hidden,
.site-cta-bar.is-scrolling {
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
}
.site-cta-bar.is-hidden .site-cta-bar__inner,
.site-cta-bar.is-scrolling .site-cta-bar__inner {
  pointer-events: none;
}

.site-cta-bar__inner {
  pointer-events: auto;
}
@media (max-width: 1023px) {
  .site-cta-bar__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: auto;
    gap: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .site-cta-bar__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    width: auto;
    max-width: none;
  }
}

.site-cta-bar__btn {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  color: #fff;
  transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), filter 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1023px) {
  .site-cta-bar__btn {
    flex: 0 0 auto;
    width: 7.25rem;
    min-width: 7.25rem;
    min-height: 7.25rem;
    padding: 1.125rem;
    font-size: 0.875rem;
    letter-spacing: 1.04px;
  }
}
@media (min-width: 1024px) {
  .site-cta-bar__btn {
    flex: 0 0 auto;
    width: 8.5rem;
    min-height: 8.5rem;
    padding: 1.375rem;
    font-size: 1.125rem;
    letter-spacing: 1.12px;
  }
}
.site-cta-bar__btn--primary {
  background: #043a77;
  box-shadow: 0 0 20px rgba(89, 122, 103, 0.4);
}
@media (min-width: 1024px) {
  .site-cta-bar__btn--primary {
    min-width: 10rem;
  }
}
.site-cta-bar__btn--accent {
  background: #b35864;
  box-shadow: 0 0 20px rgba(166, 91, 91, 0.4);
}
@media (min-width: 1024px) {
  .site-cta-bar__btn--accent {
    min-width: 10rem;
  }
}
.site-cta-bar__btn img {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}
.site-cta-bar__btn .site-cta-bar__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28), 0 0 1px rgba(0, 0, 0, 0.18);
}
.site-cta-bar__btn:is(a):hover, .site-cta-bar__btn:is(a):focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}
.site-cta-bar__btn:is(a):active {
  transform: translateY(0);
}

.hero__card {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.375rem 1.75rem 1.5rem;
  width: min(100%, 23.75rem);
  min-height: 12.25rem;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(6px) saturate(1.05);
  backdrop-filter: blur(6px) saturate(1.05);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset, 0 4px 28px rgba(77, 76, 70, 0.09);
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__card {
    padding: 1.625rem 2rem 1.75rem;
  }
}
@supports not (backdrop-filter: blur(1px)) {
  .hero__card {
    background: rgba(255, 255, 255, 0.9);
  }
}

.hero__card-title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 1.275rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #4d4c46;
  text-wrap: balance;
}

.hero__card-title-lead {
  display: inline-block;
  color: #043a77;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.15rem + 0.85vw, 1.625rem);
  letter-spacing: 0.1em;
}

.hero__card-sub {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.275rem;
  line-height: 1.3;
  letter-spacing: 0.16em;
  color: #4d4c46;
}

.hero__card-sub-line {
  display: block;
}

.hero__card-open {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 18.75rem;
  max-width: 100%;
  min-height: 2.125rem;
  padding: 0.125rem 0.75rem;
  border-radius: 4px;
  background: #043a77;
  color: #fff;
}

.hero__card-open-inner {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 1023px) {
  .hero__card-open-inner {
    font-size: 1.35rem;
    white-space: nowrap;
  }
}

.hero__card-open-date {
  letter-spacing: 0.2em;
}
@media (max-width: 1023px) {
  .hero__card-open-date {
    letter-spacing: 0.1em;
  }
}

.hero__card-open-num {
  letter-spacing: 0.246em;
}
@media (max-width: 1023px) {
  .hero__card-open-num {
    letter-spacing: 0.12em;
  }
}

.hero__card-open-tail {
  margin-left: 0.12em;
  letter-spacing: 0.2em;
}
@media (max-width: 1023px) {
  .hero__card-open-tail {
    margin-left: 0.08em;
    letter-spacing: 0.1em;
  }
}

.section {
  padding: 2.5rem 0;
  scroll-margin-top: 5rem;
}
@media (min-width: 1024px) {
  .section {
    scroll-margin-top: 7rem;
  }
}
.section--news {
  background: #f5faf7;
}
.section--hours {
  background: #f5faf7;
  padding-top: 0;
}
.section--greeting {
  background: #f5faf7;
}
.section--features {
  background: #f5faf7;
}
.section--medical {
  background: #f5faf7;
}
.section--access {
  background: #f5faf7;
  padding-bottom: 0;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section__deco {
  width: 11px;
  height: 60px;
  object-fit: contain;
}

.section__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1;
}

.section__en {
  font-family: "Libre Baskerville", serif;
  font-size: 0.875rem;
  color: #7fae92;
  letter-spacing: 0.08em;
  margin: 0.25rem 0 0;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d9d6d4;
  border-radius: 4px;
  padding: 1.25rem;
  overflow: hidden;
}

.news-card + .news-card {
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .news-card + .news-card {
    margin-top: 1.25rem;
  }
}

.news-card__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.news-card__summary::-webkit-details-marker {
  display: none;
}

.news-card__chevron {
  position: relative;
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #7fae92;
}
.news-card__chevron::before, .news-card__chevron::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.news-card__chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.news-card[open] .news-card__chevron::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.6);
}

.news-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: height 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}
@media (min-width: 768px) {
  .news-card__body {
    display: grid;
    grid-template-columns: minmax(0, 47.75rem) 23rem;
    column-gap: 1.75rem;
    row-gap: 1.25rem;
    align-items: start;
    width: 100%;
  }
}

.news-card__date {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #7fae92;
}

.news-card__title {
  margin: 0.125rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 4px;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card__title a {
  text-decoration: inherit;
  color: inherit;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card__title a:hover, .news-card__title a:focus-visible {
  color: #7fae92;
}

.news-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #4d4c46;
}
.news-card__text p {
  margin: 0 0 1.25rem;
}
.news-card__text p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .news-card__text {
    grid-column: 1;
    max-width: 47.75rem;
  }
}

.news-card__thumb {
  overflow: hidden;
  flex-shrink: 0;
}
.news-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .news-card__thumb {
    grid-column: 2;
    justify-self: end;
    width: 23rem;
    height: 13rem;
  }
}

.greeting__head {
  margin-bottom: 2rem;
}

.greeting__split {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.greeting__text-col {
  position: relative;
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .greeting__text-col {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
  }
}
@media (min-width: 1024px) {
  .greeting__text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-sizing: border-box;
    text-align: center;
  }
}

.greeting__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  width: 100%;
}

.greeting__lead {
  width: 100%;
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #4d4c46;
  text-align: left;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .greeting__lead {
    text-align: center;
  }
}

.greeting__prose {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1.75;
  color: #4d4c46;
  text-align: left;
}
.greeting__prose p {
  margin: 0;
}

.greeting__closing {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.greeting__closing p {
  margin: 0;
}

.greeting__sign {
  width: 100%;
  margin: 0;
  text-align: right;
  font-size: 1rem;
  line-height: 1.75;
  color: #4d4c46;
}
.greeting__sign p {
  margin: 0;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.feature-card {
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgba(77, 76, 70, 0.08);
  padding: 1.25rem;
  container-type: inline-size;
}
@media (min-width: 1024px) {
  .feature-card {
    padding: 1.75rem 2rem 1.75rem;
  }
}

.feature-card__media {
  overflow: hidden;
  margin: 0 0 1.25rem;
  aspect-ratio: 305/170;
}
@media (min-width: 1024px) {
  .feature-card__media {
    margin-bottom: 2rem;
    aspect-ratio: 516/289;
  }
}
.feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .feature-card__head {
    justify-content: center;
  }
}

.feature-card__num {
  margin: 0;
  flex-shrink: 0;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: #7fae92;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) {
  .feature-card__num {
    font-size: 2rem;
  }
}

.feature-card__title {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #4d4c46;
}
@media (min-width: 1024px) {
  .feature-card__title {
    flex: 0 1 auto;
    max-width: calc(100% - 5.5rem);
    font-size: clamp(1.2rem, 0.65rem + 2.35cqi, 1.5rem);
    text-align: left;
  }
}

.feature-card p:not(.feature-card__num) {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #4d4c46;
}

.section--medical {
  padding-bottom: 3.5rem;
}

.medical__featured {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .medical__featured {
    min-height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem 3.25rem;
  }
}

.medical__featured-media {
  overflow: hidden;
  background: #4d4c46;
  position: relative;
}
@media (max-width: 1023px) {
  .medical__featured-media {
    height: 24rem;
  }
}
@media (min-width: 1024px) {
  .medical__featured-media {
    position: absolute;
    inset: 0;
  }
}
.medical__featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(127, 174, 146, 0.2);
}
.medical__featured-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .medical__featured-media img {
    transform: scale(1.06);
  }
}
@media (max-width: 1023px) {
  .medical__featured-media img {
    object-position: center 35%;
  }
}

.medical__featured-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 1024px) {
  .medical__featured-inner {
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    max-width: min(52.5rem, 100% - 2.5rem);
    margin-top: -1rem;
  }
}
@media (max-width: 1023px) {
  .medical__featured-inner {
    padding: 1rem 1.25rem;
    margin-top: -21rem;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: none;
  }
}

.medical__highlight {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgba(77, 76, 70, 0.08);
  padding: 1.25rem 1.5rem;
}
@media (min-width: 1024px) {
  .medical__highlight {
    grid-template-columns: minmax(9rem, 11rem) 1fr;
    padding: 1.75rem 5.75rem 2.25rem;
    max-width: 50rem;
    margin: 0 auto;
  }
}

.medical__highlight-aside {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .medical__highlight-aside {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
}

.medical__icon {
  width: 3.75rem;
  height: 3.75rem;
  min-width: 3.75rem;
  min-height: 3.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #f0faf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .medical__icon {
    width: 7.5rem;
    height: 7.5rem;
    min-width: 7.5rem;
    min-height: 7.5rem;
  }
}
.medical__icon img {
  display: block;
  max-width: 50%;
  max-height: 50%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 1024px) {
  .medical__icon img {
    max-width: 62%;
    max-height: 62%;
  }
}

.medical__highlight-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .medical__highlight-title {
    font-size: 1.375rem;
  }
}

.medical__highlight-text p {
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .medical__highlight-text p {
    font-size: 1rem;
  }
}

.medical__grid-wrap {
  position: relative;
  z-index: 3;
  padding-top: 0;
  margin-top: -2rem;
}
@media (max-width: 1023px) {
  .medical__grid-wrap {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .medical__grid-wrap {
    margin-top: -3.25rem;
  }
}

.medical__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .medical__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .medical__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dept-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgba(77, 76, 70, 0.08);
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .dept-card {
    padding: 2rem;
  }
}

.dept-card__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .dept-card__head {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 0.85rem;
  }
}

.dept-card__icon {
  width: 3.75rem;
  height: 3.75rem;
  min-width: 3.75rem;
  min-height: 3.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #f0faf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .dept-card__icon {
    width: 7.5rem;
    height: 7.5rem;
    min-width: 7.5rem;
    min-height: 7.5rem;
  }
}
.dept-card__icon img {
  display: block;
  max-width: 50%;
  max-height: 50%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 1024px) {
  .dept-card__icon img {
    max-width: 62%;
    max-height: 62%;
  }
}

.dept-card__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.35;
  text-align: left;
  flex: 1.3;
}
@media (min-width: 1024px) {
  .dept-card__title {
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
  }
}

.dept-card p {
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .dept-card p {
    font-size: 1rem;
  }
}

.access__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.25rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .access__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.access__address {
  font-size: 1rem;
  margin: 0 0 1.5rem;
}

.access__block {
  margin-bottom: 1.25rem;
}
.access__block p {
  margin: 0;
  font-size: 1rem;
}

.access__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.access__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fae92;
  flex-shrink: 0;
}

.access__figure {
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.access__splide.splide {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: min(37.75rem, 100%);
  margin-inline: auto;
  padding-inline: 0.75rem;
  outline: none;
}
@media (max-width: 1023px) {
  .access__splide.splide {
    max-width: min(36.25rem, 100%);
    padding-inline: 0;
  }
}

.access__splide .splide__track {
  overflow: hidden;
  border-radius: 12px;
  max-width: 100%;
  padding: 0.75rem;
  margin: -0.75rem;
}
@media (max-width: 1023px) {
  .access__splide .splide__track {
    margin: -0.75rem 0;
  }
}

.access__slide {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgba(77, 76, 70, 0.08);
  overflow: hidden;
}

.access__splide .splide__slide {
  min-width: 0;
  box-sizing: border-box;
}

.access__slide-media {
  position: relative;
  margin: 0;
  padding: 1.5rem clamp(1rem, 5vw, 1.5rem) 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 516/344;
  line-height: 0;
}
.access__slide-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.access__slide-arrow {
  position: absolute;
  left: 18%;
  top: 10%;
  width: min(40%, 10.5rem);
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
.access__slide-arrow svg {
  display: block;
  width: 100%;
  height: auto;
}

.access__slide-foot {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem clamp(1rem, 5vw, 2rem) 1.35rem;
  box-sizing: border-box;
}

.access__slide-num {
  flex-shrink: 0;
  margin: 0;
  padding-top: 0.12em;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: #7fae92;
  letter-spacing: 0.08em;
}
@media (max-width: 1023px) {
  .access__slide-num {
    font-size: 1.75rem;
  }
}

.access__slide-caption {
  flex: 1;
  min-width: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #4d4c46;
}
.access__slide-caption p {
  margin: 0;
}
.access__slide-caption p + p {
  margin-top: 0;
}

.access__splide .splide__arrow {
  width: 2.375rem;
  height: 2.375rem;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(77, 76, 70, 0.14);
  opacity: 1;
  transition: background-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.access__splide .splide__arrow svg {
  fill: #7fae92;
  stroke: #7fae92;
  stroke-width: 2px;
  width: 1.05rem;
  height: 1.05rem;
}
.access__splide .splide__arrow:disabled {
  opacity: 0.32;
}
.access__splide .splide__arrow:hover:not(:disabled), .access__splide .splide__arrow:focus-visible:not(:disabled) {
  background: #fff;
  box-shadow: 0 2px 10px rgba(77, 76, 70, 0.2);
}

.access__splide .splide__arrow--prev {
  left: 1.25rem;
}
@media (min-width: 1024px) {
  .access__splide .splide__arrow--prev {
    left: 1.85rem;
  }
}

.access__splide .splide__arrow--next {
  right: 1.25rem;
}
@media (min-width: 1024px) {
  .access__splide .splide__arrow--next {
    right: 1.85rem;
  }
}

.access__splide .splide__arrow--prev,
.access__splide .splide__arrow--next {
  top: clamp(5.25rem, 19vw, 9.25rem);
  transform: translateY(100%);
}

.access__splide .splide__arrow--prev:hover:not(:disabled),
.access__splide .splide__arrow--prev:focus-visible:not(:disabled),
.access__splide .splide__arrow--next:hover:not(:disabled),
.access__splide .splide__arrow--next:focus-visible:not(:disabled) {
  transform: translateY(100%) scale(1.06);
}

.access__splide .splide__pagination {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  margin: 0.15rem 0 0;
  padding: 0 0 0.35rem;
  gap: 0.5rem;
}

.access__splide .splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 0 0.25rem;
  background: #d9d6d4;
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
.access__splide .splide__pagination__page:hover {
  opacity: 1;
}
.access__splide .splide__pagination__page.is-active {
  background: #7fae92;
  transform: scale(1);
}

.access__map {
  width: 100%;
  margin: 2rem 0 0;
  padding: 0;
  line-height: 0;
  background: rgba(161, 139, 132, 0.12);
}

.access__map-frame {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  vertical-align: middle;
}

.site-footer {
  background: #f5faf7;
  padding: 2.5rem 1.25rem 1.5rem;
  margin-top: 0;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.site-footer__brand img {
  display: block;
  max-width: 280px;
}

.site-footer__address {
  margin: 1rem 0 0.25rem;
  font-size: 1rem;
}

.site-footer__tel {
  font-family: "Libre Baskerville", serif;
  font-size: 1.25rem;
  margin: 0;
  text-decoration: none;
}
.site-footer__tel span {
  font-size: 1rem;
  margin-right: 0.25rem;
}

.site-footer__partner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 36.25rem;
  min-height: 8.75rem;
  margin-inline: auto;
  padding: 1rem;
  overflow: hidden;
  background: url("../images/footer-partner-bg.jpg") center/cover no-repeat;
  box-shadow: 0 0 12px rgba(127, 174, 146, 0.5);
}
@media (min-width: 1024px) {
  .site-footer__partner {
    margin-inline: 0;
    margin-left: auto;
    flex-shrink: 0;
  }
}
.site-footer__partner::before {
  position: absolute;
  inset: 1rem;
  content: "";
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}
.site-footer__partner img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: min(95%, 22.5rem);
  max-height: 3.9375rem;
  object-fit: contain;
}

.site-footer__copy {
  max-width: 1200px;
  margin: 1.6rem auto 0;
  padding-top: 1rem;
  font-family: "Libre Baskerville", serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-align: left;
  color: #4d4c46;
}
