/* =========================================================
   Font Face
   ========================================================= */
@font-face {
  font-family: "LogotypeGothic";
  src: url("../fonts/LogotypeGothic.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* =========================================================
   Root Tokens
   ========================================================= */
:root {
  --color-main: #63ced9;
  --color-main-dark: #30bccb;
  --color-main-strong: #4fbcc8;
  --color-text: #354345;
  --color-sub-text: #6d7b7e;
  --color-gray-bg: #f7f7f7;
  --color-soft-bg: #def1f3;
  --color-sub: #f1f4cb;
  --color-white: #ffffff;
  --color-line: #dce7ea;

  --font-jp: 'Zen Kaku Gothic New', sans-serif;
  --font-hero-title: 'LogotypeGothic', sans-serif;
  --font-en: "Manrope", "Noto Sans JP", sans-serif;

  --fs-hero: 47px;
  --fs-h2: 52px;
  --fs-h3: 30px;
  --fs-body-lg: 21px;
  --fs-body: 16px;
  --fs-body-sm: 15px;
  --fs-label: 14px;
  --fs-meta: 12px;

  --lh-hero: 1.31;
  --lh-tight: 1.25;
  --lh-base: 1.6;
  --lh-loose: 1.8;

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

  --radius-card: 20px;
  --radius-hero: 50px;
  --radius-pill: 70px;
  --radius-panel: 40px;

  --shadow-sm: 0 4px 15px rgba(43, 134, 159, 0.09);
  --shadow-lg: 0 4px 34px rgba(77, 163, 171, 0.3);
  --shadow-hover: 0 18px 36px rgba(83, 140, 150, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

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

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

a,
a:visited {
  color: var(--color-main-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition:
    color 0.3s ease,
    opacity 0.3s ease,
    text-decoration-color 0.3s ease;
}

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

.button,
.button:visited,
.anshin__button,
.anshin__button:visited,
.site-header__brand,
.site-header__brand:visited,
.site-header__search,
.site-header__search:visited,
.site-header__nav-cta,
.site-header__nav-cta:visited,
.site-header__nav-list a,
.site-header__nav-list a:visited,
.site-header__drawer-link,
.site-header__drawer-link:visited,
.site-header__drawer-summary,
.site-header__drawer-summary:visited,
.site-header__drawer-child-link,
.site-header__drawer-child-link:visited,
.subpage-anchor-link,
.subpage-anchor-link:visited,
.pharmacy-info__map-link,
.pharmacy-info__map-link:visited,
.site-footer__links a,
.site-footer__links a:visited,
.site-footer__item a,
.site-footer__item a:visited {
  color: inherit;
  text-decoration: none;
}

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

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

.sp {
  display: none;
}

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

/* =========================================================
   First View Decoration
   ========================================================= */
.hero-decoration {
  position: absolute;
  left: 664.56px;
  top: -352.47px;
  z-index: 0;
  width: 1147.34px;
  height: 1186.24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.site-shell {
  position: relative;
  contain: paint;
}

.hero-decoration__shape {
  width: 775.64px;
  height: 989.5px;
  transform: rotate(69.55deg) skewX(7.22deg) scaleY(0.99);
  transform-origin: center;
  background: url("../images/hero-decoration-vector.svg") center /
    100% 100% no-repeat;
}

main {
  position: relative;
  z-index: 1;
  padding-top: 113px;
}

/* =========================================================
   Shared Components
   ========================================================= */
.section-heading {
  position: relative;
  margin-bottom: var(--sp-8);
  padding-left: var(--sp-3);
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
}

.section-heading__label {
  position: absolute;
  left: 16px;
  top: 0px;
  margin: 0 0 0 4px;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
}

.section-heading__title {
  margin: 8px 0 0;
  color: var(--color-text);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.section-heading--inline {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--fs-body);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    letter-spacing 0.3s ease,
    transform 0.3s ease;
}

.button::after {
  content: "▸";
  margin-left: 10px;
  font-size: 0.8em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.button--primary,
.button--primary:visited {
  background: var(--color-main);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.button--light,
.button--light:visited {
  background: var(--color-white);
  border-color: #d3ebf0;
  color: var(--color-text);
}

.button--outline,
.button--outline:visited {
  background: transparent;
  border-color: var(--color-main);
  color: var(--color-main);
}

.button > span,
.site-header__search-label,
.contact-card__cta-label,
.anshin__button-label {
  transition: letter-spacing 0.3s ease;
}

.site-header__nav-cta {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-header__search,
.site-header__nav-cta,
.site-header__nav-list a,
.site-header__drawer-link,
.site-header__drawer-summary,
.site-header__drawer-child-link,
.site-footer__links a,
.site-footer__item a,
.subpage-anchor-link,
.pharmacy-info__map-link,
.aseptic-documents__list a,
.pharmacy-posters__list a {
  transition:
    color 0.3s ease,
    opacity 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.site-header__search-icon,
.news .button::after,
.member-info__buttons .button::after,
.our-pharmacy__cta::after,
.button--forward::after,
.site-header__nav-link--parent::after,
.site-header__nav-sublink::after,
.subpage-anchor-link::after,
.site-header__drawer-child-link::after {
  transition: transform 0.3s ease;
}

.contact-card__cta-icon,
.anshin__button-icon--list,
.anshin__button-icon--about {
  transition:
    right 0.3s ease,
    transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--color-main);
  }

  .button:hover,
  .site-header__nav-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }

  .button--primary:hover,
  .site-header__nav-cta:hover {
    background: var(--color-main-strong);
    color: var(--color-white);
  }

  .button--light:hover {
    background: #eefbfd;
    border-color: #9fdfe8;
    color: var(--color-main-dark);
  }

  .button--outline:hover {
    background: rgba(99, 206, 217, 0.08);
    border-color: var(--color-main-strong);
    color: var(--color-main-strong);
  }

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

  .site-header__nav-item--has-children:hover .site-header__nav-link,
  .site-header__nav-item--has-children:focus-within .site-header__nav-link {
    color: var(--color-main);
  }

  .site-header__nav-sublink:hover {
    color: var(--color-main-dark);
    background-color: rgba(99, 206, 217, 0.14);
  }

  .site-header__nav-submenu > li:hover > .site-header__nav-sublink,
  .site-header__nav-submenu > li:focus-within > .site-header__nav-sublink {
    color: var(--color-main-dark);
    background-color: rgba(99, 206, 217, 0.14);
  }

  .site-header__nav-sublink:hover::after {
    transform: translateX(4px);
  }

  .site-header__nav-submenu > li:hover > .site-header__nav-sublink::after,
  .site-header__nav-submenu > li:focus-within > .site-header__nav-sublink::after {
    transform: translateX(4px);
  }

  .site-header__search:hover {
    background: var(--color-main-strong);
    color: var(--color-white);
  }

  .site-header__search:hover .site-header__search-label {
    letter-spacing: 0.06em;
  }

  .site-header__search:hover .site-header__search-icon {
    transform: translateY(-1px) scale(1.04);
  }

  .news__link:hover {
    color: var(--color-text);
    background: rgba(99, 206, 217, 0.06);
  }

  .news__link:hover .news__title {
    color: var(--color-main-dark);
  }

  .news__link:hover .news__arrow {
    background: var(--color-main);
    transform: translateX(4px);
  }

  .news__link:hover .news__arrow::before {
    background: var(--color-white);
  }

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

  .search-card:hover::before {
    transform: scale(1.04);
    background: var(--color-main-strong);
  }

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

  .search-card:hover h3 {
    color: var(--color-main);
  }

  .site-footer__links a:hover,
  .site-footer__item a:hover {
    color: var(--color-text);
    opacity: 0.7;
  }

  .site-header__drawer-link:hover,
  .site-header__drawer-summary:hover,
  .site-header__drawer-child-link:hover {
    color: var(--color-main);
  }

  .site-header__drawer-child-link:hover::after,
  .subpage-anchor-link:hover::after {
    transform: translateX(4px);
  }

  .subpage-anchor-link:hover {
    color: var(--color-main);
    border-color: var(--color-main);
  }
}

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

.site-header__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.site-header__topbar {
  position: relative;
}

.site-header__inner {
  width: 100%;
  min-height: 113px;
  margin: 0;
  padding: 0 calc(168px + 51px) 0 2rem;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.site-header__brand {
  width: 251px;
  flex: 0 0 auto;
}

.site-header__brand img {
  width: 100%;
  height: auto;
}

.site-header__nav {
  position: absolute;
  top: 50%;
  right: calc(168px + 51px);
  transform: translateY(-50%);
  width: max-content;
  max-width: 626px;
  margin: 0;
}

.site-header__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.36px;
}

.site-header__nav-item {
  position: relative;
}

.site-header__nav-link,
.site-header__nav-link:visited {
  display: block;
  height: 31px;
  line-height: 31px;
  white-space: nowrap;
  color: var(--color-text);
}

.site-header__nav-link--parent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header__nav-link--parent::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.site-header__nav-item--has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.site-header__nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 20;
  min-width: 220px;
  margin: 0;
  padding: 12px;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  border: 1px solid rgba(53, 67, 69, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(53, 67, 69, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.site-header__nav-item--wide .site-header__nav-submenu {
  min-width: 252px;
}

.site-header__nav-submenu > li {
  display: flex;
}

.site-header__nav-sublink,
.site-header__nav-sublink:visited {
  box-sizing: border-box;
  flex: 1 1 auto;
  width: 100%;
  min-height: 44px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background-color: rgba(233, 248, 252, 0.86);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.site-header__nav-sublink::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.site-header__nav-item--has-children:hover .site-header__nav-submenu,
.site-header__nav-item--has-children:focus-within .site-header__nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header__nav-item--has-children:hover .site-header__nav-link--parent::after,
.site-header__nav-item--has-children:focus-within .site-header__nav-link--parent::after {
  transform: rotate(180deg);
}

.site-header__drawer-list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__drawer-summary {
  list-style: none;
}

.site-header__drawer-summary::-webkit-details-marker {
  display: none;
}

.site-header__nav-cta,
.site-header__mobile-menu,
.site-header__mobile-button,
.site-header__mobile-button {
  display: none;
}

.site-header__search {
  position: absolute;
  top: 0;
  right: 0;
  width: 168px;
  height: 113px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  border-radius: 0 0 0 10px;
  background: #58d0dd;
  color: #fff;
}

.site-header__search:visited {
  color: #fff;
}

.site-header__search-icon {
  width: 39px;
  height: 39px;
  background: url("../images/header-search-icon.svg") center /
    29px 29px no-repeat;
}

.site-header__search-label {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.36px;
  text-align: center;
  white-space: nowrap;
}

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

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

@keyframes site-header-scroll-topbar-pc {
  from {
    min-height: 113px;
  }

  to {
    min-height: 90px;
  }
}

@keyframes site-header-scroll-brand-pc {
  from {
    width: 251px;
  }

  to {
    width: 224px;
  }
}

@keyframes site-header-scroll-search-pc {
  from {
    height: 113px;
  }

  to {
    height: 90px;
  }
}

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

  to {
    min-height: 78px;
  }
}

@keyframes site-header-scroll-brand-sp {
  from {
    width: 190px;
  }

  to {
    width: 168px;
  }
}

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

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

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

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

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

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

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

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

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  height: 501px;
  overflow: visible;
  padding: 0;
}

.hero__bg-shape {
  position: absolute;
  left: 0;
  top: 37px;
  width: 158px;
  height: 214px;
  background: rgba(203, 246, 251, 0.6);
  border-radius: 0 40px 0 40px;
}

.hero__bg-shape-sub {
  position: absolute;
  left: 49px;
  top: 151px;
  width: 171px;
  height: 200px;
  background: rgba(233, 248, 252, 0.7);
  border-radius: 0 40px 0 50px;
}

.hero__inner {
  position: relative;
  width: 100%;
  min-width: 1440px;
  height: 501px;
  margin: 0;
}

.hero__copy {
  position: absolute;
  left: 205px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 479px;
}

.hero__title {
  margin: 0;
  width: 479px;
  color: var(--color-text);
  font-size: 47px;
  font-family: var(--font-hero-title);
  font-weight: 500;
  letter-spacing: 0.94px;
  line-height: 62px;
  white-space: nowrap;
}

.hero__title span {
  color: var(--color-main);
}

.hero__lead {
  width: 440px;
  margin: 49px 0 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1.05px;
  line-height: 34px;
  white-space: nowrap;
}

.hero__image-wrap {
  position: absolute;
  left: 708px;
  top: -3px;
  width: calc(100% - 708px);
  height: 504px;
  border-radius: var(--radius-hero) 0 0 var(--radius-hero);
  overflow: hidden;
}

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

.hero__tagline {
  --hero-tagline-gap: 24px;
  --hero-tagline-duration: 90s;
  --hero-tagline-overflow-block: 112px;
  position: absolute;
  left: -9px;
  top: 467px;
  margin: 0;
  width: 100vw;
  height: 31px;
  color: rgba(225, 243, 246, 0.6);
  font-family: var(--font-en);
  font-size: 119px;
  font-weight: 700;
  letter-spacing: 2.38px;
  line-height: 31px;
  white-space: nowrap;
  pointer-events: none;
}

.hero__tagline-viewport {
  width: 100%;
  box-sizing: border-box;
  padding-top: var(--hero-tagline-overflow-block);
  padding-bottom: var(--hero-tagline-overflow-block);
  margin-top: calc(var(--hero-tagline-overflow-block) * -1);
  margin-bottom: calc(var(--hero-tagline-overflow-block) * -1);
  overflow: hidden;
}

.hero__tagline-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  animation: hero-tagline-marquee var(--hero-tagline-duration) linear infinite;
  will-change: transform;
}

.hero__tagline-group {
  display: flex;
  flex-shrink: 0;
  gap: var(--hero-tagline-gap);
  padding-right: var(--hero-tagline-gap);
}

.hero__tagline-text {
  flex: 0 0 auto;
}

@keyframes hero-tagline-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__tagline-track {
    animation: none;
  }
}

/* =========================================================
   News
   ========================================================= */
.news {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  column-gap: 44px;
  row-gap: 28px;
  align-items: start;
  margin-top: 114px;
  margin-bottom: 88px;
  padding: 0;
}

.news .section-heading {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  padding-left: var(--sp-3);
}

.news .section-heading::before {
  left: 0;
  top: 2px;
}

.news .section-heading__label {
  position: static;
  left: auto;
  top: auto;
  margin: 0;
}

.news .section-heading__title {
  position: static;
  margin-top: 8px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1.15;
}

.news__list {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.news__item {
  border-bottom: 1px solid var(--color-line);
}

.news__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 15px 8px 15px 40px;
  color: var(--color-text);
  font-size: 16px;
  letter-spacing: 0.48px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.news__meta {
  display: flex;
  align-items: center;
}

.news__meta time {
  display: block;
  width: 88px;
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #000;
}

.news__term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--color-soft-bg);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.news__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.news__title {
  margin: 0;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.news__arrow {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(99, 206, 217, 0.12);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.news__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-main-dark);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-40%, -50%);
}

.news .button {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  width: 212px;
  margin: 0;
  padding-right: 44px;
}

@media (min-width: 1025px) {
  .news {
    position: relative;
  }

  #news > a.button {
    position: absolute;
    left: 0;
    bottom: 1px;
    grid-column: auto;
    grid-row: auto;
  }
}

.news .button::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: 0;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

/* =========================================================
   Search
   ========================================================= */
.search {
  position: relative;
  height: 515px;
  padding: 0;
}

.search::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 1320px;
  height: 515px;
  background: #d6f4f9;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: -1;
}

.search .section-heading {
  position: absolute;
  left: 0;
  top: 76px;
  width: 301px;
  height: 69px;
  margin: 0;
  padding: 0;
}

.search .section-heading::before {
  left: 4px;
  top: 2px;
}

.search .section-heading__title {
  position: absolute;
  left: 0;
  top: 17px;
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: normal;
}

.search__intro {
  position: absolute;
  left: 763px;
  top: 115px;
  width: 362px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.28px;
  white-space: nowrap;
  text-align: left;
}

.search__grid {
  position: absolute;
  left: 0;
  top: 172px;
  width: 1120px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 352px);
  row-gap: 31px;
  column-gap: 32px;
}

.search-card {
  position: relative;
  height: 106px;
  min-height: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.search-card::before {
  content: "";
  position: absolute;
  top: -31px;
  right: -11px;
  width: 129px;
  height: 129px;
  border-radius: 50%;
  background: var(--color-main);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.search-card__link {
  position: relative;
  z-index: 1;
  display: block;
  min-height: inherit;
  height: 100%;
  padding: 31px 128px 0 22px;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

.search-card__icon {
  position: absolute;
  right: 13px;
  top: 1px;
  width: 82px;
  height: 82px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.search-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.search__grid .search-card:nth-child(3) .search-card__icon {
  right: 4px;
  top: -8px;
  width: 102px;
  height: 102px;
}

.search__grid .search-card:nth-child(4) .search-card__icon {
  right: 19px;
  top: 5px;
  width: 77px;
  height: 77px;
}

.search__grid .search-card:nth-child(5) .search-card__icon {
  right: 12px;
  top: 2px;
  width: 83px;
  height: 83px;
}

.search__grid .search-card:nth-child(6) .search-card__icon {
  right: 15px;
  top: 3px;
  width: 81px;
  height: 81px;
}

.search-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #000;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1.68px;
  line-height: normal;
  transition: color 0.3s ease;
}

.search-card p {
  position: relative;
  z-index: 1;
  margin: 7px 0 0;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 1.12px;
  line-height: normal;
  transition: color 0.3s ease;
}

/* =========================================================
   Member Information
   ========================================================= */
.member-info {
  position: relative;
  height: 314px;
  margin-top: 52px;
  margin-bottom: 113px;
  padding: 0;
}

.member-info::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  width: 1320px;
  height: 314px;
  background: var(--color-gray-bg);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: -1;
}

.member-info__inner {
  position: relative;
  height: 314px;
}

.member-info .section-heading {
  position: absolute;
  left: 75px;
  top: 64px;
  width: 227px;
  height: 69px;
  margin: 0;
  padding: 0;
}

.member-info .section-heading::before {
  left: 3px;
  top: 1px;
}

.member-info .section-heading__label {
  position: absolute;
  left: 20px;
  top: 0;
  margin: 0;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 10px;
  white-space: nowrap;
}

.member-info .section-heading__title {
  position: absolute;
  left: 0;
  top: 17px;
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 52px;
  white-space: nowrap;
}

.member-info__text {
  position: absolute;
  left: 942px;
  top: 109px;
  width: 442px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 30px;
  white-space: nowrap;
}

.member-info__buttons {
  position: absolute;
  left: 225px;
  top: 173px;
  display: flex;
  gap: 47px;
}

.member-info__buttons .button {
  position: relative;
  width: 352px;
  min-width: 352px;
  height: 66px;
  min-height: 66px;
  justify-content: flex-start;
  padding: 0 25px 0 37px;
  border: 0;
  border-radius: 70px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
  line-height: normal;
}

.member-info__buttons .button::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: 0;
  background: var(--color-main);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .member-info__buttons .button:hover {
    background: #eefbfd;
    border-color: #9fdfe8;
    color: var(--color-main-dark);
    box-shadow: var(--shadow-hover);
  }
}

/* =========================================================
   Activity
   ========================================================= */
.activity {
  position: relative;
  padding: 135px 0 171px;
  background: var(--color-gray-bg);
}

.activity__layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 43px;
  row-gap: 75px;
  align-items: start;
}

.activity__layout::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -50px;
  width: 246px;
  height: 169px;
  background: url("../images/activity-bg.svg") 0 0 / 246px 169px no-repeat;
  z-index: 0;
}

.activity__lead {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 475px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 0 0 24px 1px;
}

.activity .section-heading {
  position: relative;
  width: 301px;
  margin: 0;
  padding: 0;
}

.activity .section-heading::before {
  left: 3px;
  top: 1px;
}

.activity .section-heading__label {
  margin: 0 0 0 8px;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 10px;
  white-space: nowrap;
}

.activity .section-heading__title {
  margin: 16px 0 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 52px;
  white-space: nowrap;
}

.activity__intro {
  width: 336px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.28px;
  z-index: 2;
}

.button--forward {
  position: relative;
  height: 49px;
  min-height: 49px;
  padding: 12px 28px;
  border-radius: 70px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: 25px;
}

.button--forward::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: 0;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.activity__more {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  width: 212px;
  margin: 0;
}

.activity__featured,
.activity__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
  display: grid;
  align-items: stretch;
}

.activity__featured {
  grid-column: 2 / 4;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 43px;
}

.activity__grid {
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 43px;
}

.activity__grid .activity-card {
  grid-template-rows: 232px auto;
}

.activity-card {
  --activity-card-body-min-height: 307px;
  --activity-card-title-max: 328px;
  --activity-card-bar-height: 66px;
  --activity-card-image-position: 50% 50%;
  --activity-card-image-scale: 1;
  --activity-card-text-gap: 18px;

  position: relative;
  display: grid;
  height: 100%;
  min-width: 0;
  grid-template-rows: 232px 1fr;
  margin: 0;
}

.activity-card--top-left {
  --activity-card-title-max: 297px;
  --activity-card-image-position: 50% 50%;
  --activity-card-image-scale: 1;
  --activity-card-text-gap: 23px;
}

.activity-card--top-right {
  --activity-card-title-max: 343px;
  --activity-card-image-position: 50% 100%;
  --activity-card-image-scale: 1;
}

.activity-card--top-right::after {
  content: "";
  position: absolute;
  left: 148px;
  bottom: -313px;
  width: 4px;
  height: 35px;
  background: var(--color-main);
  border-radius: 4px;
}

.activity-card--bottom-left {
  --activity-card-body-min-height: 337px;
  --activity-card-image-position: 50% 50%;
  --activity-card-image-scale: 1;
  --activity-card-text-gap: 29px;
}

.activity-card--bottom-center {
  --activity-card-body-min-height: 337px;
  --activity-card-title-max: 195px;
  --activity-card-image-position: 50% 50%;
  --activity-card-image-scale: 1;
  --activity-card-text-gap: 15px;
}

.activity-card--bottom-right {
  --activity-card-body-min-height: 337px;
  --activity-card-title-max: 187px;
  --activity-card-bar-height: 35px;
  --activity-card-image-position: 50% 50%;
  --activity-card-image-scale: 1;
  --activity-card-text-gap: 12px;
}

.activity-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 20px;
  box-shadow: var(--shadow-sm);
  background: var(--color-gray-bg);
}

.activity-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--activity-card-image-position);
  transform: scale(var(--activity-card-image-scale));
  transform-origin: center;
}

.activity-card__body {
  position: relative;
  display: flex;
  height: 100%;
  min-height: var(--activity-card-body-min-height);
  flex-direction: column;
  align-items: flex-start;
  margin-top: -64px;
  padding: 32px 28px 28px;
  background: var(--color-soft-bg);
  border-radius: 0 60px 20px 20px;
}

.activity-card--bottom-center .activity-card__body::after,
.activity-card--bottom-right .activity-card__body::after {
  content: "";
  order: 3;
  flex: 1 0 24px;
  min-height: 24px;
  width: 100%;
}

.activity__grid .activity-card__body {
  height: auto;
}

.activity-card--bottom-center .activity-card__body,
.activity-card--bottom-right .activity-card__body {
  padding-bottom: 24px;
}

.activity-card__body::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 32px;
  width: 4px;
  height: var(--activity-card-bar-height);
  background: var(--color-main);
  border-radius: 4px;
}

.activity-card__title {
  max-width: var(--activity-card-title-max);
  margin: 0 0 0 20px;
  color: var(--color-text);
  font-size: 21px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0.63px;
}

.activity-card__text {
  max-width: 328px;
  margin: var(--activity-card-text-gap) 0 0;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
}

.activity-card .button {
  margin-top: auto;
  margin-left: 52px;
  width: 212px;
}

.activity-card--bottom-center .button,
.activity-card--bottom-right .button {
  order: 4;
  margin-top: 0;
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .activity__layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 24px;
  }

  .activity__layout::after {
    right: -32px;
    top: -50px;
    transform: scale(0.92);
    transform-origin: top right;
  }

  .activity__lead {
    min-height: 448px;
    gap: 28px;
    padding-bottom: 20px;
  }

  .activity__intro {
    width: auto;
    max-width: 304px;
  }

  .activity__featured,
  .activity__grid {
    gap: 28px;
  }

  .activity-card {
    height: auto;
    grid-template-rows: 220px 1fr;
  }

  .activity__grid .activity-card {
    grid-template-rows: 220px auto;
  }

  .activity-card__body {
    min-height: 0;
    padding: 30px 24px 24px 28px;
  }

  .activity__grid .activity-card__body {
    min-height: 314px;
  }

  .activity-card .button {
    width: min(212px, calc(100% - 48px));
    margin-left: 24px;
  }
}

/* =========================================================
   Our Pharmacy
   ========================================================= */
.our-pharmacy {
  position: relative;
  margin-top: 91px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 631px) minmax(0, 515px);
  grid-template-areas:
    "summary side"
    "details side";
  column-gap: 54px;
  row-gap: 36px;
  align-items: start;
}

.our-pharmacy__summary {
  grid-area: summary;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.our-pharmacy__side {
  grid-area: side;
  position: relative;
  min-width: 0;
  padding-top: 7px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  gap: 28px;
  z-index: 1;
}

.our-pharmacy__bg-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.our-pharmacy__bg-shape--761 {
  top: -44px;
  right: -68px;
  width: 158px;
  height: 214px;
  background: rgba(203, 246, 251, 0.6);
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.our-pharmacy__bg-shape--760 {
  top: 70px;
  right: -130px;
  width: 171px;
  height: 200px;
  background: rgba(233, 248, 252, 0.7);
  border-top-right-radius: 40px;
  border-bottom-left-radius: 50px;
}

.our-pharmacy .section-heading {
  position: relative;
  width: auto;
  min-height: 67px;
  margin: 0 0 22px;
  padding: 0;
  z-index: 1;
}

.our-pharmacy .section-heading::before {
  left: 3px;
  top: 1px;
}

.our-pharmacy .section-heading__label {
  position: static;
  display: block;
  margin: 0 0 8px 20px;
  font-size: 16px;
  letter-spacing: 0.96px;
  line-height: 1;
  white-space: nowrap;
}

.our-pharmacy .section-heading__title {
  position: static;
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 52px;
  white-space: nowrap;
}

.our-pharmacy__lead {
  max-width: 626px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.48px;
  z-index: 1;
}

.our-pharmacy__details-card {
  grid-area: details;
  position: relative;
  width: 100%;
  min-height: 280px;
  padding: 20px 165px 24px 41px;
  background: var(--color-gray-bg);
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  z-index: 1;
}

.our-pharmacy__medicine {
  position: absolute;
  right: 4px;
  top: -19px;
  width: 77px;
  height: 51px;
  pointer-events: none;
}

.our-pharmacy__details {
  max-width: 425px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.our-pharmacy__label,
.our-pharmacy__line,
.our-pharmacy__note {
  margin: 0;
}

.our-pharmacy__label {
  margin-top: 13px;
  color: var(--color-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.96px;
  white-space: nowrap;
}

.our-pharmacy__details .our-pharmacy__label:first-of-type {
  margin-top: 0;
}

.our-pharmacy__line {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.9px;
  white-space: nowrap;
}

.our-pharmacy__line--tel {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 400;
}

.our-pharmacy__line--hours .our-pharmacy__en,
.our-pharmacy__line--holiday .our-pharmacy__en {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 400;
}

.our-pharmacy__note {
  margin-top: 6px;
  color: #a8a4a4;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.84px;
  white-space: nowrap;
}

.our-pharmacy__map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 515 / 331;
  border-radius: var(--radius-card);
  overflow: hidden;
  z-index: 1;
}

.our-pharmacy__map-wrap img,
.our-pharmacy__map-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.our-pharmacy__cta {
  position: relative;
  width: 212px;
  margin-top: auto;
  min-height: 49px;
  padding: 12px 24px;
  border: 0;
  border-radius: 70px;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.48px;
  box-shadow: none;
  z-index: 1;
}

.our-pharmacy__cta::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: 0;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

/* =========================================================
   Anshin Card
   ========================================================= */
.anshin-wrap {
  position: relative;
  margin-top: 98px;
  margin-bottom: 113px;
}

.anshin {
  position: relative;
  z-index: 1;
  height: 463px;
  margin: 0;
  padding: 0;
  background: #f0fafd;
  border-radius: 9px 40px 0 40px;
  box-shadow: 0 4px 15px rgba(33, 103, 123, 0.13);
  overflow: visible;
}

.anshin__bg-pattern {
  position: absolute;
  left: -60px;
  top: 356px;
  width: 246px;
  height: 169px;
  background: url("../images/anshin-bg.svg") 0 0 / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}

.anshin__bg-shape {
  position: absolute;
  left: 1092px;
  top: -36px;
  width: 158px;
  height: 214px;
  background: rgba(203, 246, 251, 0.6);
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  pointer-events: none;
  z-index: 0;
}

.anshin__content {
  position: absolute;
  left: 71px;
  top: 51px;
  width: 663px;
}

.anshin h2 {
  position: relative;
  width: 585px;
  height: 87px;
  margin: 0;
  z-index: 1;
  color: var(--color-text);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.anshin__headline-line {
  position: absolute;
  left: 0;
  display: block;
  white-space: nowrap;
}

.anshin__headline-line::after {
  content: "";
  position: absolute;
  left: 0;
  height: 17px;
  background: var(--color-sub);
  z-index: -1;
}

.anshin__headline-line--first {
  top: 0;
  line-height: 46px;
  letter-spacing: 1.6px;
}

.anshin__headline-line--first::after {
  top: 27px;
  width: 270px;
}

.anshin__headline-line--second {
  top: 63px;
  line-height: 24px;
  letter-spacing: 2.56px;
}

.anshin__headline-line--second::after {
  top: 18px;
  width: 570px;
}

.anshin__text {
  position: absolute;
  left: 0;
  top: 127px;
  width: 663px;
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.28px;
}

.anshin__buttons {
  position: absolute;
  left: 0;
  top: 309px;
  display: flex;
  gap: 23px;
}

.anshin__button {
  position: relative;
  display: block;
  min-height: 49px;
  padding: 0;
  border: 0;
  border-radius: 70px;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.48px;
}

.anshin__button::after {
  content: none;
}

.anshin__button-label,
.anshin__button-icon {
  position: absolute;
  display: block;
}

.anshin__button-label {
  top: 12px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.48px;
  white-space: nowrap;
}

.anshin__button--list {
  width: 269px;
}

.anshin__button-label--list {
  left: 44px;
  width: 181px;
}

.anshin__button-icon--list {
  right: 16px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.anshin__button--about {
  width: 241px;
}

.anshin__button-label--about {
  left: 46px;
  top: 12px;
  width: 154px;
}

.anshin__button-icon--about {
  right: 16px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.anshin__image-wrap {
  position: absolute;
  left: 839px;
  top: 0;
  width: 365px;
  height: 463px;
  z-index: 1;
}

.anshin__image-mask {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: url("../images/anshin-image-mask.svg");
  mask-image: url("../images/anshin-image-mask.svg");
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 365px 463px;
  mask-size: 365px 463px;
}

.anshin__image-mask img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =========================================================
   Contact / Join
   ========================================================= */
.contact-join {
  --contact-join-grid-width: min(1202px, calc(100% - 48px));
  --contact-join-padding-bottom: 163px;
  --contact-join-shape-763-overlap: 49px;
  position: relative;
  min-height: 570px;
  padding: 89px 0 var(--contact-join-padding-bottom);
}

.contact-join__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.contact-join__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 112, 163, 0.14);
}

.contact-join__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-join__shape {
  position: absolute;
  width: 158px;
  height: 214px;
  background: rgba(203, 246, 251, 0.6);
  border-radius: 0 var(--radius-panel) 0 var(--radius-panel);
  pointer-events: none;
  z-index: 0;
}

.contact-join__shape--764 {
  top: 53px;
  left: max(0px, calc((100% - var(--contact-join-grid-width)) / 2 - 34px));
}

.contact-join__shape--763 {
  top: auto;
  bottom: calc(var(--contact-join-padding-bottom) - var(--contact-join-shape-763-overlap));
  right: max(0px, calc((100% - var(--contact-join-grid-width)) / 2 - 43px));
  left: auto;
}

.contact-join__grid {
  position: relative;
  z-index: 1;
  width: var(--contact-join-grid-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 587px));
  justify-content: space-between;
  gap: 28px;
}

.contact-card {
  position: relative;
  min-height: 318px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 var(--radius-panel) 0 var(--radius-panel);
}

.contact-card__eyebrow {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.contact-card__eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
  flex: 0 0 10px;
}

.contact-card__eyebrow-text {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.96px;
  line-height: 1;
}

.contact-card__title {
  position: absolute;
  margin: 0;
  color: var(--color-text);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: normal;
  white-space: nowrap;
}

.contact-card__description {
  position: absolute;
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 30px;
}

.contact-card__actions {
  position: absolute;
  display: flex;
  gap: 14px;
  margin: 0;
}

.contact-card__cta {
  position: relative;
  justify-content: center;
  width: 251px;
  min-width: 251px;
  min-height: 49px;
  padding: 0 40px;
  border: 0;
  box-shadow: none;
}

.contact-card__cta::after {
  content: none;
}

.contact-card__cta-label {
  display: block;
  width: 100%;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: 25px;
  padding: 12px 0;
  text-align: center;
  white-space: nowrap;
}

.contact-card__cta-icon {
  position: absolute;
  top: 20px;
  right: 17px;
  width: 8px;
  height: 8px;
  background: url("../images/button-arrow.svg")
    center / 8px 8px no-repeat;
  transform: rotate(90deg);
}

.contact-card--contact .contact-card__eyebrow {
  top: 47px;
  left: 45px;
}

.contact-card--contact .contact-card__title {
  top: 62px;
  left: 43px;
}

.contact-card--contact .contact-card__description {
  top: 131px;
  left: 41px;
  width: 480px;
}

.contact-card--contact .contact-card__actions {
  top: 221px;
  left: 50%;
  justify-content: center;
  transform: translateX(-50%);
}

.contact-card--join .contact-card__eyebrow {
  top: 54px;
  left: 50px;
}

.contact-card--join .contact-card__title {
  top: 69px;
  left: 48px;
}

.contact-card--join .contact-card__description {
  top: 129px;
  left: 55px;
  width: 490px;
}

.contact-card--join .contact-card__actions {
  top: 220px;
  left: 168px;
}

@media (max-width: 1250px) {
  .contact-card--contact .contact-card__actions {
    left: auto;
    transform: none;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  --site-footer-radius: 40px;
  position: relative;
  margin-top: calc(var(--site-footer-radius) * -1);
  background: transparent;
  z-index: 1;
}

.site-footer__main {
  width: 100%;
  min-height: 284px;
  background: var(--color-gray-bg);
  border-radius: var(--site-footer-radius) var(--site-footer-radius) 0 0;
  overflow: hidden;
}

.site-footer__content {
  position: relative;
  width: min(1440px, 100%);
  min-height: 284px;
  margin: 0 auto;
}

.site-footer__brand-block {
  position: absolute;
  top: 83px;
  left: 66px;
  width: 308px;
}

.site-footer__brand-block img {
  width: 217px;
  height: 44px;
}

.site-footer__brand-block p {
  margin: 24px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 23px;
  white-space: nowrap;
}

.site-footer__brand-block p + p {
  margin-top: 10px;
}

.site-footer__brand-block span {
  display: inline-block;
  margin: 0 7px;
}

.site-footer__links {
  position: absolute;
  inset: 0;
}

.site-footer__group {
  position: absolute;
}

.site-footer__group--about {
  top: 83px;
  left: 450px;
  width: 127px;
}

.site-footer__group--pharmacy {
  top: 83px;
  left: 641px;
  width: 120px;
}

.site-footer__group--citizen {
  top: 83px;
  left: 812px;
  width: 120px;
}

.site-footer__group--member {
  top: 74px;
  left: 976px;
  width: 90px;
}

.site-footer__group--other {
  top: 83px;
  left: 1160px;
  width: 151px;
}

.site-footer__group h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 22px;
  white-space: nowrap;
}

.site-footer__group ul {
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__group--member ul,
.site-footer__group--other ul {
  margin-top: 0;
}

.site-footer__group--member li + li {
  margin-top: 6px;
}

.site-footer__group--other li + li {
  margin-top: 5px;
}

.site-footer__links a {
  display: block;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  line-height: 30px;
  white-space: nowrap;
}

.site-footer__item--strong a {
  font-weight: 700;
}

.site-footer__copyright {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(129, 207, 215, 0.3);
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.42px;
  line-height: 25px;
  text-align: center;
  padding: 12px 24px;
}

@media (max-width: 1180px) {
  .site-footer {
    --site-footer-radius: 32px;
  }

  .site-footer__content {
    position: static;
    width: calc(100% - 48px);
    min-height: 0;
    padding: 40px 0 32px;
  }

  .site-footer__brand-block,
  .site-footer__links,
  .site-footer__group {
    position: static;
    width: auto;
  }

  .site-footer__brand-block {
    margin-bottom: 32px;
  }

  .site-footer__brand-block p,
  .site-footer__links a {
    font-size: 16px;
  }

  .site-footer__brand-block p {
    white-space: normal;
  }

  .site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 32px;
  }

  .site-footer__group ul,
  .site-footer__group--member ul,
  .site-footer__group--other ul {
    margin-top: 9px;
  }

  .site-footer__group--member,
  .site-footer__group--other {
    width: auto;
  }
}

/* =========================================================
   Responsive (desktop-first)
   ========================================================= */
@media (min-width: 1025px) and (max-width: 1439px) {
  .hero__inner {
    --hero-copy-left-fluid: clamp(44px, calc(38.8vw - 353.7px), 205px);
    --hero-copy-width-fluid: clamp(386px, calc(22.41vw + 156.3px), 479px);
    --hero-copy-gap-fluid: 24px;
    --hero-image-left-fluid: calc(
      var(--hero-copy-left-fluid) + var(--hero-copy-width-fluid) + var(--hero-copy-gap-fluid)
    );
    min-width: 0;
  }

  .hero__copy {
    left: var(--hero-copy-left-fluid);
    width: var(--hero-copy-width-fluid);
  }

  .hero__title {
    width: 100%;
    font-size: clamp(38px, calc(2.17vw + 15.8px), 47px);
    line-height: clamp(52px, calc(2.41vw + 27.3px), 62px);
    white-space: nowrap;
  }

  .hero__lead {
    margin-top: clamp(36px, calc(3.13vw + 3.9px), 49px);
    font-size: clamp(17px, calc(0.96vw + 7.1px), 21px);
    line-height: clamp(30px, calc(0.96vw + 20.2px), 34px);
    white-space: normal;
  }

  .hero__image-wrap {
    left: var(--hero-image-left-fluid);
    width: calc(100% - var(--hero-image-left-fluid));
  }
}

@media (min-width: 1494px) {
  .hero__inner {
    max-width: 1494px;
    margin: 0 auto;
  }

  .hero__bg-shape {
    left: calc((100% - 1494px) / 2);
  }

  .hero__bg-shape-sub {
    left: calc((100% - 1494px) / 2 + 49px);
  }

  .hero__image-wrap {
    border-radius: var(--radius-hero);
  }
}

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

  main {
    padding-top: 96px;
  }

  .site-header {
    overflow: visible;
  }

  .site-header:has(.site-header__nav:target) {
    background: rgba(255, 255, 255, 0.98);
  }

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

  .site-header__menu-close-target {
    position: fixed;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
    opacity: 0;
  }

  .site-header__topbar {
    position: relative;
    z-index: 1301;
  }

  .site-header__inner {
    min-height: 96px;
    padding: 0 24px;
    justify-content: space-between;
    gap: 12px;
  }

  .site-header__brand {
    width: 190px;
    flex: 0 0 auto;
    min-width: 0;
  }

  .site-header__search {
    display: none;
  }

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

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

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

  .site-header__mobile-button span:nth-child(1) {
    top: calc(50% - var(--site-header-mobile-line-offset));
  }

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

  .site-header__mobile-button span:nth-child(3) {
    top: calc(50% + var(--site-header-mobile-line-offset));
  }

  .site-header__mobile-button--close {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .site-header__mobile-button--close span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header__mobile-button--close span:nth-child(2) {
    opacity: 0;
  }

  .site-header__mobile-button--close span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-header:has(.site-header__nav:target) .site-header__topbar {
    background: rgba(255, 255, 255, 0.95);
  }

  .site-header:has(.site-header__nav:target) .site-header__mobile-button--open {
    opacity: 0;
    pointer-events: none;
  }

  .site-header:has(.site-header__nav:target) .site-header__mobile-button--close {
    opacity: 1;
    pointer-events: auto;
  }

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

  .site-header__nav:target {
    right: 0;
  }

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

  .site-header__drawer-list {
    display: flex;
    flex-direction: column;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .site-header__drawer-item {
    border-bottom: 1px dashed rgba(220, 231, 234, 0.95);
  }

  .site-header__drawer-link {
    height: auto;
    padding: 18px 0;
    line-height: 1.5;
    display: block;
  }

  .site-header__drawer-accordion {
    display: block;
  }

  .site-header__drawer-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    line-height: 1.5;
  }

  .site-header__drawer-summary-text {
    flex: 1;
  }

  .site-header__drawer-summary-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1px solid rgba(88, 208, 221, 0.42);
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  .site-header__drawer-summary-icon::before,
  .site-header__drawer-summary-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--color-main);
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease;
  }

  .site-header__drawer-summary-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .site-header__drawer-accordion[open] .site-header__drawer-summary-icon {
    background: rgba(88, 208, 221, 0.12);
    border-color: rgba(88, 208, 221, 0.65);
  }

  .site-header__drawer-accordion[open] .site-header__drawer-summary-icon::after {
    opacity: 0;
  }

  .site-header__drawer-children {
    margin: 0 0 18px;
    padding: 0 0 0 12px;
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .site-header__drawer-child-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(233, 248, 252, 0.86);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }

  .site-header__drawer-child-link::after {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: currentColor;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }

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

  .site-header__nav-cta:visited {
    color: var(--color-white);
  }

  html:has(.site-header__nav:target),
  body:has(.site-header__nav:target) {
    overflow-y: hidden;
  }
}

@media (max-width: 1180px) {
  .search {
    --search-inline-pad: 24px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    height: auto;
    padding: var(--sp-14) var(--search-inline-pad) var(--sp-20);
    background: #d6f4f9;
  }

  .search::before {
    content: none;
  }

  .search .section-heading {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    min-height: 67px;
    margin-bottom: var(--sp-8);
    padding-left: 0;
  }

  .search .section-heading::before {
    left: 4px;
    top: 2px;
  }

  .search .section-heading__label {
    position: absolute;
    left: 20px;
    top: 0;
    margin: 0;
    font-size: var(--fs-label);
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .search .section-heading__title {
    position: absolute;
    left: 0;
    top: 20px;
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .search__intro {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: -8px 0 var(--sp-8);
    font-size: 18px;
    font-weight: 400;
    line-height: var(--lh-base);
    letter-spacing: normal;
    white-space: normal;
    text-align: right;
  }

  .search__grid {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
    column-gap: 32px;
  }

  .search-card {
    height: auto;
    min-height: 106px;
  }

  .search-card__link {
    min-height: 106px;
    height: auto;
    padding: 26px 128px 20px 22px;
  }

  .search__grid .search-card:nth-child(3) .search-card__icon,
  .search__grid .search-card:nth-child(4) .search-card__icon,
  .search__grid .search-card:nth-child(5) .search-card__icon,
  .search__grid .search-card:nth-child(6) .search-card__icon {
    right: 13px;
    top: 1px;
    width: 82px;
    height: 82px;
  }

  .search-card h3 {
    font-size: var(--fs-h3);
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .search-card p {
    margin-top: 8px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 1024px) {
  :root {
    --fs-h2: 40px;
  }

  .hero-decoration {
    left: auto;
    right: clamp(-360px, -28vw, -160px);
    top: clamp(-320px, -26vw, -190px);
    width: clamp(760px, 82vw, 980px);
    height: clamp(780px, 84vw, 1020px);
    display: flex;
  }

  .hero-decoration__shape {
    width: clamp(520px, 56vw, 680px);
    height: clamp(680px, 73vw, 890px);
  }

  .hero {
    --hero-tablet-height: clamp(376px, 48.93vw, 501px);
    height: var(--hero-tablet-height);
    overflow: visible;
    padding: 0;
  }

  .hero__bg-shape {
    top: clamp(30px, 4vw, 37px);
    width: clamp(118px, 15vw, 158px);
    height: clamp(160px, 21vw, 214px);
    background: rgba(203, 246, 251, 0.6);
    border-radius: 0 40px 0 40px;
  }

  .hero__bg-shape-sub {
    display: block;
    left: clamp(28px, 4.8vw, 49px);
    top: clamp(116px, 14.5vw, 151px);
    width: clamp(126px, 16vw, 171px);
    height: clamp(150px, 18vw, 200px);
  }

  .hero__inner {
    --hero-copy-left-tablet: clamp(24px, calc(7.8125vw - 36px), 44px);
    --hero-copy-width-tablet: clamp(320px, calc(32.8125vw + 68px), 404px);
    --hero-copy-gap-tablet: 24px;
    --hero-image-left-tablet: calc(
      var(--hero-copy-left-tablet) + var(--hero-copy-width-tablet) + var(--hero-copy-gap-tablet)
    );
    width: 100%;
    min-width: 0;
    height: 100%;
    margin: 0;
  }

  .hero__copy {
    position: absolute;
    left: var(--hero-copy-left-tablet);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: var(--hero-copy-width-tablet);
  }

  .hero__title {
    width: 100%;
    font-size: clamp(30px, calc(2.34375vw + 12px), 36px);
    letter-spacing: 0.03em;
    line-height: clamp(41px, calc(3.515625vw + 14px), 50px);
    white-space: normal;
  }

  .hero__lead {
    width: 100%;
    margin: clamp(24px, calc(3.90625vw - 6px), 34px) 0 0;
    font-size: clamp(16px, calc(0.78125vw + 8px), 18px);
    letter-spacing: 0.05em;
    line-height: clamp(28px, calc(0.78125vw + 20px), 30px);
    white-space: nowrap;
  }

  .hero__image-wrap {
    left: var(--hero-image-left-tablet);
    top: 0;
    width: calc(100% - var(--hero-image-left-tablet));
    height: var(--hero-tablet-height);
    border-radius: clamp(36px, 5vw, 50px) 0 0 clamp(36px, 5vw, 50px);
  }

  .hero__tagline {
    --hero-tagline-gap: clamp(16px, 2vw, 24px);
    --hero-tagline-duration: 80s;
    --hero-tagline-overflow-block: clamp(24px, 3vw, 36px);
    left: -6px;
    top: auto;
    bottom: clamp(-25px, 4.8vw, -20px);
    width: 100vw;
    height: auto;
    margin: 0;
    color: rgba(225, 243, 246, 0.6);
    font-size: clamp(74px, 9vw, 119px);
    letter-spacing: 0.02em;
    line-height: 0.84;
    white-space: nowrap;
  }

  .news {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
    row-gap: var(--sp-8);
    align-items: start;
    height: auto;
    margin-top: 40px;
    margin-bottom: 0;
    padding: var(--sp-12) 22px var(--sp-16);
  }

  .news .section-heading {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    margin-bottom: var(--sp-8);
    padding-left: var(--sp-3);
  }

  .news .section-heading::before {
    left: 0;
    top: 2px;
  }

  .news .section-heading__label {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
  }

  .news .section-heading__title {
    position: static;
    left: auto;
    top: auto;
    margin-top: 8px;
    font-size: var(--fs-h2);
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .news__list {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
    border-top: 0;
  }

  .news__item:first-child {
    border-top: 1px solid var(--color-line);
  }

  .news__link {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0 18px 24px;
  }

  .news__meta time {
    font-size: 14px;
  }

  .news__content {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 12px;
  }

  .news__title {
    font-size: 16px;
    line-height: 1.75;
  }

  .news__arrow {
    width: 36px;
    height: 36px;
  }

  .news .button {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: end;
    width: auto;
    margin-inline-end: var(--news-content-inline-pad, 0);
    margin-top: 0;
    padding-right: 38px;
    white-space: nowrap;
  }

  .search {
    --search-inline-pad: 24px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    height: auto;
    padding: var(--sp-14) var(--search-inline-pad) var(--sp-20);
    background: #d6f4f9;
  }

  .search::before {
    content: none;
  }

  .search .section-heading {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    margin-bottom: var(--sp-8);
    padding-left: var(--sp-3);
  }

  .search .section-heading::before {
    left: 0;
    top: 2px;
  }

  .search .section-heading__label {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
    font-size: var(--fs-label);
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .search .section-heading__title {
    position: static;
    left: auto;
    top: auto;
    margin-top: 8px;
    font-size: var(--fs-h2);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .search__intro {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: -8px 0 var(--sp-8);
    font-size: 18px;
    font-weight: 400;
    line-height: var(--lh-base);
    letter-spacing: normal;
    white-space: normal;
    text-align: right;
  }

  .search__grid {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    row-gap: 26px;
    column-gap: 32px;
  }

  .search-card {
    height: auto;
    min-height: 106px;
  }

  .search-card__link {
    min-height: 106px;
    height: auto;
    padding: 26px 128px 20px 22px;
  }

  .search__grid .search-card:nth-child(3) .search-card__icon,
  .search__grid .search-card:nth-child(4) .search-card__icon,
  .search__grid .search-card:nth-child(5) .search-card__icon,
  .search__grid .search-card:nth-child(6) .search-card__icon {
    right: 13px;
    top: 1px;
    width: 82px;
    height: 82px;
  }

  .search-card h3 {
    font-size: var(--fs-h3);
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .search-card p {
    margin-top: 8px;
    letter-spacing: 0.08em;
  }

  .member-info {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: var(--sp-14) 0;
  }

  .member-info::before {
    display: none;
  }

  .member-info__inner {
    position: relative;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "text"
      "buttons";
    gap: var(--sp-6);
  }

  .member-info .section-heading {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    margin: 0;
    padding-left: var(--sp-3);
  }

  .member-info .section-heading::before {
    left: 0;
    top: 2px;
  }

  .member-info .section-heading__label {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
    font-size: var(--fs-label);
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .member-info .section-heading__title {
    position: static;
    left: auto;
    top: auto;
    margin-top: 8px;
    font-size: var(--fs-h2);
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .member-info__text {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: normal;
    white-space: normal;
  }

  .member-info__buttons {
    position: relative;
    left: auto;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, 320px);
    justify-content: center;
    gap: var(--sp-4);
  }

  .member-info__buttons .button {
    width: 320px;
    min-width: 320px;
    max-width: 100%;
    height: auto;
    min-height: 58px;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 34px;
    font-size: 16px;
    letter-spacing: 0.03em;
    text-align: center;
  }

  .member-info__buttons .button::after {
    right: 18px;
    width: 12px;
    height: 12px;
  }

  .activity {
    height: auto;
    padding: var(--sp-14) 0 var(--sp-16);
  }

  .activity__layout {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .activity__layout::after {
    display: none;
  }

  .activity__lead {
    display: contents;
  }

  .activity .section-heading {
    order: 1;
    width: auto;
    padding-left: var(--sp-3);
  }

  .activity .section-heading::before {
    left: 0;
    top: 2px;
  }

  .activity .section-heading__label {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
    font-size: var(--fs-label);
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .activity .section-heading__title {
    position: static;
    left: auto;
    top: auto;
    margin-top: 8px;
    font-size: var(--fs-h2);
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .activity__intro {
    order: 2;
    position: relative;
    width: auto;
    margin: 14px 0 18px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .activity__more {
    order: 5;
    position: relative;
    align-self: center;
    margin: 40px auto 0;
    z-index: auto;
  }

  .activity__featured,
  .activity__grid {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    gap: var(--sp-8);
  }

  .activity__featured {
    order: 3;
  }

  .activity__grid {
    order: 4;
  }

  .activity-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .activity-card--top-right::after {
    display: none;
  }

  .activity-card__image-wrap {
    position: relative;
    height: 200px;
  }

  .activity-card__image {
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .activity-card__body,
  .activity-card__body--top,
  .activity-card__body--bottom {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: -52px;
    padding: 28px 22px 96px;
    border-radius: 0 40px 20px 20px;
  }

  .activity-card__body::before,
  .activity-card--bottom-right .activity-card__body::before {
    left: 22px;
    top: 28px;
    height: 48px;
  }

  .activity-card__title,
  .activity-card--top-left .activity-card__title,
  .activity-card--top-right .activity-card__title,
  .activity-card--bottom-left .activity-card__title,
  .activity-card--bottom-center .activity-card__title,
  .activity-card--bottom-right .activity-card__title {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 0 0 14px 20px;
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }

  .activity-card__text,
  .activity-card--top-left .activity-card__text,
  .activity-card--top-right .activity-card__text,
  .activity-card--bottom-left .activity-card__text,
  .activity-card--bottom-center .activity-card__text,
  .activity-card--bottom-right .activity-card__text {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .activity-card--bottom-left .button,
  .activity-card--bottom-center .button,
  .activity-card--bottom-right .button {
    margin-left: 0;
    width: auto;
    align-self: stretch;
  }

  .our-pharmacy {
    margin-top: 0;
    padding: var(--sp-14) 0 0;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 42.5%);
    grid-template-areas:
      "summary summary"
      "details side";
    column-gap: clamp(20px, 3vw, 28px);
    row-gap: 26px;
  }

  .our-pharmacy .section-heading {
    margin-bottom: 18px;
  }

  .our-pharmacy .section-heading__label {
    font-size: var(--fs-label);
    letter-spacing: 0.08em;
    line-height: 1;
  }
  
  .our-pharmacy .section-heading__title {
    font-size: var(--fs-h2);
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .our-pharmacy__summary,
  .our-pharmacy__details-card,
  .our-pharmacy__side {
    min-width: 0;
  }

  .our-pharmacy__summary {
    margin-bottom: 18px;
  }

  .our-pharmacy__lead {
    max-width: none;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.03em;
    white-space: normal;
  }

  .our-pharmacy__lead br {
    display: none;
  }

  .our-pharmacy__details-card {
    min-height: 0;
    padding: 24px 84px 20px 24px;
  }

  .our-pharmacy__details {
    max-width: none;
  }

  .our-pharmacy__label,
  .our-pharmacy__line,
  .our-pharmacy__note {
    white-space: normal;
  }

  .our-pharmacy__medicine {
    right: 8px;
    top: -17px;
    width: 64px;
    height: auto;
  }

  .our-pharmacy__map-wrap {
    width: 100%;
  }

  .our-pharmacy__side {
    gap: 24px;
  }

  .our-pharmacy__bg-shape--761 {
    top: -12px;
    right: -42px;
    width: clamp(118px, 15.4vw, 142px);
    height: clamp(160px, 20.9vw, 192px);
  }

  .our-pharmacy__bg-shape--760 {
    top: 62px;
    right: -86px;
    width: clamp(128px, 16.7vw, 156px);
    height: clamp(150px, 19.5vw, 182px);
  }

  .anshin {
    height: auto;
    border-radius: 9px 32px 0 32px;
  }

  .anshin__bg-shape {
    display: none;
  }

  .anshin__bg-pattern {
    display: none;
  }

  .anshin__content {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    padding: 44px 32px 28px;
  }

  .anshin h2 {
    width: auto;
    height: auto;
    font-size: 28px;
    letter-spacing: 0.04em;
  }

  .anshin__headline-line {
    position: relative;
    left: auto;
  }

  .anshin__headline-line--first {
    top: auto;
    line-height: 1.35;
  }

  .anshin__headline-line--first::after {
    top: auto;
    bottom: 6px;
    width: 230px;
    height: 12px;
  }

  .anshin__headline-line--second {
    top: auto;
    margin-top: 10px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .anshin__headline-line--second::after {
    top: auto;
    bottom: 6px;
    width: 100%;
    max-width: 520px;
    height: 12px;
  }

  .anshin__text {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin-top: 22px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .anshin__buttons {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .anshin__button {
    display: block;
    min-height: 49px;
    padding: 0;
  }

  .anshin__button-label,
  .anshin__button-icon {
    position: absolute;
  }

  .anshin__button-label {
    left: 50%;
    top: 50%;
    max-width: calc(100% - 40px);
    text-align: center;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 1.4;
  }

  .anshin__button-label--list,
  .anshin__button-label--about {
    width: auto;
  }

  .anshin__button--list,
  .anshin__button--about {
    width: auto;
  }

  .anshin__button-icon--list {
    right: 16px;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .anshin__button-icon--about {
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-left: 0;
    background: currentColor;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: translateY(-50%);
  }

  .anshin__image-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 360px;
  }

  .anshin__image-mask {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .anshin__image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .search__grid,
  .activity__featured,
  .activity__grid,
  .contact-join__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-info__inner {
    grid-template-columns: 1fr;
  }

  .member-info__buttons .button {
    min-width: 0;
    width: 100%;
  }

  .contact-card__description,
  .site-footer__brand-block p,
  .site-footer__links a {
    font-size: 16px;
  }

  .site-footer {
    --site-footer-radius: 32px;
  }

  .site-footer__content {
    position: static;
    width: calc(100% - 48px);
    min-height: 0;
    padding: 40px 0 32px;
  }

  .site-footer__brand-block,
  .site-footer__links,
  .site-footer__group {
    position: static;
    width: auto;
  }

  .site-footer__brand-block {
    margin-bottom: 32px;
  }

  .site-footer__brand-block p {
    white-space: normal;
  }

  .site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 32px;
  }

  .site-footer__group ul,
  .site-footer__group--member ul,
  .site-footer__group--other ul {
    margin-top: 9px;
  }

  .site-footer__group--member,
  .site-footer__group--other {
    width: auto;
  }

  .contact-join {
    --contact-join-grid-width: min(1202px, calc(100% - 96px));
    --contact-join-padding-bottom: 84px;
    min-height: auto;
    padding: 72px 0 var(--contact-join-padding-bottom);
  }

  .contact-join__grid {
    width: var(--contact-join-grid-width);
    gap: 24px;
  }

  .contact-join__shape--764 {
    top: 36px;
    left: calc((100% - var(--contact-join-grid-width)) / 2 - 34px);
  }

  .contact-join__shape--763 {
    top: auto;
    bottom: calc(var(--contact-join-padding-bottom) - var(--contact-join-shape-763-overlap));
    right: calc((100% - var(--contact-join-grid-width)) / 2 - 43px);
    left: auto;
  }

  .contact-card {
    min-height: auto;
    padding: 40px 28px 32px;
  }

  .contact-card__eyebrow,
  .contact-card__title,
  .contact-card__description,
  .contact-card__actions {
    position: static;
  }

  .contact-card__eyebrow {
    margin-bottom: 12px;
  }

  .contact-card__title {
    font-size: 30px;
  }

  .contact-card__description {
    width: auto;
    margin-top: 24px;
  }

  .contact-card--contact .contact-card__description,
  .contact-card--join .contact-card__description {
    width: auto;
    max-width: 100%;
  }

  .contact-card__description br {
    display: none;
  }

  .contact-card__actions {
    margin-top: 30px;
    flex-direction: column;
    gap: 12px;
  }

  .contact-card__cta {
    width: 100%;
    min-width: 0;
    padding: 0 44px;
  }

  .contact-card__cta-label {
    position: static;
  }

  .contact-card__cta-icon {
    top: calc(50% - 4px);
    right: 18px;
  }
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .activity__featured .activity-card {
    grid-template-rows: 220px 307px;
  }

  .activity__grid .activity-card__body {
    min-height: 330px;
    padding-bottom: 24px;
  }

  .activity-card--bottom-left .button,
  .activity-card--bottom-center .button,
  .activity-card--bottom-right .button {
    width: 212px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }
}

@media (max-width: 1068px) and (min-width: 1025px) {
  .activity__featured .activity-card {
    grid-template-rows: 220px 331px;
  }
}

@media (max-width: 1250px) and (min-width: 1025px) {
  .contact-join {
    --contact-join-grid-width: calc(100% - 64px);
    --contact-join-padding-bottom: 96px;
    min-height: auto;
    padding: 76px 0 var(--contact-join-padding-bottom);
  }

  .contact-join__grid {
    width: var(--contact-join-grid-width);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .contact-join__shape {
    width: 132px;
    height: 180px;
  }

  .contact-join__shape--764 {
    top: 40px;
    left: calc((100% - var(--contact-join-grid-width)) / 2 - 18px);
  }

  .contact-join__shape--763 {
    right: calc((100% - var(--contact-join-grid-width)) / 2 - 22px);
    bottom: calc(var(--contact-join-padding-bottom) - 54px);
  }

  .contact-card {
    min-height: auto;
    padding: 34px 24px 28px;
  }

  .contact-card__eyebrow,
  .contact-card__title,
  .contact-card__description,
  .contact-card__actions {
    position: static;
  }

  .contact-card__eyebrow {
    margin-bottom: 10px;
  }

  .contact-card__title {
    font-size: 29px;
  }

  .contact-card__description {
    width: auto;
    margin-top: 20px;
    font-size: 15px;
    line-height: 28px;
  }

  .contact-card--contact .contact-card__description,
  .contact-card--join .contact-card__description {
    width: auto;
    max-width: 100%;
  }

  .contact-card__description br {
    display: none;
  }

  .contact-card__actions {
    margin-top: 24px;
    flex-direction: column;
    gap: 12px;
  }

  .contact-card__cta {
    width: 100%;
    min-width: 0;
    padding: 0 40px;
  }

  .contact-card__cta-label {
    position: static;
  }

  .contact-card__cta-icon {
    top: calc(50% - 4px);
    right: 18px;
  }
}

@media (max-width: 1325px) and (min-width: 1181px) {
  .site-footer {
    --site-footer-radius: 32px;
  }

  .site-footer__main {
    min-height: 0;
  }

  .site-footer__content {
    position: static;
    width: calc(100% - 48px);
    min-height: 0;
    padding: 40px 0 32px;
  }

  .site-footer__brand-block,
  .site-footer__links,
  .site-footer__group {
    position: static;
    width: auto;
  }

  .site-footer__brand-block {
    margin-bottom: 32px;
  }

  .site-footer__brand-block p,
  .site-footer__links a {
    font-size: 16px;
  }

  .site-footer__brand-block p {
    white-space: normal;
  }

  .site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 32px;
  }

  .site-footer__group ul,
  .site-footer__group--member ul,
  .site-footer__group--other ul {
    margin-top: 9px;
  }

  .site-footer__group--member,
  .site-footer__group--other {
    width: auto;
  }
}

@media (max-width: 1024px) {
  .news {
    --news-content-inline-pad: 24px;
  }

  :is(.news, .search, .member-info, .activity, .our-pharmacy) .section-heading {
    min-height: 67px;
    padding-left: 0;
  }

  :is(.news, .search, .member-info, .activity, .our-pharmacy) .section-heading::before {
    left: 4px;
    top: 2px;
  }

  :is(.news, .search, .member-info, .activity, .our-pharmacy) .section-heading__label {
    position: absolute;
    left: 20px;
    top: 0;
    margin: 0;
  }

  :is(.news, .search, .member-info, .activity, .our-pharmacy) .section-heading__title {
    position: absolute;
    left: 0;
    top: 20px;
    margin: 0;
    line-height: 1;
  }
}

@media (min-width: 1441px) {
  .search::before {
    left: calc(600px - 50vw);
    width: calc(50vw + 600px);
  }

  .member-info::before {
    left: calc(50vw - 600px);
    width: calc(50vw + 600px);
  }
}

@media (max-width: 1439px) and (min-width: 1025px) {
  .member-info::before {
    --member-info-shell-left: max(24px, calc((100% - 1200px) / 2));
    left: var(--member-info-shell-left);
    width: calc(100% - var(--member-info-shell-left));
  }

  .member-info__text {
    left: auto;
    right: 0;
    width: auto;
    max-width: min(442px, calc(100% - 460px));
    white-space: normal;
    text-align: right;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .anshin-wrap {
    margin-top: 98px;
    margin-bottom: 104px;
  }

  .anshin {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(268px, 34%);
    align-items: stretch;
    height: 385px;
    padding: 0 0 0 32px;
    border-radius: 9px 40px 0 40px;
  }

  .anshin__bg-pattern {
    display: block;
    left: -36px;
    top: auto;
    bottom: -50px;
    width: 190px;
    height: 131px;
  }

  .anshin__bg-shape {
    display: block;
    left: auto;
    right: -26px;
    top: -24px;
    width: 128px;
    height: 174px;
  }

  .anshin__content {
    width: auto;
    padding: 40px 24px 36px 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .anshin h2 {
    font-size: clamp(25px, 2.8vw, 30px);
    letter-spacing: 0.03em;
  }

  .anshin__headline-line--first::after {
    width: clamp(220px, 28vw, 250px);
  }

  .anshin__headline-line--second {
    letter-spacing: 0.04em;
  }

  .anshin__text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .anshin__buttons {
    margin-top: auto;
    gap: 12px 16px;
  }

  .anshin__button {
    min-height: 46px;
    padding: 0;
  }

  .anshin__button-label {
    font-size: 15px;
  }

  .anshin__button--list {
    min-width: 244px;
  }

  .anshin__button--about {
    min-width: 220px;
  }

  .anshin__image-wrap {
    width: auto;
    height: 100%;
    min-height: 0;
    align-self: stretch;
  }

  .anshin__image-mask {
    height: 100%;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

@media (max-width: 860px) and (min-width: 800px) {
  .anshin__buttons {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .anshin__button {
    min-width: 0;
    flex: 1 1 0;
    padding: 0;
  }

  .anshin__button-label {
    font-size: 14px;
  }
}

@media (max-width: 799px) and (min-width: 768px) {
  .anshin {
    height: 440px;
  }

  .anshin__buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .anshin__button {
    width: min(320px, 100%);
    min-width: 0;
    flex: none;
    padding: 0;
  }

  .anshin__button--list,
  .anshin__button--about {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-h2: 34px;
  }

  .section-container {
    width: calc(100% - 32px);
  }

  .search {
    --search-inline-pad: 16px;
  }

  .member-info__buttons {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .member-info__buttons .button {
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 54px;
    padding: 14px 40px 14px 20px;
    border-radius: 32px;
    font-size: 16px;
    letter-spacing: 0.02em;
  }

  .member-info__buttons .button::after {
    right: 16px;
    width: 11px;
    height: 11px;
  }

  .news {
    --news-content-inline-pad: 16px;
    column-gap: 16px;
    row-gap: 24px;
  }

  html {
    scroll-padding-top: 108px;
  }

  main {
    padding-top: 88px;
  }

  .site-header__inner {
    min-height: 88px;
    padding: 0 16px;
    gap: 0.75rem;
  }

  .site-header__brand {
    width: 160px;
  }

  .site-header__mobile-button {
    width: 50px;
    height: 50px;
    --site-header-mobile-line-offset: 9px;
  }

  .site-header__mobile-button span {
    width: 24px;
  }

  .site-header__nav {
    padding: 96px 20px 28px;
  }

  .site-header__drawer-list {
    font-size: 15px;
  }

  .site-header__drawer-summary {
    gap: 14px;
  }

  .site-header__drawer-child-link {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .news .button {
    width: auto;
    min-height: 44px;
    padding: 10px 20px;
    padding-right: 38px;
    font-size: 14px;
  }

  .news__content {
    display: block;
  }

  .news__term {
    width: fit-content;
    padding: 0px 20px;
    min-height: 26px;
  }

  .news__arrow {
    display: none;
  }

  .hero {
    --hero-tablet-height: clamp(305px, calc(24.65vw + 186.7px), 376px);
    height: var(--hero-tablet-height);
  }

  .hero__inner {
    --hero-copy-left-tablet: clamp(18px, calc(2.43vw + 5.7px), 24px);
    --hero-copy-width-tablet: clamp(280px, calc(23.44vw + 160px), 340px);
    --hero-copy-gap-tablet: 24px;
    --hero-image-left-tablet: calc(
      var(--hero-copy-left-tablet) + var(--hero-copy-width-tablet) + var(--hero-copy-gap-tablet)
    );
  }

  .hero__copy {
    left: var(--hero-copy-left-tablet);
    top: 50%;
    transform: translateY(-50%);
    width: var(--hero-copy-width-tablet);
  }

  .hero__title {
    font-size: clamp(24px, calc(2.43vw + 12.3px), 31px);
    line-height: clamp(33px, calc(3.125vw + 18px), 42px);
  }

  .hero__lead {
    max-width: none;
    margin-top: clamp(18px, calc(2.08vw + 8px), 24px);
    font-size: clamp(14px, calc(0.43vw + 11.7px), 15px);
    letter-spacing: 0.03em;
    line-height: clamp(23px, calc(0.87vw + 18.8px), 25px);
  }

  .hero__image-wrap {
    left: var(--hero-image-left-tablet);
    width: calc(100% - var(--hero-image-left-tablet));
    height: var(--hero-tablet-height);
  }

  .hero__tagline {
    --hero-tagline-gap: 16px;
    --hero-tagline-duration: 80s;
    --hero-tagline-overflow-block: 24px;
    left: 0;
    bottom: clamp(-30px, -2vw, -16px);
    height: auto;
    font-size: clamp(56px, 11.8vw, 74px);
    line-height: 0.84;
  }

  .news__link {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .news__content {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 12px;
  }

  .search__grid,
  .activity__featured,
  .activity__grid,
  .contact-join__grid {
    grid-template-columns: 1fr;
  }

  .search-card__link {
    padding-right: 116px;
  }

  .search__intro {
    font-size: 16px;
    text-align: left;
  }

  .anshin {
    border-radius: 9px 24px 0 24px;
  }

  .anshin__content {
    padding: 28px 20px 24px;
  }

  .anshin h2 {
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  .anshin__headline-line::after {
    height: 10px;
    bottom: 4px;
  }

  .anshin__headline-line--first::after {
    width: 166px;
  }

  .anshin__headline-line--second::after {
    max-width: 100%;
  }

  .anshin__headline-line--second {
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .anshin__text,
  .our-pharmacy__lead,
  .our-pharmacy__line {
    font-size: 16px;
  }

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

  .anshin__button {
    width: 100%;
  }

  .anshin__image-wrap {
    height: 320px;
    border-top-right-radius: 24px;
  }

  .our-pharmacy__line--tel,
  .our-pharmacy__line--hours .our-pharmacy__en,
  .our-pharmacy__line--holiday .our-pharmacy__en {
    font-size: 16px;
  }

  .our-pharmacy {
    padding: var(--sp-14) 0 var(--sp-16);
    grid-template-columns: 1fr;
    grid-template-areas:
      "summary"
      "details"
      "side";
    row-gap: var(--sp-8);
  }

  .our-pharmacy__side {
    min-height: 0;
    padding-top: 0;
    align-self: start;
    gap: var(--sp-8);
    align-items: stretch;
  }

  .our-pharmacy__bg-shape {
    display: none;
  }

  .our-pharmacy .section-heading {
    margin-bottom: var(--sp-6);
  }

  .our-pharmacy__lead {
    line-height: 1.7;
  }

  .our-pharmacy__details-card {
    min-height: 0;
    padding: 24px 20px 20px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }

  .our-pharmacy__medicine {
    display: none;
  }

  .our-pharmacy__cta {
    margin-top: 0;
    width: 100%;
  }

  .site-footer__content {
    width: calc(100% - 32px);
    padding: 32px 0 28px;
  }

  .site-footer__main {
    min-height: 0;
  }

  .site-footer__brand-block {
    margin-bottom: 0;
  }

  .site-footer__links {
    display: none;
  }

  .site-footer__brand-block img {
    width: 200px;
    height: auto;
  }

  .site-footer__brand-block p {
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 1.7;
  }

  .site-footer__group h3 {
    font-size: 14px;
    letter-spacing: 0.84px;
  }

  .site-footer__links a {
    font-size: 14px;
    line-height: 28px;
  }

  .site-footer {
    --site-footer-radius: 24px;
  }

  .contact-join {
    padding: 64px 0 72px;
  }

  .contact-join__grid {
    width: calc(100% - 32px);
    gap: 20px;
  }

  .contact-join__shape {
    width: 92px;
    height: 124px;
    border-radius: 0 24px 0 24px;
  }

  .contact-join__shape--764 {
    top: 22px;
    left: 10px;
  }

  .contact-join__shape--763 {
    right: 10px;
    bottom: 18px;
  }

  .contact-card {
    padding: 32px 24px 28px;
    border-radius: 0 24px 0 24px;
  }

  .contact-card__eyebrow {
    margin-bottom: 10px;
  }

  .contact-card__eyebrow-text {
    font-size: 14px;
    letter-spacing: 0.84px;
  }

  .contact-card__title {
    font-size: 28px;
  }

  .contact-card__description {
    margin-top: 20px;
    line-height: 28px;
  }

  .contact-card__actions {
    margin-top: 24px;
  }

  .contact-card__cta {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .activity-card {
    --activity-card-content-max: 376px;
  }

  .activity__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .activity__layout::after {
    display: none;
  }

  .activity .section-heading,
  .activity__intro,
  .activity__more,
  .activity__featured,
  .activity__grid {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .activity__lead {
    display: contents;
  }

  .activity__intro {
    max-width: none;
  }

  .activity__featured,
  .activity__grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    justify-items: stretch;
  }

  .activity__grid .activity-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 24px) / 2);
    max-width: 100%;
  }

  .activity-card {
    width: 100%;
    grid-template-rows: 220px 1fr;
  }

  .activity__grid .activity-card {
    grid-template-rows: 220px auto;
  }

  .activity-card__image-wrap {
    height: 220px;
  }

  .activity-card__body {
    min-height: 0;
    padding: 30px max(24px, calc((100% - var(--activity-card-content-max)) / 2)) 28px;
  }

  .activity-card__body::before,
  .activity-card--bottom-right .activity-card__body::before {
    left: max(24px, calc((100% - var(--activity-card-content-max)) / 2));
  }

  .activity-card--bottom-center .activity-card__body,
  .activity-card--bottom-right .activity-card__body {
    padding-bottom: 24px;
  }

  .activity-card__title,
  .activity-card--top-left .activity-card__title,
  .activity-card--top-right .activity-card__title,
  .activity-card--bottom-left .activity-card__title,
  .activity-card--bottom-center .activity-card__title,
  .activity-card--bottom-right .activity-card__title,
  .activity-card__text,
  .activity-card--top-left .activity-card__text,
  .activity-card--top-right .activity-card__text,
  .activity-card--bottom-left .activity-card__text,
  .activity-card--bottom-center .activity-card__text,
  .activity-card--bottom-right .activity-card__text {
    max-width: none;
  }

  .activity-card .button {
    width: min(212px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .activity__more {
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .activity__lead,
  .activity__featured,
  .activity__grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .activity__lead {
    width: 100%;
  }

  .activity__featured,
  .activity__grid {
    width: calc(100% - 16px);
    margin-inline: auto;
  }

  .activity__grid .activity-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .activity-card {
    width: 100%;
    max-width: none;
    grid-template-rows: clamp(220px, 54vw, 260px) 1fr;
  }

  .activity__grid .activity-card {
    grid-template-rows: clamp(220px, 54vw, 260px) auto;
  }

  .activity-card__image-wrap {
    height: clamp(220px, 54vw, 260px);
  }

  .activity-card__body {
    padding: 28px 24px 24px;
  }

  .activity-card__body::before,
  .activity-card--bottom-right .activity-card__body::before {
    left: 24px;
  }

  .activity-card__body::before {
    height: 65px;
  }

  .activity-card--bottom-right .activity-card__body::before {
    height: 33px;
  }

  .activity-card__title,
  .activity-card--top-left .activity-card__title,
  .activity-card--top-right .activity-card__title,
  .activity-card--bottom-left .activity-card__title,
  .activity-card--bottom-center .activity-card__title,
  .activity-card--bottom-right .activity-card__title,
  .activity-card__text,
  .activity-card--top-left .activity-card__text,
  .activity-card--top-right .activity-card__text,
  .activity-card--bottom-left .activity-card__text,
  .activity-card--bottom-center .activity-card__text,
  .activity-card--bottom-right .activity-card__text {
    max-width: none;
  }

  .activity-card .button {
    width: min(320px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-h2: 28px;
    --sp-16: 48px;
  }

  .section-container {
    width: calc(100% - 24px);
  }

  .search {
    --search-inline-pad: 12px;
    width: 100%;
    margin: 0;
  }

  :is(.news, .search, .member-info, .activity, .our-pharmacy) .section-heading {
    min-height: 50px;
  }

  .news {
    column-gap: 10px;
  }

  .news .button {
    min-height: 40px;
    padding: 8px 16px;
    padding-right: 32px;
    font-size: 13px;
  }

  html {
    scroll-padding-top: 96px;
  }

  main {
    padding-top: 76px;
  }

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

  .site-header__brand {
    width: 156px;
  }

  .site-header__mobile-button {
    width: 46px;
    height: 46px;
    --site-header-mobile-line-offset: 8px;
  }

  .site-header__mobile-button span {
    width: 22px;
  }

  .site-header__nav {
    padding: 84px 16px 24px;
  }

  .site-header__drawer-list {
    font-size: 14px;
  }

  .site-header__drawer-summary {
    gap: 12px;
    padding: 16px 0;
  }

  .site-header__drawer-summary-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .site-header__drawer-summary-icon::before,
  .site-header__drawer-summary-icon::after {
    width: 9px;
  }

  .site-header__drawer-children {
    margin-bottom: 16px;
    padding-left: 10px;
    gap: 8px;
  }

  .site-header__drawer-child-link {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 13px;
  }

  .hero-decoration {
    display: none;
  }

  .hero {
    height: auto;
    overflow: hidden;
    padding: 24px 0 40px;
  }

  .hero__bg-shape {
    top: 18px;
    width: 188px;
    height: 188px;
    background: rgba(233, 248, 252, 0.7);
    border-radius: 0 0 96px 0;
  }

  .hero__bg-shape-sub {
    display: block;
    left: auto;
    right: 0px;
    top: 194px;
    width: 92px;
    height: 92px;
    opacity: 0.65;
    border-radius: 40px 0 40px 0;
    background: rgba(203, 246, 251, 0.82);
  }

  .hero__inner {
    width: 100%;
    min-width: 0;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
    gap: 18px;
  }

  .hero__copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 28px 8px 0;
  }

  .hero__title {
    width: auto;
    font-size: clamp(26px, 7.4vw, 32px);
    letter-spacing: 0.03em;
    line-height: 1.45;
    white-space: normal;
  }

  .hero__lead {
    width: auto;
    max-width: none;
    margin: 18px 0 0;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.8;
    white-space: normal;
  }

  .hero__image-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: clamp(220px, 64vw, 290px);
    border-radius: 32px 32px 0 32px;
    box-shadow: var(--shadow-sm);
  }

  .hero__tagline {
    --hero-tagline-gap: 14px;
    --hero-tagline-duration: 80s;
    --hero-tagline-overflow-block: 18px;
    position: relative;
    left: -15px;
    bottom: 40px;
    width: 100vw;
    height: auto;
    margin: 0;
    color: rgba(225, 243, 246, 0.6);
    font-size: clamp(32px, 11.5vw, 48px);
    letter-spacing: 0.04em;
    line-height: 0.95;
    white-space: nowrap;
  }

  .hero__lead br {
    display: none;
  }

  .section-heading__title {
    line-height: 1.2;
  }

  .button {
    width: 100%;
  }

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

  .contact-join__grid {
    width: calc(100% - 24px);
  }

  .site-footer__content {
    width: calc(100% - 24px);
    padding: 28px 0 24px;
  }

  .contact-join__shape {
    width: 68px;
    height: 96px;
  }

  .contact-join__shape--764 {
    top: 16px;
    left: 8px;
  }

  .contact-join__shape--763 {
    right: 8px;
    bottom: 14px;
  }

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

  .search-card__link {
    min-height: 98px;
    padding: 18px 92px 16px 16px;
  }

  .search-card__icon {
    width: 92px;
    height: 92px;
  }

  .search-card h3 {
    font-size: 24px;
  }

  .site-footer__copyright {
    min-height: 72px;
    font-size: 11px;
    line-height: 1.6;
  }
}

/* =========================================================
   Kaiei Page
   ========================================================= */
.pharmacy-page {
  position: relative;
  z-index: 1;
}

.pharmacy-page__heading {
  position: relative;
  padding-left: 19px;
}

.pharmacy-page__heading::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
}

.pharmacy-page__heading-label {
  margin: 0;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.96px;
  line-height: 1;
}

.pharmacy-page__heading-title {
  margin: 0 0 0 -19px;
  color: var(--color-text);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 52px;
}

.subpage-hero {
  position: relative;
  min-height: 322px;
  overflow: hidden;
}

.subpage-hero__inner {
  position: relative;
  max-width: 1440px;
  min-height: 322px;
  margin: 0 auto;
}

.subpage-hero__shape {
  position: absolute;
  left: 0;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.subpage-hero__shape--primary {
  top: 31px;
  width: 136px;
  height: 178px;
  background: rgba(203, 246, 251, 0.6);
}

.subpage-hero__shape--secondary {
  left: 42px;
  top: 126px;
  width: 148px;
  height: 166px;
  border-bottom-left-radius: 50px;
  background: rgba(233, 248, 252, 0.7);
}

.subpage-hero__copy {
  position: absolute;
  left: 158px;
  top: 117px;
  z-index: 1;
}

.subpage-hero__label {
  margin: 0;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.08px;
  line-height: 1;
}

.subpage-hero__title {
  margin: 11px 0 0;
  color: var(--color-text);
  font-size: 47px;
  font-weight: 500;
  letter-spacing: 0.94px;
  line-height: 1.45;
}

.subpage-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: min(780px, calc(100vw - 660px));
  min-width: 560px;
  height: 322px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: hidden;
}

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

.subpage-anchor-nav {
  margin: 82px auto 74px;
}

.subpage-anchor-list {
  display: flex;
  justify-content: center;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.subpage-anchor-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 36px 6px 30px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.12px;
  line-height: 30px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.subpage-anchor-link::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 12px;
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.pharmacy-info {
  padding-bottom: 76px;
}

.pharmacy-info__layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  column-gap: 120px;
  align-items: start;
}

.pharmacy-info__content {
  min-width: 0;
}

.pharmacy-info__table {
  margin: 0;
}

.pharmacy-info__row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
  padding: 21px 0;
  border-top: 1px solid var(--color-line);
}

.pharmacy-info__row:last-child {
  border-bottom: 1px solid var(--color-line);
}

.pharmacy-info__row dt {
  color: var(--color-main);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 26px;
}

.pharmacy-info__row dd {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  line-height: 26px;
}

.pharmacy-info__address-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

.pharmacy-info__address-text {
  margin: 0;
}

.pharmacy-info__map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 113px;
  min-width: 113px;
  height: 32px;
  padding: 0;
  margin-top: 29px;
  border-radius: 30px;
  background: rgba(99, 206, 217, 0.35);
  color: #000;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1;
  white-space: nowrap;
}

.pharmacy-info__note {
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 24px;
}

.pharmacy-info__gallery {
  grid-column: 1 / -1;
  margin-top: 70px;
}

.pharmacy-info__gallery-title {
  position: relative;
  margin: 0 0 38px;
  padding-left: 20px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.56px;
  line-height: 33px;
}

.pharmacy-info__gallery-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 33px;
  background: var(--color-main);
}

.pharmacy-info__gallery-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pharmacy-info__gallery-item img {
  width: 100%;
  aspect-ratio: 269 / 202;
  object-fit: cover;
  border-radius: 10px;
}

.pharmacy-info__gallery-item p {
  margin: 14px 0 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 33px;
  text-align: center;
}

.pharmacy-activities {
  background: rgba(58, 182, 217, 0.08);
}

.pharmacy-activities__inner {
  padding: 88px 0 108px;
}

.pharmacy-activities__list {
  display: flex;
  flex-direction: column;
  gap: 29px;
  margin: 59px 0 0;
  padding: 0;
  list-style: none;
}

.pharmacy-activities__item {
  display: grid;
  grid-template-columns: 65px 280px minmax(0, 1fr);
  align-items: center;
  gap: 23px 40px;
  min-height: 135px;
  padding: 26px 49px 26px 31px;
  border-radius: 20px;
  background: var(--color-white);
}

.pharmacy-activities__item--tall {
  min-height: 147px;
}

.pharmacy-activities__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.44px;
  line-height: 1;
}

.pharmacy-activities__item h3 {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 33px;
}

.pharmacy-activities__item p {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  line-height: 27px;
}

.pharmacy-message {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  column-gap: 50px;
  align-items: start;
  padding: 97px 0 88px;
}

.pharmacy-message__shape {
  position: absolute;
  z-index: 0;
  left: clamp(-40px, calc((100vw - 1200px) / -2), -24px);
  top: 131px;
  width: 158px;
  height: 214px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  background: rgba(203, 246, 251, 0.6);
}

.pharmacy-message__shape-secondary {
  position: absolute;
  z-index: 0;
  top: 415px;
  right: clamp(-128px, calc((100vw - 1200px) / -2), -24px);
  width: 171px;
  height: 200px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 50px;
  background: rgba(233, 248, 252, 0.7);
}

.pharmacy-message__media {
  position: relative;
  z-index: 1;
  width: 243px;
  margin: 93px 0 0 9px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.pharmacy-message__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.pharmacy-message__body {
  margin-top: 27px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.28px;
  line-height: 29px;
}

.pharmacy-message__body p {
  margin: 0 0 18px;
}

.pharmacy-message__body p:last-child {
  margin-bottom: 0;
}

.pharmacy-message__signature {
  margin: 24px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 27px;
  text-align: right;
}

.pharmacy-recruit {
  min-height: 350px;
  background: var(--color-gray-bg);
}

.pharmacy-recruit__inner {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 63px;
  align-items: start;
  padding: 64px 0 118px;
}

.pharmacy-recruit__note {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  line-height: 23px;
}

.pharmacy-posters {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  column-gap: 153px;
  align-items: start;
  padding: 82px 0 87px;
}

.pharmacy-posters__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

.pharmacy-posters__list a {
  color: var(--color-main);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  line-height: 23px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  word-break: break-word;
}

/* =========================================================
   Greetings Page
   ========================================================= */
.greetings-page {
  overflow: clip;
}

.greetings-page__hero-media img {
  position: absolute;
  top: 0;
  left: -37.67%;
  width: 137.61%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}

.greetings-message {
  position: relative;
  display: grid;
  grid-template-columns: 412px minmax(0, 1fr);
  grid-template-areas:
    "portrait heading"
    "portrait body"
    "portrait signature";
  column-gap: 46px;
  align-items: start;
  padding: 117px 0 161px;
}

.greetings-message__shape {
  position: absolute;
  z-index: 0;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.greetings-message__shape--primary {
  left: 10px;
  top: 157px;
  width: 158px;
  height: 214px;
  background: rgba(203, 246, 251, 0.6);
}

.greetings-message__shape--secondary {
  right: clamp(-130px, calc((100vw - 1200px) / -2), -24px);
  bottom: 80px;
  width: 171px;
  height: 200px;
  border-bottom-left-radius: 50px;
  background: rgba(233, 248, 252, 0.7);
}

.greetings-message__portrait {
  grid-area: portrait;
  position: relative;
  z-index: 1;
  width: 296px;
  margin: 93px 0 0 57px;
  aspect-ratio: 296 / 310;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
}

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

.greetings-message__heading,
.greetings-message__body,
.greetings-message__signature {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(100%, 742px);
  justify-self: start;
}

.greetings-message__heading {
  grid-area: heading;
}

.greetings-message__body {
  grid-area: body;
  margin-top: 27px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.28px;
  line-height: 29px;
}

.greetings-message__body p {
  margin: 0 0 18px;
}

.greetings-message__body p:last-child {
  margin-bottom: 0;
}

.greetings-message__signature {
  grid-area: signature;
  margin: 14px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 27px;
  text-align: right;
}

@media (min-width: 1441px) {
  .subpage-hero__media {
    right: calc((100vw - 1440px) / -2);
  }
}

@media (max-width: 1366px) and (min-width: 768px) {
  .subpage-hero__copy {
    left: clamp(96px, 12vw, 158px);
  }

  .subpage-hero__label {
    font-size: clamp(16px, 1.8vw, 18px);
  }

  .subpage-hero__title {
    font-size: clamp(40px, 4.6vw, 47px);
  }

  .subpage-hero__media {
    width: min(780px, max(470px, calc(100vw - 550px)));
    min-width: 0;
  }
}

@media (max-width: 1360px) and (min-width: 901px) {
  .subpage-hero__inner {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(24px, 4vw, 56px);
    padding-left: clamp(118px, 11vw, 158px);
  }

  .subpage-hero__copy {
    position: relative;
    left: auto;
    top: auto;
    width: max-content;
    max-width: 100%;
  }

  .subpage-hero__title {
    font-size: clamp(34px, 4vw, 47px);
    line-height: 1.35;
    white-space: nowrap;
  }

  .subpage-hero__media {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    max-width: 780px;
    justify-self: end;
  }
}

@media (max-width: 1024px) and (min-width: 768px) and (orientation: portrait) {
  .subpage-hero {
    min-height: 280px;
  }

  .subpage-hero__inner {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(20px, 3vw, 36px);
    padding-left: clamp(78px, 10vw, 96px);
    min-height: 280px;
  }

  .subpage-hero__shape--primary {
    top: 28px;
    width: 106px;
    height: 138px;
  }

  .subpage-hero__shape--secondary {
    left: 34px;
    top: 104px;
    width: 118px;
    height: 132px;
    border-bottom-left-radius: 40px;
  }

  .subpage-hero__copy {
    position: relative;
    left: auto;
    top: auto;
    width: max-content;
    max-width: 100%;
  }

  .subpage-hero__label {
    font-size: 16px;
  }

  .subpage-hero__title {
    margin-top: 8px;
    font-size: clamp(34px, 4.8vw, 40px);
    line-height: 1.3;
  }

  .subpage-hero__media {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    max-width: 520px;
    justify-self: end;
    height: 280px;
    border-top-left-radius: 44px;
    border-bottom-left-radius: 44px;
  }
}

@media (max-width: 900px) and (min-width: 768px) and (orientation: portrait) {
  .subpage-hero__copy {
    left: auto;
    top: auto;
    width: auto;
  }

  .subpage-hero__title {
    font-size: clamp(24px, 3.4vw, 28px);
    line-height: 1.2;
    white-space: nowrap;
  }

  .subpage-hero__media {
    width: 100%;
    min-width: 0;
    max-width: 470px;
  }
}

@media (max-width: 1024px) {
  .subpage-anchor-nav {
    margin: 40px auto 56px;
  }

  .subpage-anchor-list {
    flex-wrap: wrap;
    gap: 16px;
  }

  .pharmacy-info__layout,
  .pharmacy-recruit__inner,
  .pharmacy-posters {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .pharmacy-info__row {
    grid-template-columns: 132px minmax(0, 1fr);
  }

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

  .pharmacy-info__gallery {
    margin-top: 0;
  }

  .pharmacy-activities__inner {
    padding: 72px 0 88px;
  }

  .pharmacy-activities__item {
    grid-template-columns: 65px minmax(0, 1fr);
    padding: 28px 28px 28px 24px;
  }

  .pharmacy-activities__item h3 {
    grid-column: 2;
  }

  .pharmacy-activities__item p {
    grid-column: 1 / -1;
    padding-left: 105px;
  }

  .pharmacy-message {
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 36px;
    padding: 80px 0 72px;
  }

  .pharmacy-message__shape {
    left: -10px;
    top: 110px;
    width: 130px;
    height: 176px;
  }

  .pharmacy-message__shape-secondary {
    display: none;
  }

  .pharmacy-message__media {
    width: 220px;
    margin-left: 0;
  }

  .greetings-message {
    grid-template-columns: 244px minmax(0, 1fr);
    grid-template-areas:
      "portrait heading"
      "portrait body"
      "portrait signature";
    column-gap: 40px;
    padding: 88px 0 120px;
  }

  .greetings-message__shape--primary {
    left: -8px;
    top: 119px;
    width: 130px;
    height: 176px;
  }

  .greetings-message__shape--secondary {
    right: -24px;
    bottom: 48px;
    width: 130px;
    height: 160px;
  }

  .greetings-message__portrait {
    width: 220px;
    margin: 84px 0 0 18px;
  }

  .greetings-page__hero-media img {
    left: 0;
    width: 100%;
    max-width: none;
    object-fit: cover;
  }

  .pharmacy-recruit__note,
  .pharmacy-posters__list {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .subpage-template .section-container {
    width: calc(100% - 40px);
  }

  .subpage-template .contact-join {
    --contact-join-grid-width: min(1202px, calc(100% - 40px));
  }

  .subpage-template .contact-join__grid,
  .subpage-template .site-footer__content {
    width: calc(100% - 40px);
  }

  .subpage-hero {
    min-height: 0;
    padding-top: 24px;
  }

  .subpage-hero__inner {
    min-height: 0;
    padding: 0 20px 24px;
    display: grid;
    gap: 32px;
  }

  .subpage-hero__shape--primary {
    top: 34px;
    width: clamp(72px, 20vw, 96px);
    height: clamp(96px, 27vw, 128px);
  }

  .subpage-hero__shape--secondary {
    left: clamp(14px, 4.5vw, 26px);
    top: clamp(82px, 16vw, 96px);
    width: clamp(82px, 24vw, 110px);
    height: clamp(92px, 27vw, 124px);
  }

  .subpage-hero__copy {
    position: relative;
    left: auto;
    top: auto;
    padding: clamp(54px, 14vw, 68px) 0 0 clamp(48px, 12vw, 58px);
  }

  .subpage-hero__label {
    font-size: 16px;
  }

  .subpage-hero__title {
    font-size: 40px;
  }

  .subpage-hero__media {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 780px);
    min-width: 0;
    height: auto;
    aspect-ratio: 780 / 322;
    margin-left: auto;
    display: none;
  }

  .subpage-anchor-link {
    width: 100%;
    white-space: normal;
    line-height: 1.5;
  }

  .pharmacy-info {
    padding-bottom: 56px;
  }

  .pharmacy-info__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 2px;
  }

  .pharmacy-info__address-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .pharmacy-info__map-link {
    margin-top: 0;
  }

  .pharmacy-info__gallery-list {
    gap: 24px;
  }

  .pharmacy-activities__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pharmacy-activities__inner {
    padding: 72px 0 80px;
  }

  .pharmacy-activities__number {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .pharmacy-activities__item h3,
  .pharmacy-activities__item p {
    grid-column: auto;
  }

  .pharmacy-activities__item p {
    padding-left: 0;
  }

  .pharmacy-message {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .pharmacy-message__shape {
    left: 0;
    top: 138px;
    width: 110px;
    height: 148px;
  }

  .pharmacy-message__shape-secondary {
    display: none;
  }

  .pharmacy-message__media {
    width: min(220px, 56vw);
    margin: 84px 0 0 24px;
  }

  .pharmacy-message__signature {
    text-align: left;
  }

  .greetings-message {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "body"
      "signature"
      "portrait";
    row-gap: 24px;
    padding: 72px 0 88px;
  }

  .greetings-message__shape--primary {
    display: none;
  }

  .greetings-message__shape--secondary {
    display: none;
  }

  .greetings-message__portrait {
    width: min(220px, 56vw);
    margin: 0;
    justify-self: center;
  }

  .greetings-message__heading,
  .greetings-message__body,
  .greetings-message__signature {
    width: 100%;
  }

  .greetings-message__body {
    margin-top: 0;
  }

  .greetings-message__signature {
    margin-top: 0;
    text-align: left;
  }

  .pharmacy-recruit {
    min-height: 0;
  }

  .pharmacy-recruit__inner {
    padding: 64px 0 72px;
    row-gap: 24px;
  }

  .pharmacy-posters {
    padding: 72px 0 72px;
    row-gap: 24px;
  }
}

@media (min-width: 560px) and (max-width: 767px) {
  .subpage-hero {
    min-height: 0;
    padding-top: 20px;
  }

  .subpage-hero__inner {
    min-height: 0;
    padding: 0 20px 24px;
    display: grid;
    gap: 18px;
  }

  .subpage-hero__shape--primary {
    top: 22px;
    width: 74px;
    height: 98px;
  }

  .subpage-hero__shape--secondary {
    left: 18px;
    top: 72px;
    width: 82px;
    height: 92px;
  }

  .subpage-hero__copy {
    position: relative;
    left: auto;
    top: auto;
    padding: 46px 0 0 44px;
  }

  .subpage-hero__label {
    font-size: 15px;
  }

  .subpage-hero__title {
    margin-top: 8px;
    font-size: 34px;
    line-height: 1.35;
  }

  .subpage-hero__media {
    display: none;
  }
}

@media (max-width: 480px) {
  .subpage-hero {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .subpage-hero__inner {
    padding: 0 20px 24px;
    gap: 14px;
  }

  .subpage-hero__shape--primary {
    top: 13px;
    width: 39px;
    height: 46px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .subpage-hero__shape--secondary {
    left: 9px;
    top: 36px;
    width: 46px;
    height: 46px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .subpage-hero__copy {
    padding: 28px 0 0 28px;
  }

  .subpage-hero__label {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .subpage-hero__title {
    margin-top: 2px;
    font-size: 26px;
  }

  .subpage-hero__media {
    display: none;
  }

  .subpage-anchor-nav {
    margin: 14px auto 40px;
  }

  .subpage-anchor-list {
    gap: 10px;
  }

  .subpage-anchor-link {
    font-size: 13px;
  }

  .pharmacy-page__heading {
    padding-left: 16px;
  }

  .pharmacy-page__heading::before {
    left: 2px;
  }

  .pharmacy-page__heading-label {
    font-size: 14px;
  }

  .pharmacy-page__heading-title {
    margin-top: 5px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    margin-left: -16px;
  }

  .pharmacy-info__row dt,
  .pharmacy-info__row dd {
    font-size: 16px;
    line-height: 24px;
  }

  .pharmacy-info__gallery-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pharmacy-activities__inner {
    padding: 64px 0 72px;
  }

  .pharmacy-activities__list {
    margin-top: 40px;
    gap: 18px;
  }

  .pharmacy-activities__item {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .pharmacy-activities__item h3 {
    font-size: 18px;
    line-height: 1.6;
  }

  .pharmacy-activities__item p,
  .pharmacy-message__body,
  .pharmacy-posters__list a {
    font-size: 15px;
    line-height: 1.8;
  }

  .pharmacy-message {
    padding: 56px 0;
  }

  .pharmacy-message__shape {
    top: 126px;
    width: 84px;
    height: 112px;
  }

  .pharmacy-message__shape-secondary {
    display: none;
  }

  .pharmacy-message__media {
    width: 180px;
    margin: 72px 0 0 14px;
  }

  .pharmacy-message__signature {
    font-size: 15px;
  }

  .greetings-page__hero-media img {
    left: 0;
    width: 100%;
    object-fit: cover;
  }

  .greetings-message {
    padding: 0 0 72px;
    row-gap: 24px;
  }

  .greetings-message__shape--primary {
    top: 88px;
    width: 84px;
    height: 112px;
  }

  .greetings-message__portrait {
    width: 180px;
    margin: 60px 0 0 14px;
  }

  .greetings-message__body,
  .greetings-message__signature {
    font-size: 15px;
    line-height: 1.8;
  }

  .pharmacy-recruit__inner {
    padding: 64px 0 64px;
    row-gap: 24px;
  }

  .pharmacy-recruit__note {
    font-size: 15px;
  }

  .pharmacy-posters {
    padding: 64px 0 64px;
    row-gap: 24px;
  }
}

/* =========================================================
   Activity Page
   ========================================================= */
.subpage-template {
  background: var(--color-white);
}

.activity-page {
  overflow: clip;
}

.activity-section {
  padding: 0 0 75px;
}

.activity-section--secondary {
  padding: 88px 0 111px;
  background: var(--color-gray-bg);
}

.activity-section__heading {
  position: relative;
  margin-bottom: 41px;
  padding-left: 20px;
}

.activity-section__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.activity-section__heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.56px;
  line-height: 33px;
}

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

.activity-list__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  padding: 18px 0 19px;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.activity-list__item:last-child {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.activity-list__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.08px;
  line-height: 1;
}

.activity-list__body h3 {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 33px;
}

.activity-list__body p {
  margin: 8px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  line-height: 27px;
}

.activity-list__link,
.activity-list__link:visited {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--color-main-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.activity-list__link::after {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(0);
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .activity-list__link:hover {
    color: var(--color-main);
  }

  .activity-list__link:hover::after {
    transform: translateX(4px);
  }
}

@media (max-width: 1024px) {
  .activity-section__heading h2 {
    font-size: 24px;
    line-height: 1.45;
  }
}

@media (max-width: 767px) {
  .activity-section {
    padding-bottom: 56px;
  }

  .activity-section--secondary {
    padding: 64px 0 72px;
  }

  .activity-section__heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .activity-section__heading::before {
    height: 28px;
  }

  .activity-section__heading h2 {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .activity-list__item {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 16px 0 18px;
  }

  .activity-list__body h3 {
    font-size: 18px;
    line-height: 1.6;
  }

  .activity-list__body p {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .activity-list__link,
  .activity-list__link:visited {
    margin-top: 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .activity__layout {
    row-gap: 16px;
  }
  
  .activity-section__heading h2 {
    font-size: 20px;
  }

  .activity-list__number {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .activity-list__body h3 {
    font-size: 17px;
  }

  .activity-list__body p {
    font-size: 14px;
  }
}

/* =========================================================
   Aseptic Page
   ========================================================= */
.aseptic-page {
  overflow: clip;
}

.aseptic-page .subpage-hero__media img {
  object-position: center 6%;
}

.aseptic-page__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.aseptic-page__intro {
  padding-top: 88px;
  padding-bottom: 82px;
}

.aseptic-page__intro-text {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 32px;
}

.aseptic-page__section-heading {
  position: relative;
  margin-bottom: 39px;
  padding-left: 20px;
}

.aseptic-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.aseptic-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.56px;
  line-height: 33px;
}

.aseptic-gallery {
  padding-bottom: 93px;
}

.aseptic-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 269px);
  gap: 36px;
  justify-content: start;
}

.aseptic-gallery__item {
  margin: 0;
  width: 269px;
}

.aseptic-gallery__item img {
  display: block;
  width: 269px;
  height: 202px;
  object-fit: cover;
  border-radius: 10px;
}

.aseptic-gallery__item figcaption {
  margin-top: 14px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 33px;
  text-align: center;
}

.aseptic-documents {
  padding: 91px 0 108px;
  background: var(--color-gray-bg);
}

.aseptic-documents__heading {
  margin-bottom: 54px;
}

.aseptic-documents__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.aseptic-documents__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
}

.aseptic-documents__eyebrow-text {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.96px;
  line-height: 1;
}

.aseptic-documents__heading h2 {
  margin: 11px 0 0;
  color: var(--color-text);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.45;
}

.aseptic-documents__lead {
  max-width: 1140px;
  margin: 0 0 44px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
  line-height: 36px;
}

.aseptic-documents__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.aseptic-documents__list li + li {
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.aseptic-documents__link,
.aseptic-documents__link:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  padding: 20px 28px;
  color: var(--color-text);
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.aseptic-documents__link-label {
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.aseptic-documents__meta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-main-dark);
  color: #fff;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.aseptic-documents__meta--internal::after {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media (hover: hover) and (pointer: fine) {
  .aseptic-documents__link:hover {
    background: rgba(99, 206, 217, 0.06);
    color: var(--color-main-dark);
  }

  .aseptic-documents__link:hover .aseptic-documents__meta {
    background: var(--color-main);
    transform: translateX(4px);
  }
}

@media (max-width: 1024px) {
  .aseptic-page__intro {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .aseptic-gallery {
    padding-bottom: 80px;
  }

  .aseptic-gallery__grid {
    gap: 28px;
  }

  .aseptic-documents {
    padding: 80px 0 92px;
  }

  .aseptic-documents__heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .aseptic-page__intro {
    padding-top: 0;
    padding-bottom: 56px;
  }

  .aseptic-page__intro-text,
  .aseptic-documents__lead {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .aseptic-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .aseptic-page__section-heading::before {
    height: 28px;
  }

  .aseptic-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .aseptic-gallery {
    padding-bottom: 64px;
  }

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

  .aseptic-gallery__item,
  .aseptic-gallery__item img {
    width: 100%;
  }

  .aseptic-gallery__item img {
    height: auto;
    aspect-ratio: 269 / 202;
  }

  .aseptic-gallery__item figcaption {
    margin-top: 10px;
    line-height: 1.8;
  }

  .aseptic-documents {
    padding: 64px 0 72px;
  }

  .aseptic-documents__heading {
    margin-bottom: 32px;
  }

  .aseptic-documents__heading h2 {
    font-size: 28px;
    letter-spacing: 0.08em;
  }

  .aseptic-documents__lead {
    margin-bottom: 28px;
  }

  .aseptic-documents__list {
    border-radius: 24px;
  }

  .aseptic-documents__link,
  .aseptic-documents__link:visited {
    align-items: flex-start;
    min-height: 0;
    padding: 18px 20px;
  }

  .aseptic-documents__link-label {
    font-size: 15px;
    line-height: 1.9;
  }

  .aseptic-documents__meta {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .aseptic-page__intro {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .aseptic-page__section-heading h2 {
    font-size: 20px;
  }

  .aseptic-documents__heading h2 {
    font-size: 24px;
  }

  .aseptic-documents__eyebrow-text {
    font-size: 15px;
  }

  .aseptic-page__intro-text,
  .aseptic-documents__lead,
  .aseptic-documents__link-label {
    font-size: 14px;
  }
}

/* =========================================================
   Join Page
   ========================================================= */
.join-page {
  overflow: clip;
}

.join-page__hero-media img {
  object-position: center 58%;
}

.join-page__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.join-page__intro {
  padding-top: 88px;
  padding-bottom: 38px;
}

.join-page__intro-text {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.join-page__section {
  padding-bottom: 92px;
}

.join-page__section--muted {
  padding-top: 88px;
  padding-bottom: 96px;
  background: var(--color-gray-bg);
}

.join-page__section--stacked {
  padding-top: 88px;
}

.join-page__section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.join-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.join-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
}

.join-page__lead {
  margin: 0 0 34px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.95;
}

.join-page__section-body {
  margin-top: 40px;
}

.join-types,
.join-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-types {
  display: grid;
  gap: 18px;
}

.join-types__item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 28px;
  border: 1px solid rgba(53, 67, 69, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.join-types__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.join-types__body h3 {
  margin: 0;
  color: #000;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.join-types__body p {
  margin: 10px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.join-benefits {
  display: grid;
}

.join-benefits__item {
  position: relative;
  min-height: 2em;
  padding: 0 0 0 2.8em;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.join-benefits__item::before {
  content: "";
  position: absolute;
  left: 0.45em;
  top: 0.8em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
}

.join-benefits__item + .join-benefits__item {
  margin-top: 0.75em;
}

.join-benefits__note {
  display: block;
  margin-top: 8px;
  color: var(--color-sub-text);
  font-size: 14px;
  line-height: 1.8;
}

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

.join-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.join-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.join-card__eyebrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
}

.join-card__title {
  margin: 14px 0 0;
  color: #000;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.join-card__note {
  margin: 16px 0 0;
  color: var(--color-sub-text);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.join-fee-table {
  margin-top: 24px;
}

.join-fee-unit__caption {
  margin: 12px 0 0 15px;
  color: var(--color-sub-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.join-fee-breakdown {
  padding-left: 16px;
}

.join-fee-table__row > .join-fee-unit__caption,
.join-fee-table__row > .join-fee-breakdown {
  grid-column: 1 / -1;
}

.join-fee-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.join-fee-table__row:last-child {
  border-bottom: none;
}

.join-fee-table__label,
.join-fee-table__value {
  color: #000;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.join-fee-table__label {
  font-weight: 500;
}

.join-fee-table__value {
  font-weight: 700;
  text-align: right;
}

.join-fee-breakdown .join-fee-table__row:first-child {
  border-top: 0;
}

.join-fee-breakdown .join-fee-table__label {
  font-weight: 400;
}

.join-fee-breakdown .join-fee-table__value {
  font-weight: 500;
}

.join-card__links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.join-card__link,
.join-card__link:visited {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 12px 48px 12px 20px;
  border: 1px solid #d3ebf0;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.join-card__link::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .join-card__link:hover {
    border-color: #9fdfe8;
    background: #eefbfd;
    color: var(--color-main-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }
}

.join-contact__card {
  max-width: 820px;
}

.join-contact__lead {
  margin: 18px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.join-contact__list {
  margin: 24px 0 0;
  padding: 0;
}

.join-contact__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.join-contact__row:last-child {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.join-contact__row dt,
.join-contact__row dd {
  margin: 0;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.join-contact__row dt {
  font-weight: 700;
}

.join-contact__row dd {
  font-weight: 400;
}

.join-contact__row dd a,
.join-contact__row dd a:visited {
  color: var(--color-main-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
  word-break: break-word;
}

@media (hover: hover) and (pointer: fine) {
  .join-contact__row dd a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 1024px) {
  .join-page__intro {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .join-page__section {
    padding-bottom: 80px;
  }

  .join-page__section--muted,
  .join-page__section--stacked {
    padding-top: 80px;
  }

  .join-page__section--muted {
    padding-bottom: 84px;
  }

  .join-page__section-body {
    margin-top: 32px;
  }

  .join-fees {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .join-page__intro {
    padding-top: 0;
    padding-bottom: 28px;
  }

  .join-page__intro-text,
  .join-page__lead,
  .join-types__body p,
  .join-benefits__item,
  .join-contact__lead,
  .join-contact__row dt,
  .join-contact__row dd,
  .join-fee-table__label,
  .join-fee-table__value {
    font-size: 15px;
    line-height: 1.9;
  }

  .join-page__section {
    padding-bottom: 64px;
  }

  .join-page__section--muted,
  .join-page__section--stacked {
    padding-top: 64px;
  }

  .join-page__section--muted {
    padding-bottom: 72px;
  }

  .join-page__section-body {
    margin-top: 24px;
  }

  .join-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .join-page__section-heading::before {
    height: 28px;
  }

  .join-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .join-types__item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .join-types__number {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .join-types__body h3 {
    font-size: 20px;
    line-height: 1.6;
  }

  .join-benefits__item {
    min-height: 1.9em;
    padding-left: 2.5em;
  }

  .join-benefits__item::before {
    left: 0.35em;
    top: 0.8em;
    width: 8px;
    height: 8px;
  }

  .join-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .join-card__title {
    font-size: 24px;
    line-height: 1.5;
  }

  .join-fee-table__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .join-fee-table__value {
    text-align: left;
  }

  .join-contact__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

.join-card__link,
.join-card__link:visited {
  min-height: 50px;
  padding: 12px 42px 12px 18px;
  font-size: 14px;
}
}

.aoi-page {
  overflow: clip;
}

.aoi-page__hero-media img {
  object-position: center 52%;
}

.aoi-page__intro {
  padding-top: 88px;
  padding-bottom: 32px;
}

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

.aoi-page__intro-text {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.aoi-page__section {
  padding-bottom: 92px;
}

.aoi-page__section--muted {
  padding-top: 88px;
  padding-bottom: 96px;
  background: var(--color-gray-bg);
}

.aoi-page__section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.aoi-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.aoi-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
}

.aoi-documents {
  max-width: 980px;
}

.aoi-documents__body {
  display: grid;
  gap: 8px;
}

.aoi-documents__link,
.aoi-documents__link:visited {
  align-items: flex-start;
  min-height: 0;
}

.aoi-documents__title {
  color: inherit;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.55;
}

.aoi-documents__description {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.aoi-office {
  max-width: 820px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.aoi-office__lead {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.aoi-office__list {
  margin: 24px 0 0;
  padding: 0;
}

.aoi-office__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.aoi-office__row:last-child {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.aoi-office__row dt,
.aoi-office__row dd {
  margin: 0;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.aoi-office__row dt {
  font-weight: 700;
}

.aoi-office__row dd {
  font-weight: 400;
}

.aoi-office__row dd a,
.aoi-office__row dd a:visited {
  color: var(--color-main-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
  word-break: break-word;
}

@media (hover: hover) and (pointer: fine) {
  .aoi-office__row dd a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 1024px) {
  .aoi-page__intro {
    padding-top: 72px;
    padding-bottom: 28px;
  }

  .aoi-page__section {
    padding-bottom: 80px;
  }

  .aoi-page__section--muted {
    padding-top: 80px;
    padding-bottom: 84px;
  }

}

@media (max-width: 767px) {
  .aoi-page__intro {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .aoi-page__intro-text,
  .aoi-documents__description,
  .aoi-office__lead,
  .aoi-office__row dt,
  .aoi-office__row dd {
    font-size: 15px;
    line-height: 1.9;
  }

  .aoi-page__section {
    padding-bottom: 64px;
  }

  .aoi-page__section--muted {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .aoi-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .aoi-page__section-heading::before {
    height: 28px;
  }

  .aoi-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .aoi-office {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .aoi-documents__title {
    font-size: 20px;
    line-height: 1.5;
  }

  .aoi-documents__link,
  .aoi-documents__link:visited {
    padding: 18px 20px;
  }

.aoi-office__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.sponsored-page,
.links-page {
  overflow: clip;
}

.sponsored-page__hero-media img,
.links-page__hero-media img {
  object-position: center 52%;
}

.sponsored-page__sr-only,
.links-page__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.sponsored-page__intro,
.links-page__intro {
  padding-top: 88px;
  padding-bottom: 32px;
}

.sponsored-page__intro-text,
.links-page__intro-text {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.links-page__section {
  padding-bottom: 92px;
}

.links-page__section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.links-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.links-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
}

.sponsored-page__directory {
  max-width: 820px;
  margin-top: 28px;
}

.links-directory {
  max-width: 980px;
}

.links-directory__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.links-directory__item + .links-directory__item {
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.links-directory__link,
.links-directory__link:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  padding: 20px 28px;
  color: var(--color-text);
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.links-directory__name {
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.links-directory__meta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-main-dark);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.links-directory__meta img {
  display: block;
  width: 23px;
  height: 22px;
}

.links-directory__meta--internal {
  color: #fff;
}

.links-directory__meta--internal::after {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media (hover: hover) and (pointer: fine) {
  .links-directory__link:hover {
    background: rgba(99, 206, 217, 0.06);
    color: var(--color-main-dark);
  }

  .links-directory__link:hover .links-directory__meta {
    background: var(--color-main);
    transform: translateX(4px);
  }
}

@media (max-width: 1024px) {
  .sponsored-page__intro,
  .links-page__intro {
    padding-top: 72px;
    padding-bottom: 28px;
  }

  .links-page__section {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .sponsored-page__intro,
  .links-page__intro {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .sponsored-page__intro-text,
  .links-page__intro-text,
  .links-directory__name {
    font-size: 15px;
    line-height: 1.9;
  }

  .links-page__section {
    padding-bottom: 64px;
  }

  .links-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .links-page__section-heading::before {
    height: 28px;
  }

  .links-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .sponsored-page__directory {
    margin-top: 24px;
  }

  .links-directory__list {
    border-radius: 24px;
  }

  .links-directory__link,
  .links-directory__link:visited {
    align-items: flex-start;
    min-height: 0;
    padding: 18px 20px;
  }

.links-directory__meta {
    width: 40px;
    height: 40px;
  }
}

.contact-page {
  overflow: clip;
}

.contact-page__hero-media img {
  object-position: center 52%;
}

.contact-page__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.contact-page__intro {
  padding-top: 88px;
  padding-bottom: 32px;
}

.contact-page__intro-text {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.contact-page__section {
  padding-bottom: 92px;
}

.contact-page__section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.contact-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.contact-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
}

.contact-page__section-body {
  margin-top: 40px;
}

.contact-page__card {
  max-width: 820px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-page__list {
  margin: 24px 0 0;
  padding: 0;
}

.contact-page__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.contact-page__row:last-child {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.contact-page__row dt,
.contact-page__row dd {
  margin: 0;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.contact-page__row dt {
  font-weight: 700;
}

.contact-page__row dd {
  font-weight: 400;
}

.contact-page__row dd a,
.contact-page__row dd a:visited {
  color: var(--color-main-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
  word-break: break-word;
}

@media (hover: hover) and (pointer: fine) {
  .contact-page__row dd a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 1024px) {
  .contact-page__intro {
    padding-top: 72px;
    padding-bottom: 28px;
  }

  .contact-page__section {
    padding-bottom: 80px;
  }

  .contact-page__section-body {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .contact-page__intro {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .contact-page__intro-text,
  .contact-page__row dt,
  .contact-page__row dd {
    font-size: 15px;
    line-height: 1.9;
  }

  .contact-page__section {
    padding-bottom: 64px;
  }

  .contact-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .contact-page__section-heading::before {
    height: 28px;
  }

  .contact-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .contact-page__section-body {
    margin-top: 24px;
  }

  .contact-page__card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .contact-page__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.anshin-card-page {
  overflow: clip;
}

.anshin-card-page__hero-media img {
  object-position: center 52%;
}

.anshin-card-page__intro {
  padding-top: 88px;
  padding-bottom: 44px;
}

.anshin-card-page__intro-title {
  margin: 0;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.anshin-card-page__intro-text {
  margin: 20px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.anshin-card-page__section {
  padding-bottom: 92px;
}

.anshin-card-page__section--stacked {
  padding-top: 88px;
}

.anshin-card-page__section--muted {
  padding-top: 88px;
  padding-bottom: 96px;
  background: var(--color-gray-bg);
}

.anshin-card-page__section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.anshin-card-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.anshin-card-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
}

.anshin-card-page__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.anshin-card-page__point-card,
.anshin-card-page__info-card,
.anshin-card-page__resource-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.anshin-card-page__resource-card {
  padding: 0;
  overflow: hidden;
}

.anshin-card-page__point-card h3,
.anshin-card-page__info-card h3 {
  margin: 0;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.anshin-card-page__point-card h3 {
  line-height: 1.55;
}

.anshin-card-page__point-card h3 span {
  display: inline;
  padding: 0 0.18em 0.08em;
  background-image: linear-gradient(transparent 66%, rgba(99, 206, 217, 0.38) 66%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-wrap: balance;
}

.anshin-card-page__point-card p,
.anshin-card-page__info-card p {
  margin: 14px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.95;
}

.anshin-card-page__info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

p.anshin-card-page__eyebrow,
.return-support-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.anshin-card-page__eyebrow::before,
.return-support-page__eyebrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
}

.anshin-card-page__contact-list {
  margin: 20px 0 0;
  padding: 0;
}

.anshin-card-page__contact-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.anshin-card-page__contact-row:last-child {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.anshin-card-page__contact-row dt,
.anshin-card-page__contact-row dd {
  margin: 0;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.anshin-card-page__contact-row dt {
  font-weight: 700;
}

.anshin-card-page__contact-row dd {
  font-weight: 400;
}

.anshin-card-page__contact-row dd a,
.anshin-card-page__contact-row dd a:visited {
  color: var(--color-main-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .anshin-card-page__contact-row dd a:hover {
    color: var(--color-main);
  }
}

.anshin-card-page__resource-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.anshin-card-page__resource-item + .anshin-card-page__resource-item {
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.anshin-card-page__resource-link,
.anshin-card-page__resource-link:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  padding: 20px 28px;
  color: var(--color-text);
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.anshin-card-page__resource-title {
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.anshin-card-page__resource-meta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-main-dark);
  color: #fff;
  line-height: 1;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.anshin-card-page__resource-meta--internal::after {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.anshin-card-page__resource-meta--external img {
  display: block;
  width: 23px;
  height: 22px;
}

@media (hover: hover) and (pointer: fine) {
  .anshin-card-page__resource-link:hover {
    background: rgba(99, 206, 217, 0.06);
    color: var(--color-main-dark);
  }

  .anshin-card-page__resource-link:hover .anshin-card-page__resource-meta {
    background: var(--color-main);
    transform: translateX(4px);
  }
}

@media (max-width: 1024px) {
  .anshin-card-page__intro {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .anshin-card-page__section {
    padding-bottom: 80px;
  }

  .anshin-card-page__section--stacked {
    padding-top: 80px;
  }

  .anshin-card-page__section--muted {
    padding-top: 80px;
    padding-bottom: 84px;
  }

  .anshin-card-page__points,
  .anshin-card-page__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .anshin-card-page__intro {
    padding-top: 0;
    padding-bottom: 28px;
  }

  .anshin-card-page__intro-title {
    font-size: 24px;
    line-height: 1.55;
  }

  .anshin-card-page__intro-text,
  .anshin-card-page__point-card p,
  .anshin-card-page__info-card p,
  .anshin-card-page__contact-row dt,
  .anshin-card-page__contact-row dd,
  .anshin-card-page__resource-title {
    font-size: 15px;
    line-height: 1.9;
  }

  .anshin-card-page__section {
    padding-bottom: 64px;
  }

  .anshin-card-page__section--stacked {
    padding-top: 64px;
  }

  .anshin-card-page__section--muted {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .anshin-card-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .anshin-card-page__section-heading::before {
    height: 28px;
  }

  .anshin-card-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .anshin-card-page__point-card,
  .anshin-card-page__info-card,
  .anshin-card-page__resource-card {
    border-radius: 24px;
  }

  .anshin-card-page__point-card,
  .anshin-card-page__info-card {
    padding: 22px 20px;
  }

  .anshin-card-page__point-card h3,
  .anshin-card-page__info-card h3 {
    font-size: 20px;
  }

  .anshin-card-page__contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .anshin-card-page__resource-link,
  .anshin-card-page__resource-link:visited {
    align-items: flex-start;
    min-height: 0;
    padding: 18px 20px;
  }

  .anshin-card-page__resource-meta {
    width: 40px;
    height: 40px;
  }
}

.all-shops-page {
  overflow: clip;
}

.all-shops-page__hero-media img {
  object-position: center 52%;
}

.all-shops-page__intro {
  padding-top: 88px;
  padding-bottom: 28px;
}

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

.all-shops-page__intro-text {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.all-shops-page__section {
  padding-bottom: 96px;
}

.all-shops-page__section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.all-shops-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.all-shops-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
}

.all-shops-page__guide {
  margin-bottom: 28px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(222, 241, 243, 0.62);
}

.all-shops-page__guide-title {
  margin: 0;
  color: var(--color-main-dark);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.all-shops-page__guide-body {
  margin-top: 14px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.all-shops-page__guide-body p {
  margin: 0;
}

.all-shops-page__guide-body p + p {
  margin-top: 8px;
}

.all-shops-page__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 24px;
  align-items: end;
  margin-bottom: 20px;
}

.all-shops-page__search {
  min-width: 0;
}

.all-shops-page__search-label {
  display: block;
  margin-bottom: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.all-shops-page__search-field {
  display: flex;
  gap: 12px;
  align-items: center;
}

.all-shops-page__search-input {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid rgba(53, 67, 69, 0.14);
  border-radius: 18px;
  background: #fff;
  color: #000;
  font: inherit;
  letter-spacing: 0.04em;
}

.all-shops-page__search-input::placeholder {
  color: var(--color-sub-text);
}

.all-shops-page__search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--color-main);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.all-shops-page__sort-group {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(222, 241, 243, 0.72);
}

.all-shops-page__sort-option,
.all-shops-page__sort-option:visited {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.all-shops-page__sort-option.is-active {
  background: #fff;
  color: var(--color-main-dark);
  box-shadow: 0 4px 12px rgba(53, 67, 69, 0.08);
}

.all-shops-page__reset,
.all-shops-page__reset:visited {
  justify-self: start;
  color: var(--color-main-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.all-shops-page__status {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.all-shops-page__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 67, 69, 0.06);
  color: #000;
}

.all-shops-page__status-label {
  color: var(--color-sub-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.all-shops-page__status-value {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.all-shops-page__panel {
  padding: 0;
}

.all-shops-page__table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(53, 67, 69, 0.12);
  border-radius: 24px;
  background: #fff;
}

.all-shops-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.all-shops-table thead th {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(53, 67, 69, 0.14);
  background: rgba(222, 241, 243, 0.66);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: left;
  white-space: nowrap;
}

.all-shops-table tbody th,
.all-shops-table tbody td {
  padding: 18px;
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
  color: #000;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}

.all-shops-table tbody th {
  width: 31%;
  font-weight: 500;
}

.all-shops-table tbody td:nth-child(2) {
  width: 53%;
}

.all-shops-table__link-cell {
  width: 16%;
  text-align: center;
  white-space: nowrap;
}

.all-shops-table__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(53, 67, 69, 0.08);
  color: var(--color-sub-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}

.all-shops-table__badge--inactive {
  background: rgba(53, 67, 69, 0.12);
  color: #354345;
}

.all-shops-table__badge--muted {
  background: rgba(53, 67, 69, 0.06);
  color: var(--color-sub-text);
}

.all-shops-table__detail,
.all-shops-table__detail:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(99, 206, 217, 0.14);
  color: var(--color-main-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.all-shops-cards {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.all-shops-card + .all-shops-card {
  margin-top: 16px;
}

.all-shops-card {
  padding: 20px;
  border: 1px solid rgba(53, 67, 69, 0.12);
  border-radius: 24px;
}

.all-shops-card__title {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.all-shops-card__meta {
  margin: 16px 0 0;
  padding: 0;
}

.all-shops-card__row dt,
.all-shops-card__row dd {
  margin: 0;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.all-shops-card__row dt {
  margin-bottom: 4px;
  color: var(--color-sub-text);
  font-weight: 500;
}

.all-shops-card__action {
  margin-top: 14px;
}

.all-shops-card__detail,
.all-shops-card__detail:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(99, 206, 217, 0.14);
  color: var(--color-main-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.all-shops-page__empty {
  padding: 36px 32px;
  border: 1px solid rgba(53, 67, 69, 0.12);
  border-radius: 24px;
  background: #fff;
}

.all-shops-page__empty-title {
  margin: 0;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.all-shops-page__empty-text {
  margin: 10px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

@media (hover: hover) and (pointer: fine) {
  .all-shops-page__search-button:hover {
    background: var(--color-main-strong);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }

  .all-shops-page__sort-option:hover {
    color: var(--color-main-dark);
    transform: translateY(-2px);
  }

  .all-shops-table__detail:hover {
    background: var(--color-main);
    color: #fff;
  }

  .all-shops-card__detail:hover {
    background: var(--color-main);
    color: #fff;
  }

  .all-shops-page__reset:hover {
    color: var(--color-main);
  }
}

@media (max-width: 1024px) {
  .all-shops-page__intro {
    padding-top: 72px;
    padding-bottom: 24px;
  }

  .all-shops-page__section {
    padding-bottom: 84px;
  }

  .all-shops-page__controls {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .all-shops-page__sort-group {
    justify-content: start;
  }

  .all-shops-page__panel {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .all-shops-page__intro {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .all-shops-page__empty {
    padding: 28px 24px;
  }

  .all-shops-page__intro-text,
  .all-shops-page__guide-body,
  .all-shops-table tbody th,
  .all-shops-table tbody td,
  .all-shops-card__row dt,
  .all-shops-card__row dd,
  .all-shops-page__empty-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .all-shops-page__section {
    padding-bottom: 72px;
  }

  .all-shops-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .all-shops-page__section-heading::before {
    height: 28px;
  }

  .all-shops-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .all-shops-page__guide {
    padding: 18px 16px;
  }

  .all-shops-page__search-field {
    flex-direction: column;
    align-items: stretch;
  }

  .all-shops-page__search-button {
    width: 100%;
    min-width: 0;
  }

  .all-shops-page__sort-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column;
    width: 100%;
    border-radius: 24px;
  }

  .all-shops-page__sort-option {
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .all-shops-page__table-wrap {
    display: none;
  }

  .all-shops-cards {
    display: block;
  }

  .all-shops-table thead th,
  .all-shops-table tbody th,
  .all-shops-table tbody td {
    padding: 14px 12px;
  }

  .all-shops-table__detail,
  .all-shops-table__detail:visited,
  .all-shops-card__detail,
  .all-shops-card__detail:visited {
    min-height: 34px;
    padding: 6px 14px;
    font-size: 13px;
  }
}

.member-login-page,
.member-page {
  overflow: clip;
}

.member-login-page__hero-media img,
.member-page__hero-media img {
  object-position: center 58%;
}

.member-login-page__sr-only,
.member-page__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.member-login-page__intro,
.member-page__intro {
  padding-top: 88px;
  padding-bottom: 24px;
}

.member-login-page__intro-text,
.member-page__intro-text {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.member-login-page__section,
.member-page__section {
  padding-bottom: 96px;
}

.member-login-page__panel,
.member-page__panel {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(53, 67, 69, 0.12);
  border-radius: 32px;
  background: #fff;
}

.member-page__panel {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.member-login-page__section-heading {
  position: relative;
  padding-left: 22px;
}

.member-login-page__section-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-main);
  transform: translateY(-50%);
}

.member-login-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.member-login-page__error {
  margin: 24px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(193, 76, 76, 0.2);
  border-radius: 18px;
  background: rgba(193, 76, 76, 0.08);
  color: #8b3030;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.member-login-form {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.member-login-form__row {
  display: grid;
  gap: 8px;
}

.member-login-form__label {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.member-login-form__input {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid rgba(53, 67, 69, 0.14);
  border-radius: 18px;
  background: #fff;
  color: #000;
  font: inherit;
  letter-spacing: 0.04em;
}

.member-login-form__submit {
  justify-self: start;
  min-width: 180px;
  margin-top: 4px;
}

div.member-page__content {
  margin-top: 0;
}

.member-page__content-section + .member-page__content-section {
  margin-top: 44px;
}

.member-page__content h2 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 20px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.member-page__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 3px;
  height: 1.25em;
  border-radius: 999px;
  background: var(--color-main);
}

.member-page__content p {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.member-page__content a,
.member-page__content a:visited {
  color: var(--color-main-dark);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.member-page__content ol {
  padding-left: 1.4em;
}

.member-page__content li + li {
  margin-top: 0.7em;
}

.member-page__content .member-page__table {
  table-layout: fixed;
}

.member-page__content .member-page__table th {
  width: 34%;
  word-break: break-word;
}

.member-page__resource-number {
  display: inline-block;
  margin-right: 2px;
  font-variant-numeric: tabular-nums;
}

.member-page__content .member-page__table td ul {
  margin: 0;
  padding-left: 1.35em;
}

@media (hover: hover) and (pointer: fine) {
  .member-page__content a:hover {
    color: var(--color-main);
  }

  .member-login-form__input:hover {
    border-color: rgba(99, 206, 217, 0.4);
  }
}

@media (max-width: 1024px) {
  .member-login-page__intro,
  .member-page__intro {
    padding-top: 72px;
    padding-bottom: 24px;
  }

  .member-login-page__section,
  .member-page__section {
    padding-bottom: 84px;
  }
}

@media (max-width: 767px) {
  .member-login-page__intro,
  .member-page__intro {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .member-login-page__intro-text,
  .member-page__intro-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .member-login-page__section,
  .member-page__section {
    padding-bottom: 72px;
  }

  .member-login-page__panel,
  .member-page__panel {
    border-radius: 24px;
  }

  .member-login-page__panel {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .member-login-page__section-heading {
    padding-left: 18px;
  }

  .member-login-page__section-heading::before {
    height: 28px;
  }

  .member-login-page__section-heading h2 {
    font-size: 24px;
    line-height: 1.5;
  }

  .member-page__content-section + .member-page__content-section {
    margin-top: 36px;
  }

  .member-page__content h2 {
    margin-bottom: 20px;
    padding-left: 18px;
    font-size: 22px;
    line-height: 1.5;
  }

  .member-page__content p,
  .member-page__content li {
    font-size: 15px;
    line-height: 1.9;
  }

  .member-page__content .member-page__table,
  .member-page__content .member-page__table tbody,
  .member-page__content .member-page__table tr,
  .member-page__content .member-page__table th,
  .member-page__content .member-page__table td {
    display: block;
    width: 100%;
  }

  .member-page__content .member-page__table {
    border-collapse: separate;
    background: transparent;
    box-shadow: none;
  }

  .member-page__content .member-page__table tr {
    overflow: hidden;
    border: 1px solid rgba(53, 67, 69, 0.12);
    border-radius: 20px;
    background: #fff;
  }

  .member-page__content .member-page__table tr + tr {
    margin-top: 16px;
  }

  .member-page__content .member-page__table th,
  .member-page__content .member-page__table td {
    border-left: 0;
    border-right: 0;
    font-size: 15px;
  }

  .member-page__content .member-page__table th {
    border-top: 0;
  }

  .member-page__content .member-page__table td {
    border-bottom: 0;
  }

  .member-login-form__submit {
    width: 100%;
    justify-self: stretch;
    min-width: 0;
  }
}

/* =========================================================
   WordPress Support
   ========================================================= */
.archive-news-page {
  overflow: clip;
}

.archive-news-page__hero-media img {
  object-position: center 58%;
}

.archive-news-page__section {
  padding-top: 88px;
  padding-bottom: 96px;
}

.archive-news-page__panel {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 40px;
  background: #fff;
}

.archive-news-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.archive-news-page__item {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.archive-news-page__link,
.archive-news-page__link:visited {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 8px 22px 40px;
  color: var(--color-text);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.archive-news-page__meta {
  display: flex;
  align-items: center;
}

.archive-news-page__meta time {
  display: block;
  width: 88px;
  color: #000;
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.archive-news-page__term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 34px;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--color-soft-bg);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.archive-news-page__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.archive-news-page__title {
  margin: 0;
  color: #000;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.archive-news-page__arrow {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(99, 206, 217, 0.12);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.archive-news-page__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-main-dark);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-40%, -50%);
}

.archive-news-page__empty {
  padding: 42px 0 8px;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.archive-news-page__empty-title {
  margin: 0;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.archive-news-page__empty-text {
  margin: 10px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.archive-news-page__pagination .nav-links {
  justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
  .archive-news-page__link:hover {
    color: var(--color-text);
    background: rgba(99, 206, 217, 0.06);
  }

  .archive-news-page__link:hover .archive-news-page__title {
    color: var(--color-main-dark);
  }

  .archive-news-page__link:hover .archive-news-page__arrow {
    background: var(--color-main);
    transform: translateX(4px);
  }

  .archive-news-page__link:hover .archive-news-page__arrow::before {
    background: var(--color-white);
  }

  .archive-news-page__pagination a:hover {
    border-color: var(--color-main);
    background: var(--color-main);
    color: var(--color-white);
  }
}

@media (max-width: 1024px) {
  .archive-news-page__section {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .archive-news-page__link,
  .archive-news-page__link:visited {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding-left: 24px;
  }
}

@media (max-width: 767px) {
  .archive-news-page__section {
    padding-top: 0;
    padding-bottom: 72px;
  }

  .archive-news-page__panel {
    padding: 28px 20px 32px;
  }

  .archive-news-page__empty-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .archive-news-page__link,
  .archive-news-page__link:visited {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .archive-news-page__meta time {
    font-size: 14px;
  }

  .archive-news-page__content {
    display: block;
  }

  .archive-news-page__title {
    font-size: 16px;
    line-height: 1.75;
  }

  .archive-news-page__arrow {
    display: none;
  }

  .archive-news-page__empty {
    padding-top: 34px;
  }

  .archive-news-page__empty-title {
    font-size: 20px;
    line-height: 1.6;
  }
}

.archive-news,
.archive-generic,
.article-page,
.not-found {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(72px, 10vw, 128px);
}

.archive-news__pagination,
.archive-generic .archive-news__pagination {
  margin-top: 40px;
}

.archive-news__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.archive-news__pagination a,
.archive-news__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  text-decoration: none;
}

.archive-news__pagination .current {
  border-color: var(--color-main);
  background: var(--color-main);
  color: var(--color-white);
}

.generic-list {
  display: grid;
  gap: 24px;
}

.generic-list__item {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.generic-list__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
}

.generic-list__title a {
  color: var(--color-text);
}

.generic-list__meta {
  margin-top: 12px;
  color: var(--color-sub-text);
  font-family: var(--font-en);
  font-size: var(--fs-meta);
  letter-spacing: 0.08em;
}

.generic-list__excerpt {
  margin-top: 16px;
}

.article-page {
  width: min(900px, calc(100% - 48px));
}

.article-page__header {
  margin-top: 24px;
}

.article-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--color-sub-text);
  font-family: var(--font-en);
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
}

.article-page__term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--color-soft-bg);
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: var(--fs-meta);
  letter-spacing: 0.04em;
}

.article-page__title {
  margin-top: 18px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.4;
}

.article-page__content {
  margin-top: 32px;
}

.article-page__content > * + * {
  margin-top: 1.2em;
}

.article-page__content h2,
.article-page__content h3,
.article-page__content h4 {
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
}

.article-page__content ul,
.article-page__content ol {
  padding-left: 1.5em;
}

.article-page__content img {
  border-radius: 24px;
}

.article-page__content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-page__content th,
.article-page__content td {
  padding: 14px 16px;
  border: 1px solid rgba(53, 67, 69, 0.12);
  text-align: left;
  vertical-align: top;
}

.article-page__content th {
  background: rgba(222, 241, 243, 0.78);
  font-weight: 700;
}

.article-page__back,
.not-found__button {
  margin-top: 40px;
}

.not-found-page {
  overflow: clip;
}

.not-found__lead {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.news-detail-page {
  overflow: clip;
}

.news-detail-page__hero-media img {
  object-position: center 58%;
}

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

.news-detail-page__article-inner {
  position: relative;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(53, 67, 69, 0.12);
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(53, 67, 69, 0.08);
}

.news-detail-page__header,
.news-detail-page__content,
.news-detail-page__back {
  position: relative;
  z-index: 1;
}

.news-detail-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--color-sub-text);
  font-family: var(--font-en);
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
}

.news-detail-page__term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--color-soft-bg);
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.news-detail-page__title {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news-detail-page__content {
  margin-top: 34px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news-detail-page__content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.news-detail-page__content > * + * {
  margin-top: 1.35em;
}

.news-detail-page__content h2 {
  margin-top: 2.4em;
  margin-bottom: 0.85em;
  padding-left: 20px;
  border-left: 3px solid var(--color-main);
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.news-detail-page__content h3 {
  margin-top: 2.2em;
  margin-bottom: 0.8em;
  padding-left: 18px;
  border-left: 3px solid rgba(53, 67, 69, 0.18);
  color: #000;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.news-detail-page__content h4 {
  margin-top: 2em;
  margin-bottom: 0.65em;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.news-detail-page__content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.news-detail-page__content ul,
.news-detail-page__content ol {
  margin: 1.6em 0 0;
  padding: 0;
  list-style: none;
}

.news-detail-page__content ul > li,
.news-detail-page__content ol > li {
  position: relative;
  min-height: 2em;
  padding-left: 2.8em;
}

.news-detail-page__content ul > li::before {
  content: "";
  position: absolute;
  left: 0.45em;
  top: 0.8em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
}

.news-detail-page__content ol {
  counter-reset: news-detail-counter;
}

.news-detail-page__content ol > li {
  counter-increment: news-detail-counter;
}

.news-detail-page__content ol > li::before {
  content: counter(news-detail-counter);
  position: absolute;
  left: 0;
  top: 0.15em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.news-detail-page__content li + li {
  margin-top: 0.75em;
}

.news-detail-page__content strong {
  color: inherit;
  font-weight: 700;
}

.news-detail-page__content img {
  border-radius: 24px;
}

.news-detail-page__content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.news-detail-page__content th,
.news-detail-page__content td {
  padding: 14px 16px;
  border: 1px solid rgba(53, 67, 69, 0.12);
  text-align: left;
  vertical-align: top;
}

.news-detail-page__content th {
  background: rgba(222, 241, 243, 0.78);
  font-weight: 700;
}

.news-detail-page__back {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .news-detail-page__article {
    padding-top: 20px;
    padding-bottom: 84px;
  }

  .news-detail-page__article-inner {
    border-radius: 32px;
  }
}

@media (max-width: 767px) {
  .news-detail-page__article {
    padding-top: 0;
    padding-bottom: 72px;
  }

  .news-detail-page__article-inner {
    padding: 28px 20px 32px;
    border-radius: 24px;
  }

  .news-detail-page__title {
    font-size: 24px;
    line-height: 1.55;
  }

  .news-detail-page__content {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.9;
  }

  .news-detail-page__content h2 {
    padding-left: 16px;
    font-size: 22px;
  }

  .news-detail-page__content h3 {
    padding-left: 14px;
    font-size: 20px;
  }

  .news-detail-page__content h4 {
    font-size: 18px;
  }

  .news-detail-page__content ul > li,
  .news-detail-page__content ol > li {
    min-height: 1.9em;
    padding-left: 2.5em;
  }

  .news-detail-page__content ul > li::before {
    left: 0.35em;
    width: 8px;
    height: 8px;
  }

  .news-detail-page__content ol > li::before {
    top: 0.12em;
    width: 1.9em;
    height: 1.9em;
    font-size: 0.82em;
  }

  .article-page__content th,
  .article-page__content td,
  .news-detail-page__content th,
  .news-detail-page__content td {
    padding: 12px;
    font-size: 14px;
  }
}

.return-support-page {
  overflow: clip;
}

.return-support-page__hero-media img {
  object-position: center center;
}

.return-support-page__hero .subpage-hero__copy {
  max-width: 540px;
}

.return-support-page__hero .subpage-hero__title {
  max-width: 10em;
  line-height: 1.3;
  white-space: normal;
  text-wrap: balance;
}

.return-support-page__intro {
  padding-top: 88px;
  padding-bottom: 44px;
}

.return-support-page__intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.return-support-page__intro-copy {
  min-width: 0;
}

.return-support-page__intro-text,
.return-support-page__section-lead,
.return-support-page__point-card p,
.return-support-page__visual-copy p,
.return-support-page__contact-lead,
.return-support-page__contact-row dt,
.return-support-page__contact-row dd,
.return-support-page__list li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.95;
}

.return-support-page__intro-text {
  margin: 20px 0 0;
}

.return-support-page__intro-copy .return-support-page__intro-text:first-child {
  margin-top: 0;
}

.return-support-page__intro-actions,
.return-support-page__contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.return-support-page__intro-actions {
  margin-top: 30px;
}

.return-support-page__button {
  min-width: 220px;
}

.return-support-page__intro-figure,
.return-support-page__visual-figure {
  margin: 0;
}

.return-support-page__intro-figure {
  padding: 18px;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.return-support-page__intro-figure img,
.return-support-page__visual-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.return-support-page__section {
  padding-bottom: 92px;
}

.return-support-page__section--stacked {
  padding-top: 88px;
}

.return-support-page__section--muted {
  padding-top: 88px;
  padding-bottom: 96px;
  background: var(--color-gray-bg);
}

.return-support-page__section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.return-support-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.return-support-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
}

.return-support-page__section-lead {
  margin: 0 0 28px;
}

.return-support-page__points,
.return-support-page__info-grid,
.return-support-page__contact-grid {
  display: grid;
  gap: 20px;
}

.return-support-page__points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.return-support-page__info-grid,
.return-support-page__contact-grid,
.return-support-page__visual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.return-support-page__visual-grid {
  display: grid;
  gap: 20px;
}

.return-support-page__point-card,
.return-support-page__visual-card,
.return-support-page__info-card,
.return-support-page__contact-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.return-support-page__point-card h3,
.return-support-page__visual-copy h3,
.return-support-page__info-card h3,
.return-support-page__contact-card h3 {
  margin: 0;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.return-support-page__point-card p {
  margin: 14px 0 0;
}

.return-support-page__visual-card {
  display: grid;
  gap: 24px;
  align-content: start;
}

.return-support-page__visual-copy p {
  margin: 14px 0 0;
}

.return-support-page__visual-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(222, 241, 243, 0.65);
}

.return-support-page__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.return-support-page__list li {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 26px;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.return-support-page__list li:last-child {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.return-support-page__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-main);
  transform: translateY(-50%);
}

.return-support-page__contact-lead {
  margin: 0 0 18px;
}

.return-support-page__contact-list {
  margin: 0;
  padding: 0;
}

.return-support-page__contact-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.return-support-page__contact-row:last-child {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.return-support-page__contact-row dt,
.return-support-page__contact-row dd {
  margin: 0;
}

.return-support-page__contact-row dt {
  font-weight: 700;
}

.return-support-page__contact-row dd a,
.return-support-page__contact-row dd a:visited {
  color: var(--color-main-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.return-support-page__contact-actions {
  margin-top: 28px;
}

.return-support-page__contact-card--message p {
  margin: 16px 0 0;
}

.return-support-page__contact-card--message p:first-of-type {
  margin-top: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .return-support-page__contact-row dd a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 1024px) {
  .return-support-page__intro {
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .return-support-page__intro-grid,
  .return-support-page__points,
  .return-support-page__visual-grid,
  .return-support-page__info-grid,
  .return-support-page__contact-grid {
    grid-template-columns: 1fr;
  }

  .return-support-page__section {
    padding-bottom: 84px;
  }

  .return-support-page__section--stacked,
  .return-support-page__section--muted {
    padding-top: 76px;
  }
}

@media (max-width: 767px) {
  .return-support-page__intro {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .return-support-page__intro-text,
  .return-support-page__section-lead,
  .return-support-page__point-card p,
  .return-support-page__visual-copy p,
  .return-support-page__contact-lead,
  .return-support-page__contact-row dt,
  .return-support-page__contact-row dd,
  .return-support-page__list li {
    font-size: 15px;
    line-height: 1.9;
  }

  .return-support-page__button {
    width: 100%;
    min-width: 0;
  }

  .return-support-page__intro-figure {
    padding: 14px;
    border-radius: 24px;
  }

  .return-support-page__intro-figure img,
  .return-support-page__visual-figure img {
    border-radius: 18px;
  }

  .return-support-page__section {
    padding-bottom: 72px;
  }

  .return-support-page__section--stacked,
  .return-support-page__section--muted {
    padding-top: 64px;
  }

  .return-support-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .return-support-page__section-heading::before {
    height: 28px;
  }

  .return-support-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .return-support-page__point-card,
  .return-support-page__visual-card,
  .return-support-page__info-card,
  .return-support-page__contact-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .return-support-page__point-card h3,
  .return-support-page__visual-copy h3,
  .return-support-page__info-card h3,
  .return-support-page__contact-card h3 {
    font-size: 22px;
  }

  .return-support-page__visual-card {
    gap: 20px;
  }

  .return-support-page__visual-note {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .return-support-page__contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.disaster-page {
  overflow: clip;
}

.disaster-page__hero-media img {
  object-position: center center;
}

.disaster-page__intro {
  padding-top: 88px;
  padding-bottom: 88px;
}

.disaster-page__hero .subpage-hero__copy {
  max-width: 520px;
}

.disaster-page__intro-title {
  margin: 0;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.disaster-page__intro-text,
.disaster-page__section-lead,
.disaster-page__overview-text,
.disaster-page__feature-card p,
.disaster-page__initiative-card p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.95;
}

.disaster-page__intro-text {
  margin: 20px 0 0;
}

.disaster-page__intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.disaster-page__button {
  min-width: 240px;
}

.disaster-page__section {
  padding-bottom: 92px;
}

.disaster-page__section--stacked {
  padding-top: 88px;
}

.disaster-page__section--muted {
  padding-top: 88px;
  padding-bottom: 96px;
  background: var(--color-gray-bg);
}

.disaster-page__section-heading {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.disaster-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.disaster-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
}

.disaster-page__feature-card,
.disaster-page__initiative-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.disaster-page__overview-text {
  margin: 0;
}

.disaster-page__section-lead {
  margin: 0 0 28px;
}

.disaster-page__feature-grid,
.disaster-page__initiative-grid {
  display: grid;
  gap: 20px;
}

.disaster-page__feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.disaster-page__initiative-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.disaster-page__feature-card h3,
.disaster-page__initiative-card h3 {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.55;
}

.disaster-page__feature-card h3 span,
.disaster-page__initiative-card h3 span {
  display: inline;
  padding: 0;
  background-image: linear-gradient(transparent 64%, rgba(99, 206, 217, 0.38) 84%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-wrap: balance;
}

.disaster-page__feature-card p,
.disaster-page__initiative-card p {
  margin: 20px 0 0;
}

@media (max-width: 1024px) {
  .disaster-page__intro {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .disaster-page__feature-grid,
  .disaster-page__initiative-grid,
  .disaster-page__initiative-grid--wide {
    grid-template-columns: 1fr;
  }

  .disaster-page__section {
    padding-bottom: 84px;
  }

  .disaster-page__section--stacked,
  .disaster-page__section--muted {
    padding-top: 76px;
  }
}

@media (max-width: 767px) {
  .disaster-page__intro {
    padding-top: 0;
    padding-bottom: 56px;
  }

  .disaster-page__intro-title {
    font-size: 28px;
    line-height: 1.55;
  }

  .disaster-page__intro-text,
  .disaster-page__section-lead,
  .disaster-page__overview-text,
  .disaster-page__feature-card p,
  .disaster-page__initiative-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .disaster-page__button {
    width: 100%;
    min-width: 0;
  }

  .disaster-page__section {
    padding-bottom: 72px;
  }

  .disaster-page__section--stacked,
  .disaster-page__section--muted {
    padding-top: 64px;
  }

  .disaster-page__section-heading {
    margin-bottom: 28px;
    padding-left: 18px;
  }

  .disaster-page__section-heading::before {
    height: 28px;
  }

  .disaster-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .disaster-page__feature-card,
  .disaster-page__initiative-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .disaster-page__feature-card h3,
  .disaster-page__initiative-card h3 {
    font-size: 22px;
  }
}

.privacy-page {
  overflow: clip;
  padding-bottom: 50px;
}

.privacy-page__hero-media img {
  object-position: center 52%;
}

.privacy-page__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.privacy-page__intro {
  padding-top: 88px;
  padding-bottom: 24px;
}

.privacy-page__intro-card {
  padding: 0;
}

.privacy-page__intro-label {
  margin: 0 0 16px;
  color: var(--color-main-dark);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.privacy-page__intro-text {
  margin: 0;
  color: #000;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.privacy-page__section {
  padding-top: 40px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.privacy-page__section-heading {
  position: relative;
  margin-bottom: 32px;
  padding-left: 20px;
}

.privacy-page__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 33px;
  border-radius: 999px;
  background: var(--color-main);
}

.privacy-page__section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.privacy-page__card {
  max-width: 100%;
  padding: 0;
}

.privacy-page__lead,
.privacy-page__body p,
.privacy-page__list li,
.privacy-page__contact-row dt,
.privacy-page__contact-row dd {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.95;
}

.privacy-page__lead {
  margin: 0;
}

.privacy-page__body {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.privacy-page__body p {
  margin: 0;
}

.privacy-page__list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-page__list li {
  position: relative;
  padding-left: 24px;
}

.privacy-page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
  transform: translateY(-50%);
}

.privacy-page__list strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.privacy-page__contact-list {
  margin: 24px 0 0;
  padding: 0;
}

.privacy-page__contact-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(53, 67, 69, 0.12);
}

.privacy-page__contact-row:last-child {
  border-bottom: 1px solid rgba(53, 67, 69, 0.12);
}

.privacy-page__contact-row dt,
.privacy-page__contact-row dd {
  margin: 0;
}

.privacy-page__contact-row dt {
  font-weight: 700;
}

.privacy-page__contact-row dd a,
.privacy-page__contact-row dd a:visited {
  color: var(--color-main-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
  word-break: break-word;
}

@media (hover: hover) and (pointer: fine) {
  .privacy-page__contact-row dd a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 1024px) {
  .privacy-page__intro {
    padding-top: 72px;
    padding-bottom: 20px;
  }

  .privacy-page__section {
    padding-top: 36px;
    padding-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .privacy-page__intro {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .privacy-page__intro-text,
  .privacy-page__lead,
  .privacy-page__body p,
  .privacy-page__list li,
  .privacy-page__contact-row dt,
  .privacy-page__contact-row dd {
    font-size: 15px;
    line-height: 1.9;
  }

  .privacy-page__section {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .privacy-page__section-heading {
    margin-bottom: 24px;
    padding-left: 18px;
  }

  .privacy-page__section-heading::before {
    height: 28px;
  }

  .privacy-page__section-heading h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .privacy-page__contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
