/* ==============================
   1) Design Tokens
============================== */
:root {
  --color-text: #222222;
  --color-green: #a8d533;
  --color-green-cta: #b1cf63;
  --color-green-cta-hover: #9bc24c;
  --color-blue-cta: #7fbedf;
  --color-blue-cta-hover: #69afd3;
  --color-gray: #646464;
  --color-white: #ffffff;
  --color-bg-soft: #f7f6f2;
  --color-border-soft: rgba(34, 34, 34, 0.15);
  --color-green-tint: rgba(177, 207, 99, 0.3);
  --color-panel-white: rgba(255, 255, 255, 0.95);

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Manrope", sans-serif;

  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-20: 1.25rem;
  --fs-26: 1.625rem;
  --fs-34: 2.125rem;

  --lh-tight: 1.35;
  --lh-base: 1.8;
  --lh-loose: 2;

  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-60: 60px;
  --space-70: 70px;
  --space-93: 93px;
  --space-120: 120px;

  --radius-2: 2px;
  --radius-8: 8px;
  --radius-20: 20px;
  --radius-30: 30px;
  --radius-70: 70px;
  --radius-190: 190px;
  --radius-hero: 210px;

  --shadow-none: none;
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
  --scroll-offset: 96px;
  --mobile-header-height: 88px;
}

/* ==============================
   2) Base
============================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: var(--fs-16);
  line-height: var(--lh-base);
  color: var(--color-text);
  background: var(--color-white);
}

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

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

:focus-visible {
  outline: 3px solid var(--color-blue-cta);
  outline-offset: 3px;
}

.container {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}

#top,
#search,
#news,
#message,
#activities,
#officers,
#members,
#contact {
  scroll-margin-top: var(--scroll-offset);
}

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

/* ==============================
   3) Common Components
============================== */
.site-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo--header {
  min-width: 146px;
  min-height: 60px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.site-logo__word {
  font-family: "Montserrat", var(--font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-green);
  text-transform: none;
  white-space: nowrap;
}

.site-logo__name {
  margin: 0;
  font-family: "Noto Sans JP", var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #222222;
  white-space: nowrap;
}

.site-logo--header .site-logo__name {
  margin-left: 23px;
}

.site-logo__en {
  font-family: var(--font-en);
  font-size: var(--fs-12);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.site-logo__jp {
  font-size: var(--fs-26);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: 0.08em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 30px;
  border-radius: var(--radius-70);
  font-size: var(--fs-16);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.btn--blue {
  background: var(--color-blue-cta);
  color: var(--color-white);
}

.btn--green {
  background: var(--color-green-cta);
  color: var(--color-white);
}

.btn--blue,
.btn--blue:hover,
.btn--blue:visited,
.btn--green,
.btn--green:hover,
.btn--green:visited {
  color: var(--color-white) !important;
}

.section-heading {
  display: grid;
  gap: var(--space-8);
}

.section-heading__en {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-green);
  text-transform: uppercase;
  line-height: 1.2;
}

.section-heading__jp {
  font-size: var(--fs-34);
  line-height: var(--lh-loose);
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* ==============================
   4) Header (full-width exception)
============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1300;
  width: 100%;
  background: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  overflow: visible;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body.is-menu-open .site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.site-header__inner {
  width: min(1388px, calc(100% - 52px));
  margin: 0 auto;
  min-height: 96px;
  position: relative;
  z-index: 1301;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.site-header__mobile-button {
  display: none;
  border: none;
  padding: 0;
  appearance: none;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
  font-size: 15px;
}

.site-header__actions {
  display: flex;
  gap: 1rem;
}

.site-header__actions .btn {
  width: 10rem;
  min-width: 10rem;
  padding-inline: 0;
}

@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 4px 14px rgba(0, 0, 0, 0.12);
  }
}

@keyframes site-header-scroll-inner {
  from {
    min-height: 96px;
  }

  to {
    min-height: 78px;
  }
}

@keyframes site-header-scroll-logo {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.92);
  }
}

@keyframes site-header-scroll-actions {
  from {
    min-height: 51px;
  }

  to {
    min-height: 44px;
  }
}

@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: 1025px) {
    .site-header__inner {
      animation: site-header-scroll-inner linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }

    .site-logo--header {
      animation: site-header-scroll-logo linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
      transform-origin: left center;
    }

    .site-header__actions .btn {
      animation: site-header-scroll-actions linear both;
      animation-timeline: scroll(root block);
      animation-range: 0 120px;
    }
  }
}

/* ==============================
   5) Hero (full-width exception)
============================== */
.hero {
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: visible;
}

.hero__deco {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.hero__deco--a {
  left: -99px;
  top: 55px;
  width: 219px;
  height: 219px;
  background-image: url("../images/hero-deco-ring-large.svg");
}

.hero__deco--b {
  left: 340px;
  top: -48px;
  width: 103px;
  height: 103px;
  background-image: url("../images/hero-deco-ring-small.svg");
}

.hero__inner {
  --hero-copy-left: clamp(80px, calc(100vw - 1227px), 213px);
  --hero-copy-width: 110px;
  --hero-copy-gap: 80px;
  --hero-visual-right: 60px;
  width: min(1440px, 100%);
  margin: 0 auto;
  min-height: clamp(522px, 45vw, 600px);
  padding-top: 12px;
  position: relative;
  z-index: 2;
}

.hero__fv-bg {
  position: absolute;
  top: 186px;
  width: 100vw;
  max-width: none;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.hero__bridge-text {
  position: absolute;
  left: -678px;
  top: calc(100% - 22px);
  width: 1868px;
  height: 95px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  font-family: var(--font-en);
  font-size: 118px;
  font-weight: 500;
  line-height: 43px;
  letter-spacing: 4.72px;
  color: rgba(255, 255, 255, 0.57);
}

.hero__copy {
  position: absolute;
  left: var(--hero-copy-left);
  top: 49px;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
  align-items: flex-start;
}

.hero__lead,
.hero__title {
  margin: 0;
  width: 49px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 36px;
  line-height: 41px;
  letter-spacing: 3.2px;
  color: var(--color-text);
  font-weight: 500;
}

.hero__lead {
  color: var(--color-text);
}

.hero__title {
  color: var(--color-text);
}

.hero__title-highlight {
  color: var(--color-green);
}

.hero__visual {
  margin: 0;
  position: relative;
  width: min(916px, calc(100% - var(--hero-copy-left) - var(--hero-copy-width) - var(--hero-copy-gap) - var(--hero-visual-right)));
  margin-left: auto;
  margin-right: var(--hero-visual-right);
  z-index: 2;
}

.hero__visual > img:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 437px;
  object-fit: cover;
  border-top-left-radius: var(--radius-hero);
  border-top-right-radius: var(--radius-30);
  border-bottom-left-radius: var(--radius-30);
  border-bottom-right-radius: var(--radius-30);
}

.hero__character {
  position: absolute;
  top: 328px;
  right: calc(var(--hero-visual-right) - 36px);
  width: 142px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__mascot {
  width: 142px;
  height: 131px;
  object-fit: cover;
}

.hero__mascot-name {
  width: 100px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0.04em;
  color: var(--color-gray);
  text-align: center;
}

/* ==============================
   6) Search + News
============================== */
.search-news {
  position: relative;
  background: var(--color-bg-soft);
  padding: 0 0 120px;
  overflow-x: clip;
  overflow-y: visible;
}

@media (max-width: 1333px) and (min-width: 1025px) {
  .search-news {
    padding-top: clamp(0px, calc(600px - 45vw), 78px);
  }
}

.search-news__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.search-news__deco--ring {
  top: -55px;
  left: calc(50% + 510px);
  width: 298px;
  height: 298px;
  background-image: url("../images/deco-ring-search-medium.svg");
}

.search-news > .container {
  position: relative;
  z-index: 2;
}

.section-heading--search {
  margin-bottom: 32px;
}

.search-news__grid {
  margin: 0 0 89px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.search-card a {
  min-height: 102px;
  border-radius: 1.875rem 0.5rem 0.5rem 0.5rem;
  background: var(--color-white);
  display: grid;
  grid-template-columns: 60px 1fr 17px;
  align-items: center;
  gap: var(--space-16);
  padding: 21px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-card__icon {
  width: 60px;
  height: 60px;
  display: inline-grid;
  place-items: center;
  position: relative;
}

.search-card__icon-bg {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.search-card__icon-mark {
  position: absolute;
  object-fit: contain;
}

.search-card__icon-mark--map {
  width: 33px;
  height: 33px;
  left: 13px;
  top: 13px;
}

.search-card__icon-mark--car {
  width: 33px;
  height: 20px;
  left: 13px;
  top: 20px;
}

.search-card__icon-mark--home {
  width: 32px;
  height: 32px;
  left: 14px;
  top: 14px;
}

.search-card__icon-mark--moon {
  width: 33px;
  height: 33px;
  left: 15px;
  top: 14px;
}

.search-card__icon-mark--list {
  width: 33px;
  height: 25.1267px;
  left: 13px;
  top: 17px;
}

.search-card__icon-mark--store {
  width: 33.2523px;
  height: 26.71px;
  left: 13px;
  top: 18px;
}

.search-card__label {
  font-size: var(--fs-20);
  font-weight: 500;
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.search-card__arrow {
  width: 17px;
  height: 17px;
}

.search-card__arrow img {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.news-panel {
  background: var(--color-white);
  border-radius: var(--radius-20);
  min-height: 318px;
  padding: 64px 53px 35px 60px;
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 59px;
}

.section-heading--news {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.section-heading--news .section-heading__jp {
  margin: 0;
  line-height: 1.2;
}

.section-heading--news .section-heading__en {
  margin: 0;
  line-height: var(--lh-loose);
}

.news-panel__list {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.news-panel__item {
  border-bottom: 1px solid var(--color-border-soft);
}

.news-panel__item-link {
  display: grid;
  grid-template-columns: 116px 145px minmax(0, 1fr);
  align-items: center;
  min-height: 69px;
  padding-left: 35px;
  color: inherit;
  transition: opacity 0.3s ease;
}

.news-panel__date {
  font-family: var(--font-en);
  font-size: var(--fs-16);
  line-height: var(--lh-loose);
  letter-spacing: 0.05em;
}

.news-panel__category {
  width: 107px;
  height: 27px;
  border-radius: var(--radius-2);
  border: 1px solid var(--color-border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-14);
  line-height: var(--lh-loose);
  letter-spacing: 0.08em;
  font-weight: 400;
}

.news-panel__text {
  margin: 0;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: var(--lh-loose);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.btn--news {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  margin: 54px 0 0;
  width: 166px;
  min-width: 166px;
  position: relative;
}

.btn--news::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: url("../images/button-arrow-right.svg") center / contain no-repeat;
  transform: translateY(-50%) rotate(90deg);
}

.news-panel__item:last-child {
  border-bottom: none;
}

/* ==============================
   7) Message
============================== */
.message {
  margin-top: -56px;
  padding: 0;
}

.message__inner {
  position: relative;
  min-height: 770px;
  --message-media-shift: max(0px, calc((100vw - 1440px) / 2));
  --message-media-extra: clamp(0px, calc((100vw - 1440px) * 0.2), 128px);
  --message-media-main-width: calc(552px + var(--message-media-extra));
  --message-media-main-left: calc(768px + var(--message-media-shift) - var(--message-media-extra));
  --message-media-secondary-left: calc(649px + var(--message-media-shift) - min(40px, var(--message-media-extra)));
  --message-media-mascot-left: calc(948px + var(--message-media-shift) - min(40px, var(--message-media-extra)));
}

.message__content {
  position: absolute;
  left: 29px;
  top: 175px;
  width: 563px;
}

.message__label {
  position: absolute;
  left: -95px;
  top: -49px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 89px;
  font-weight: 500;
  width: 459px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(168, 213, 51, 0.12);
  white-space: nowrap;
  transform: rotate(90deg) translateY(-100%);
  transform-origin: left top;
  pointer-events: none;
}

.message__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.message__body {
  font-size: var(--fs-16);
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.message__body p {
  margin: 0;
}

.message__signature {
  width: 496px;
  margin: 44px 0 0 67px;
  text-align: right;
  font-size: var(--fs-16);
  line-height: 1.16;
  letter-spacing: 0.03em;
}

.message__media {
  position: absolute;
  inset: 0;
}

.message__media-main {
  position: absolute;
  left: var(--message-media-main-left);
  top: 0;
  width: var(--message-media-main-width);
  aspect-ratio: 3 / 2;
  height: auto;
  border-radius: var(--radius-20) 0 0 var(--radius-20);
  object-fit: cover;
  z-index: 1;
}

.message__media-sub {
  position: absolute;
  left: var(--message-media-secondary-left);
  top: 320px;
  width: 339.2278px;
  height: 228.2411px;
  border-radius: var(--radius-20);
  object-fit: cover;
  margin: 0;
  border: 0;
  z-index: 2;
}

.message__media-mascot {
  position: absolute;
  left: var(--message-media-mascot-left);
  top: 452px;
  width: 132px;
  height: 128px;
  z-index: 3;
}

/* ==============================
   8) Activities
============================== */
.activities {
  position: relative;
  padding: 30px 0 110px;
  overflow: hidden;
}

.activities__deco {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.activities__deco--left {
  left: -89px;
  top: 310px;
  width: 244px;
  height: 244px;
  background-image: url("../images/deco-ring-medium.svg");
}

.activities__deco--right {
  right: -126px;
  top: 620px;
  width: 381px;
  height: 381px;
  background-image: url("../images/deco-ring-large.svg");
}

.activities__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  column-gap: 50px;
  align-items: start;
}

.activities__heading {
  margin: 0;
  padding-left: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.activities__heading-en,
.activities__heading-jp {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.activities__heading-en {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--color-green);
  text-transform: uppercase;
}

.activities__heading-jp {
  font-size: var(--fs-34);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.activities__list {
  width: 1015px;
}

.activity-item {
  display: grid;
  grid-template-columns: 483px 472px;
  column-gap: 60px;
  align-items: start;
}

.activity-item + .activity-item {
  margin-top: 43px;
}

.activity-item--with-cta + .activity-item {
  margin-top: 54px;
}

.activity-item--reverse {
  grid-template-columns: 472px 483px;
  column-gap: 55px;
}

.activity-item--reverse .activity-item__media {
  order: 2;
}

.activity-item--reverse .activity-item__content {
  order: 1;
}

.activity-item__media {
  margin: 0;
  width: 483px;
}

.activity-item__media img {
  width: 100%;
  aspect-ratio: 483 / 243;
  object-fit: cover;
  border-radius: var(--radius-20);
}

.activity-item__content {
  width: 472px;
}

.activity-item--intro .activity-item__content {
  padding-top: 11px;
}

.activity-item--with-cta .activity-item__content {
  padding-top: 24px;
}

.activity-item--middle .activity-item__content {
  padding-top: 30px;
}

.activity-item--ending .activity-item__content {
  padding-top: 42px;
}

.activity-item__title {
  margin: 0;
  font-size: var(--fs-26);
  color: var(--color-green);
  line-height: var(--lh-tight);
  font-weight: 500;
}

.activity-item__divider {
  width: 472px;
  border-top: 1px solid var(--color-border-soft);
  margin: 21px 0 21px;
}

.activity-item__text {
  max-width: 458px;
  font-size: var(--fs-16);
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.activity-item--reverse .activity-item__text {
  max-width: 467px;
}

.activity-item__text p {
  margin: 0;
}

.activity-item__text p + p {
  margin-top: 0;
}

.btn--activities {
  position: relative;
  margin-top: 24px;
  width: 258px;
  height: 46px;
  min-width: 246px;
  min-height: 46px;
  padding: 0 42px 0 31px;
  justify-content: flex-start;
  line-height: 1;
}

.btn--activities::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: url("../images/button-arrow-right.svg") center / contain no-repeat;
  transform: translateY(-50%) rotate(90deg);
}

/* ==============================
   9) Officers
============================== */
.officers {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-soft);
  padding: 87px 0 66px;
}

.officers::after {
  content: "";
  position: absolute;
  top: -142px;
  right: -80px;
  width: 386px;
  height: 386px;
  background: url("../images/officers-deco-ring-large.svg") center / contain no-repeat;
  pointer-events: none;
}

.officers__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 338px 862px;
  align-items: start;
}

.officers__heading {
  margin: 0;
}

.officers__title {
  margin: 0;
  font-size: var(--fs-34);
  font-weight: 700;
  line-height: var(--lh-loose);
  letter-spacing: 0.08em;
}

.officers__en {
  margin: 5px 0 0;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--color-green);
  text-transform: uppercase;
}

.officers__table-wrap {
  width: 862px;
  padding-top: 42px;
}

.officers__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: var(--fs-16);
  color: var(--color-text);
}

.officers__table tr {
  border-bottom: 1px solid var(--color-border-soft);
}

.officers__table th,
.officers__table td {
  padding: 13px 0;
  vertical-align: top;
  line-height: 43px;
  letter-spacing: 0.04em;
}

.officers__table th {
  width: 135px;
  padding-left: 38px;
  font-weight: 500;
  text-align: left;
}

.officers__people {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}

.officers__person {
  white-space: nowrap;
}

.officers__pharmacy {
  color: var(--color-gray);
}

/* ==============================
   10) Member List
============================== */
.member-list {
  position: relative;
  padding: 84px 0 100px;
  overflow: hidden;
}

.member-list::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -89px;
  width: 283px;
  height: 283px;
  background: url("../images/deco-ring-medium.svg") center / contain no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.member-list .container {
  position: relative;
  z-index: 1;
}

.member-list__heading {
  margin: 0 0 40px;
}

.member-list__title {
  margin: 0;
  font-size: var(--fs-34);
  font-weight: 700;
  line-height: var(--lh-loose);
  letter-spacing: 0.08em;
}

.member-list__en {
  margin: 5px 0 0;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--color-green);
  text-transform: uppercase;
}

.member-list__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: start;
}

.member-card {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 13px rgba(154, 154, 154, 0.16);
  overflow: hidden;
}

.member-card__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.member-card__col--pharmacy {
  width: 45%;
}

.member-card__col--address {
  width: 32%;
}

.member-card__col--tel {
  width: 23%;
}

.member-card__header {
  display: table-header-group;
}

.member-card__header tr {
  background: var(--color-green-cta);
}

.member-card__header th {
  height: 45px;
  padding: 0;
  font-size: var(--fs-16);
  font-weight: 500;
  letter-spacing: 0.11em;
  vertical-align: middle;
  text-align: left;
  white-space: nowrap;
  color: var(--color-white);
  background: var(--color-green-cta);
}

.member-card__header th:nth-child(1) {
  padding-left: 22px;
}

.member-card__header th:nth-child(2),
.member-card__header th:nth-child(3) {
  padding-left: 20px;
}

.member-card__body {
  display: table-row-group;
}

.member-card__row {
  font-size: 15px;
  line-height: 1.4666666667;
}

.member-card__cell {
  height: 35px;
  padding: 0;
  vertical-align: middle;
  min-width: 0;
  overflow-wrap: anywhere;
  background: var(--color-white);
}

.member-card__row .member-card__cell:nth-child(1) {
  padding-left: 13px;
}

.member-card__row .member-card__cell:nth-child(2) {
  padding-left: 17px;
}

.member-card__row .member-card__cell:nth-child(3) {
  padding-left: 19px;
}

.member-card__row:nth-child(even) .member-card__cell {
  background: var(--color-bg-soft);
}

.member-card__row .member-card__cell + .member-card__cell {
  border-left: 1px solid var(--color-border-soft);
}

.member-card__cell--tel {
  white-space: nowrap;
}

/* ==============================
   11) Contact
============================== */
.contact {
  position: relative;
  --contact-overhang: max(0px, calc((100vw - 1440px) / 2));
}

.contact__backdrop {
  position: relative;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("../images/contact-background-photo.jpg") center / cover no-repeat;
  min-height: 590px;
}

.contact__backdrop::before {
  content: "";
  position: absolute;
  top: -127px;
  right: -152px;
  width: 263px;
  height: 263px;
  background: url("../images/contact-deco-ring-top-right.svg") center / contain no-repeat;
  pointer-events: none;
}

.contact__backdrop .container {
  position: relative;
  width: min(1440px, 100%);
  max-width: none;
  min-height: 590px;
  padding: 0;
  margin: 0 auto;
}

.contact__card {
  position: absolute;
  left: calc(var(--contact-overhang) * -1);
  bottom: 0;
  width: calc(775px + var(--contact-overhang));
  min-height: 380px;
  background: var(--color-panel-white);
  border-radius: 0 var(--radius-190) 0 0;
  padding: 55px 102px 69px calc(102px + var(--contact-overhang));
}

.contact__card h2 {
  margin: 0;
  max-width: 365px;
  font-size: var(--fs-34);
  line-height: var(--lh-loose);
}

.contact__en {
  margin: 24px 0 0;
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1;
  color: var(--color-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__card p {
  margin: 0;
}

.contact__card .contact__body {
  max-width: 535px;
  margin-top: 41px;
}

.contact__actions {
  margin-top: 46px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact__action {
  width: 258px;
  padding: 0 24px;
}

.contact__action--phone {
  gap: 5px;
}

.contact__action-icon {
  width: 15px;
  height: 15px;
}

.contact__pagetop {
  position: absolute;
  right: 21px;
  bottom: -28px;
  width: 124px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
}

.contact__pagetop-image {
  width: 124px;
  height: 128px;
}

.contact__pagetop-label {
  margin-top: 0;
  font-family: var(--font-en);
  font-size: var(--fs-16);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
}

/* ==============================
   11) Footer
============================== */
.site-footer {
  background: var(--color-green-tint);
}

.site-footer__inner {
  width: min(1326px, calc(100% - 114px));
  max-width: none;
  margin: 0 auto;
  min-height: 259px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  grid-template-areas:
    "logo ."
    "meta nav";
  align-content: start;
  row-gap: 10px;
  column-gap: 48px;
  padding: 55px 0 25px;
}

.site-logo--footer {
  grid-area: logo;
  margin-left: 11px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 33px;
}

.site-footer__brand {
  grid-area: meta;
  padding-left: 11px;
}

.site-logo--footer .site-logo__en {
  font-family: "Montserrat", var(--font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text);
}

.site-logo--footer .site-logo__jp {
  position: relative;
  display: inline-block;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.04em;
  color: var(--color-text);
  white-space: nowrap;
}

.site-logo--footer .site-logo__jp::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  width: 1px;
  height: 31px;
  background: rgba(34, 34, 34, 0.18);
  transform: translateY(-50%);
}

.site-footer__address,
.site-footer__tel,
.site-footer__copyright {
  margin: 0;
}

.site-footer__address,
.site-footer__tel {
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.site-footer__address {
  margin-top: 0;
}

.site-footer__tel {
  margin-top: 3px;
}

.site-footer__nav {
  grid-area: nav;
  justify-self: end;
  align-self: start;
  padding-top: 2px;
}

.site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 32px;
}

.site-footer__nav a {
  display: inline-block;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.07em;
  text-align: center;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.site-footer__copyright {
  position: absolute;
  left: 1020px;
  bottom: 31px;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.06em;
  color: #000000;
  white-space: nowrap;
}

@media (max-width: 1377px) and (min-width: 1219px) {
  .site-footer__copyright {
    left: auto;
    right: 8px;
  }
}

/* ==============================
   12) News Detail Page
============================== */
.page-news-detail {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0, rgba(247, 246, 242, 0.98) 720px, var(--color-bg-soft) 1180px, var(--color-bg-soft) 100%);
}

.page-news-detail .site-header,
.page-news-detail main,
.page-news-detail .site-footer {
  position: relative;
  z-index: 1;
}

.detail-hero {
  position: relative;
  overflow: visible;
  padding: 40px 0 60px;
  background: transparent;
}

.detail-hero__deco {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.detail-hero__deco--left {
  top: 476px;
  left: -118px;
  width: 244px;
  height: 244px;
  background-image: url("../images/deco-ring-search-medium.svg");
}

.detail-hero__deco--right {
  top: 54px;
  right: -74px;
  width: 298px;
  height: 298px;
  background-image: url("../images/deco-ring-medium.svg");
}

.detail-hero__content {
  position: relative;
}

.detail-hero__meta {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.detail-hero__date {
  font-family: var(--font-en);
  font-size: var(--fs-16);
  line-height: var(--lh-loose);
  letter-spacing: 0.05em;
}

.detail-hero__category {
  min-width: 107px;
  height: 27px;
  padding: 0 16px;
  border-radius: var(--radius-2);
  border: 1px solid var(--color-border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-14);
  line-height: 1;
  letter-spacing: 0.08em;
}

.detail-hero__label {
  margin: 20px 0 40px;
  font-family: var(--font-en);
  font-size: 86px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: rgba(168, 213, 51, 0.12);
}

.detail-hero__title {
  width: min(1000px, 100%);
  margin: 12px auto 0;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.detail-hero__lead {
  width: min(1000px, 100%);
  margin: 24px auto 0;
  max-width: none;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.detail-hero__actions {
  margin: 44px auto 0;
  display: flex;
  justify-content: center;
}

.detail-hero__figure {
  margin: 44px 0 0;
  position: relative;
}

.detail-hero__figure img {
  width: 100%;
  aspect-ratio: 52 / 38;
  object-fit: cover;
  border-radius: 30px 30px 30px 170px;
}

.news-detail {
  position: relative;
  background: transparent;
  padding: 0 0 120px;
}

.news-detail__layout {
  display: block;
  position: relative;
  z-index: 1;
}

.news-detail__card,
.news-detail__side-card {
  background: var(--color-white);
  border-radius: var(--radius-20);
}

.news-detail__card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 60px 64px;
}

.news-detail__card > *:first-child {
  margin-top: 0;
}

.news-detail__card > p {
  margin: 24px 0 0;
  line-height: 2.1;
  letter-spacing: 0.05em;
}

.news-detail__card strong {
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(168, 213, 51, 0.26) 62%);
}

.news-detail__card h2,
.news-detail__card h3 {
  margin: 52px 0 0;
}

.news-detail__card h2 {
  position: relative;
  padding: 0 0 18px 34px;
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.news-detail__card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(177, 207, 99, 0.96), rgba(168, 213, 51, 0.56));
  box-shadow: 10px 0 0 rgba(168, 213, 51, 0.18);
}

.news-detail__card h2::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 0;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 213, 51, 0.9), rgba(168, 213, 51, 0));
}

.news-detail__card h3 {
  font-size: var(--fs-26);
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--color-green);
}

.news-detail__card h4 {
  margin: 44px 0 0;
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--color-text);
}

.news-detail__card :is(ul, ol) {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.news-detail__card ul {
  list-style: none;
}

.news-detail__card ul li {
  position: relative;
  padding-left: 20px;
  line-height: 1.95;
  letter-spacing: 0.05em;
}

.news-detail__card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

.news-detail__card ol {
  list-style: none;
  counter-reset: news-detail-step;
}

.news-detail__card ol li {
  counter-increment: news-detail-step;
  position: relative;
  min-height: 38px;
  padding: 4px 0 4px 54px;
  line-height: 1.95;
  letter-spacing: 0.05em;
}

.news-detail__card ol li::before {
  content: counter(news-detail-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 213, 51, 0.3);
  background: rgba(168, 213, 51, 0.14);
  color: #7ca11d;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.news-detail__figure {
  margin: 36px 0 0;
}

.news-detail__figure img {
  width: 100%;
  aspect-ratio: 720 / 360;
  object-fit: cover;
  border-radius: var(--radius-20);
}

.news-detail__figure figcaption {
  margin-top: 12px;
  font-size: var(--fs-14);
  line-height: 1.8;
  color: var(--color-gray);
}

.news-detail__note {
  margin-top: 40px;
  padding: 26px 28px;
  border-radius: var(--radius-20);
  background: rgba(177, 207, 99, 0.18);
}

.news-detail__note-title {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-detail__note p:last-child {
  margin: 0;
  line-height: 1.9;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }

  .btn.btn--blue:hover {
    background: var(--color-blue-cta-hover);
    color: var(--color-white);
  }

  .btn.btn--green:hover {
    background: var(--color-green-cta-hover);
    color: var(--color-white);
  }

  .site-header__nav-list a:hover {
    color: var(--color-green);
  }

  .search-card a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
  }

  .search-card a:hover .search-card__icon-bg {
    transform: scale(1.08);
  }

  .search-card a:hover .search-card__label {
    color: var(--color-green);
    letter-spacing: 0.08em;
  }

  .search-card a:hover .search-card__arrow img {
    transform: translateX(4px) rotate(90deg);
  }

  .news-panel__item-link:hover {
    opacity: 0.92;
  }

  .news-panel__item-link:hover .news-panel__text {
    color: var(--color-green);
  }

  .site-footer__nav a:hover {
    opacity: 0.7;
  }

  .contact__pagetop:hover {
    opacity: 0.8;
  }
}

/* ==============================
   12) Responsive
============================== */
@media (max-width: 1218px) and (min-width: 1025px) {
  .message {
    margin-top: 0;
    padding: 72px 0 88px;
  }

  .message__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
    gap: clamp(32px, 4vw, 48px);
    align-items: center;
    min-height: 0;
  }

  .message__content {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-width: 100%;
    padding-left: clamp(52px, 5vw, 74px);
  }

  .message__label {
    left: 0;
    top: clamp(-12px, -1vw, -4px);
    width: clamp(360px, 34vw, 420px);
    height: 56px;
    font-size: clamp(72px, 6.8vw, 82px);
  }

  .message__signature {
    width: min(100%, 496px);
    margin: 36px 0 0;
  }

  .message__media {
    position: relative;
    inset: auto;
    justify-self: end;
    width: min(100%, clamp(380px, 39vw, 470px));
    aspect-ratio: 671 / 580;
  }

  .message__media-main {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    width: 82.2653%;
    aspect-ratio: 3 / 2;
    height: auto;
    border-radius: var(--radius-20);
  }

  .message__media-sub {
    position: absolute;
    left: 0;
    top: 55.1724%;
    width: 50.5554%;
    height: auto;
    margin: 0;
  }

  .message__media-mascot {
    position: absolute;
    left: 44.5604%;
    top: 77.931%;
    width: 19.6721%;
    height: auto;
  }

  .activities__container {
    grid-template-columns: clamp(96px, 10vw, 124px) minmax(0, 1fr);
    column-gap: clamp(28px, 3vw, 40px);
  }

  .activities__heading {
    padding-left: clamp(0px, 1vw, 10px);
    gap: 12px;
  }

  .activities__heading-jp {
    font-size: clamp(30px, 2.8vw, 34px);
  }

  .activities__list {
    width: 100%;
  }

  .activity-item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    column-gap: clamp(28px, 3.4vw, 42px);
  }

  .activity-item--reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    column-gap: clamp(28px, 3.1vw, 38px);
  }

  .activity-item__media,
  .activity-item__content {
    width: 100%;
  }

  .activity-item__divider {
    width: 100%;
  }

  .activity-item__text,
  .activity-item--reverse .activity-item__text {
    max-width: 100%;
  }

  .officers__layout {
    grid-template-columns: clamp(236px, 26vw, 300px) minmax(0, 1fr);
    column-gap: clamp(24px, 3vw, 36px);
  }

  .officers__table-wrap {
    width: 100%;
  }

  .officers__table th {
    width: clamp(104px, 10vw, 120px);
    padding-left: clamp(0px, 1.4vw, 18px);
    padding-right: 16px;
  }

  .officers__table th,
  .officers__table td {
    line-height: 2;
  }

  .officers__people {
    gap: 8px 24px;
  }

  .officers__person {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .member-list__cards {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
  }

  .site-footer__inner {
    width: min(1326px, calc(100% - 48px));
    min-height: 0;
    grid-template-columns: minmax(280px, 1fr) auto;
    grid-template-areas:
      "logo ."
      "meta nav"
      "meta copy";
    column-gap: clamp(24px, 3vw, 36px);
    row-gap: 16px;
  }

  .site-footer__nav ul {
    gap: clamp(18px, 2.4vw, 28px);
    flex-wrap: wrap;
  }

  .site-footer__copyright {
    position: static;
    grid-area: copy;
    justify-self: end;
    align-self: end;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .detail-hero {
    padding: 30px 0 72px;
  }

  .detail-hero__content {
    max-width: none;
  }

  .detail-hero__label {
    font-size: 72px;
  }

  .detail-hero__title {
    font-size: 38px;
  }

  .detail-hero__lead {
    max-width: none;
    font-size: 17px;
  }

  .detail-hero__figure {
    margin: 0;
    max-width: 760px;
  }

  .news-detail {
    padding-bottom: 96px;
  }

  .news-detail__layout {
    display: block;
  }

  .news-detail__card {
    max-width: none;
    padding: 48px 40px 52px;
  }

  .site-header__inner {
    align-items: center;
    justify-content: space-between;
    min-height: var(--mobile-header-height);
    gap: 12px;
  }

  .site-logo--header {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1302;
    align-items: flex-start;
    text-align: left;
  }

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

  .site-header__mobile-button span {
    position: absolute;
    left: 50%;
    width: 50%;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 999px;
    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: 29.1667%;
  }

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

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

  body.is-menu-open .site-header__mobile-button span:nth-child(1) {
    top: 47.9167%;
    transform: translateX(-50%) rotate(45deg);
  }

  body.is-menu-open .site-header__mobile-button span:nth-child(2) {
    opacity: 0;
  }

  body.is-menu-open .site-header__mobile-button span:nth-child(3) {
    top: 47.9167%;
    transform: translateX(-50%) rotate(-45deg);
  }

  .site-header__right {
    position: fixed;
    inset: 0 0 0 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    padding: calc(var(--mobile-header-height) + 24px) 24px 32px;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      transform 0.24s ease,
      opacity 0.24s ease,
      visibility 0s linear 0.24s;
    z-index: 1290;
    -webkit-overflow-scrolling: touch;
  }

  body.is-menu-open .site-header__right {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-header__nav-list {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 18px;
  }

  .site-header__nav-list li {
    width: 100%;
  }

  .site-header__nav-list a {
    display: block;
    position: relative;
    width: 100%;
    padding: 16px 0 16px 24px;
  }

  .site-header__nav-list a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px dashed rgba(34, 34, 34, 0.15);
  }

  .site-header__actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .site-header__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero {
    --hero-tablet-visual-height: clamp(420px, 50vw, 520px);
    padding-top: 8px;
    padding-bottom: 0;
  }

  .hero__inner {
    width: min(1388px, calc(100% - 84px));
    min-height: auto;
    padding-top: 10px;
    padding-left: clamp(18px, 2.8vw, 28px);
    display: grid;
    grid-template-columns: minmax(110px, 124px) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(36px, 5vw, 60px);
  }

  .hero__copy {
    position: static;
    margin-top: calc(var(--hero-tablet-visual-height) * 0.07671875);
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
    justify-self: start;
    align-self: start;
  }

  .hero__lead,
  .hero__title {
    margin: 0;
    width: 49px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 36px;
    line-height: 41px;
    letter-spacing: 3.2px;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    justify-self: end;
  }

  .hero__visual > img:first-child {
    height: var(--hero-tablet-visual-height);
  }

  .hero__character {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 118px;
    justify-self: end;
    align-self: end;
    margin-right: -22px;
    margin-bottom: -24px;
  }

  .hero__mascot {
    width: 118px;
    height: auto;
  }

  .hero__mascot-name {
    width: 96px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero__bridge-text {
    left: -377px;
    top: calc(100% - 47.5px);
    width: 1500px;
    font-size: clamp(84px, 10vw, 96px);
    line-height: 1;
  }

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

  .search-news {
    padding-top: 130px;
  }

  .news-panel__item-link {
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas:
      "date category ."
      "text text text";
    gap: 8px 18px;
    align-items: start;
    min-height: 0;
    padding: 18px 0;
    padding-left: 0;
  }

  .news-panel__date {
    grid-area: date;
    white-space: nowrap;
    align-self: center;
  }

  .news-panel__category {
    grid-area: category;
    justify-self: start;
    align-self: center;
  }

  .news-panel__text {
    grid-area: text;
  }

  .btn--news {
    align-self: end;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .message {
    margin-top: 0;
    padding: 88px 0;
  }

  .message__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: clamp(24px, 4vw, 36px);
    align-items: start;
    min-height: 0;
  }

  .message__content {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .message__label {
    position: static;
    order: 2;
    margin: 0;
    font-size: 22px;
    width: auto;
    height: auto;
    display: block;
    line-height: 1.2;
    color: var(--color-green);
    writing-mode: horizontal-tb;
    transform: none;
    white-space: normal;
  }

  .message__title {
    position: static;
    order: 1;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-size: var(--fs-34);
    line-height: var(--lh-loose);
    letter-spacing: 0.08em;
  }

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

  .message__signature {
    order: 4;
    width: 100%;
    margin: 24px 0 0;
  }

  .message__media {
    position: relative;
    inset: auto;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 432px;
    margin: 0;
    padding: 0;
    aspect-ratio: 671 / 580;
  }

  .message__media-main {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    width: 82.2653%;
    aspect-ratio: 3 / 2;
    height: auto;
    border-radius: var(--radius-20);
  }

  .message__media-sub {
    position: absolute;
    left: 0;
    top: 55.1724%;
    width: 50.5554%;
    height: auto;
    margin: 0;
  }

  .message__media-mascot {
    position: absolute;
    left: 44.5604%;
    top: 77.931%;
    bottom: auto;
    width: 19.6721%;
    height: auto;
  }

  .activities {
    padding: 0 0 88px;
  }

  .activities__deco {
    display: none;
  }

  .activities__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .activities__heading {
    padding-left: 0;
    display: grid;
    gap: 0;
    align-items: start;
    justify-items: start;
  }

  .activities__heading-en,
  .activities__heading-jp {
    writing-mode: horizontal-tb;
  }

  .activities__heading-jp {
    order: 1;
    line-height: var(--lh-loose);
  }

  .activities__heading-en {
    order: 2;
    line-height: 1.2;
  }

  .activities__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
    align-items: start;
  }

  .activity-item,
  .activity-item--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .activity-item + .activity-item,
  .activity-item--with-cta + .activity-item {
    margin-top: 0;
  }

  .activity-item--reverse .activity-item__media,
  .activity-item--reverse .activity-item__content {
    order: initial;
  }

  .activity-item__title {
    font-size: 24px;
  }

  .activity-item__media,
  .activity-item__content {
    width: 100%;
  }

  .activity-item--intro .activity-item__content,
  .activity-item--with-cta .activity-item__content,
  .activity-item--middle .activity-item__content,
  .activity-item--ending .activity-item__content {
    padding-top: 0;
  }

  .activity-item__divider {
    width: 100%;
    margin: 18px 0;
  }

  .activity-item__text,
  .activity-item--reverse .activity-item__text {
    max-width: 100%;
  }

  .btn--activities {
    margin-top: 28px;
  }

  .officers {
    padding: 72px 0;
  }

  .officers__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .officers::after {
    top: -96px;
    right: -72px;
    width: 260px;
    height: 260px;
  }

  .officers__table-wrap {
    width: 100%;
    padding-top: 0;
    overflow: visible;
  }

  .officers__table {
    min-width: 0;
    table-layout: fixed;
  }

  .officers__table th,
  .officers__table td {
    padding: 14px 0;
    line-height: 1.8;
  }

  .officers__table th {
    width: clamp(72px, 10vw, 96px);
    padding-left: 0;
    padding-right: 16px;
  }

  .officers__people {
    gap: 8px 20px;
  }

  .officers__person {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .member-list {
    padding: 72px 0 88px;
  }

  .member-list::before {
    top: 18px;
    left: -108px;
    width: 240px;
    height: 240px;
  }

  .member-list__heading {
    margin-bottom: 28px;
  }

  .member-list__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 640px;
    margin: 0 auto;
  }

  .contact__backdrop {
    min-height: 0;
    padding: 72px 0;
  }

  .contact__backdrop::before {
    top: -84px;
    right: -118px;
    width: 220px;
    height: 220px;
  }

  .contact__backdrop .container {
    width: min(1200px, calc(100% - 48px));
    max-width: 1200px;
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
  }

  .contact__card {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    transform: none;
    border-radius: var(--radius-20);
    padding: 48px 40px;
  }

  .contact__body,
  .contact__card h2 {
    max-width: none;
  }

  .contact__body {
    margin-top: 24px;
  }

  .contact__actions {
    margin-top: 30px;
  }

  .contact__pagetop {
    display: none;
  }

  .site-footer__inner {
    width: min(1200px, calc(100% - 48px));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    gap: 20px;
    padding: 44px 0;
  }

  .site-logo--footer {
    margin-left: 0;
  }

  .site-footer__brand {
    padding-left: 0;
  }

  .site-footer__nav ul {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-footer__nav {
    display: none;
  }

  .site-footer__copyright {
    position: static;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .contact__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px clamp(40px, 7vw, 72px);
  }

  .contact__card h2,
  .contact__en,
  .contact__body,
  .contact__actions {
    width: min(100%, 560px);
  }

  .contact__card h2,
  .contact__en,
  .contact__body {
    text-align: center;
  }

  .contact__en {
    margin-top: 20px;
  }

  .contact__body {
    margin-top: 28px;
  }

  .contact__actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    padding: 14px 0 56px;
  }

  .detail-hero__deco--left {
    display: none;
  }

  .detail-hero__deco--right {
    top: 48px;
    right: -132px;
    width: 240px;
    height: 240px;
  }

  .detail-hero__meta {
    gap: 12px;
  }

  .detail-hero__label {
    margin-top: 24px;
    font-size: 56px;
  }

  .detail-hero__title {
    font-size: 31px;
  }

  .detail-hero__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.95;
  }

  .detail-hero__actions {
    margin-top: 28px;
  }

  .detail-hero__figure img {
    border-radius: var(--radius-20) var(--radius-20) var(--radius-20) 88px;
  }

  .news-detail {
    padding-bottom: 80px;
  }

  .news-detail__card {
    padding: 36px 24px 40px;
  }

  .news-detail__card h2,
  .news-detail__card h3 {
    margin-top: 34px;
  }

  .news-detail__card h2 {
    padding-left: 30px;
    padding-bottom: 14px;
    font-size: 28px;
  }

  .news-detail__card h2::before {
    top: 0.24em;
    width: 12px;
    height: 30px;
    box-shadow: 8px 0 0 rgba(168, 213, 51, 0.18);
  }

  .news-detail__card h2::after {
    left: 30px;
    width: 76px;
  }

  .news-detail__card h3 {
    font-size: 24px;
  }

  .news-detail__card h4 {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.8;
  }

  .news-detail__card ol li {
    padding-left: 48px;
    min-height: 34px;
  }

  .news-detail__card ol li::before {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .news-detail__note {
    padding: 22px 20px;
  }

  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .site-footer__inner {
    width: min(1200px, calc(100% - 32px));
  }

  .site-logo__word {
    font-size: 24px;
  }

  .site-logo--footer .site-logo__en {
    font-size: 24px;
    line-height: 30px;
  }

  .site-logo--footer {
    gap: 25px;
  }

  .site-logo--footer .site-logo__jp {
    font-size: 18px;
    line-height: 26px;
  }

  .site-logo--footer .site-logo__jp::before {
    left: -13px;
    height: 26px;
  }

  .site-footer__nav ul {
    gap: 12px 24px;
  }

  .site-footer__nav a {
    font-size: 14px;
  }

  .site-header__actions {
    width: 100%;
    flex-wrap: nowrap;
  }

  .site-header__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .site-logo--header {
    flex: 0 0 auto;
    gap: 8px;
    min-width: 0;
    width: fit-content;
  }

  .site-logo--header .site-logo__name {
    margin-left: auto;
    margin-right: auto;
  }

  .message__inner {
    display: block;
  }

  .message__content {
    width: 100%;
  }

  .message__media {
    width: min(100%, 392px);
    max-width: 392px;
    margin: 32px auto 0;
  }

  .message__media-sub {
    margin: 0;
  }

  .message__media-mascot {
    width: 19.6721%;
  }

  .hero {
    padding-top: 4px;
    padding-bottom: 0;
  }

  .hero__fv-bg {
    top: auto;
    bottom: 0;
  }

  .hero__inner {
    width: min(1388px, calc(100% - 32px));
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy {
    margin-top: 0;
    display: block;
  }

  .hero__lead,
  .hero__title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    width: auto;
  }

  .hero__lead {
    margin: 10px 0 2px;
    font-size: 28px;
    line-height: 1.4;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: 0.03em;
  }

  .hero__visual {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
  }

  .hero__visual > img:first-child {
    height: auto;
  }

  .hero__character {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    width: 92px;
    margin-right: 12px;
    margin-bottom: -30px;
  }

  .hero__bridge-text {
    left: -166px;
    top: calc(100% - 47.5px);
    width: 1500px;
    font-size: clamp(84px, 10vw, 96px);
    line-height: 1;
  }

  .hero__mascot {
    width: 92px;
    height: auto;
  }

  .hero__mascot-name {
    width: 84px;
    font-size: 10px;
    line-height: 1.3;
  }

  .search-news {
    padding-top: 100px;
  }

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

  .news-panel {
    min-height: 0;
    display: block;
    padding: 34px 24px 28px;
  }

  .section-heading {
    gap: 0;
  }
  
  .section-heading--news {
    margin-bottom: 20px;
    gap: 0;
  }

  .section-heading--news .section-heading__jp {
    line-height: var(--lh-loose);
  }

  .news-panel__list {
    margin-top: 0;
  }

  .news-panel__item-link {
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas:
      "date category ."
      "text text text";
    gap: 8px 12px;
    min-height: 0;
    padding: 16px 0;
  }

  .news-panel__category {
    width: auto;
    min-width: 96px;
    height: 24px;
    padding: 0 10px;
    font-size: 12px;
  }

  .btn--news {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .message {
    padding: 88px 0;
  }

  .activities__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .activities__heading {
    padding-left: 0;
    display: grid;
    gap: 0;
    align-items: start;
    justify-items: start;
  }

  .activities__heading-en,
  .activities__heading-jp {
    writing-mode: horizontal-tb;
  }

  .activities__heading-jp {
    order: 1;
    line-height: var(--lh-loose);
  }

  .activities__heading-en {
    order: 2;
    line-height: 1.2;
  }

  .activities__list {
    display: block;
    width: 100%;
  }

  .activity-item,
  .activity-item--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .activity-item + .activity-item,
  .activity-item--with-cta + .activity-item {
    margin-top: 48px;
  }

  .activity-item--reverse .activity-item__media,
  .activity-item--reverse .activity-item__content {
    order: initial;
  }

  .activity-item__media,
  .activity-item__content {
    width: 100%;
  }

  .activity-item--intro .activity-item__content,
  .activity-item--with-cta .activity-item__content,
  .activity-item--middle .activity-item__content,
  .activity-item--ending .activity-item__content {
    padding-top: 0;
  }

  .activity-item__divider {
    width: 100%;
    margin: 18px 0;
  }

  .activity-item__text,
  .activity-item--reverse .activity-item__text {
    max-width: 100%;
  }

  .btn--activities {
    margin-top: 28px;
  }

  .officers {
    padding: 72px 0;
  }

  .officers__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .officers::after {
    top: -96px;
    right: -72px;
    width: 260px;
    height: 260px;
  }

  .officers__table-wrap {
    width: 100%;
    padding-top: 0;
    overflow: visible;
  }

  .officers__table {
    min-width: 0;
    table-layout: fixed;
  }

  .officers__table th,
  .officers__table td {
    padding: 14px 0;
    line-height: 1.8;
  }

  .officers__table th {
    width: clamp(72px, 10vw, 96px);
    padding-left: 0;
    padding-right: 16px;
  }

  .officers__people {
    gap: 8px 20px;
  }

  .officers__person {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .officers {
    padding: 72px 0;
  }

  .officers__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .officers::after {
    top: -96px;
    right: -72px;
    width: 260px;
    height: 260px;
  }

  .officers__table-wrap {
    width: 100%;
    padding-top: 0;
    overflow: visible;
  }

  .officers__table {
    min-width: 0;
    table-layout: fixed;
  }

  .officers__table th,
  .officers__table td {
    line-height: 1.75;
  }

  .officers__table th {
    width: 72px;
    padding-right: 12px;
  }

  .officers__people {
    gap: 8px 16px;
  }

  .member-list {
    padding: 64px 0 72px;
  }

  .member-list::before {
    top: 4px;
    left: -124px;
    width: 220px;
    height: 220px;
    opacity: 0.36;
  }

  .member-list__heading {
    margin-bottom: 24px;
  }

  .member-list__en {
    margin-top: 14px;
    font-size: 20px;
  }

  .member-card__col--pharmacy {
    width: 37%;
  }

  .member-card__col--address {
    width: 35%;
  }

  .member-card__col--tel {
    width: 28%;
  }

  .member-card__header th {
    min-height: 42px;
    font-size: 14px;
  }

  .member-card__header th:nth-child(1) {
    padding-left: 16px;
  }

  .member-card__header th:nth-child(2),
  .member-card__header th:nth-child(3) {
    padding-left: 14px;
  }

  .member-card__row {
    font-size: 13px;
    line-height: 1.5;
  }

  .member-card__cell {
    height: auto;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .member-card__row .member-card__cell:nth-child(1) {
    padding-left: 10px;
  }

  .member-card__row .member-card__cell:nth-child(2),
  .member-card__row .member-card__cell:nth-child(3) {
    padding-left: 12px;
  }

  .contact__backdrop {
    min-height: 0;
    padding: 72px 0;
  }

  .contact__backdrop::before {
    display: none;
  }

  .contact__backdrop .container {
    width: min(1200px, calc(100% - 32px));
    min-height: 0;
    margin: 0 auto;
  }

  .contact__card {
    position: static;
    width: 100%;
    min-height: 0;
    border-radius: var(--radius-20);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact__body,
  .contact__card h2 {
    max-width: none;
  }

  .contact__card h2,
  .contact__en,
  .contact__body,
  .contact__actions {
    width: min(100%, 318px);
  }

  .contact__card h2 {
    font-size: 28px;
    text-align: center;
  }

  .contact__en,
  .contact__body {
    text-align: center;
  }

  .contact__body {
    margin-top: 24px;
  }

  .contact__actions {
    margin-top: 30px;
    justify-content: center;
  }

  .contact__pagetop {
    display: none;
  }
}

@media (max-width: 640px) {
  .search-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .search-card a {
    min-height: 88px;
    grid-template-columns: 44px minmax(0, 1fr) 12px;
    gap: 10px;
    padding: 14px 12px;
  }

  .search-card__icon,
  .search-card__icon-bg {
    width: 44px;
    height: 44px;
  }

  .search-card__icon-mark {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.72);
    transform-origin: center;
  }

  .search-card__label {
    font-size: 16px;
    line-height: 1.35;
  }

  .search-card__arrow {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .detail-hero__title {
    font-size: 28px;
  }

  .detail-hero__label {
    font-size: 44px;
  }

  .detail-hero__category {
    min-width: 96px;
    padding: 0 12px;
  }

  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .site-footer__inner {
    width: min(1200px, calc(100% - 24px));
  }

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

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

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .site-header__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero__title {
    font-size: 28px;
  }

  .contact__backdrop .container {
    width: min(1200px, calc(100% - 24px));
  }

  .contact__actions {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__address,
  .site-footer__tel,
  .site-footer__copyright {
    font-size: 11px;
  }

  .site-footer__nav ul {
    gap: 8px 16px;
  }
}

@media (max-width: 375px) {
  .search-news__grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   WordPress Theme Additions
============================== */
.news-panel__item-link--placeholder {
  cursor: default;
}

.page-shell {
  padding: 88px 0 0;
  background: linear-gradient(180deg, #f9f7ef 0%, #ffffff 100%);
}

.page-shell__hero {
  padding-bottom: 40px;
}

.page-shell__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border-soft);
}

.page-shell__lead {
  max-width: 540px;
  margin: 0;
  color: var(--color-gray);
  line-height: 2;
}

.page-shell__body {
  padding-bottom: 80px;
}

.container--narrow {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
}

.news-panel--archive {
  min-height: 0;
  display: block;
  padding: 36px 40px;
}

.news-panel--archive .news-panel__list {
  margin-top: 0;
}

.news-panel__empty {
  margin: 0;
}

.pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--color-border-soft);
  border-radius: 999px;
  background: var(--color-white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.pagination .current {
  background: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.pagination a.page-numbers:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .pagination a.page-numbers:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    background: var(--color-green-cta-hover);
    border-color: var(--color-green-cta-hover);
    color: var(--color-white);
  }
}

.page-content,
.not-found-panel {
  padding: 40px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-30);
  background: var(--color-panel-white);
}

.page-content__title {
  margin: 20px 0 0;
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  line-height: 1.5;
}

.page-content__title a {
  color: inherit;
}

.page-content__body {
  margin-top: 24px;
}

.page-content__body > * + * {
  margin-top: 1.2em;
}

.page-content__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-content__body img {
  border-radius: var(--radius-20);
}

.page-content__article + .page-content__article {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-soft);
}

.page-shell__actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.page-shell__actions .btn {
  width: auto;
  min-width: 220px;
}

.school-page__intro-card,
.school-page__panel {
  position: relative;
  padding: 36px 40px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-30);
  background: var(--color-panel-white);
  overflow: hidden;
}

.school-page__intro-card::before,
.school-page__panel::before {
  content: "";
  position: absolute;
  inset: auto auto auto 0;
  pointer-events: none;
  opacity: 0.14;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.school-page__intro-card::before {
  top: -44px;
  right: -56px;
  width: 220px;
  height: 220px;
  background-image: url("../images/deco-ring-medium.svg");
}

.school-page__panel {
  margin-top: 24px;
}

.school-page__panel::before {
  top: auto;
  bottom: -78px;
  right: -84px;
  width: 280px;
  height: 280px;
  background-image: url("../images/deco-ring-large.svg");
}

.school-page__intro,
.school-page__table-header,
.school-page__table-wrap {
  position: relative;
  z-index: 1;
}

.school-page__intro-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.school-page__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-green);
}

.school-page__description {
  margin: 0;
  max-width: 620px;
  color: var(--color-gray);
  line-height: 1.9;
}

.school-page__description > *:first-child {
  margin-top: 0;
}

.school-page__description > *:last-child {
  margin-bottom: 0;
}

.school-page__count {
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(168, 213, 51, 0.16);
  color: var(--color-text);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.school-page__table-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.school-page__table-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.school-page__table-note {
  margin: 0;
  color: var(--color-gray);
  line-height: 1.8;
}

.school-page__table-wrap {
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.school-page__table {
  width: 100%;
  border-collapse: collapse;
}

.school-page__table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 18px 22px;
  background: rgba(177, 207, 99, 0.92);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
}

.school-page__table tbody th,
.school-page__table tbody td {
  padding: 18px 22px;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.school-page__table tbody th {
  width: 31%;
  font-weight: 700;
}

.school-page__table tbody tr:nth-child(even) {
  background: rgba(249, 247, 239, 0.7);
}

.news-detail-page__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: min(100%, 1000px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.news-detail-page__date {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.news-detail-page__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(168, 213, 51, 0.16);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.news-detail-page__eyebrow {
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-green);
}

.news-detail-page__title {
  width: min(100%, 1000px);
  margin: 0 auto 24px;
  font-size: clamp(1.85rem, 2.8vw, 2.9rem);
  line-height: 1.55;
  letter-spacing: 0.06em;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .page-shell__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .page-shell__header .section-heading {
    gap: 0;
  }

  .page-shell__header .section-heading__jp {
    font-size: 28px;
    white-space: nowrap;
  }

  .page-shell__header .section-heading__en {
    font-size: 18px;
  }

  .page-shell__lead {
    max-width: none;
  }

  .news-detail-page__title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .page-shell {
    padding: 72px 0 88px;
  }

  .page-shell__header {
    gap: 10px;
  }

  .container--narrow {
    width: min(960px, calc(100% - 32px));
  }

  .news-panel--archive,
  .page-content,
  .not-found-panel {
    padding: 28px 24px;
  }

  .page-shell__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .school-page__intro-card,
  .school-page__panel {
    padding: 28px 24px;
  }

  .school-page__intro-card,
  .school-page__table-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .school-page__table thead th,
  .school-page__table tbody th,
  .school-page__table tbody td {
    padding: 16px 14px;
    font-size: 14px;
  }

  .news-detail-page__meta {
    gap: 10px;
    margin-bottom: 16px;
  }

  .news-detail-page__date {
    font-size: 14px;
  }

  .news-detail-page__category {
    min-height: 28px;
    padding: 4px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container--narrow {
    width: min(960px, calc(100% - 24px));
  }

  .news-panel--archive,
  .page-content,
  .not-found-panel {
    padding: 24px 20px;
  }

  .school-page__intro-card,
  .school-page__panel {
    padding: 24px 20px;
  }

  .school-page__table,
  .school-page__table thead,
  .school-page__table tbody,
  .school-page__table tr,
  .school-page__table th,
  .school-page__table td {
    display: block;
  }

  .school-page__table thead {
    display: none;
  }

  .school-page__table tbody tr {
    padding: 16px;
  }

  .school-page__table tbody tr + tr {
    border-top: 1px solid rgba(34, 34, 34, 0.08);
  }

  .school-page__table tbody th,
  .school-page__table tbody td {
    width: 100%;
    padding: 0;
    border-top: none;
  }

  .school-page__table tbody th {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .school-page__table tbody td + td {
    margin-top: 8px;
    color: var(--color-gray);
  }

  .news-detail-page__title {
    font-size: 1.5rem;
  }
}
