/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'YuGothic', 'Yu Gothic', sans-serif;
  color: #333333;
  line-height: 1.7;
  background-color: #ffffff;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

ul {
  list-style: none;
}

/* ========================================
   VARIABLES
======================================== */
:root {
  --teal: #4DBDAB;
  --teal-dark: #3AA898;
  --coral: #E8927A;
  --coral-dark: #D47A62;
  --navy: #325A8C;
  --cream: #FAF6EE;
  --cream-light: #FDF9F4;
  --white: #ffffff;
  --gray-100: #F5F0E8;
  --gray-200: #E8E0D5;
  --gray-400: #999999;
  --gray-600: #666666;
  --text: #333333;
  --container: 1100px;
  --header-h: 72px;
}

/* ========================================
   UTILITIES
======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.is-hidden {
  display: none !important;
}

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

/* ========================================
   BUTTONS
======================================== */
.btn {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  width: 270px;
  max-width: 100%;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn--coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  opacity: 1;
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  opacity: 1;
}

.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  opacity: 1;
}

.btn--full {
  width: 100%;
}

.btn::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  line-height: 1;
}

.btn--no-arrow::after {
  display: none;
}

.btn-heart {
  font-size: 14px;
}

.btn-icon-external {
  vertical-align: middle;
  margin-top: -2px;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ========================================
   SECTION COMMON
======================================== */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--light { background: var(--cream-light); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.section-label--coral {
  color: var(--coral);
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.section-title--left {
  text-align: left;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 21px;
    margin-bottom: 30px;
  }
}

/* ========================================
   HEADER
======================================== */
:root {
  --header-h: 96px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  height: var(--header-h);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  height: 70px;
  width: auto;
}

.footer__logo-img {
  height: 52px;
  width: auto;
}

/* 右側エリア（ボタン上段 + ナビ下段） */
.header__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

/* Actions（上段） */
.header__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.header__actions .btn {
  padding: 7px 20px;
  font-size: 12px;
  border-radius: 6px;
  width: auto;
}

/* Nav（下段） */
.header__nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list > li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-link {
  display: block;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--teal);
  opacity: 1;
}

.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link {
  color: var(--teal);
  opacity: 1;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #f4ead8;
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 8px 20px;
  font-size: 12px;
  color: #3f3f3f;
  transition: background 0.15s;
}

.dropdown li a:hover {
  background: #e7d3b3;
  color: #3f3f3f;
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   DRAWER (SP)
======================================== */
.drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: 300px;
  height: calc(100vh - var(--header-h));
  background: var(--white);
  z-index: 900;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

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

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer__inner {
  padding: 24px 20px;
}

.drawer__nav > li {
  border-bottom: 1px solid var(--gray-200);
}

.drawer__nav > li > a,
.drawer__accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--gray-400);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.drawer__accordion.is-open .accordion-icon::after {
  transform: rotate(90deg);
}

.drawer__sub {
  display: none;
  background: var(--cream);
  padding: 4px 0 12px;
}

.drawer__sub.is-open {
  display: block;
}

.drawer__sub li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gray-600);
}

.drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

/* ========================================
   HERO
======================================== */
.hero {
  --hero-img-w: min(72%, 948px);
  position: relative;
  height: 500px;
  background: transparent;
}

/* クリーム背景：画像の左側・上420pxのみ */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: var(--hero-img-w);
  height: 420px;
  background: #FDF6EE;
  z-index: 0;
}

/* 画像：右端から最大948px、ヒーロー全高を埋める */
.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: var(--hero-img-w);
  z-index: 0;
  border-bottom-left-radius: 24px;
  overflow: hidden;
}

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

/* テキストレイヤー：ヘッダーと同じ幅・padding、クリーム高さ内で中央揃え */
.hero__layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero__title {
  font-size: 39px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: 0.3em;
}

.hero__title--sm {
  font-size: 30px;
}

.hero__btn {
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 14px;
}


/* ========================================
   NEWS / INFORMATION
======================================== */
.news-list {
  max-width: 760px;
  margin: 0 auto;
}

.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}

.news-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.news-item__date {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  padding-top: 2px;
  border-right: 1px solid var(--gray-200);
}

.news-item__link {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.news-item__link:hover {
  color: var(--teal);
  text-decoration: underline;
  opacity: 1;
}

/* ========================================
   ABOUT
======================================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about__image-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-200);
}

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

.about__body .section-label {
  text-align: left;
}

.about__body .section-title {
  margin-bottom: 20px;
}

.about__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ========================================
   FEATURES
======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
}

.feature-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card__text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ========================================
   ACTIVITY REPORT
======================================== */
.fb-embed-wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-card__fb {
  width: 100%;
  overflow: hidden;
}

.activity-card__fb iframe {
  width: 100% !important;
  max-width: 100%;
  display: block;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.activity-card__image {
  aspect-ratio: 4/3;
  background: var(--gray-200);
  overflow: hidden;
}

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

.activity-card__body {
  padding: 16px 20px;
}

.activity-card__date {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.activity-card__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* ========================================
   SUPPORT CENTER
======================================== */
.support-center__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}

.support-center__body .section-label,
.support-center__body .section-title {
  text-align: left;
}

.support-center__body .section-title {
  margin-bottom: 16px;
}

.support-center__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

.support-center__map {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Japan map SVG */
#japan-map-container svg {
  max-width: 520px;
  width: 100%;
  height: auto;
}

/* 地域ブロック 色分け */
/* 北海道・東北 — tealベース */
#japan-map-container .hokkaido,
#japan-map-container .aomori,
#japan-map-container .akita,
#japan-map-container .yamagata,
#japan-map-container .iwate,
#japan-map-container .miyagi,
#japan-map-container .fukushima {
  fill: #4DBDAB;
}

/* 関東・甲信越 — coralベース */
#japan-map-container .niigata,
#japan-map-container .nagano,
#japan-map-container .tochigi,
#japan-map-container .gunma,
#japan-map-container .ibaraki,
#japan-map-container .saitama,
#japan-map-container .chiba,
#japan-map-container .tokyo,
#japan-map-container .kanagawa,
#japan-map-container .yamanashi {
  fill: #E8927A;
}

/* 東海・北陸 — warm amber */
#japan-map-container .shizuoka,
#japan-map-container .aichi,
#japan-map-container .gifu,
#japan-map-container .mie,
#japan-map-container .toyama,
#japan-map-container .ishikawa,
#japan-map-container .fukui {
  fill: #E8C06A;
}

/* 近畿 — sage green */
#japan-map-container .shiga,
#japan-map-container .kyoto,
#japan-map-container .osaka,
#japan-map-container .nara,
#japan-map-container .wakayama,
#japan-map-container .hyogo {
  fill: #7ABF9A;
}

/* 中国・四国 — terracotta */
#japan-map-container .tottori,
#japan-map-container .shimane,
#japan-map-container .okayama,
#japan-map-container .hiroshima,
#japan-map-container .yamaguchi,
#japan-map-container .tokushima,
#japan-map-container .kochi,
#japan-map-container .kagawa,
#japan-map-container .ehime {
  fill: #D4916A;
}

/* 九州・沖縄 — navyベース */
#japan-map-container .fukuoka,
#japan-map-container .saga,
#japan-map-container .nagasaki,
#japan-map-container .oita,
#japan-map-container .kumamoto,
#japan-map-container .miyazaki,
#japan-map-container .kagoshima,
#japan-map-container .okinawa {
  fill: #6B8EC4;
}

/* ホバー効果 */
#japan-map-container .prefecture {
  cursor: pointer;
  transition: opacity 0.15s ease;
  stroke: #ffffff;
  stroke-width: 1.5;
}

#japan-map-container .prefecture:hover {
  opacity: 0.75;
}

/* 凡例ホバー時：対象ブロックをハイライト、それ以外を暗く */
#japan-map-container .prefecture.is-block-hover {
  opacity: 0.75;
}
#japan-map-container .prefecture.is-block-dim {
  opacity: 0.25;
}

/* ========================================
   CTA BANNER
======================================== */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 340px;
}

.cta-banner__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  overflow: hidden;
}

.cta-banner__item--membership {
  background: url('images/cta-membership.jpg') center/cover no-repeat;
  background-color: #b0c8d4;
}

.cta-banner__item--contact {
  background: url('images/cta-contact.jpg') center/cover no-repeat;
  background-color: #c4b8a8;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}

.cta-banner__item:hover .cta-banner__overlay {
  background: rgba(0, 0, 0, 0.45);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-banner__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--coral);
  background: var(--white);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.cta-banner__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cta-banner__text {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}

.cta-banner__btn {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  border: 2px solid var(--white);
  border-radius: 100px;
  padding: 8px 36px 8px 20px;
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

.cta-banner__btn::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  line-height: 1;
}

.cta-banner__item:hover .cta-banner__btn {
  background: var(--white);
  color: var(--text);
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 48px 0 24px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: flex-end;
}

.footer__nav-list a {
  font-size: 13px;
  color: var(--gray-600);
  transition: color 0.2s;
}

.footer__nav-list a:hover {
  color: var(--teal);
  opacity: 1;
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}

.footer__copy {
  font-size: 11px;
  color: var(--gray-400);
}

/* ========================================
   RESPONSIVE – TABLET (≤1024px)
======================================== */
@media (max-width: 1024px) {
  :root {
    --header-h: auto;
  }

  .header {
    height: auto;
  }

  .header__inner {
    padding: 10px 20px;
  }

  .header__right {
    display: none;
  }

  .header__logo-img {
    max-width: 100px;
    height: auto;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  /* Hero */
  .hero {
    max-height: none;
  }

  .hero__content {
    padding: 48px 40px;
  }

  /* About */
  .about__inner {
    gap: 40px;
  }

  /* Support center */
  .support-center__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

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


/* ========================================
   RESPONSIVE – SP (≤768px)
======================================== */
@media (max-width: 768px) {

  /* Hero: PC同様のレイアウトをSPでも維持 */
  .hero {
    --hero-img-w: 80%;
    height: 400px;
  }

  .hero::before {
    height: 340px;
  }

  .hero__layer {
    height: 340px;
  }

  .hero__content {
    padding: 0 20px;
  }

  .hero__title {
    font-size: 26px;
    margin-bottom: 0;
  }

  .hero__title--sm {
    font-size: 20px;
  }

  .hero__btn {
    display: none;
  }

  /* News */
  .news-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__image-grid {
    gap: 6px;
  }

  .about__body .section-title {
    text-align: left;
    font-size: 20px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    text-align: left;
    gap: 0 16px;
    padding: 20px 16px;
    background: var(--gray-100);
    border-radius: 12px;
  }

  .feature-card__icon {
    grid-row: 1 / 3;
    justify-content: flex-start;
    align-self: center;
    margin-bottom: 0;
  }

  .feature-card__title {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .feature-card__text {
    font-size: 13px;
  }

  /* Activity */
  .activity-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .activity-card {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .activity-card__image {
    aspect-ratio: 1;
    border-radius: 0;
  }

  /* Support Center */
  .support-center__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-center__body .section-title {
    font-size: 21px;
  }

  /* CTA Banner */
  .cta-banner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .cta-banner__item {
    height: 260px;
    padding: 32px 24px;
  }

  .cta-banner__title {
    font-size: 22px;
  }

  .cta-banner__text {
    display: none;
  }

  /* Footer */
  .footer__inner {
    gap: 20px;
  }

  .footer__nav-list {
    gap: 8px 16px;
  }

  .footer__copy {
    font-size: 10px;
  }

  /* 固定ボタンに隠れないようにフッター下余白 */
  .footer {
    padding-bottom: 60px;
  }
}

/* ========================================
   RESPONSIVE – SMALL SP (≤480px)
======================================== */
@media (max-width: 480px) {
  .hero__title {
    font-size: 24px;
  }

  .section-title {
    font-size: 19px;
  }
}

/* ========================================
   SP 固定CTAボタン
======================================== */
.sp-fixed-btn {
  display: none;
}

@media (max-width: 768px) {
  .sp-fixed-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
  }

  .sp-fixed-btn .btn {
    display: block;
    border-radius: 0;
    padding: 18px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
  }
}

/* ========================================
   IMAGE PLACEHOLDER (画像がない時のフォールバック)
======================================== */
.hero__image img[src="images/hero.jpg"],
.about__image-item img,
.activity-card__image img {
  background: var(--gray-200);
}

/* 画像が読み込めなかった時のプレースホルダー */
img.placeholder,
.activity-card__image:not(:has(img[complete])) {
  background: var(--gray-200);
}

/* ========================================
   SUPPORT CENTER MODAL
======================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-panel {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.modal-block {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.modal-pref {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.modal-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-body {
  overflow-y: auto;
  padding: 20px 24px 24px;
}

.modal-no-data {
  color: var(--gray-400);
  font-size: 14px;
  text-align: center;
  padding: 24px 0;
}

.modal-center {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.modal-center:last-child {
  border-bottom: none;
}

.modal-center__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.modal-center__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal-center__row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.modal-center__label {
  font-weight: 600;
  color: var(--gray-400);
  flex-shrink: 0;
  min-width: 48px;
}

.modal-center__row a {
  color: var(--teal);
  word-break: break-all;
}

.modal-center__row a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .modal-panel {
    max-height: 85vh;
  }
}

/* ========================================
   PAGE HERO（内部ページ共通）
   Figma寸法: 左702px(49%) / 右738px(51%)
   左コーラル高さ: 359px / 写真高さ: 426px（67px下まで延びる）
======================================== */
.page-hero {
  display: grid;
  /* Figma比率: 702:738 ≈ 49:51 */
  grid-template-columns: 49fr 51fr;
  overflow: visible;
}

.page-hero__left {
  background: var(--coral);
  /* 左paddingをヘッダーロゴ位置に合わせる */
  padding-top: 88px;
  padding-bottom: 48px;
  padding-right: 48px;
  padding-left: max(40px, calc((100vw - 1200px) / 2 + 40px));
  min-height: 359px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 右の写真(426px)がgrid行高を決定し、コーラルはそれより短く収まる */
  align-self: start;
}

.page-hero__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.page-hero__title {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.page-hero__breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: auto;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.8);
}

.page-hero__breadcrumb a:hover {
  color: var(--white);
  opacity: 1;
}

.page-hero__right {
  overflow: hidden;
}

.page-hero__right img {
  display: block;
  width: 100%;
  /* Figma実測値: 426px（コーラル359pxより67px長い） */
  height: 426px;
  object-fit: cover;
  /* 写真の左下のみ角丸（コーラルとの境界側） */
  border-bottom-left-radius: 40px;
}

@media (max-width: 1024px) {
  .page-hero__left {
    padding: 72px 40px 40px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero__left {
    padding: 36px 24px 36px 24px;
    min-height: auto;
  }

  .page-hero__title {
    font-size: 26px;
  }

  .page-hero__right {
    height: 220px;
    overflow: hidden;
  }

  .page-hero__right img {
    height: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 40px;
  }
}

/* ========================================
   NEWS TAG（カテゴリーラベル）
======================================== */
.news-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 100px;
  border: 1px solid var(--gray-400);
  color: var(--gray-600);
  white-space: nowrap;
}

/* ========================================
   NEWS ARCHIVE（お知らせ一覧）
======================================== */
.news-archive {
  padding: 64px 0 80px;
}

.news-archive__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

.news-archive-list {
  border-top: 1px solid var(--gray-200);
}

.news-archive-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.news-archive-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.news-archive-item__date {
  font-size: 13px;
  color: var(--gray-600);
}

.news-archive-item__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  display: block;
}

.news-archive-item a:hover .news-archive-item__title {
  color: var(--teal);
}

a.news-archive-item__link {
  display: block;
}

a.news-archive-item__link:hover {
  opacity: 1;
}

a.news-archive-item__link:hover .news-archive-item__title {
  color: var(--teal);
}

/* ページネーション */
.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
}

.pagination .page-numbers.current {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.pagination .page-numbers:hover:not(.current) {
  border-color: var(--teal);
  color: var(--teal);
  opacity: 1;
}

.pagination .page-numbers.dots {
  border: none;
}

/* ========================================
   SINGLE POST（お知らせ詳細）
======================================== */
.single-news {
  padding: 64px 0 80px;
}

.single-news__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.single-news__date {
  font-size: 13px;
  color: var(--gray-600);
}

.single-news__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 36px;
}

.single-news__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

.single-news__body p {
  margin-bottom: 1.4em;
}

.single-news__body a {
  color: var(--teal);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-news__body a:hover {
  color: var(--teal-dark);
  opacity: 1;
}

.single-news__body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 2em 0 0.8em;
  padding-left: 12px;
  border-left: 4px solid var(--teal);
}

.single-news__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 1.6em 0 0.6em;
}

.single-news__body ul, .single-news__body ol {
  padding-left: 1.8em;
  margin-bottom: 1.4em;
}

.single-news__body li {
  margin-bottom: 0.4em;
  list-style: disc;
}

.single-news__body img {
  margin: 24px auto;
  border-radius: 8px;
  max-width: 100%;
}

.single-news__back {
  margin-top: 48px;
  text-align: center;
}

/* ========================================
   ABOUT PAGE（協会について）
======================================== */
.about-page__section {
  padding: 72px 0;
  scroll-margin-top: 80px;
}

.about-page__section + .about-page__section {
  border-top: 1px solid var(--gray-100);
}

.about-page__section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--coral);
  text-align: center;
  margin-bottom: 8px;
}

.about-page__section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

/* 代表挨拶 */
.greeting-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}

.greeting-body p {
  margin-bottom: 1.4em;
}

.greeting-signature {
  text-align: right;
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 32px;
  line-height: 1.8;
}

/* 設立背景 Essences */
.essence-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.essence-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 24px;
  align-items: start;
}

.essence-item__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1.2;
}

.essence-item__label span {
  display: block;
  font-size: 22px;
}

.essence-item__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  padding-top: 4px;
}

/* おもな事業内容 */
.business-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: business;
}

.business-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.business-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.business-item__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  min-width: 28px;
  line-height: 1.4;
}

/* 設立の目的 */
.purpose-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: purpose;
}

.purpose-item {
  display: flex;
  gap: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

.purpose-item__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  min-width: 24px;
}

/* 協会プロフィール table */
.profile-table {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.8;
}

.profile-table th,
.profile-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
}

.profile-table th {
  width: 140px;
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
}

.profile-table td {
  color: var(--text);
}

@media (max-width: 768px) {
  .essence-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .profile-table th,
  .profile-table td {
    display: block;
    padding: 10px 0;
  }

  .profile-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .profile-table tr {
    display: block;
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
  }

  .profile-table tr:first-child {
    border-top: 1px solid var(--gray-200);
  }
}

/* ========================================
   MEMBERSHIP PAGE（入会案内）
======================================== */
.membership-intro {
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  padding: 60px 0 48px;
}

/* 会員になると出来ること */
.benefits-section {
  padding: 64px 0;
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.benefit-card {
  text-align: center;
}

.benefit-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

.benefit-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.benefit-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.benefit-card__text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray-600);
  text-align: left;
}

/* 会費テーブル */
.fee-section {
  padding: 64px 0;
}

.fee-table {
  max-width: 560px;
  margin: 40px auto 0;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.fee-table th,
.fee-table td {
  padding: 14px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
}

.fee-table thead th {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
}

.fee-table tbody tr:nth-child(even) {
  background: var(--cream);
}

.fee-table td:last-child {
  font-weight: 700;
  color: var(--coral);
}

/* 入会申し込みタブ */
.membership-tabs-section {
  padding: 64px 0 80px;
  background: var(--cream);
}

.tab-nav {
  display: flex;
  gap: 8px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--teal);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.is-active,
.tab-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

/* ステップ */
.step-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--coral);
  display: inline-block;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0 24px;
  align-items: start;
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
}

.step-item__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.step-item__num span {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.step-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-item__text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray-600);
}

.step-item__text a {
  color: #2563eb;
  text-decoration: underline;
}

.step-item__image {
  width: 360px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--gray-200);
}

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

  .step-item {
    grid-template-columns: 1fr;
  }

  .step-item__image {
    display: none;
  }

  .tab-btn {
    font-size: 13px;
    padding: 8px 18px;
  }
}

/* ========================================
   CONTACT PAGE（お問い合わせ）
======================================== */
.contact-section {
  padding: 72px 0 80px;
}

.contact-lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 48px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-required-note {
  font-size: 13px;
  color: var(--coral);
  margin-bottom: 32px;
}

.contact-required-note::before {
  content: '※ ';
}

.form-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 24px;
  align-items: start;
  margin-bottom: 24px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding-top: 10px;
  line-height: 1.4;
}

.form-label .required {
  color: var(--coral);
  margin-left: 4px;
}

.form-fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-fields .field-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
}

.form-fields .field-wrap label {
  font-size: 13px;
  color: var(--gray-600);
  white-space: nowrap;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--cream-light);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-textarea--privacy {
  min-height: 120px;
  background: var(--gray-100);
  font-size: 12px;
  color: var(--gray-600);
  resize: none;
  cursor: default;
}

.form-checkbox-row {
  margin: 8px 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.form-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  cursor: pointer;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit .btn {
  min-width: 220px;
}

/* お問い合わせ: 会員のみCTA */
.cta-membership-only {
  display: grid;
  grid-template-columns: 1fr;
  height: 360px;
}

.cta-membership-only .cta-banner__item {
  height: 100%;
  justify-content: center;
}

.cta-membership-only .cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-label {
    padding-top: 0;
  }

  .contact-section {
    padding: 48px 0 60px;
  }

  .cta-membership-only {
    grid-template-columns: 1fr;
    height: auto;
  }
}

/* ========================================
   SUPPORT CENTER 一覧ページ
======================================== */

/* 地図セクション */
.sc-map-section {
  padding: 64px 0 48px;
}

.sc-map-intro {
  text-align: center;
  margin-bottom: 32px;
}

.sc-map-lead {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ブロック凡例 */
.sc-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 24px 0 32px;
}

.sc-legend__item {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--area-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.sc-legend__item:hover {
  color: #fff;
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.sc-legend__item:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.sc-legend__label {
  white-space: nowrap;
}

/* ページ内地図（少し大きめ） */
.sc-map--page {
  max-width: 600px;
  margin: 0 auto;
}

/* 一覧セクション */
.sc-list-section {
  padding: 64px 0 80px;
  background: var(--cream);
}

/* ブロック */
.sc-block {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}

.sc-block:last-child {
  margin-bottom: 0;
}

.sc-block__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-left: 4px solid;
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sc-block__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-block__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.sc-block__count {
  font-size: 12px;
  color: var(--gray-400);
  font-family: 'Noto Sans JP', sans-serif;
}

/* 都道府県グループ */
.sc-prefs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sc-pref__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.sc-pref__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* センターカード */
.sc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.sc-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sc-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}

.sc-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-card__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 8px;
  font-size: 13px;
  line-height: 1.6;
}

.sc-card__row dt {
  color: var(--gray-400);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 1px;
}

.sc-card__row dd {
  color: var(--gray-600);
  word-break: break-word;
}

.sc-card__row a {
  color: var(--teal);
  transition: color 0.2s;
}

.sc-card__row a:hover {
  color: var(--teal-dark);
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sc-map-section {
    padding: 48px 0 32px;
  }

  .sc-list-section {
    padding: 48px 0 60px;
  }

  .sc-cards {
    grid-template-columns: 1fr;
  }

  .sc-block__title {
    font-size: 16px;
  }

  .sc-card {
    padding: 16px 18px;
  }

  .sc-card__row {
    grid-template-columns: 64px 1fr;
  }
}
