:root {
  --color-offwhite: #faf9f6;
  --color-text: #3b2e2b;
  --color-text-soft: #5a514d;
  --color-text-muted: rgba(59, 46, 43, 0.7);
  --color-green: #85b082;
  --color-green-strong: #729f71;
  --color-purple: #c5bbf5;
  --color-purple-strong: #8477bf;
  --color-mint: rgba(210, 230, 208, 0.6);
  --color-mint-soft: #f5faf5;
  --color-mint-pale: #e5f5e4;
  --color-white: #ffffff;
  --color-charcoal: #333333;
  --color-card-label: #b2bab1;
  --color-line: rgba(59, 46, 43, 0.14);
  --color-line-strong: rgba(59, 46, 43, 0.22);
  --color-shadow: 0 24px 48px rgba(123, 149, 121, 0.12);
  --color-shadow-soft: 0 4px 16px rgba(146, 194, 142, 0.1);
  --color-shadow-hover: 0 18px 36px rgba(119, 146, 117, 0.18);

  --font-jp: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-en: "Quicksand", "Manrope", sans-serif;

  --fs-hero: 38px;
  --fs-section-title: 32px;
  --fs-title-md: 24px;
  --fs-card-title: 20px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 15px;
  --fs-label: 16px;
  --fs-label-sm: 12px;
  --fs-meta: 16px;

  --lh-hero: 1.16;
  --lh-heading: 1.35;
  --lh-body: 1.975;
  --lh-body-tight: 1.59;

  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-18: 72px;
  --space-20: 80px;
  --space-24: 96px;
  --space-28: 112px;
  --space-32: 128px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 40px;
  --radius-pill: 999px;
}

.page-shell {
  padding: clamp(112px, 14vw, 168px) 0 clamp(64px, 9vw, 120px);
}

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

.page-shell__hero {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  text-align: center;
}

.page-shell__eyebrow {
  margin: 0;
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-shell__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.page-shell__lead {
  margin: 0;
  color: var(--color-text-soft);
}

.page-shell__body {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--color-shadow-soft);
}

.page-shell__body > :first-child,
.entry-content > :first-child {
  margin-top: 0;
}

.page-shell__body > :last-child,
.entry-content > :last-child {
  margin-bottom: 0;
}

.page-shell__meta {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.page-shell__list {
  display: grid;
  gap: 20px;
}

.page-shell__item {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-white);
}

.page-shell__item-title {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.45;
}

.page-shell__link {
  text-decoration: none;
}

.page-shell__excerpt {
  margin: 12px 0 0;
  color: var(--color-text-soft);
}

.page-shell__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.page-shell__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  text-decoration: none;
}

.page-shell__pagination .page-numbers.current {
  border-color: var(--color-purple-strong);
  background: var(--color-purple-strong);
  color: var(--color-white);
}

@media (max-width: 767px) {
  .page-shell__inner {
    width: min(100%, calc(100% - 32px));
  }

  .page-shell__item {
    padding: 20px;
  }

  .page-shell__item-title {
    font-size: 20px;
  }
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  background: linear-gradient(180deg, #fff 0 680px, var(--color-offwhite) 680px 100%);
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
}

body.drawer-open {
  overflow: hidden;
}

main {
  position: relative;
  overflow: clip;
}

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

a,
button {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(132, 119, 191, 0.55);
  outline-offset: 4px;
}

.sp {
    display: none;
}

main:focus-visible {
  outline: 3px solid rgba(132, 119, 191, 0.55);
  outline-offset: 8px;
}

[data-url-status="URL_UNKNOWN"] {
  cursor: pointer;
}

.skip-link,
.site-header__brand,
.site-header__nav-list a,
.button,
.site-drawer__link,
.news__item,
.search-card,
.site-footer__nav-list a,
.contact__phone a {
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-purple-strong);
  color: var(--color-white);
  transform: translateY(-140%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.section__container,
.site-footer__inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
}

.section__curve {
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 125px;
  transform: translate(-50%, 0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 6px;
}

.section-heading__label,
.activities__label {
  margin: 0;
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.11em;
}

.contact .section-heading__label,
.activities__label {
  color: var(--color-purple-strong);
}

.section-heading__label--center {
  display: block;
  text-align: center;
}

.section-heading__title,
.activities__title,
.contact__title {
  margin: 0;
  color: var(--color-text);
  font-size: var(--fs-section-title);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--button-color, inherit);
  cursor: pointer;
  white-space: nowrap;
}

.button:visited {
  color: var(--button-color, inherit);
}

.button__arrow,
.news__arrow {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.button__arrow::before,
.button__arrow::after,
.news__arrow::before,
.news__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  background: currentColor;
}

.button__arrow::before,
.news__arrow::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-44%, -50%);
}

.button__arrow::after,
.news__arrow::after {
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  background: transparent;
  transform: translate(-18%, -50%) rotate(45deg);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled,
body.drawer-open .site-header {
  background: rgba(250, 249, 246, 0.96);
  box-shadow: 0 8px 24px rgba(59, 46, 43, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  width: min(1398px, calc(100% - 42px));
  margin: 0 auto;
  padding: 23px 0 22px;
  transition: padding 0.3s ease;
}

.site-header.scrolled .site-header__inner {
  padding: 15px 0 14px;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 16px;
}

.site-header__brand-jp,
.site-footer__brand-jp {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-header__brand-en,
.site-footer__brand-en {
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__brand-en {
    font-size: 12px;
}

.site-header__desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-6);
  flex: 1;
}

.site-header__nav {
  flex: 1;
}

.site-header__nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-list a,
.site-footer__nav-list a {
  position: relative;
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-header__nav-list a {
  color: var(--color-text-soft);
}

.site-footer__nav-list a {
  white-space: nowrap;
}

.site-header__nav-list a::after,
.site-footer__nav-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.button--header,
.button--news,
.button--drawer {
  --button-color: var(--color-text);
  background: var(--color-purple);
}

.button--header {
  align-self: flex-start;
  position: relative;
  top: -4px;
  width: 249px;
  padding: 0 28px;
  justify-content: center;
  gap: 0;
  --button-color: var(--color-white);
}

.button--header .button__arrow {
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  width: 6.67px;
  height: 11.12px;
  margin: auto 0;
  flex: none;
  border: 0;
  border-radius: 0;
  background: center / contain no-repeat url("../images/header-cta-arrow.svg");
}

.button--header .button__arrow::before {
  display: none;
}

.button--header .button__arrow::after {
  display: none;
}

.button--news {
  justify-self: start;
  background: var(--color-green);
  --button-color: var(--color-white);
}

.button--news .button__arrow {
  width: 6.67px;
  height: 11.12px;
  flex: 0 0 6.67px;
  border: 0;
  border-radius: 0;
}

.news__arrow {
  width: 6px;
  height: 14px;
  border: 0;
  border-radius: 0;
}

.button--news .button__arrow {
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto 0;
  background: center / contain no-repeat url("../images/header-cta-arrow.svg");
}

.button--news .button__arrow::before,
.button--news .button__arrow::after {
  display: none;
}

.news__arrow::before {
  display: none;
}

.news__arrow::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  transform: none;
  -webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6.67081 11.1207'%3E%3Cpath d='M1.01099 1.01099L5.29273 4.77686C5.52788 4.98517 5.65984 5.26681 5.65984 5.56036C5.65984 5.85391 5.52788 6.13555 5.29273 6.34386L1.01099 10.1097' fill='none' stroke='black' stroke-width='2.02194' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6.67081 11.1207'%3E%3Cpath d='M1.01099 1.01099L5.29273 4.77686C5.52788 4.98517 5.65984 5.26681 5.65984 5.56036C5.65984 5.85391 5.52788 6.13555 5.29273 6.34386L1.01099 10.1097' fill='none' stroke='black' stroke-width='2.02194' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.news__arrow {
  color: var(--color-green);
}

.button--drawer {
  width: 100%;
  background: var(--color-green);
  --button-color: var(--color-white);
}

.site-header__hamburger {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-green);
  cursor: pointer;
  flex-shrink: 0;
}

.site-header__hamburger span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  transform: translateX(-50%);
}

.site-header__hamburger span:nth-child(1) {
  top: 17px;
}

.site-header__hamburger span:nth-child(2) {
  top: 25px;
}

.site-header__hamburger span:nth-child(3) {
  top: 33px;
}

.site-header__hamburger.is-open span:nth-child(1) {
  top: 25px;
  transform: translateX(-50%) rotate(45deg);
}

.site-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__hamburger.is-open span:nth-child(3) {
  top: 25px;
  transform: translateX(-50%) rotate(-45deg);
}

.site-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(59, 46, 43, 0.24);
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  width: min(420px, 100%);
  height: 100dvh;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.site-drawer.is-open {
  transform: translateX(0);
}

.site-drawer__panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  height: 100%;
  padding: 92px 32px 32px;
  background: rgba(250, 249, 246, 0.98);
  box-shadow: -16px 0 32px rgba(59, 46, 43, 0.12);
  overflow-y: auto;
}

.site-drawer__nav {
  display: grid;
  gap: var(--space-6);
}

.site-drawer__menu,
.site-footer__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-drawer__item {
  border-bottom: 1px dashed var(--color-line-strong);
}

.site-drawer__link {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-drawer__contact {
  display: grid;
  gap: 14px;
  padding-top: var(--space-2);
}

.hero {
  --hero-layer-offset-x: 199px;
  --hero-copy-offset-x: 158px;
  --hero-copy-offset-y: 16px;
  --hero-copy-photo-gap: 38px;
  --hero-title-column-width: 58px;
  --hero-title-column-gap: 9.5px;
  position: relative;
  padding: 138px 0 110px;
  overflow: visible;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 396px) minmax(0, 822px);
  align-items: start;
  gap: var(--hero-copy-photo-gap);
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.hero__layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  padding-left: var(--hero-copy-offset-x);
  padding-top: var(--hero-copy-offset-y);
}

.hero__title {
  display: flex;
  gap: var(--hero-title-column-gap);
  margin: 0;
}

.hero__title-line {
  --hero-title-shift-x: 0px;
  display: inline-flex;
  flex: 0 0 var(--hero-title-column-width);
  width: var(--hero-title-column-width);
  align-items: flex-start;
  justify-content: flex-start;
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: var(--lh-hero);
  letter-spacing: 0.07em;
  writing-mode: vertical-rl;
  transform: translateX(var(--hero-title-shift-x));
}

.hero__title-line--support {
  --hero-title-shift-x: 0.444px;
}

.hero__title-line--association {
  --hero-title-shift-x: -0.097px;
}

.hero__media {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.hero__media img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 822 / 432;
}

.hero__ornament {
  position: absolute;
  pointer-events: none;
}

.hero__ornament-part {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
}

.hero__ornament--top-right {
  top: 0;
  right: 0;
  width: min(592px, 41.2vw);
  aspect-ratio: 592 / 199;
  background: url("../images/hero-top-ornament.svg") center / contain no-repeat;
  opacity: 1;
}

.hero__ornament--copy {
  top: 142px;
  left: 116px;
  width: 199px;
  height: 324px;
  z-index: 3;
  opacity: 0.3;
}

.hero__ornament--photo {
  top: 126px;
  right: 69px;
  width: 194px;
  height: 159px;
  z-index: 2;
  opacity: 1;
}

.hero__ornament-part--copy-01 {
  top: 4.7%;
  left: 75.23%;
  width: 24.77%;
  height: 23.86%;
}

.hero__ornament-part--copy-02 {
  top: 22.64%;
  left: 42.31%;
  width: 31.93%;
  height: 33.21%;
}

.hero__ornament-part--copy-03 {
  top: 0;
  left: 18.98%;
  width: 25.31%;
  height: 22.68%;
}

.hero__ornament-part--copy-04 {
  top: 57.84%;
  left: 57.43%;
  width: 24.77%;
  height: 23.86%;
}

.hero__ornament-part--copy-05 {
  top: 81.99%;
  left: 80.44%;
  width: 17.32%;
  height: 18.01%;
}

.hero__ornament-part--copy-06 {
  top: 36.62%;
  left: 0;
  width: 33.92%;
  height: 33.75%;
}

.hero__ornament-part--photo-01 {
  left: 0;
  top: 0;
  width: 31.43%;
  height: 57.58%;
}

.hero__ornament-part--photo-02 {
  left: 28.4%;
  top: 19.86%;
  width: 40.51%;
  height: 80.14%;
}

.hero__ornament-part--photo-03 {
  left: 67.89%;
  top: 2.01%;
  width: 32.11%;
  height: 54.74%;
}

.section--search {
  padding: 35px 0 118px;
  background: var(--color-offwhite);
}

.section__curve--search {
  background-image: url("../images/divider-section-wave.svg");
}

.hero .section__curve--search {
  --search-curve-height: 125px;
  top: auto;
  bottom: 0;
  height: var(--search-curve-height);
  z-index: 0;
}

.pharmacy-search {
  position: relative;
  display: grid;
  gap: 41px;
  width: min(1193px, calc(100% - 48px));
  margin: 0 auto;
  z-index: 1;
}

.section-heading--search {
  gap: 10px;
}

.pharmacy-search__intro {
  display: grid;
  align-content: start;
  gap: 53px;
}

.pharmacy-search__content {
  display: grid;
  grid-template-columns:
    clamp(360px, calc(360px + (100vw - 1025px) * 60 / 216), 420px)
    minmax(0, 1fr);
  align-items: start;
  gap: 40px clamp(40px, calc(40px + (100vw - 1025px) * 107 / 216), 147px);
}

.pharmacy-search__description {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: var(--lh-body);
  letter-spacing: 0.06em;
}

.pharmacy-search__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 190px));
  justify-content: start;
  gap: 28px;
}

.search-card {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: clip;
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.search-card::before {
  content: "";
  position: absolute;
  top: 9.47%;
  left: 50%;
  width: 53.16%;
  height: 53.16%;
  border-radius: 50%;
  background: var(--color-mint-pale);
  transform: translateX(-50%);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.search-card__icon-wrap {
  position: absolute;
  top: 24.21%;
  left: 50%;
  width: 24.21%;
  height: 21.05%;
  z-index: 1;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}

.search-card__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.search-card__title {
  position: absolute;
  top: 68.42%;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  color: var(--color-charcoal);
  text-align: center;
  font-size: var(--fs-card-title);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.search-card__label {
  position: absolute;
  top: 84.74%;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  color: var(--color-card-label);
  font-family: var(--font-en);
  font-size: var(--fs-label-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.search-card--map .search-card__icon-wrap {
  top: 27.37%;
  width: 14.21%;
}

.search-card--outpatient .search-card__icon-wrap {
  top: 25.26%;
  width: 24.21%;
}

.search-card--homecare .search-card__icon-wrap {
  top: 24.21%;
  width: 22.11%;
}

.search-card--night .search-card__icon-wrap {
  top: 24.74%;
  width: 23.16%;
}

.search-card--holiday .search-card__icon-wrap {
  top: 25.26%;
  width: 20%;
}

.search-card--functions .search-card__icon-wrap {
  top: 24.74%;
  width: 21.05%;
}

.section--news {
  padding: 108px 0 93px;
  background: var(--color-mint);
}

.news {
  position: relative;
  min-height: 336px;
}

.pharmacy-search__ornament,
.news__ornament,
.message__ornament,
.activities__ornament,
.members__ornament,
.site-footer__ornament {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pharmacy-search__ornament-part,
.message__ornament-part,
.activities__ornament-part,
.members__ornament-part,
.site-footer__ornament-part {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
}

.pharmacy-search__ornament {
  left: max(24px, calc((100% - 1194px) / 2));
  bottom: 0;
  width: 338px;
  height: 112px;
  background-image: url("../images/search-news-illustration-cluster.svg");
  background-position: left bottom;
  background-size: 100% 100%;
}

.news__ornament--leaf-large {
  top: 85px;
  left: calc((100% - 1440px) / 2 + 70px);
  width: 121px;
  height: 71px;
  background-image: url("../images/news-leaf-accent-large.svg");
}

.news__ornament--leaf-small {
  top: 135px;
  left: calc((100% - 1440px) / 2 + 231px);
  width: 90px;
  height: 53px;
  background-image: url("../images/news-leaf-accent-small.svg");
}

.news__ornament--sprout {
  right: calc((100% - 1216px) / 2);
  bottom: -2px;
  width: 82px;
  height: 63px;
  z-index: 2;
}

.news__ornament--sprout img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading--news {
  position: absolute;
  top: -3px;
  left: 3px;
  display: grid;
  gap: 1px;
}

.news__list {
  width: 879px;
  margin: 8px 0 0 329px;
  padding: 0;
  display: grid;
  gap: 20px;
  list-style: none;
}

.news__list-item {
  margin: 0;
}

.news__item {
  position: relative;
  display: block;
  height: 96px;
  padding: 24px 72px 25px 41px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--color-offwhite);
}

.news__item--empty {
  cursor: default;
}

.news__body {
  display: grid;
  justify-items: start;
  gap: 4px;
}

.news__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.news__date {
  display: block;
  font-family: var(--font-en);
  font-size: var(--fs-meta);
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: rgba(34, 34, 34, 0.5);
}

.news__category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(133, 176, 130, 0.16);
  color: var(--color-green-strong);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.news__title {
  display: block;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.news__arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.button--news {
  position: absolute;
  left: 3px;
  bottom: 0;
  width: 198px;
  padding: 0 34px;
  gap: 0;
  justify-content: center;
}

.section--message {
  padding: 108px 0 150px;
  background: #fff;
}

.section__curve--message {
  top: 0;
  background-image: url("../images/divider-section-wave.svg");
  background-color: #fff;
}

.section__curve--message-bottom {
  top: auto;
  bottom: -1px;
  width: max(1600px, 100vw);
  height: 109px;
  transform: translateX(-50%);
  background: none;
}

.section__curve--message-bottom img {
  display: block;
  width: 100%;
  height: 100%;
}

.message {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 369px) minmax(0, 697px);
  justify-content: space-between;
  align-items: start;
  gap: 56px;
  z-index: 1;
}

.message__media {
  position: relative;
}

.message__photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 369 / 364;
  object-fit: cover;
  border-radius: 26px;
}

.message__content {
  position: relative;
  display: grid;
  gap: var(--space-8);
  padding-top: 22px;
}

.message__ornament--left {
  top: 0;
  left: -54px;
  width: 120px;
  height: 151px;
  z-index: 2;
}

.message__ornament--left img {
  display: block;
  width: 100%;
  height: auto;
}

.message__ornament--mascot {
  right: -52px;
  bottom: -36px;
  width: 122px;
  height: 147px;
  z-index: 2;
}

.message__ornament--mascot img {
  display: block;
  width: 100%;
  height: auto;
  position: static;
  object-fit: contain;
  border-radius: 0;
}

.message__body {
  display: grid;
  gap: var(--space-4);
  max-width: 697px;
}

.section-heading--message .section-heading__label {
  color: var(--color-green);
  margin-top: 32px;
  line-height: 15px;
}

.section-heading--message {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}

.section-heading--message .section-heading__title {
  line-height: 67px;
}

.message__body p,
.contact__lead,
.contact__address,
.contact__fax,
.site-footer__info p {
  margin: 0;
}

.message__body p {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: var(--lh-body);
  letter-spacing: 0.06em;
}

.message__signature {
  justify-self: end;
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.975;
  letter-spacing: 0.06em;
  text-align: right;
}

.section--activities {
  z-index: 1;
  padding: 77px 0 161px;
  overflow: visible;
  background: var(--color-offwhite);
}

.activities {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, calc(40px + (100vw - 1025px) * 51 / 223), 91px);
  padding-left: clamp(0px, calc((100vw - 1025px) * 45 / 223), 45px);
  padding-right: clamp(0px, calc((1248px - 100vw) * 40 / 223), 40px);
}

.activities__heading {
  position: relative;
  width: 66px;
  min-height: 196px;
}

.activities__label {
  position: absolute;
  top: 3px;
  left: 74px;
  margin: 0;
  color: var(--color-purple);
  line-height: 15px;
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: top left;
}

.activities__title {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 36px;
  line-height: 49px;
  letter-spacing: 14px;
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, clamp(390px, calc(390px + (100vw - 1025px) * 89 / 223), 479px)));
  gap: 40px;
  margin-top: 10px;
  justify-content: space-between;
}

.activity-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  min-width: 0;
}

.activity-card--top-right,
.activity-card--bottom-right {
  margin-top: 31px;
}

.activity-card__media {
  position: relative;
  width: 100%;
  min-width: 0;
}

.activity-card__image {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 959 / 528;
  object-fit: cover;
  -webkit-mask-image: url("../images/activity-card-mask.png");
  mask-image: url("../images/activity-card-mask.png");
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

.activity-card__ornament {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.activity-card__ornament img {
  display: block;
  width: 100%;
  height: 100%;
}

.activity-card__ornament--top {
  top: -26px;
  right: 2px;
  width: 89px;
  height: 112px;
}

.activity-card__ornament--top img {
  width: 100%;
  height: auto;
}

.activity-card__ornament--lower {
  right: 14px;
  bottom: -31px;
  width: 86.76px;
  height: 86.73px;
}

.activity-card__ornament--character {
  right: -19px;
  bottom: -1px;
  width: 92px;
  height: 102px;
}

.activity-card__ornament--purple {
  top: -17px;
  right: clamp(-35px, calc((1200px - 100vw) / 2), 0px);
  width: 104px;
  height: 118.01px;
}

.activity-card__body {
  display: grid;
  gap: 25px;
  width: 445px;
  max-width: 100%;
}

.activity-card--top-left .activity-card__body {
  margin-top: 27px;
  padding-left: 7px;
}

.activity-card--top-right .activity-card__body {
  margin-top: 35px;
  padding-left: 17px;
}

.activity-card--bottom-left .activity-card__body {
  margin-top: 40px;
  padding-left: 7px;
}

.activity-card--bottom-right .activity-card__body {
  margin-top: 36px;
  padding-left: 17px;
}

.activity-card__title {
  margin: 0;
  color: var(--color-purple-strong);
  font-size: clamp(24px, calc(24px + (100vw - 1025px) * 2 / 223), 26px);
  font-weight: 700;
  line-height: 15px;
  letter-spacing: clamp(0.5px, calc(0.5px + (100vw - 1025px) * 1.32 / 223), 1.82px);
  white-space: nowrap;
}

.activity-card__description {
  margin: 0;
  color: var(--color-text);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 28.6px;
  letter-spacing: 0.06em;
}

.section--organization {
  overflow: visible;
  padding: 60px 0 180px;
  background: var(--color-white);
  z-index: 1;
}

.section__curve--organization {
  top: auto;
  bottom: -0;
  width: max(1600px, 100vw);
  height: 109px;
  z-index: 0;
  transform: translateX(-50%);
  background: none;
}

.organization {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-10);
}

.section__curve--organization img {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
  transform-origin: center;
}

.section-heading--organization {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.section-heading--organization .section-heading__title {
  line-height: 1;
}

.section-heading--organization .section-heading__label {
  margin-bottom: 0;
  color: var(--color-green);
  line-height: 1;
  transform: translateY(2px);
}

.organization__panel {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.organization__table {
  position: relative;
  z-index: 1;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
}

.organization__table th,
.organization__table td {
  position: relative;
  height: 55px;
  padding: 0 32px;
  vertical-align: middle;
}

.organization__table th::after,
.organization__table td::after,
.organization__table tbody tr:first-child th::before,
.organization__table tbody tr:first-child td::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-image: radial-gradient(circle, var(--color-line) 1px, transparent 1.12px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left center;
  pointer-events: none;
}

.organization__table th::after,
.organization__table td::after {
  bottom: -1px;
}

.organization__table tbody tr:first-child th::before,
.organization__table tbody tr:first-child td::before {
  top: -1px;
}

.organization__table th {
  width: 233px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: left;
  color: var(--color-text-soft);
  background: var(--color-offwhite);
}

.organization__table td {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: left;
  background: transparent;
}

.organization__names {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.section--members {
  z-index: 2;
  overflow: visible;
  padding: 50px 0 126px;
  background: var(--color-mint-soft);
}

.section__curve--members-top {
  top: -113px;
  width: max(1440px, 100vw);
  height: 141.836px;
  z-index: 1;
  transform: translateX(-50%);
  background: none;
}

.section__curve--members-top img {
  display: block;
  width: 100%;
  height: 100%;
}

.members {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 54px;
}

.section-heading--members {
  display: inline-flex;
  align-items: flex-end;
  gap: 19px;
}

.members__title {
  margin: 0;
  color: var(--color-text);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.members__label {
  margin: 0;
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.11em;
  white-space: nowrap;
  transform: translateY(2px);
}

.members__ornament {
  top: -147px;
  right: max(16px, calc((100% - 1440px) / 2 + 90px));
  width: 165px;
  height: 143px;
  z-index: 1;
}

.members__ornament img {
  display: block;
  width: 100%;
  height: 100%;
}

.members__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 553px));
  align-items: start;
  justify-content: space-between;
  gap: 28px;
}

.members__card {
  align-self: start;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--color-shadow-soft);
  overflow: hidden;
}

.members__table {
  position: relative;
  width: 100%;
  min-width: 553px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.members__col--name {
  width: 210px;
}

.members__col--address {
  width: 219px;
}

.members__col--tel {
  width: 124px;
}

.members__table th,
.members__table td {
  text-align: left;
  vertical-align: middle;
}

.members__table thead th + th,
.members__table tbody td + td {
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(59, 46, 43, 0.14) 0 1px,
    transparent 1px 4px
  );
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
}

.members__table thead th {
  padding-top: 11px;
  padding-bottom: 11px;
  background-color: #f1f0ea;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.11em;
  color: var(--color-text);
}

.members__table thead th:first-child,
.members__table tbody td:first-child {
  padding-left: 22px;
  padding-right: 14px;
}

.members__table thead th:nth-child(2),
.members__table tbody td:nth-child(2) {
  padding-left: 13px;
  padding-right: 12px;
}

.members__table thead th:last-child,
.members__table tbody td:last-child {
  padding-left: 15px;
  padding-right: 16px;
  white-space: nowrap;
}

.members__table tbody td {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  color: #000;
}

.members__table tbody tr:nth-child(even) td {
  background-color: rgba(241, 240, 234, 0.45);
}

.members__table tbody td:nth-child(2) {
  word-break: break-word;
}

.section--contact {
  position: relative;
  background: var(--color-offwhite);
}

.contact {
  position: relative;
  min-height: 606px;
}

.contact__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58, 45, 43, 0.18), rgba(58, 45, 43, 0.22)),
    url("../images/contact-background-photo.jpg") center / cover no-repeat;
}

.contact__card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0;
  width: min(653px, calc(100% - 48px));
  margin: 0 auto;
  padding: 39px 36px 43px;
  transform: translateY(108px);
  border-radius: var(--radius-lg);
  background: rgba(250, 249, 246, 0.95);
  text-align: center;
}

.contact__title {
  line-height: 67px;
}

.contact__card .section-heading__label--center {
  margin-top: -1px;
}

.contact__lead {
  margin-top: 24px;
}

.contact__lead,
.contact__address {
  font-size: var(--fs-body-lg);
}

.contact__lead {
  color: var(--color-text-muted);
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.contact__address,
.contact__fax {
  font-weight: 500;
}

.contact__address {
  margin-top: 29px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 13px 0 0;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 500;
  line-height: 28.6px;
  letter-spacing: 0.06em;
}

.contact__phone svg {
  width: 24px;
  height: 24px;
  color: var(--color-purple);
}

.contact__fax {
  margin-top: 12px;
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 28.6px;
  letter-spacing: 0.06em;
}

.site-footer {
  position: relative;
  padding-top: 54px;
  background: var(--color-offwhite);
}

.site-footer__ornament {
  top: 4px;
  right: 45px;
  width: 104px;
  height: 119px;
}

.site-footer__ornament img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer__inner {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(1270px, calc(100% - 170px));
  margin: 0 auto;
  padding: 0 0 56px;
  align-items: start;
}

.site-footer__brand-block {
  display: grid;
  gap: 0;
}

.site-footer__brand-jp,
.site-footer__brand-en {
  margin: 0;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 32px;
}

.site-footer__nav {
  position: absolute;
  top: 74px;
  left: clamp(421px, calc(100vw - 759px), 521px);
  width: 627px;
}

.site-footer__info {
  display: grid;
  gap: 0;
  width: max-content;
}

.site-footer__info a {
  text-decoration: none;
}

.site-footer__info span {
  margin-inline: 6px;
}

.site-footer__copyright {
  min-height: 47px;
  padding: 15px 24px 14px;
  background: var(--color-purple);
}

.site-footer__copyright p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: rgba(250, 249, 246, 0.92);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

body.single-news {
  background: linear-gradient(180deg, #fff 0 250px, var(--color-mint-soft) 250px 560px, var(--color-offwhite) 560px 100%);
  overflow-x: clip;
}

body.post-type-archive-news {
  background: linear-gradient(180deg, #fff 0 250px, var(--color-mint-soft) 250px 560px, var(--color-offwhite) 560px 100%);
  overflow-x: clip;
}

.page-main--news-detail {
  overflow: visible;
  overflow-x: clip;
}

.page-main--news-archive {
  overflow-x: clip;
}

.news-article__hero {
  position: relative;
  overflow: clip;
  padding: 190px 0 160px;
  background: linear-gradient(180deg, rgba(245, 250, 245, 0.98) 0%, rgba(229, 245, 228, 0.82) 100%);
}

.news-article__hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.news-article__intro {
  display: grid;
  gap: 18px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(59, 46, 43, 0.58);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
}

.breadcrumb__list a {
  text-decoration: none;
}

.news-article__eyebrow {
  margin: 0;
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.news-article__title {
  margin: 0;
  color: var(--color-text);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

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

.news-article__ornament--leaf-large {
  top: 122px;
  left: calc((100% - 1440px) / 2 + 78px);
  width: 121px;
  height: 71px;
  background-image: url("../images/news-leaf-accent-large.svg");
}

.news-article__ornament--leaf-small {
  top: 168px;
  left: calc((100% - 1440px) / 2 + 238px);
  width: 90px;
  height: 53px;
  background-image: url("../images/news-leaf-accent-small.svg");
}

.news-article__ornament--sprout {
  right: calc((100% - 1200px) / 2 + 8px);
  bottom: 32px;
  width: 82px;
  height: 63px;
  z-index: 1;
}

.news-article__ornament--sprout img {
  width: 100%;
  height: auto;
}

.news-article__panel {
  position: relative;
  width: min(1000px, calc(100% - 48px));
  margin: -82px auto 0;
  padding: 68px 84px 72px;
  margin-bottom: 60px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(123, 149, 121, 0.14);
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.news-article__date {
  color: rgba(34, 34, 34, 0.5);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.news-article__category {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(133, 176, 130, 0.16);
  color: var(--color-green-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news-article__content {
  padding-top: 18px;
}

.news-article__content > * {
  margin: 0;
}

.news-article__content > * + * {
  margin-top: 24px;
}

.news-article__content > h2 {
  margin-top: 52px;
  color: var(--color-purple-strong);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.news-article__content > h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(132, 119, 191, 0.88), rgba(132, 119, 191, 0.15));
}

.news-article__content > h2 + * {
  margin-top: 22px;
}

.news-article__content > h3 {
  margin-top: 42px;
  color: var(--color-text);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.news-article__content > h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 12px;
  border-radius: var(--radius-pill);
  background: rgba(133, 176, 130, 0.72);
}

.news-article__content > h3 + * {
  margin-top: 18px;
}

.news-article__content > :is(h4, h5, h6) {
  margin-top: 34px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.news-article__content > h4 {
  color: var(--color-green-strong);
}

.news-article__content > :is(h5, h6) {
  color: var(--color-text);
}

.news-article__content > :is(h4, h5, h6) + * {
  margin-top: 14px;
}

.news-article__content :where(p, ul, ol) {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

.news-article__content :where(h2, h3, h4, h5, h6, p, li, a, strong, span) {
  overflow-wrap: anywhere;
  word-break: normal;
}

.news-article__content :where(ul, ol),
.news-article__list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.news-article__content :where(ul, ol) > li,
.news-article__list > li {
  position: relative;
  padding-left: 2.4em;
}

.news-article__content ul > li::before,
.news-article__list > li::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  transform: translateY(-50%);
}

.news-article__content ol {
  counter-reset: news-article-order;
}

.news-article__content ol > li {
  counter-increment: news-article-order;
}

.news-article__content ol > li::before {
  content: counter(news-article-order);
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(133, 176, 130, 0.18);
  color: var(--color-green-strong);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.news-article__content li > :where(ul, ol) {
  margin-top: 14px;
}

.news-article__content a {
  color: var(--color-purple-strong);
  text-decoration-color: rgba(132, 119, 191, 0.45);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  transition:
    color 0.3s ease,
    text-decoration-color 0.3s ease;
}

.news-article__note {
  padding: 24px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(229, 245, 228, 0.65), rgba(250, 249, 246, 0.96));
}

.news-article__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed rgba(59, 46, 43, 0.14);
}

.button--news-detail-back {
  --button-color: var(--color-white);
  background: var(--color-green);
}

.news-article__home-link {
  position: relative;
  color: var(--color-text-soft);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.news-article__home-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.news-archive {
  position: relative;
}

.news-archive__hero {
  position: relative;
  overflow: clip;
  padding: 190px 0 160px;
  background: linear-gradient(180deg, rgba(245, 250, 245, 0.98) 0%, rgba(229, 245, 228, 0.82) 100%);
}

.news-archive__hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.news-archive__intro {
  display: grid;
  gap: 18px;
}

.news-archive__eyebrow {
  margin: 0;
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.news-archive__title {
  margin: 0;
  color: var(--color-text);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.news-archive__lead {
  max-width: 640px;
  color: rgba(59, 46, 43, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.news-archive__lead > * {
  margin: 0;
}

.news-archive__lead > * + * {
  margin-top: 12px;
}

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

.news-archive__ornament--leaf-large {
  top: 122px;
  left: calc((100% - 1440px) / 2 + 78px);
  width: 121px;
  height: 71px;
  background-image: url("../images/news-leaf-accent-large.svg");
}

.news-archive__ornament--leaf-small {
  top: 168px;
  left: calc((100% - 1440px) / 2 + 238px);
  width: 90px;
  height: 53px;
  background-image: url("../images/news-leaf-accent-small.svg");
}

.news-archive__ornament--sprout {
  right: calc((100% - 1200px) / 2 + 8px);
  bottom: 32px;
  width: 82px;
  height: 63px;
  z-index: 2;
}

.news-archive__ornament--sprout img {
  width: 100%;
  height: auto;
}

.news-archive__panel {
  position: relative;
  width: min(1000px, calc(100% - 48px));
  margin: -82px auto 84px;
  padding: 68px 84px 72px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(123, 149, 121, 0.14);
}

.news-archive__list {
  width: auto;
  margin: 0;
}

.news-archive__list .news__item {
  height: auto;
  min-height: 96px;
}

.news-archive__list .news__title {
  white-space: normal;
}

.news-archive__empty {
  margin: 0;
}

.news-archive__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.news-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(133, 176, 130, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(133, 176, 130, 0.1);
  color: var(--color-green-strong);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.news-archive__pagination .page-numbers.current {
  border-color: var(--color-green);
  background: var(--color-green);
  color: var(--color-white);
}

.news-archive__pagination .page-numbers.dots {
  min-width: 0;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: rgba(59, 46, 43, 0.45);
}

@media (hover: hover) and (pointer: fine) {
  .site-header__nav-list a:hover,
  .site-footer__nav-list a:hover,
  .site-drawer__link:hover,
  .contact__phone a:hover {
    color: var(--color-purple-strong);
  }

  .site-header__nav-list a:hover::after,
  .site-footer__nav-list a:hover::after {
    transform: scaleX(1);
  }

  .button:hover,
  .search-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--color-shadow-hover);
  }

  .button--header:hover {
    background: #d4ccff;
  }

  .button--news:hover,
  .button--drawer:hover {
    background: var(--color-green-strong);
  }

  .button:hover .button__arrow,
  .news__item:hover .news__arrow {
    transform: translateX(3px);
  }

  .search-card:hover::before {
    transform: translateX(-50%) scale(1.04);
    background: rgba(133, 176, 130, 0.22);
  }

  .search-card:hover .search-card__icon {
    transform: translateY(-2px);
  }

  .search-card:hover .search-card__title {
    color: var(--color-green-strong);
  }

  .news__item:hover .news__title {
    color: var(--color-green-strong);
  }

  .news__item:hover {
    border-color: rgba(133, 176, 130, 0.32);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(229, 245, 228, 0.76));
    box-shadow: 0 16px 34px rgba(123, 149, 121, 0.16);
    transform: translateY(-2px);
  }

  .news__item--empty:hover {
    border-color: transparent;
    background: var(--color-offwhite);
    box-shadow: none;
    transform: none;
  }

  .news__item--empty:hover .news__title {
    color: var(--color-text);
  }

  .button--news-detail-back:hover {
    background: var(--color-green-strong);
  }

  .news-article__content a:hover {
    color: var(--color-green-strong);
    text-decoration-color: currentColor;
  }

  .breadcrumb__list a:hover,
  .news-article__home-link:hover {
    color: var(--color-green-strong);
  }

  .news-article__home-link:hover::after {
    transform: scaleX(1);
  }

  .news-archive__pagination a.page-numbers:hover {
    background: rgba(133, 176, 130, 0.2);
    border-color: rgba(133, 176, 130, 0.4);
    color: var(--color-green-strong);
    transform: translateY(-2px);
  }
}

@media (max-width: 1263px) {
  .news {
    min-height: 0;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 28px 36px;
  }

  .section-heading--news,
  .button--news {
    position: static;
    left: auto;
    top: auto;
    bottom: auto;
  }

  .section-heading--news {
    margin-left: 0;
  }

  .news__list {
    width: auto;
    margin: 0;
  }

  .button--news {
    width: 198px;
    margin-top: 4px;
  }
}

@media (max-width: 1218px) {
  .site-header__inner {
    width: calc(100% - 40px);
  }

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

  .hero__inner {
    gap: 32px;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  }

  .hero__copy {
    --hero-copy-offset-x: 88px;
    --hero-copy-offset-y: 12px;
    --hero-title-column-width: 52px;
    --hero-title-column-gap: 8px;
  }

  .hero__title-line {
    font-size: 34px;
  }

  .news__ornament--leaf-large {
    left: 24px;
  }

  .news__ornament--leaf-small {
    left: 172px;
  }

  .news__ornament--sprout {
    right: 24px;
  }

  .news-archive__ornament--sprout {
    right: 24px;
    bottom: 98px;
  }

  .news-article__title {
    font-size: 40px;
  }
}

@media (max-width: 1184px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__brand-block {
    grid-row: 1;
  }

  .site-footer__nav {
    position: static;
    grid-row: 3;
    width: auto;
  }

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

  .site-footer__info {
    grid-row: 2;
    width: auto;
  }

  .members__grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

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

  .members__col--name {
    width: 30%;
  }

  .members__col--address {
    width: 48%;
  }

  .members__col--tel {
    width: 22%;
  }
}

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

  .site-header__hamburger {
    display: inline-flex;
  }
}

@media (max-width: 1300px) and (min-width: 1025px) {
  .pharmacy-search__content {
    grid-template-columns:
      clamp(360px, calc(360px + (100vw - 1025px) * 48 / 275), 408px)
      minmax(0, 1fr);
    gap: 40px clamp(40px, calc(40px + (100vw - 1025px) * 72 / 275), 112px);
  }
}

@media (max-width: 1150px) and (min-width: 1025px) {
  .activities__grid {
    --activities-card-gap: clamp(48px, calc(48px + (100vw - 1025px) * 8 / 125), 56px);
    grid-template-columns: repeat(2, minmax(0, calc((100% - var(--activities-card-gap)) / 2)));
    column-gap: var(--activities-card-gap);
    justify-content: start;
  }
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 88px;
  }

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

  .site-header__inner {
    padding: 16px 0;
  }

  .site-header__brand {
    margin-left: 0;
  }

  .site-header.scrolled .site-header__inner {
    padding: 12px 0;
  }

  .members__ornament {
    top: -118px;
    right: clamp(16px, 2.4vw, 24px);
    width: clamp(124px, 13vw, 148px);
    height: clamp(107px, 11.3vw, 128px);
  }

  .hero {
    --hero-layer-offset-x: 38px;
    --hero-copy-offset-x: clamp(40px, 6.2vw, 72px);
    --hero-copy-offset-y: clamp(8px, 1.2vw, 14px);
    --hero-copy-photo-gap: clamp(20px, 2.8vw, 30px);
    --hero-title-column-width: clamp(42px, 4.6vw, 48px);
    --hero-title-column-gap: clamp(6px, 0.8vw, 8px);
    padding-top: 108px;
    padding-bottom: 94px;
  }

  .hero__inner {
    grid-template-columns: max-content auto;
    justify-content: center;
    gap: var(--hero-copy-photo-gap);
    width: fit-content;
    max-width: min(880px, calc(100% - 32px));
  }

  .hero__copy {
    --hero-copy-offset-x: 0px;
    --hero-copy-offset-y: clamp(8px, 1.2vw, 14px);
    --hero-title-column-width: clamp(42px, 4.6vw, 48px);
    --hero-title-column-gap: clamp(6px, 0.8vw, 8px);
    width: max-content;
    padding-left: var(--hero-copy-offset-x);
    padding-top: var(--hero-copy-offset-y);
    gap: 0;
  }

  .hero__title-line {
    font-size: clamp(24px, 2.9vw, 32px);
  }

  .hero__media {
    width: clamp(420px, 60vw, 640px);
  }

  .hero__ornament--copy {
    left: clamp(30px, calc(6.4vw - 27.5px), 38px);
    top: clamp(126px, 14vw, 144px);
    width: clamp(116px, 14vw, 148px);
    height: clamp(189px, 21.5vw, 241px);
  }

  .hero__ornament--photo {
    top: clamp(104px, 11vw, 118px);
    right: clamp(16px, 2.4vw, 24px);
    width: clamp(104px, 12.6vw, 132px);
    height: clamp(85px, 10.3vw, 108px);
  }

  .pharmacy-search__content {
    grid-template-columns: 1fr;
  }

  .pharmacy-search__grid {
    justify-content: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .section-heading--news {
    gap: 8px;
  }

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

  .message {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 36px;
  }

  .activities {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 0;
    padding-right: 0;
  }

  .activities__heading {
    position: relative;
    width: auto;
    min-height: 0;
    display: flex;
    align-items: baseline;
    gap: 18px;
  }

  .activities__label {
    position: static;
    transform: none;
  }

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

  .activities__title {
    writing-mode: horizontal-tb;
  }

  .activity-card--top-right,
  .activity-card--bottom-right {
    margin-top: 0;
  }

  .activity-card__body {
    width: auto;
    gap: 20px;
    padding-left: 0;
  }

  .activity-card--top-left .activity-card__body,
  .activity-card--top-right .activity-card__body,
  .activity-card--bottom-left .activity-card__body,
  .activity-card--bottom-right .activity-card__body {
    margin-top: 20px;
    padding-left: 0;
  }

  .organization__panel {
    padding: 28px;
  }

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

  .news-article__hero {
    padding: 152px 0 132px;
  }

  .news-archive__hero {
    padding: 152px 0 132px;
  }

  .news-article__intro {
    max-width: none;
  }

  .news-archive__intro {
    max-width: none;
  }

  .news-article__ornament--leaf-large {
    left: 24px;
  }

  .news-archive__ornament--leaf-large {
    left: 24px;
  }

  .news-article__ornament--leaf-small {
    left: 176px;
  }

  .news-archive__ornament--leaf-small {
    left: 176px;
  }

  .news-article__ornament--sprout {
    right: 50px;
    bottom: 85px;
    width: 76px;
    height: 58px;
  }

  .news-archive__ornament--sprout {
    right: 24px;
    bottom: 98px;
  }

  .news-article__panel {
    width: calc(100% - 40px);
    padding: 56px 48px 60px;
  }

  .news-archive__panel {
    width: calc(100% - 40px);
    padding: 56px 48px 60px;
  }

  .news-article__title {
    font-size: 34px;
  }

  .news-archive__title {
    font-size: 34px;
  }
  
  .section--organization {
    padding-bottom: 120px;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .hero__ornament--copy {
    left: clamp(24px, 3vw, 32px);
    top: clamp(104px, 12.8vw, 114px);
  }

  .hero__ornament--photo {
    top: clamp(112px, 13.8vw, 120px);
    right: clamp(20px, 2.8vw, 28px);
    width: clamp(86px, 10.5vw, 96px);
    height: clamp(71px, 8.7vw, 79px);
  }

  .members__table {
    display: table;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    table-layout: fixed;
  }

  .members__table colgroup {
    display: table-column-group;
  }

  .members__table thead,
  .members__table tbody {
    min-width: 0;
    width: auto;
  }

  .members__col--name {
    width: 30%;
  }

  .members__col--address {
    width: 48%;
  }

  .members__col--tel {
    width: 22%;
  }
}

@media (max-width: 768px) {
  body {
    background: var(--color-white);
  }

  .section__container,
  .site-footer__inner,
  .site-header__inner,
  .hero__inner {
    width: calc(100% - 32px);
  }

  .section__curve {
    height: 72px;
  }

  .section__curve--members-top {
    top: -72px;
  }

  .site-drawer {
    width: 100%;
  }

  .site-drawer__panel {
    padding: 84px 24px 28px;
  }

  .hero {
    padding: 94px 0 74px;
  }

  .hero__inner,
  .message,
  .pharmacy-search__content,
  .news,
  .activities,
  .contact__card {
    width: calc(100% - 32px);
  }

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

  .activities {
    width: calc(100% - 48px);
  }

  .hero__inner {
    grid-template-columns: max-content auto;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 3vw, 20px);
    width: fit-content;
    max-width: calc(100% - 32px);
  }

  .hero__copy {
    order: 0;
    --hero-copy-offset-x: 0px;
    --hero-copy-offset-y: 0;
    --hero-title-column-width: clamp(32px, 6vw, 42px);
    --hero-title-column-gap: clamp(4px, 1vw, 8px);
    width: max-content;
    padding-left: var(--hero-copy-offset-x);
    padding-top: var(--hero-copy-offset-y);
    gap: 0;
    justify-items: start;
  }

  .hero__title {
    gap: var(--hero-title-column-gap);
    justify-content: flex-start;
  }

  .hero__title-line {
    font-size: clamp(24px, 5.1vw, 30px);
  }

  .hero__media {
    order: 1;
    width: clamp(320px, 66vw, 390px);
    padding-top: 0;
  }

  .hero__ornament--copy {
    left: clamp(74px, 14vw, 90px);
    top: clamp(136px, 24vw, 148px);
    width: clamp(72px, 15vw, 94px);
    height: clamp(117px, 24.4vw, 153px);
  }

  .hero__ornament--photo {
    top: clamp(110px, 17vw, 126px);
    right: clamp(14px, 2vw, 18px);
    width: clamp(82px, 14.2vw, 104px);
    height: clamp(67px, 11.6vw, 85px);
  }

  .section--search {
    padding-top: 38px;
    padding-bottom: 96px;
  }

  .section--news,
  .section--message,
  .section--activities,
  .section--organization,
  .section--members {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .pharmacy-search,
  .organization,
  .members,
  .news {
    gap: 28px;
  }

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

  .news__item {
    height: auto;
    min-height: 96px;
    padding: 22px 52px 21px 24px;
  }

  .news__title {
    white-space: normal;
  }

  .news__arrow {
    right: 24px;
  }

  .message__content {
    padding-top: 0;
  }

  .news__ornament--leaf-large,
  .news__ornament--leaf-small,
  .message__ornament--mascot {
    display: none;
  }

  .site-footer__ornament {
    display: block;
    top: 5px;
    right: clamp(16px, 3vw, 22px);
    width: clamp(72px, 10vw, 84px);
    height: clamp(82px, 11.3vw, 96px);
  }

  .members__ornament {
    display: block;
    top: -88px;
    right: clamp(12px, 3vw, 18px);
    width: clamp(92px, 13.5vw, 104px);
    height: clamp(80px, 11.7vw, 90px);
  }

  .activity-card__ornament {
    display: block;
  }

  .activity-card__ornament--top {
    top: -12px;
    right: 2px;
    width: 60px;
    height: 76px;
  }

  .activity-card__ornament--top img {
    width: auto;
    height: 76px;
  }

  .activity-card__ornament--lower {
    right: 8px;
    bottom: -22px;
    width: 70px;
    height: 70px;
  }

  .activity-card__ornament--character {
    right: -14px;
    bottom: 0;
    width: 74px;
    height: 82px;
  }

  .activity-card__ornament--purple {
    top: -12px;
    right: -20px;
    width: 82px;
    height: 93px;
  }

  .organization__table,
  .members__table {
    display: block;
    overflow-x: auto;
  }

  .organization__table tbody,
  .members__table thead,
  .members__table tbody {
    min-width: 720px;
  }

  .contact {
    min-height: 560px;
  }

  .contact__card {
    padding: 32px 24px;
    transform: translateY(76px);
  }

  .contact__lead,
  .contact__address,
  .contact__fax {
    font-size: 16px;
  }

  .contact__phone {
    font-size: 24px;
  }

  .site-footer__nav-list {
    gap: 14px 20px;
  }

  body.single-news,
  body.post-type-archive-news {
    background: linear-gradient(180deg, #fff 0 220px, var(--color-mint-soft) 220px 460px, var(--color-offwhite) 460px 100%);
  }

  .news-article__hero,
  .news-archive__hero {
    padding: 132px 0 104px;
  }

  .news-article__hero-inner,
  .news-article__panel,
  .news-archive__hero-inner,
  .news-archive__panel {
    width: calc(100% - 32px);
  }

  .breadcrumb {
    display: none;
  }

  .news-article__title,
  .news-archive__title {
    font-size: 34px;
  }

  .news-article__ornament--leaf-large,
  .news-article__ornament--leaf-small,
  .news-archive__ornament--leaf-large,
  .news-archive__ornament--leaf-small {
    display: none;
  }

  .news-article__ornament--sprout {
    display: block;
    right: 50px;
    bottom: 58px;
    width: 58px;
    height: 45px;
  }

  .news-archive__ornament--sprout {
    display: block;
    right: 50px;
    bottom: 58px;
    width: 58px;
    height: 45px;
  }

  .news-article__panel,
  .news-archive__panel {
    margin-top: -56px;
    padding: 48px 28px 52px;
  }

  .news-article__panel::before {
    left: 20px;
    right: 20px;
  }

  .news-article__content :where(p, ul, ol) {
    font-size: 16px;
  }

  .news-article__content > h2 {
    font-size: 26px;
  }

  .news-article__content > h3 {
    font-size: 22px;
  }

  .news-article__content > :is(h4, h5, h6) {
    font-size: 17px;
  }

  .news-article__content :where(ul, ol) > li,
  .news-article__list > li {
    padding-left: 2.25em;
  }

  .news-article__content ul > li::before,
  .news-article__list > li::before {
    left: 0.45em;
    top: 1em;
    width: 9px;
    height: 9px;
  }

  .news-article__content ol > li::before {
    top: 0.2em;
    left: 0;
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .news-article__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button--news-detail-back {
    width: 100%;
  }

  .news-article__home-link {
    align-self: center;
  }

  .news-archive__pagination {
    margin-top: 32px;
  }

  .news-archive__pagination .page-numbers {
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
  }
}

@media (max-width: 1024px) and (min-width: 481px) {
  .section--search {
    padding-top: 20px;
  }

  .hero .section__curve--search {
    --search-curve-height: 95px;
    background-size: cover;
  }

  .pharmacy-search__content {
    --tablet-search-grid-width: clamp(400px, calc(11.7vw + 310px), 430px);
    grid-template-columns: clamp(240px, 28vw, 300px) var(--tablet-search-grid-width);
    gap: clamp(24px, 3vw, 34px);
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }

  .pharmacy-search__intro {
    gap: clamp(28px, 4vw, 40px);
  }

  .pharmacy-search__description br {
    display: none;
  }

  .pharmacy-search__grid {
    width: min(100%, var(--tablet-search-grid-width));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: start;
    justify-content: stretch;
    gap: clamp(10px, 1.4vw, 14px);
  }

  .search-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .search-card__title {
    font-size: clamp(16px, 1.45vw, 18px);
  }

  .search-card__label {
    font-size: clamp(6.5px, 0.72vw, 9px);
    letter-spacing: 0.03em;
  }

  .message {
    grid-template-columns: clamp(288px, 33vw, 340px) minmax(0, 1fr);
    gap: clamp(24px, 3.6vw, 36px);
    align-items: start;
    width: calc(100% - 32px);
  }

  .message__content {
    gap: clamp(24px, 3vw, 32px);
    padding-top: clamp(0px, 0.8vw, 8px);
  }

  .message__ornament--mascot {
    display: block;
    right: clamp(-14px, -1vw, -8px);
    bottom: clamp(-16px, -1.2vw, -10px);
    width: clamp(78px, 9vw, 92px);
    height: clamp(94px, 10.8vw, 111px);
  }

  .activities {
    width: calc(100% - 64px);
  }

  .activity-card--top-right,
  .activity-card--bottom-right {
    margin-top: clamp(20px, 2.8vw, 31px);
  }

  .activity-card__body {
    gap: 16px;
  }

  .activity-card__title {
    font-size: clamp(20px, 2.35vw, 24px);
    line-height: 1.35;
    white-space: normal;
  }

  .activity-card__description {
    font-size: clamp(15px, 1.7vw, 16px);
    line-height: 1.8;
  }
}

@media (max-width: 820px) and (min-width: 481px) {
  .pharmacy-search__ornament {
    width: clamp(232px, calc(26.56vw + 28px), 246px);
    height: clamp(77px, calc(8.85vw + 9px), 82px);
  }

  .activity-card__ornament--top {
    top: -12px;
    right: 2px;
    width: 60px;
    height: 76px;
  }

  .activity-card__ornament--top img {
    width: auto;
    height: 76px;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .hero__copy {
    transform: translateX(-12px);
  }

  .hero__title-line {
    font-size: 22px;
  }

  .hero__ornament--copy {
    left: clamp(38px, calc(5.92vw + 9.5px), 55px);
    top: clamp(96px, calc(213.7px - 15.33vw), 140px);
  }
  
  .hero .section__curve--search {
    --search-curve-height: 65px;
    background-size: 100% 100%;
  }

  .organization__table {
    display: table;
    overflow-x: visible;
    width: 100%;
    table-layout: fixed;
  }

  .members__table {
    display: table;
    overflow-x: visible;
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .organization__table tbody {
    min-width: 0;
    width: auto;
  }

  .members__table thead,
  .members__table tbody {
    min-width: 0;
    width: auto;
  }

  .members__col--name {
    width: 30%;
  }

  .members__col--address {
    width: 48%;
  }

  .members__col--tel {
    width: 22%;
  }

  .contact__card {
    width: min(560px, calc(100% - 56px));
  }
}

@media (max-width: 480px) {
  .sp {
    display: block;
  }
  
  .section__container,
  .site-footer__inner,
  .site-header__inner,
  .hero__inner {
    width: calc(100% - 24px);
  }

  .site-header__brand-jp {
    font-size: 18px;
  }

  .site-header__brand-en {
    font-size: 8px;
  }

  .site-header__hamburger {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding: 94px 0 56px;
  }

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

  .hero__copy {
    order: 1;
    --hero-copy-offset-x: 0;
    --hero-copy-offset-y: 0;
    width: auto;
    padding-left: 0;
    padding-top: 0;
    gap: var(--space-4);
    justify-items: center;
  }

  .hero__title {
    gap: 10px;
    justify-content: center;
  }

  .hero__title-line {
    font-size: 22px;
  }

  .hero__media {
    order: 0;
    width: auto;
    padding-top: 0;
  }

  .hero__ornament--copy {
    left: calc(50% - 118px);
    top: clamp(282px, 72vw, 298px);
    width: clamp(58px, 18vw, 70px);
    height: clamp(94px, 30vw, 113px);
  }

  .hero__ornament--photo {
    top: clamp(108px, 28vw, 126px);
    right: clamp(8px, 2.5vw, 14px);
    width: clamp(72px, 19vw, 82px);
    height: clamp(59px, 15.4vw, 67px);
  }

  .hero .section__curve--search {
    --search-curve-height: 55px;
  }

  .section--search {
    padding-bottom: 118px;
  }

  .pharmacy-search__content {
    width: 100%;
  }

  .pharmacy-search__intro {
    width: min(100%, 334px);
    justify-self: center;
    gap: 28px;
  }

  .section-heading--search {
    gap: 0;
  }

  .pharmacy-search__description {
    width: min(100%, 18em);
    line-height: 1.9;
  }

  .pharmacy-search__description br {
    display: none;
  }

  .message__ornament--mascot {
    display: block;
    right: clamp(12px, 4vw, 18px);
    bottom: clamp(10px, 3vw, 14px);
    width: clamp(64px, 20vw, 78px);
    height: clamp(77px, 24vw, 94px);
  }

  .members__ornament {
    top: -64px;
    right: 10px;
    width: 74px;
    height: 64px;
  }

  .site-footer__ornament {
    top: 6px;
    right: 12px;
    width: 60px;
    height: 69px;
  }

  .activities {
    width: calc(100% - 40px);
  }

  .activity-card__ornament--top {
    top: -12px;
    right: 2px;
    width: 58px;
    height: 73px;
  }

  .activity-card__ornament--top img {
    width: auto;
    height: 76px;
  }

  .activity-card__ornament--lower {
    right: 10px;
    bottom: -16px;
    width: 58px;
    height: 58px;
  }

  .activity-card__ornament--character {
    right: -6px;
    bottom: 4px;
    width: 60px;
    height: 66px;
  }

  .activity-card__ornament--purple {
    top: -10px;
    right: -10px;
    width: 66px;
    height: 75px;
  }

  .section-heading__title,
  .activities__title,
  .contact__title {
    font-size: 28px;
  }

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

  .search-card {
    min-height: 168px;
  }

  .pharmacy-search__grid {
    width: min(100%, 334px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: center;
    margin-inline: auto;
    justify-content: stretch;
    gap: 16px 12px;
  }

  .pharmacy-search__ornament {
    left: 50%;
    bottom: 0;
    width: clamp(186px, 54vw, 210px);
    height: clamp(62px, 18vw, 70px);
    background-position: center bottom;
    transform: translateX(-50%);
  }

  .search-card {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .search-card__title {
    font-size: clamp(17px, 4.2vw, 20px);
  }

  .search-card__label {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .news__item {
    padding: 20px 44px 20px 20px;
  }

  .news__arrow {
    right: 20px;
  }

  .activity-card__title {
    font-size: 20px;
    line-height: 1.35;
    white-space: normal;
  }

  .activity-card__description {
    font-size: 15px;
    line-height: 1.8;
  }

  .organization__panel,
  .members__card {
    padding: 18px 16px;
  }

  .members__card {
    padding: 10px 16px;
  }

  .members__table {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }

  .members__table colgroup {
    display: none;
  }

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

  .members__table tbody {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .members__table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name tel"
      "address address";
    gap: 4px 12px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px dotted rgba(59, 46, 43, 0.18);
  }

  .members__table tbody tr:last-child {
    border-bottom: 0;
  }

  .members__table thead th + th,
  .members__table tbody td + td {
    background-image: none;
  }

  .members__table tbody td,
  .members__table tbody tr:nth-child(even) td,
  .members__table tbody td:first-child,
  .members__table tbody td:nth-child(2),
  .members__table tbody td:last-child {
    padding: 0;
    background-color: transparent;
  }

  .members__table tbody td:first-child {
    grid-area: name;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
  }

  .members__table tbody td:nth-child(2) {
    grid-area: address;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(59, 46, 43, 0.88);
    word-break: break-word;
  }

  .members__table tbody td:last-child {
    grid-area: tel;
    justify-self: end;
    align-self: start;
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;
    color: var(--color-green);
  }

  .members__table tbody td:last-child::before {
    content: "TEL ";
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .organization__panel {
    padding: 0;
    background: transparent;
  }

  .organization__table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .organization__table tbody {
    display: grid;
    gap: 12px;
    min-width: 0;
    width: 100%;
  }

  .organization__table tbody tr {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: var(--color-shadow-soft);
  }

  .organization__table th,
  .organization__table td {
    display: block;
    height: auto;
    padding: 0;
  }

  .organization__table th::before,
  .organization__table th::after,
  .organization__table td::before,
  .organization__table td::after {
    display: none;
  }

  .organization__table th {
    width: auto;
    font-size: 17px;
    line-height: 1.55;
    background: transparent;
  }

  .organization__table td {
    font-size: 15px;
    line-height: 1.8;
  }

  .organization__names {
    gap: 10px 18px;
  }

  .contact__card {
    width: calc(100% - 24px);
    padding: 28px 18px;
  }

  .contact__phone {
    font-size: 21px;
  }

  .site-footer__info {
    font-size: 15px;
  }

  .site-footer__copyright p {
    font-size: 10px;
  }

  .news-article__hero-inner,
  .news-article__panel,
  .news-archive__hero-inner,
  .news-archive__panel {
    width: calc(100% - 32px);
  }

  .news-article__title,
  .news-archive__title {
    font-size: 28px;
  }

  .news-article__panel,
  .news-archive__panel {
    padding: 44px 20px 46px;
  }

  .news-article__ornament--sprout {
    right: 36px;
    bottom: 56px;
    width: 52px;
    height: 40px;
  }

  .news-archive__ornament--sprout {
    right: 36px;
    bottom: 56px;
    width: 52px;
    height: 40px;
  }

  .news-archive__pagination {
    gap: 10px;
  }

  .news-archive__pagination .page-numbers {
    min-width: 42px;
    min-height: 42px;
    font-size: 13px;
  }

  .news-article__content > h2 {
    font-size: 22px;
  }

  .news-article__content > h3 {
    font-size: 18px;
  }

  .news-article__content > :is(h4, h5, h6) {
    font-size: 16px;
  }

  .news-article__content :where(ul, ol) > li,
  .news-article__list > li {
    padding-left: 2.1em;
  }

  .news-article__content ul > li::before,
  .news-article__list > li::before {
    left: 0.45em;
    top: 1em;
    width: 8px;
    height: 8px;
  }

  .news-article__content ol > li::before {
    left: 0;
    top: 0.2em;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
