@charset "UTF-8";

:root {
  --bg: #ffffff;
  --text: #333333;
  --heading: #222222;
  --muted: #666666;
  --line: #e7e7e7;
  --soft: #f7f9fc;
  --accent: #008800;
  --accent-dark: #006600;
  --max: 1120px;
  --radius: 24px;
  --section-y: 84px;
  --section-y-sp: 48px;
  --fs-hero-h1: clamp(24px, 3.36vw, 38px);
  --fs-hero-h1-sp: clamp(22px, 5.6vw, 30px);
  --fs-section-h2: clamp(19px, 2.56vw, 29px);
  --fs-card-h3: 16px;
  --fs-subcard-h3: 14px;
  --fs-case-title-h3: 19px;
  --fs-case-h4: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "A P-OTF 瓦ゴシック ProN", "A-OTF 瓦ゴシック ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.85;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
  color: var(--text);
  text-align: left;
  line-height: 1.95;
  word-break: normal;
  overflow-wrap: break-word;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

header .site-logo__image {
  height: 42px !important;
  width: auto !important;
  display: block;
}

.section__title {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 14px;
  color: var(--heading);
  font-size: var(--fs-section-h2);
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.section__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.9;
}

.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.breadcrumb__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.breadcrumb__current {
  color: var(--heading);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}

.btn--solid {
  background: var(--accent);
  color: #ffffff;
}

.btn--solid:hover,
.btn--solid:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-dark);
  box-shadow: 0 14px 28px rgba(29, 78, 216, 0.22);
}

.btn--outline {
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--accent-dark);
}

main .section {
  padding: 78px 0;
}

main .section + .section {
  border-top: 1px solid var(--line);
}

main .section:nth-of-type(even) {
  background: #f8fafc;
}

main .section:nth-of-type(odd) {
  background: #ffffff;
}

main .section__head {
  margin-bottom: 32px;
}

main .section__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
}

main .section__lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
}

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

main .card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

main .card--soft {
  background: var(--soft);
}

main .card > h3 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

main a.card {
  position: relative;
  background: #f9fbf9;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  cursor: pointer;
}

main a.card:hover,
main a.card:focus-visible {
  transform: translateY(-4px);
  border-color: #bfd3ff;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.12);
}

main a.card:hover > h3,
main a.card:focus-visible > h3 {
  color: var(--accent-dark);
}

main .support-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

main .support-card__image {
  aspect-ratio: 16 / 9;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

main .support-card__image img,
main .hero-media__image img,
main .media-card__image img,
main .flow-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main .support-card__body {
  padding: 0;
}

main .support-card__body p {
  font-size: 15px;
  line-height: 1.95;
}

main .cta-box--mt24 {
  margin-top: 24px;
}

main .cta-box[aria-label="お問い合わせ導線"] {
  margin-top: 28px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

main .cta-box[aria-label="お問い合わせ導線"] .cta-box__text {
  flex: 1 1 360px;
}

main .cta-box[aria-label="お問い合わせ導線"] .cta-box__title {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: var(--fs-card-h3);
  line-height: 1.5;
}

main .cta-box[aria-label="お問い合わせ導線"] .cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}












section.footer-badges[aria-label="各種証明・お支払い方法"] {
  padding: 24px 0 8px;
  background: #ffffff;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__inner {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__title {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.08em;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__card {
  min-width: 0;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__thumb {
  display: flex;
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #d8d2c7;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__thumb:focus-visible {
  outline: 2px solid #c8963e;
  outline-offset: 2px;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__thumb img {
  display: block;
  width: 100%;
  height: 62px;
  object-fit: contain;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__caption {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
  color: var(--text);
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__note {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__modal.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  margin: 4vh auto;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__close {
  position: absolute;
  top: 10px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #111827;
  cursor: pointer;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__figure {
  margin: 0;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__figure img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

footer.site-footer[aria-label="フッター情報"] {
  padding: 40px 0 18px;
  background: #f7f3ee;
  border-top: 1px solid var(--line);
}

footer.site-footer[aria-label="フッター情報"] .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__title {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 16px;
  line-height: 1.5;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__links {
  display: grid;
  gap: 10px;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__links a {
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__links a:hover,
footer.site-footer[aria-label="フッター情報"] .site-footer__guide a:hover {
  color: var(--accent-dark);
}

footer.site-footer[aria-label="フッター情報"] .site-footer__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__tel-lead {
  margin: 10px 0 0;
  color: var(--heading);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__tel {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__tel:hover {
  color: var(--accent);
}

footer.site-footer[aria-label="フッター情報"] .site-footer__note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__button:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__guide {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.8;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__guide a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

footer.site-footer[aria-label="フッター情報"] .site-footer__copyright p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e8eef8;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 28px;
}

.site-nav__section {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__label,
.site-nav__submenu-toggle,
.site-nav__submenu {
  display: none;
}

.site-nav__parentlink {
  display: inline-flex;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  line-height: 1.4;
  color: #1f1f1f;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent-dark);
}

.site-nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid #d9e2ec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.site-nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #1f1f1f;
  transition: transform 0.22s ease, opacity 0.22s ease, background-color 0.22s ease;
}

body.is-badge-modal-open,
body.is-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  main a.card {
    transition: none;
  }
}

@media (max-width: 1024px) {
  footer.site-footer[aria-label="フッター情報"] .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] > .footer-badges__inner .footer-badges__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] > .footer-badges__inner .footer-badges__thumb {
    min-height: 88px;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] > .footer-badges__inner .footer-badges__thumb img {
    height: 68px;
  }
}


@media (max-width: 820px) {
  .site-header__inner {
    min-height: 78px;
    padding: 12px 0;
    gap: 16px;
  }

  .site-logo__image {
    max-height: 42px;
    width: auto;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 79px;
    left: 0;
    right: 0;
    display: block;
    max-height: calc(100vh - 79px);
    overflow-y: auto;
    padding: 18px 20px 32px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8eef8;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
  }

  .site-nav__section {
    display: block;
  }

  .site-nav__section + .site-nav__section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eef3ef;
  }

  .site-nav__label {
    display: block;
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: #7b8f85;
  }

  .site-nav a,
  .site-nav__submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 16px;
    background: transparent;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
    color: #1f1f1f;
  }

  .site-nav__submenu-head {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
  }

  .site-nav__section--areas .site-nav__parentlink {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-nav__submenu-head .site-nav__parentlink {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 52px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav__submenu-toggle:hover,
  .site-nav__submenu-toggle:focus-visible {
    background: #f7faf7;
    color: var(--accent-dark);
  }

  .site-nav a.is-active,
  .site-nav__parentlink.is-active,
  .site-nav__submenu a.is-active {
    color: var(--accent-dark);
    background: #f7fbf7;
  }

  .site-nav__submenu-toggle {
    position: relative;
    z-index: 3;
    flex: 0 0 52px;
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    border: 1px solid #e2e8e3;
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
    justify-content: center;
    text-align: center;
    color: #334155;
  }

  .site-nav__submenu-toggle::after {
    content: "";
    width: 9px;
    height: 9px;
    margin-left: 0;
    flex-shrink: 0;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .site-nav__submenu-toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg) translate(-1px, -1px);
  }

  .site-nav__submenu {
    display: none;
    padding-top: 8px;
  }

  .site-nav__submenu.is-open {
    display: block;
  }

  .site-nav__submenu > a {
    display: block;
    margin-top: 8px;
    margin-left: 12px;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
    color: #425466;
    border-radius: 14px;
    background: #fbfdfb;
  }

  .site-nav__submenu > a:first-child {
    margin-top: 10px;
  }

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

  body.is-menu-open .site-nav-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.is-menu-open .site-nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  body.is-menu-open .site-nav-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .section__title {
    padding-bottom: 12px;
    font-size: 19px;
  }

  .section__title::after {
    width: 36px;
    margin-top: 8px;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] {
    padding: 16px 0 6px;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__inner {
    padding-top: 18px;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__title {
    margin-bottom: 12px;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] > .footer-badges__inner .footer-badges__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] > .footer-badges__inner .footer-badges__thumb {
    min-height: 78px;
    padding: 6px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: none;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] > .footer-badges__inner .footer-badges__thumb img {
    height: 58px;
  }

  section.footer-badges[aria-label="各種証明・お支払い方法"] .footer-badges__dialog {
    width: min(94vw, 760px);
    margin: 5vh auto;
    padding: 14px;
    border-radius: 16px;
  }

  footer.site-footer[aria-label="フッター情報"] {
    padding: 30px 0 18px;
  }

  footer.site-footer[aria-label="フッター情報"] .site-footer__grid {
    width: min(100%, 520px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer.site-footer[aria-label="フッター情報"] .site-footer__col {
    width: 100%;
    min-width: 0;
    margin: 0 0 24px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  footer.site-footer[aria-label="フッター情報"] .site-footer__title {
    margin-bottom: 14px;
    text-align: center;
  }


  footer.site-footer[aria-label="フッター情報"] .site-footer__col,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col .site-footer__title,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col .site-footer__text,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col .site-footer__tel-lead,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col .site-footer__note,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col .site-footer__guide {
    text-align: center;
  }


  footer.site-footer[aria-label="フッター情報"] .site-footer__links {
    width: min(100%, 420px);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 10px 20px;
  }

  footer.site-footer[aria-label="フッター情報"] .site-footer__links a {
    display: block;
    width: 100%;
    padding: 0;
    line-height: 1.9;
    text-align: center;
  }

  footer.site-footer[aria-label="フッター情報"] .site-footer__col:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    text-align: center;
  }

  footer.site-footer[aria-label="フッター情報"] .site-footer__col:last-child .site-footer__title,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col:last-child .site-footer__text,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col:last-child .site-footer__tel-lead,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col:last-child .site-footer__note,
  footer.site-footer[aria-label="フッター情報"] .site-footer__col:last-child .site-footer__guide {
    max-width: none;
    text-align: center;
  }

  footer.site-footer[aria-label="フッター情報"] .site-footer__copyright {
    margin-top: 22px;
    padding-top: 16px;
  }

  main .section {
    padding: 64px 0;
  }

  main .card {
    padding: 24px 20px;
  }

  main .card > h3 {
    font-size: var(--fs-card-h3);
    line-height: 1.45;
    letter-spacing: 0.02em;
  }








}

.text-link-seo {
  color: blue;
  transition: color 0.2s ease;
}

.text-link-seo:hover,
.text-link-seo:focus-visible {
  color: orange;
}

/* Mobile navigation scroll fix: 2026-05-01
   Scope: mobile opened global menu only. Ensures the long menu can be scrolled to the bottom on mobile browsers. */
@media (max-width: 820px) {
  body.is-menu-open .site-nav {
    top: 79px;
    bottom: 0;
    height: calc(100vh - 79px);
    height: calc(100dvh - 79px);
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
    touch-action: pan-y;
  }
}
