:root {
  --color-bg: #faf9f5;
  --color-bg-dark: #f3eee7;
  --color-main: #f69e8b;
  --color-sub: #fac8ac;
  --color-text: #5a514d;
  --color-text-soft: #5f5754;
  --color-line: #e4deda;
  --color-white: #ffffff;
  --color-black: #000000;

  --font-en: "Kumbh Sans", sans-serif;
  --font-ja: "Zen Kaku Gothic New", sans-serif;

  --fs-heading-en: 43px;
  --fs-heading-ja: 23px;
  --fs-body: 16px;
  --fs-news-cat: 13px;

  --lh-tight: 1.12;
  --lh-normal: 1.6;
  --lh-body-wide: 1.7;

  --ls-heading-en: 0.1em;
  --ls-heading-ja: 0.1em;
  --ls-body: 0.06em;
  --ls-news-cat: -0.03em;

}

* {
  box-sizing: border-box;
}

html,
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-ja);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* Section Heading */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-heading--left {
  align-items: flex-start;
}

.section-heading--center {
  align-items: center;
  text-align: center;
}

.section-heading__en {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: var(--fs-heading-en);
  letter-spacing: var(--ls-heading-en);
  line-height: 1.15;
  color: var(--color-main);
}

.section-heading__subwrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-heading__subwrap img {
  width: 35px;
  height: 33px;
}

.section-heading__ja {
  margin: 0;
  font-size: var(--fs-heading-ja);
  font-weight: 700;
  letter-spacing: var(--ls-heading-ja);
  color: var(--color-text);
}

/* Header / Hero */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1300;
  overflow: visible;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-hero {
  position: relative;
}

.site-header__hero {
  position: relative;
  min-height: 657px;
  background: transparent;
  overflow: hidden;
}

.site-header__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 71vw;
  background: var(--color-main);
  border-bottom-right-radius: 60px;
  pointer-events: none;
  overflow: hidden;
}

.site-header__hero-bg::before,
.site-header__hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.site-header__hero-bg::before {
  left: -24px;
  bottom: 115px;
  width: 146px;
  height: 146px;
}

.site-header__hero-bg::after {
  left: 50px;
  bottom: 95px;
  width: 93px;
  height: 93px;
  background: rgba(255, 255, 255, 0.32);
}

.site-header__hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 80vw;
  max-width: calc(100% - 400px);
  height: 561px;
  object-fit: cover;
  border-bottom-left-radius: 60px;
  object-position: bottom;
}

.site-header__nav-strip {
  position: absolute;
  top: 0;
  right: 0;
  width: 1035px;
  max-width: calc(100% - 405px);
  height: 71px;
  object-fit: cover;
}

.site-header__overlay {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 16px 24px;
}

.site-hero__copy-wrap {
  position: relative;
  z-index: 1;
  min-height: 657px;
  margin: 0 auto;
  padding: 20px 24px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}

.site-header__topbar {
  position: relative;
}

@keyframes site-header-scroll-bg {
  from {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  to {
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}

@keyframes site-header-scroll-overlay-pc {
  from {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  to {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@keyframes site-header-scroll-brand-icon-pc {
  from {
    width: 57px;
    height: 57px;
  }

  to {
    width: 48px;
    height: 48px;
  }
}

@keyframes site-header-scroll-nav-pc {
  from {
    top: 12px;
    transform: translateY(0);
  }

  to {
    top: 50%;
    transform: translateY(-50%);
  }
}

@keyframes site-header-scroll-cta-pc {
  from {
    height: 50px;
  }

  to {
    height: 44px;
  }
}

@keyframes site-header-scroll-text-color-pc {
  from {
    color: #fff;
  }

  to {
    color: var(--color-text);
  }
}

@keyframes site-header-scroll-overlay-sp {
  from {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  to {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

@keyframes site-header-scroll-brand-icon-sp {
  from {
    width: 44px;
    height: 44px;
  }

  to {
    width: 38px;
    height: 38px;
  }
}

@keyframes site-header-scroll-mobile-btn-sp {
  from {
    width: 48px;
    height: 48px;
  }

  to {
    width: 42px;
    height: 42px;
  }
}

@supports (animation-timeline: scroll(root block)) {
  .site-header {
    animation: site-header-scroll-bg linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 120px;
  }

  @media (min-width: 1081px) {
    .site-header__overlay {
      animation: site-header-scroll-overlay-pc linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }

    .site-header__brand-icon {
      animation: site-header-scroll-brand-icon-pc linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }

    .site-header__nav {
      animation: site-header-scroll-nav-pc linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }

    .site-header__nav-cta {
      animation: site-header-scroll-cta-pc linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }

    body.home .site-header__nav-list a,
    body.home .site-header__brand-text-wrap {
      animation: site-header-scroll-text-color-pc linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }
  }

  @media (max-width: 1080px) {
    .site-header__overlay {
      animation: site-header-scroll-overlay-sp linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }

    .site-header__brand-icon {
      animation: site-header-scroll-brand-icon-sp linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }

    .site-header__mobile-button {
      animation: site-header-scroll-mobile-btn-sp linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }
  }
}

.site-header__mobile-menu {
  display: none;
}

.site-header__mobile-checkbox {
  display: none;
}

.site-header__brand-icon {
  width: 57px;
  height: 57px;
}

.site-header__brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.site-header__brand-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-header__brand-subtitle {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.site-header__nav {
  position: absolute;
  top: 12px;
  right: 20px;
  transform: translateY(0);
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 700;
  letter-spacing: var(--ls-body);
  color: var(--color-text);
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-list a {
  transition: color 0.2s ease;
}

.site-header__nav-cta,
.site-header__nav-cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 219px;
  height: 50px;
  padding: 0 24px;
  border-radius: 58px;
  background: var(--color-main);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: var(--ls-body);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.site-header__vertical-copy {
  display: flex;
  gap: 24px;
  margin: 155px 0 0 96px;
}

.site-header__vertical-copy span {
  position: relative;
  display: inline-block;
  padding-right: 3px;
  font-size: 39px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
  line-height: 1.05;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  height: fit-content;
}

.site-header__vertical-copy span::after {
  content: "";
  position: absolute;
  top: 0.06em;
  bottom: 0.06em;
  right: -10px;
  border-right: 2px dashed rgba(255, 255, 255, 0.6);
}

/* Search */
.search {
  position: relative;
  padding: 115px 0 80px;
}

.search__bg-shape {
  position: absolute;
  left: 0;
  bottom: -85px;
  width: 362px;
  height: 467px;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.search__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 430px 1fr;
  align-items: start;
  gap: 40px;
}

.search__lead {
  position: absolute;
  bottom: 0;
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  color: var(--color-text-soft);
}

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

.search__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 121px;
  background: var(--color-bg-dark);
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.135rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.search__card span {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.search__card img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.search__card.map img {
  width: 27px;
  height: 40px;
}

.search__card.outpatient img {
  width: 46px;
  height: 40px;
}

.search__card.homecare img {
  width: 42px;
  height: 40px;
}

.search__card.night img {
  width: 44px;
  height: 40px;
}

.search__card.holiday img {
  width: 38px;
  height: 40px;
}

.search__card.function img {
  width: 40px;
  height: 40px;
}

/* News */
.news {
  padding: 0 0 70px;
  position: relative;
  z-index: 1;
}

.news__panel {
  margin-right: max(calc((100vw - 1200px) / 2), 0px);
  background: var(--color-white);
  border-radius: 0 20px 20px 0;
  padding: 63px 0;
}

.news__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  width: 1200px;
  margin: 0 0 0 max(calc((100vw - 1200px) / 2), 0px);
  padding: 0 4.8rem 0 20px;
}

.news__layout .section-heading--left {
  position: relative;
  padding-bottom: 74px;
}

.button-pill,
.button-pill:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 219px;
  height: 50px;
  border-radius: 58px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: var(--ls-body);
  border: 0;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  box-shadow: 0 6px 18px rgba(246, 158, 139, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.button-pill span {
  transition: letter-spacing 0.3s ease;
}

.button-pill img {
  width: 6px;
  height: 11px;
  --button-pill-arrow-shift: 0px;
  transform: translateX(var(--button-pill-arrow-shift));
  transition: transform 0.3s ease;
}

.news__layout .button-pill {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  width: fit-content;
  min-width: 0;
  max-width: none;
  padding: 0 24px;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .news__layout .button-pill {
    left: 0;
    right: auto;
    width: 219px;
    min-width: 219px;
    height: 50px;
    padding: 0;
  }
}

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

.news__item {
  border-top: 2px dashed rgba(228, 222, 218, 0.7);
}

.news__item:last-child {
  border-bottom: 2px dashed rgba(228, 222, 218, 0.7);
}

.news__link,
.news__item-link {
  display: grid;
  grid-template-columns: 92px 92px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 76px;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.news__link:focus-visible,
.news__item-link:focus-visible {
  border-radius: 10px;
}

.news__date {
  font-family: var(--font-en);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  height: 27px;
  padding: 0 14px;
  border-radius: 50px;
  background: var(--color-bg-dark);
  font-size: var(--fs-news-cat);
  font-weight: 500;
  letter-spacing: var(--ls-news-cat);
}

.news__text {
  margin: 0;
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  transition: color 0.3s ease;
}

/* Greetings */
.greetings {
  padding: 70px 0 120px;
  --greetings-inline-pad: 20px;
  --greetings-left-offset: max(calc((100vw - 1200px) / 2 + var(--greetings-inline-pad)), var(--greetings-inline-pad));
}

.greetings__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 598px;
  gap: 3.5rem;
  align-items: start;
}

.greetings__left {
  min-width: 0;
}

.greetings__intro {
  color: var(--color-text-soft);
}

.greetings__intro--lead {
  margin-top: 39px;
}

.greetings__intro--lead p {
  margin-bottom: 0;
}

.greetings__intro--detail {
  margin-top: 8px;
}

.greetings__intro p {
  margin: 0 0 8px;
  line-height: 26px;
  letter-spacing: 0.1em;
}

.greetings__intro .greetings__name {
  margin-top: 20px;
  text-align: right;
  color: var(--color-text);
}

.greetings__image {
  display: block;
  margin-top: 95px;
  margin-left: 0;
  position: relative;
  left: calc(-1 * var(--greetings-left-offset));
  width: calc(100% + var(--greetings-left-offset));
  max-width: none;
  height: 439px;
  object-fit: cover;
  border-radius: 0 40px 40px 0;
}

.greetings__cards {
  margin-top: 13px;
  display: grid;
  grid-template-rows: repeat(4, 166px);
  gap: 20px;
}

.greetings__card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 17px 25px 18px 27px;
}

.greetings__card-title {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.1em;
  color: var(--color-main);
}

.greetings__card-title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-main);
  flex: 0 0 auto;
}

.greetings__card p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 26px;
  letter-spacing: 0.03em;
}

/* Activity */
.activity {
  position: relative;
  margin-top: 60px;
  padding: 147px 0 122px;
  background: var(--color-white);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.activity .container {
  padding: 0;
}

.activity__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 91px;
}

.activity__heading .section-heading__ja {
  margin-top: 7px;
  color: var(--color-text-soft);
}

.activity__heading-icon {
  position: absolute;
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 35px;
  height: 33px;
  margin-top: 0;
}

.activity__card {
  position: relative;
  display: grid;
  grid-template-columns: 576px 436px;
  gap: 68px;
  padding: 0 60px;
  min-height: 420px;
  border-radius: 40px;
  background: var(--color-bg-dark);
  align-items: center;
}

.activity__card + .activity__card {
  margin-top: 80px;
}

.activity__card:first-of-type + .activity__card {
  margin-top: 80px;
}

.activity__text {
  align-self: flex-start;
  padding-top: 72px;
  padding-bottom: 32px;
}

.activity__card:nth-of-type(3) .activity__text,
.activity__card:nth-of-type(4) .activity__text {
  padding-top: 82px;
}

.activity__card:nth-of-type(5) .activity__text,
.activity__card:nth-of-type(6) .activity__text {
  padding-top: 71px;
}

.activity__card > .activity__text > h3 {
  position: absolute;
  top: -29px;
  left: 75px;
  width: 450px;
  height: 70px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 24px;
  border-radius: 60px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.activity__card:nth-of-type(6) > .activity__text > h3 {
  width: 529px;
}

.activity__text p {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.1em;
}

.activity__card:first-of-type .button-pill {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  display: flex;
  margin-top: 20px;
  margin-left: auto;
}

.activity__card > img {
  width: 100%;
  height: 316px;
  object-fit: cover;
  border-radius: 20px;
}

.is-modal-open {
  overflow: hidden;
}

.schedule-modal[hidden] {
  display: none;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  padding: 24px;
}

.schedule-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(90, 81, 77, 0.44);
  backdrop-filter: blur(6px);
}

.schedule-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 40px 40px 36px;
  overflow: auto;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(250, 249, 245, 0.98) 0%, rgba(243, 238, 231, 1) 100%);
  box-shadow: 0 28px 60px rgba(90, 81, 77, 0.18);
}

.schedule-modal__dialog::before,
.schedule-modal__dialog::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.schedule-modal__dialog::before {
  top: -34px;
  right: -24px;
  width: 168px;
  height: 168px;
  background: rgba(246, 158, 139, 0.18);
}

.schedule-modal__dialog::after {
  right: 74px;
  top: 84px;
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.56);
}

.schedule-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(90, 81, 77, 0.1);
}

.schedule-modal__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-main);
}

.schedule-modal__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.schedule-modal__list {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.schedule-modal__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: start;
  padding: 16px 0;
  border-top: 2px dashed rgba(228, 222, 218, 0.9);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.schedule-modal__list li:last-child {
  border-bottom: 2px dashed rgba(228, 222, 218, 0.9);
}

.schedule-modal__list span {
  color: var(--color-main);
  font-weight: 700;
  white-space: nowrap;
}

/* Organization */
.organization {
  padding: 80px 0 70px;
}

.organization .container {
  padding: 0;
}

.organization .section-heading {
  gap: 7px;
}

.organization .section-heading__subwrap {
  gap: 16px;
}

.organization .section-heading__subwrap img {
  width: 35px;
  height: 33px;
}

.organization__table {
  margin-top: 3.5rem;
}

.organization__row {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  padding: 27px 0 28px 23px;
}

.organization__row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-image: url("../images/divider-organization-row.svg");
  background-repeat: no-repeat;
  background-size: 100% 3px;
}

.organization__row dt {
  margin: 0;
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-black);
}

.organization__row dd {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.organization__member {
  display: inline;
}

.organization__member + .organization__member::before {
  content: "　";
}

/* Contact */
.contact {
  position: relative;
  height: 553px;
  background: #ffffff;
  margin-top: 20px;
}

.home .contact {
  background: var(--color-bg);
}

.contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(50vw + 72px);
  height: calc(100% - 489px);
  background: var(--color-bg-dark);
  z-index: 0;
  pointer-events: none;
}

.contact__visual {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50vw + 72px);
  height: 489px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  z-index: 1;
}

.contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(50vw + 95px);
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  background: var(--color-main);
  color: var(--color-white);
  padding: 59px 76px 63px;
  z-index: 1;
}

.contact__en {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 33px;
  letter-spacing: 0.1em;
}

.contact__panel h2 {
  margin: 8px 0 20px;
  font-size: 33px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.contact__lead {
  margin: 0 0 24px;
  max-width: 607px;
  letter-spacing: var(--ls-body);
}

.contact__card {
  width: min(100%, 568px);
  min-height: 149px;
  background: var(--color-bg);
  border-radius: 10px;
  color: var(--color-text);
  padding: 13px 29px 18px;
  font-style: normal;
}

.contact__card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.contact__card p {
  margin: 0 0 8px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.contact__card p:last-child {
  margin-bottom: 0;
  font-family: var(--font-en);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--color-bg-dark);
}

.site-footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 20px 40px;
  display: grid;
  grid-template-columns: 60% auto;
  gap: 40px;
}

.site-footer__brand {
  display: grid;
  grid-template-columns: 57px auto;
  column-gap: 10px;
  row-gap: 16px;
  align-items: start;
}

.site-footer__brand img {
  width: 57px;
  height: 57px;
}

.site-footer__brand-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer__brand-sub {
  margin: 4px 0 0;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.site-footer__address {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.site-footer__tel {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

.site-footer__tel a {
  transition: color 0.2s ease;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  gap: 40px;
}

.site-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.site-footer__links a {
  font-weight: 700;
  letter-spacing: var(--ls-body);
  transition: color 0.2s ease;
}

.site-footer__copyright {
  margin: 0;
  padding: 20px;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.content-shell {
  padding: 180px 0 80px;
}

.content-page {
  padding: 0 0 80px;
}

.entry-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 36px rgba(90, 81, 77, 0.08);
}

.content-page__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-main);
}

.content-page__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.content-page__title a {
  color: inherit;
  transition: color 0.3s ease;
}

.content-page__lead {
  margin: 18px 0 0;
  color: var(--color-text-soft);
}

.entry-content {
  margin-top: 28px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-list,
.news-archive__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.entry-list__item + .entry-list__item,
.news-archive__item + .news-archive__item {
  margin-top: 16px;
}

.entry-list__item {
  padding-top: 16px;
  border-top: 1px dashed rgba(228, 222, 218, 0.8);
}

.entry-list__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
}

.entry-list__title a {
  transition: color 0.3s ease;
}

.news-archive__item {
  border-top: 2px dashed rgba(228, 222, 218, 0.8);
}

.news-archive__item:last-child {
  border-bottom: 2px dashed rgba(228, 222, 218, 0.8);
}

.news-archive__link {
  display: grid;
  grid-template-columns: 120px 110px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 84px;
  color: inherit;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.news-archive__date,
.news-single__meta time {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.news-archive__category,
.news-single__meta span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--color-bg-dark);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.news-archive__title {
  font-weight: 700;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.post-navigation,
.pagination,
.nav-links {
  margin-top: 32px;
  text-align: center;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  margin-right: 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--color-bg-dark);
  font-weight: 700;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.page-numbers.current {
  background: var(--color-main);
  color: var(--color-white);
}

.news-single-page {
  background: var(--color-white);
}

.news-archive-page {
  background: var(--color-white);
}

.news-page-header {
  position: relative;
  overflow: hidden;
  padding: 156px 0 100px;
  background: linear-gradient(180deg, rgba(250, 249, 245, 0.98) 0%, rgba(243, 238, 231, 0.96) 100%);
}

.news-page-header::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(246, 158, 139, 0.12);
}

.news-page-header::after {
  content: "";
  position: absolute;
  top: 216px;
  right: 112px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
}

.news-page-header__container {
  position: relative;
  z-index: 1;
}

.news-page-header__heading {
  gap: 18px;
}

.news-page-header__title {
  margin: 0;
}

.news-page-header__sub {
  margin: 0;
}

.news-page-header__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  pointer-events: none;
}

.news-page-header__waves::before,
.news-page-header__waves::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.news-page-header__waves::before {
  bottom: -52px;
  height: 112px;
}

.news-page-header__waves::after {
  bottom: -18px;
  height: 76px;
  opacity: 0.56;
}

.news-single-layout {
  padding: 64px 0 80px;
}

.news-archive-layout {
  padding: 64px 0 80px;
}

.news-archive-layout__container,
.news-single-layout__container {
  max-width: 1000px;
}

.news-archive__heading {
  margin-bottom: 32px;
}

.news-archive__heading .content-page__eyebrow {
  margin-bottom: 8px;
}

.news-archive-layout .news-archive__list {
  margin-top: 0;
}

.news-archive-layout .pagination,
.news-archive-layout .nav-links {
  margin-top: 40px;
}

.news-archive-layout .content-page__lead {
  margin-top: 0;
}

.news-single-simple__header {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(228, 222, 218, 0.9);
}

.news-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.news-single__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--color-main);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-single__meta time {
  font-variant-numeric: tabular-nums;
  color: rgba(90, 81, 77, 0.9);
}

.news-single__title {
  margin: 18px 0 0;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.news-single__article {
  padding: 40px 0 0;
}

.news-single__article .entry-content {
  margin-top: 0;
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.news-single__article .entry-content p {
  margin: 0 0 14px;
}

.news-single__article .entry-content h1 {
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(228, 222, 218, 0.9);
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.news-single__article .entry-content h2 {
  margin: 40px 0 16px;
  padding: 10px 16px;
  border-left: 4px solid var(--color-main);
  background: var(--color-bg-dark);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.news-single__article .entry-content h3 {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.news-single__article .entry-content ul,
.news-single__article .entry-content ol {
  margin: 16px 0 24px;
  padding-left: 1.4em;
}

.news-single__article .entry-content li {
  margin-top: 8px;
}

.news-single__article .entry-content a:not(.button-pill) {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.news-single__article .entry-content img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 24px auto;
  border-radius: 24px;
}

.news-single-simple__back-link {
  display: flex;
  margin: 56px auto 0;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .site-header__nav-list a:hover,
  .site-footer__links a:hover,
  .site-footer__tel a:hover,
  .content-page__title a:hover,
  .entry-list__title a:hover {
    color: var(--color-main);
  }

  .site-header__nav-cta:hover,
  .button-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90, 81, 77, 0.16);
    filter: brightness(1.02);
  }

  .schedule-modal__close:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 1);
  }

  .button-pill:hover span {
    letter-spacing: 0.08em;
  }

  .button-pill:hover img {
    --button-pill-arrow-shift: 4px;
  }

  .search__card:hover {
    transform: translateY(-2px);
    background-color: #fffcf8;
    box-shadow: 0 8px 24px rgba(172, 171, 164, 0.24);
  }

  .search__card:hover span {
    color: var(--color-main);
    letter-spacing: 0.145rem;
  }

  .search__card:hover img {
    transform: translateY(-2px) scale(1.04);
    filter: saturate(1.05);
  }

  .news__link:hover .news__text,
  .news__item-link:hover .news__text {
    color: var(--color-main);
  }

  .news-archive__link:hover {
    transform: translateX(4px);
    background-color: #fffcf8;
    box-shadow: 0 8px 24px rgba(172, 171, 164, 0.2);
  }

  .news-archive__link:hover .news-archive__title {
    color: var(--color-main);
  }

  .news-single__article .entry-content a:not(.button-pill):hover {
    color: var(--color-text);
  }

  .page-numbers:not(.current):hover {
    transform: translateY(-2px);
    background: var(--color-main);
    box-shadow: 0 8px 24px rgba(246, 158, 139, 0.28);
    color: var(--color-white);
  }
}

/* Responsive (Desktop-first) */
@media (max-width: 1024px) {
  .news-page-header {
    padding: 148px 0 88px;
  }

  .news-single-layout {
    padding: 56px 0 72px;
  }

  .site-header__hero {
    min-height: 560px;
  }

  .site-header__hero-bg {
    width: calc(100% - 200px);
    height: 520px;
  }

  .site-header__overlay {
    min-height: auto;
  }

  .site-hero__copy-wrap {
    min-height: 500px;
    padding: 20px 24px;
  }

  .site-header__hero-image {
    width: min(74vw, 840px);
    max-width: calc(100% - 280px);
    height: 460px;
  }

  .site-header__nav-strip {
    width: min(74vw, 840px);
    max-width: calc(100% - 280px);
  }

  .site-header__nav {
    right: 20px;
    gap: 20px;
    font-size: 14px;
  }

  .site-header__nav-list {
    gap: 20px;
  }

  .site-header__nav-cta {
    min-width: 180px;
    font-size: 14px;
  }

  .site-header__vertical-copy {
    margin-left: 32px;
    margin-top: 104px;
  }

  .site-header__vertical-copy span {
    font-size: 30px;
  }

  .search {
    padding-top: 50px;
  }

  .search__lead {
    position: relative;
  }

  .search__layout,
  .news__layout {
    grid-template-columns: 1fr;
  }

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

  .greetings__cards {
    grid-template-rows: none;
  }

  .activity .container {
    padding: 0 20px;
  }

  .activity__card {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 50px;
    padding: 0 45px;
  }

  .activity__text {
    padding-bottom: 45px;
  }
  
  .activity__text,
  .activity__card > img {
    min-width: 0;
  }

  .organization .container {
    padding: 0 20px;
  }

  .search__bg-shape {
    left: 0;
    top: 20px;
    width: 200px;
    height: 260px;
  }

  .news__panel {
    margin-right: 0;
    border-radius: 20px;
  }

  .news__layout {
    width: auto;
    margin: 0 auto;
    padding: 0 20px;
  }

  .news__layout .section-heading--left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 16px;
    width: 100%;
    padding-bottom: 0;
  }

  .news__layout .section-heading__en {
    grid-column: 1;
    grid-row: 1;
  }

  .news__layout .section-heading__subwrap {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }

  .news__layout .button-pill {
    position: static;
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: end;
    align-self: end;
  }

  .content-shell {
    padding-top: 160px;
  }

}

@media (max-width: 1080px) {
  #search {
    scroll-margin-top: 88px;
  }

  .site-header {
    overflow: visible;
  }

  .site-header:has(.site-header__mobile-checkbox:checked) {
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header__overlay {
    z-index: 1200;
  }

  .site-header__topbar {
    position: relative;
    z-index: 1301;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .site-header__brand {
    flex: 1;
    min-width: 0;
    gap: 8px;
    color: var(--color-text);
  }

  .site-header__brand-icon {
    width: 44px;
    height: 44px;
  }

  .site-header__brand-text-wrap {
    min-width: 0;
  }

  .site-header__brand-title,
  .site-header__brand-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header__mobile-menu {
    display: block;
    position: relative;
    flex-shrink: 0;
  }

  .site-header__mobile-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .site-header__mobile-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background: var(--color-main);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  }

  .site-header__mobile-button span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 10px;
    background: var(--color-white);
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.25s ease;
  }

  .site-header__mobile-button span:nth-child(1) {
    top: 14px;
  }

  .site-header__mobile-button span:nth-child(2) {
    top: 21px;
  }

  .site-header__mobile-button span:nth-child(3) {
    top: 28px;
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar {
    background: rgba(255, 255, 255, 0.95);
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar .site-header__brand {
    color: var(--color-text);
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar .site-header__mobile-button span:nth-child(1) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar .site-header__mobile-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar .site-header__mobile-button span:nth-child(3) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .site-header__nav {
    display: block;
    position: fixed;
    left: auto;
    top: 0;
    right: -100%;
    transform: none;
    width: 100%;
    height: 100dvh;
    padding: 80px 24px 32px;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1290;
    overflow-y: auto;
    transition: right 0.3s ease;
    -webkit-overflow-scrolling: touch;
  }

  .site-header__mobile-checkbox:checked ~ .site-header__nav {
    right: 0;
  }

  .site-header__nav-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: var(--ls-body);
  }

  .site-header__nav-list li {
    border-bottom: 1px dashed rgba(228, 222, 218, 0.95);
  }

  .site-header__nav-list a {
    display: block;
    padding: 16px 0;
  }

  .site-header__nav-cta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 58px;
    background: var(--color-main);
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: var(--ls-body);
  }

  html:has(.site-header__mobile-checkbox:checked),
  body:has(.site-header__mobile-checkbox:checked) {
    overflow: hidden;
  }

  .contact__panel {
    padding: 59px 58px 63px;
  }
}

@media (max-width: 768px) {
  .schedule-modal {
    padding: 20px;
  }

  .schedule-modal__dialog {
    max-height: calc(100vh - 40px);
    padding: 32px 24px 28px;
    border-radius: 24px;
  }

  .schedule-modal__list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .schedule-modal__list span {
    white-space: normal;
  }

  .news-page-header {
    padding: 136px 0 72px;
  }

  .news-page-header__heading {
    gap: 14px;
  }

  .news-page-header__waves {
    height: 72px;
  }

  .news-archive-layout,
  .news-single-layout {
    padding: 48px 0 56px;
  }

  .news-archive__heading {
    margin-bottom: 24px;
  }

  .news-single__title {
    font-size: 32px;
  }

  .news-single__article {
    padding-top: 32px;
  }

  .news-single__article .entry-content {
    font-size: 16px;
    line-height: 1.9;
  }

  .news-single__article .entry-content h2 {
    font-size: 24px;
  }

  .news-single__article .entry-content h3 {
    font-size: 20px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .greetings__layout {
    grid-template-columns: 1fr;
  }

  .activity .container {
    padding: 0 20px;
  }

  .activity__card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }

  .activity__card > img {
    height: 280px;
  }

  .contact {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    background: var(--color-bg-dark);
  }

  .contact::after {
    content: none;
  }

  .contact__visual {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 0;
  }

  .contact__panel {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 48px 24px;
  }

  .contact__card {
    width: 100%;
    min-height: 0;
  }

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

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

  .site-header {
    overflow: visible;
  }

  .site-header:has(.site-header__mobile-checkbox:checked) {
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header__hero {
    overflow: hidden;
  }

  .site-header__hero {
    min-height: 500px;
    padding-top: 73px;
    padding-bottom: 0;
  }

  .site-header__hero-bg {
    width: calc(100% - 56px);
    height: 490px;
    border-bottom-right-radius: 40px;
  }

  .site-header__hero-bg::before,
  .site-header__hero-bg::after {
    display: none;
  }

  .site-header__hero-image {
    position: absolute;
    right: 0;
    top: 73px;
    width: 64vw;
    max-width: calc(100% - 96px);
    height: 380px;
    border-bottom-left-radius: 40px;
    border-top-left-radius: 40px;
  }

  .site-header__nav-strip {
    display: none;
  }

  .site-header__overlay {
    min-height: auto;
    padding: 8px 16px;
    z-index: 1200;
  }

  .site-hero__copy-wrap {
    position: absolute;
    inset: 0;
    min-height: 0;
    padding: 0 16px;
  }

  .site-header__topbar {
    position: relative;
    z-index: 1301;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: transparent;
    border-bottom: none;
    transition: background-color 0.3s ease;
    gap: 12px;
  }

  .site-header__brand {
    flex: 1;
    min-width: 0;
    gap: 8px;
    color: var(--color-text);
  }

  .site-header__brand-text-wrap {
    min-width: 0;
  }

  .site-header__brand-title,
  .site-header__brand-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header__brand-icon {
    width: 44px;
    height: 44px;
  }

  .site-header__mobile-menu {
    display: block;
    position: relative;
    flex-shrink: 0;
  }

  .site-header__mobile-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .site-header__mobile-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background: var(--color-main);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  }

  .site-header__mobile-button span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 10px;
    background: var(--color-white);
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.25s ease;
  }

  .site-header__mobile-button span:nth-child(1) {
    top: 14px;
  }

  .site-header__mobile-button span:nth-child(2) {
    top: 21px;
  }

  .site-header__mobile-button span:nth-child(3) {
    top: 28px;
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar {
    background: rgba(255, 255, 255, 0.95);
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar .site-header__brand {
    color: var(--color-text);
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar .site-header__mobile-button span:nth-child(1) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar .site-header__mobile-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header__mobile-checkbox:checked ~ .site-header__topbar .site-header__mobile-button span:nth-child(3) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .site-header__nav {
    display: block;
    position: fixed;
    left: auto;
    top: 0;
    right: -100%;
    transform: none;
    width: 100%;
    height: 100dvh;
    padding: 80px 24px 32px;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1290;
    overflow-y: auto;
    transition: right 0.3s ease;
    -webkit-overflow-scrolling: touch;
  }

  .site-header__mobile-checkbox:checked ~ .site-header__nav {
    right: 0;
  }

  .site-header__nav-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: var(--ls-body);
  }

  .site-header__nav-list li {
    border-bottom: 1px dashed rgba(228, 222, 218, 0.95);
  }

  .site-header__nav-list a {
    display: block;
    padding: 16px 0;
  }

  .site-header__nav-cta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 58px;
    background: var(--color-main);
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: var(--ls-body);
  }

  html:has(.site-header__mobile-checkbox:checked),
  body:has(.site-header__mobile-checkbox:checked) {
    overflow: hidden;
  }

  .site-header__vertical-copy {
    margin: 130px 0 0 36px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .site-header__vertical-copy span {
    padding-right: 3px;
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.05;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .site-header__vertical-copy span::after {
    content: "";
    position: absolute;
    top: 0.06em;
    bottom: 0.06em;
    right: -8px;
    border-right: 2px dashed rgba(255, 255, 255, 0.6);
  }

  .section-heading__en {
    font-size: 34px;
  }

  .section-heading__ja {
    font-size: 20px;
  }

  .search__lead {
    position: relative;
  }

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

  .search__bg-shape {
    left: 0;
    top: 72px;
    width: 250px;
    height: 300px;
  }

  .news__item {
    padding: 12px 0;
  }

  .news__link,
  .news__item-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
    row-gap: 8px;
    min-height: auto;
  }

  .news__text {
    flex-basis: 100%;
  }

  .news__date {
    flex: 0 0 92px;
    white-space: nowrap;
  }

  .news-archive__link {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 12px 0;
  }

  .greetings__intro--lead {
    margin-top: 24px;
  }

  .greetings__left {
    display: contents;
  }

  .greetings__heading {
    order: 1;
  }

  .greetings__intro--lead {
    order: 2;
  }

  .greetings__cards {
    order: 3;
    margin-top: 20px;
  }

  .greetings__intro--detail {
    order: 4;
    margin-top: 8px;
  }

  .greetings__image {
    display: none;
  }

  .greetings__card-title {
    line-height: 1.4;
  }

.activity__text,
.activity__card:nth-of-type(3) .activity__text,
.activity__card:nth-of-type(4) .activity__text,
.activity__card:nth-of-type(5) .activity__text,
.activity__card:nth-of-type(6) .activity__text {
  padding-top: 36px;
  padding-bottom: 20px;
}
.activity__card:nth-of-type(6) .activity__text {
    padding-top: 66px;
}

  .activity__card > .activity__text > h3 {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: none;
    height: auto;
    margin: 0;
    padding: 12px 20px;
    white-space: normal;
    min-height: 56px;
    font-size: 22px;
  }

  .activity__card:nth-of-type(6) > .activity__text > h3 {
    width: calc(100% - 32px);
    text-align: center;
  }

  .activity__card:first-of-type .button-pill {
    margin: 20px auto 0;
    width: fit-content;
    padding-left: 30px;
    padding-right: 30px;
  }

  .organization__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .organization__member {
    display: block;
  }

  .organization__member + .organization__member {
    margin-top: 4px;
  }

  .organization__member + .organization__member::before {
    content: none;
  }

  .site-footer__links {
    gap: 0;
  }
  .site-footer__links ul {
    gap: 7px;
  }

  .content-shell {
    padding-top: 128px;
  }

  .entry-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .site-header__vertical-copy {
    margin: 172px 0 0 0;
  }

  .schedule-modal {
    padding: 16px;
  }

  .schedule-modal__dialog {
    max-height: calc(100vh - 32px);
    padding: 28px 18px 24px;
  }

  .schedule-modal__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .schedule-modal__eyebrow {
    font-size: 16px;
  }

  .schedule-modal__title {
    font-size: 24px;
  }

  .schedule-modal__list {
    margin-top: 20px;
  }

  .schedule-modal__list li {
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.75;
  }

  .news-page-header {
    padding: 120px 0 60px;
  }

  .news-page-header::before {
    right: -160px;
    width: 320px;
    height: 320px;
  }

  .news-page-header::after {
    top: 172px;
    right: 54px;
    width: 118px;
    height: 118px;
  }

  .news-single__title {
    font-size: 26px;
  }

  .news-single__meta {
    gap: 10px;
  }

  .news-single__meta span {
    min-width: 76px;
    font-size: 12px;
  }

  .news-archive__heading .content-page__title {
    font-size: 26px;
  }

  .news-single-simple__back-link {
    width: 100%;
    max-width: 280px;
  }

  .activity .container {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .news {
    padding-bottom: 50px;
  }

  .section-heading__en {
    font-size: 28px;
  }

  .section-heading__ja {
    font-size: 18px;
  }

  .site-header__brand-title {
    font-size: 20px;
  }

  .site-header__vertical-copy span {
    font-size: 22px;
  }

  .search {
    padding-top: 50px;
  }

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

  .search__bg-shape {
    top: 20px;
    width: 100px;
    height: 100px;
  }

  .search__lead {
    position: relative;
  }

  .greetings {
    --greetings-inline-pad: 16px;
    padding-bottom: 50px;
  }
  .greetings__layout {
    gap: 0;
  }

  .greetings__left {
    display: contents;
  }

  .greetings__heading {
    order: 1;
  }

  .greetings__intro--lead {
    order: 2;
  }

  .greetings__cards {
    order: 3;
    margin-top: 20px;
  }

  .greetings__intro--detail {
    order: 4;
    margin-top: 20px;
  }

  .greetings__image {
    order: 5;
    margin-top: 24px;
    max-width: 100%;
  }

  .greetings__card {
    padding: 16px;
  }

  .button-pill {
    width: 100%;
    max-width: 280px;
  }

  .news__layout .button-pill {
    width: fit-content;
    max-width: none;
  }

  .activity__heading {
    margin-bottom: 50px;
  }
  .activity__card {
    padding: 20px;
    gap: 10px;
  }

  .activity__card > img {
    height: 220px;
  }

  .organization__table {
    margin-top: 25px;
  }

  .contact__panel {
    padding: 32px 20px;
  }

  .contact__en,
  .contact__panel h2 {
    font-size: 26px;
  }

  .site-footer__main {
    padding-top: 40px;
  }
}
