/* ─────────────────────────────────────────────────────────────
   SODAI SYSTEM · Brand Site · SITE COMMON COMPONENTS
   ─ 全ページ共通の NAV ・ セクション ・ ボタン ・ フッター 他
   ※ base/reset は common.css を先に読み込むこと
   ───────────────────────────────────────────────────────────── */

/* ════════════════════════════════════════════════
   NAV (shared across all pages)
   ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 24px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  color: #fff;
  transition: background .5s, backdrop-filter .5s, color .5s, padding .35s, border-color .5s;
  border-bottom: 1px solid transparent;
}

.nav.solid {
  background: rgba(244, 241, 236, .92);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom-color: rgba(14, 20, 23, .06);
  color: var(--ink-900);
  padding-top: 14px;
  padding-bottom: 14px;
}

/* If the page itself starts on a light bg (sub pages without dark hero) */
body.nav-dark .nav {
  color: var(--ink-900)
}

body.nav-dark .nav__brand img {
  filter: none
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 14px
}

.nav__brand img {
  width: 30px;
  height: 30px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .5s
}

.nav.solid .nav__brand img {
  filter: none
}

.nav__links {
  display: flex;
  gap: 30px
}

.nav__links a {
  font-family: var(--display);
  font-size: 14.5px;
  letter-spacing: .04em;
  font-weight: 500;
  position: relative;
  padding: 6px 0
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width .5s cubic-bezier(.2, .7, .2, 1)
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%
}

/* Brand-gradient CTA — ロゴと同じ青→ティールのグラデで枠取り、ホバーで塗り潰し
   (他の .btn ホバーと同じ統一アクション: 塗り潰し + 白文字 + translateY(-2px)) */
.nav__cta {
  --grad: linear-gradient(135deg, #64ACCD 0%, #249996 100%);
  position: relative;
  display: inline-block;
  font-family: var(--display);
  font-size: 14.5px;
  letter-spacing: .04em;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 0;
  /* 通常: padding-box は透明 / border-box にロゴグラデの 1px 枠 */
  background: transparent padding-box, var(--grad) border-box;
  border: 1px solid transparent;
  /* テキストはロゴの濃い側 (ティール) と同色 — 統一感を保ちつつ視認性◎ */
  color: #249996;
  z-index: 0;
  transition: color .35s ease, transform .35s ease, box-shadow .35s ease;
}

/* ホバー時の塗り潰しレイヤー (上から重ねて opacity でフェード) */
.nav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s ease;
}

/* HOVER 共通アクション: 塗り潰し → 白文字 → translateY(-2px) */
.nav__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -8px rgba(36, 153, 150, .55);
}

.nav__cta:hover::before {
  opacity: 1;
}

.nav__menu {
  display: none
}

/* When the fullscreen menu is open, hide the underlying nav so its
   "Menu" button doesn't overlap the menu's "Close" button.
   Uses both a JS-applied body class and :has() as a fallback. */
body.menu-open .nav,
body:has(.menu-fs.open) .nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}

/* Fullscreen mobile menu */
.menu-fs {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink-900);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s, visibility .55s;
  padding: 80px var(--pad-x);
}

.menu-fs.open {
  opacity: 1;
  visibility: visible
}

.menu-fs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  width: 100%;
  max-width: 520px
}

.menu-fs ul li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s
}

.menu-fs.open ul li {
  opacity: 1;
  transform: none
}

.menu-fs.open ul li:nth-child(1) {
  transition-delay: .1s
}

.menu-fs.open ul li:nth-child(2) {
  transition-delay: .16s
}

.menu-fs.open ul li:nth-child(3) {
  transition-delay: .22s
}

.menu-fs.open ul li:nth-child(4) {
  transition-delay: .28s
}

.menu-fs.open ul li:nth-child(5) {
  transition-delay: .34s
}

.menu-fs.open ul li:nth-child(6) {
  transition-delay: .40s
}

.menu-fs.open ul li:nth-child(7) {
  transition-delay: .46s
}

.menu-fs a.lvl {
  font-family: var(--lato);
  font-weight: 100;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1.1;
  letter-spacing: -.025em;
  display: inline-block;
  padding: 8px 16px
}

.menu-fs a.lvl small {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
  font-weight: 500
}

.menu-fs__line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .18);
  margin: 30px auto
}

.menu-fs__contact {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 18px 32px;
  display: inline-block;
  margin-top: 20px;
  transition: background .4s, color .4s
}

.menu-fs__contact:hover {
  background: var(--accent);
  color: var(--ink-900)
}

.menu-fs__close {
  position: absolute;
  top: 24px;
  right: var(--pad-x);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.menu-fs__close::after {
  content: "×";
  font-size: 24px;
  line-height: 1
}

@media (max-width:980px) {

  .nav__links,
  .nav__cta {
    display: none
  }

  .nav__menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600
  }

  .nav__menu svg {
    width: 24px;
    height: 10px
  }
}

@media (max-width:640px) {
  .nav {
    padding: 18px var(--pad-x)
  }

  .nav.solid {
    padding-top: 12px;
    padding-bottom: 12px
  }

  .nav__brand {
    font-size: 13px;
    gap: 10px
  }

  .nav__brand img {
    width: 26px;
    height: 26px
  }

  .nav__menu {
    font-size: 11px;
    letter-spacing: .2em
  }

  .menu-fs__close {
    top: 18px
  }
}

/* ════════════════════════════════════════════════
   SECTION BASE
   ════════════════════════════════════════════════ */
section {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 7vw, 140px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px)
}

.section-head .meta {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-500);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
  padding-top: 6px
}

.section-title {
  margin: 0;
  font-family: var(--lato);
  font-weight: 100;
  font-size: clamp(56px, 11vw, 200px);
  line-height: .92;
  letter-spacing: -.025em;
  text-wrap: balance
}

.section-title em {
  font-family: var(--lato);
  font-weight: 300;
  color: var(--teal-2);
  letter-spacing: -.015em
}

.section-title .ch {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: .1em;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: .4em
}

@media (max-width:780px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px
  }

  .section-head .meta {
    writing-mode: horizontal-tb;
    transform: none
  }

  section {
    padding: clamp(90px, 18vw, 140px) 0
  }
}

/* ════════════════════════════════════════════════
   PAGE HERO (subpage shared)
   ════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: clamp(180px, 20vw, 280px) 0 clamp(80px, 10vw, 140px);
  background: linear-gradient(180deg, var(--paper) 0%, #eef1f3 100%);
  color: var(--ink-900);
  border-bottom: 1px solid rgba(14, 20, 23, .08);
}

.page-hero__chap {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--teal-1);
  margin-bottom: 28px
}

.page-hero__title {
  margin: 0 0 40px;
  font-family: var(--lato);
  font-weight: 100;
  font-size: clamp(54px, 10vw, 160px);
  line-height: .92;
  letter-spacing: -.025em;
  text-wrap: balance
}

.page-hero__title em {
  font-family: var(--lato);
  font-weight: 300;
  color: var(--teal-1);
  letter-spacing: -.015em
}

.page-hero__lead {
  max-width: 680px;
  font-family: var(--jp);
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 2.1;
  color: var(--ink-700);
  margin: 0;
  white-space: pre-line
}

.page-hero__lead em {
  font-family: var(--lato);
  font-weight: 300;
  color: var(--teal-1)
}

/* Section title for subpages (smaller than TOP) */
.sub-title {
  font-family: var(--lato);
  font-weight: 100;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  text-wrap: balance
}

.sub-title em {
  font-family: var(--lato);
  font-weight: 300;
  color: var(--teal-1)
}

.sub-lead {
  font-family: var(--jp);
  font-weight: 300;
  font-size: clamp(15.5px, 1.25vw, 18px);
  line-height: 2.05;
  color: var(--ink-700);
  max-width: 48ch;
  margin: 0;
  white-space: pre-line
}

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
/* Default: outlined ink; hover fills with ink */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 36px;
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--ink-900);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform .4s, background .4s, color .4s, border-color .4s;
  position: relative;
  overflow: hidden;
  min-height: 60px;
  min-width: 260px;
  box-sizing: border-box
}

.btn:hover {
  background: var(--ink-900);
  color: #fff;
  transform: translateY(-2px)
}

.btn .ar {
  display: inline-block;
  transition: transform .4s
}

.btn:hover .ar {
  transform: translateX(8px)
}

/* Accent (green) variant: white base, accent border + text; hover fills with accent */
.btn--green {
  background: transparent;
  color: var(--accent-deep);
  border: 1px solid var(--accent-deep)
}

.btn--green:hover {
  background: var(--accent-deep);
  color: #fff;
  border-color: var(--accent-deep)
}

/* Ghost = same as default outlined; kept for backwards compatibility */
.btn--ghost {
  background: transparent;
  border: 1px solid var(--ink-900);
  color: var(--ink-900)
}

.btn--ghost:hover {
  background: var(--ink-900);
  color: #fff
}

/* On dark backgrounds: white outline, hover fills white */
.btn--ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--ink-900);
  border-color: #fff
}

/* On dark backgrounds: accent outline, hover fills with accent */
.btn--green-light {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent)
}

.btn--green-light:hover {
  background: var(--accent);
  color: var(--ink-900);
  border-color: var(--accent)
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px
}

/* Inline link with arrow (lighter CTA used in summaries) */
.lnk {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-900);
  border-bottom: 1px solid var(--ink-900);
  padding-bottom: 8px;
  transition: color .4s, border-color .4s, gap .4s
}

.lnk:hover {
  color: var(--teal-1);
  border-color: var(--teal-1);
  gap: 20px
}

.lnk--light {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .6)
}

.lnk--light:hover {
  color: var(--accent);
  border-color: var(--accent)
}

/* ════════════════════════════════════════════════
   FINAL FOOTER (shared across all pages)
   ════════════════════════════════════════════════ */
.footer {
  background: #fff;
  color: var(--ink-900);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  position: relative;
  overflow: hidden
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center
}

.footer__logo {
  width: 108px;
  height: 108px;
  margin: 0 auto 38px;
  animation: gentle 8s ease-in-out infinite
}

@keyframes gentle {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.footer__name {
  margin: 0 0 40px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-500)
}

.footer__copy {
  margin: 0 0 28px;
  font-family: var(--lato);
  font-weight: 100;
  font-size: clamp(52px, 9vw, 150px);
  line-height: .92;
  letter-spacing: -.03em;
  text-wrap: balance
}

.footer__copy em {
  font-family: var(--lato);
  font-weight: 300;
  color: var(--teal-1);
  letter-spacing: -.015em
}

.footer__sub {
  margin: 0 0 50px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-500)
}

.footer__bdt {
  margin: 0 0 36px;
  font-family: var(--lato);
  font-weight: 200;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -.005em;
  color: var(--ink-700)
}

.footer__bdt em {
  font-family: var(--lato);
  font-weight: 300;
  color: var(--teal-1)
}

.footer__bdt .x {
  color: var(--accent);
  margin: 0 .35em
}

.footer__jp {
  margin: 0 auto 80px;
  font-family: var(--jp-bold);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--ink-500);
  max-width: 580px
}

.footer__line {
  height: 1px;
  width: min(720px, 82%);
  margin: 0 auto 70px;
  background: linear-gradient(90deg, transparent 0%, var(--river-1) 25%, var(--teal-2) 50%, var(--accent) 75%, transparent 100%);
  background-size: 200% 100%;
  animation: lineFlow 22s linear infinite
}

@keyframes lineFlow {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 200% 0
  }
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px;
  text-align: left;
  width: 100%
}

.footer__nav h5 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600
}

.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer__nav a {
  font-family: var(--jp);
  font-size: 14px;
  color: var(--ink-700);
  transition: color .4s, letter-spacing .4s
}

.footer__nav a:hover {
  color: var(--teal-1);
  letter-spacing: .04em
}

.footer__office li {
  font-family: var(--jp);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-700)
}

.footer__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display) !important;
  font-size: 11px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-1) !important;
  border-bottom: 1px solid var(--teal-1);
  padding-bottom: 2px;
  width: fit-content
}

.footer__map:hover {
  color: var(--accent) !important;
  border-bottom-color: var(--accent);
  letter-spacing: .22em !important
}

.contact-channels__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-1);
  border-bottom: 1px solid var(--teal-1);
  padding-bottom: 2px;
  margin-top: 6px;
  transition: letter-spacing .4s, color .4s
}

.contact-channels__map:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  letter-spacing: .22em
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ink-100);
  padding-top: 30px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-500)
}

.footer__bottom .policy {
  display: flex;
  gap: 24px
}

@media (max-width:780px) {
  .footer {
    min-height: auto;
    padding: 80px var(--pad-x) 60px
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center
  }

  .footer__jp {
    margin-bottom: 50px
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE · TABLET (≤1024px) and PHONE (≤640px)
   主要ページ全体に効く共通モバイル最適化
   ════════════════════════════════════════════════ */

/* タブレット (〜1024px) */
@media (max-width:1024px) {
  :root {
    --pad-x: clamp(20px, 4vw, 56px);
  }

  section {
    padding: clamp(90px, 12vw, 140px) 0;
  }

  .page-hero {
    padding: clamp(140px, 18vw, 200px) 0 clamp(70px, 9vw, 110px);
  }

  .btn {
    padding: 18px 28px;
    min-width: 220px;
    min-height: 54px;
    font-size: 12px;
    letter-spacing: .2em;
    gap: 14px;
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }
}

/* スマホ (〜640px) */
@media (max-width:640px) {
  :root {
    --pad-x: 20px;
  }

  body {
    line-height: 1.7;
  }

  /* セクション間隔をぐっと詰める */
  section {
    padding: 64px 0;
  }

  /* 全画面ヘッダー (page-hero) — タイトルがはみ出さないように */
  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero__chap {
    font-size: 10.5px;
    letter-spacing: .32em;
    margin-bottom: 20px;
  }

  .page-hero__title {
    font-size: clamp(44px, 13vw, 64px);
    line-height: .95;
    margin-bottom: 28px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .page-hero__lead {
    font-size: 14.5px;
    line-height: 1.95;
    max-width: 100%;
  }

  /* セクションヘッダー (縦書きメタ + 巨大数字) → 横並びに */
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }

  .section-head .meta {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 11px;
    letter-spacing: .28em;
    padding-top: 0;
  }

  .section-title {
    font-size: clamp(42px, 12vw, 64px);
    line-height: .94;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .section-title .ch {
    font-size: .16em;
    letter-spacing: .32em;
    margin-bottom: .6em;
  }

  /* サブタイトル系 */
  .sub-title {
    font-size: clamp(32px, 8.5vw, 44px);
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .sub-lead {
    font-size: 14.5px;
    line-height: 1.95;
  }

  /* ボタン: 縦に並べてフル幅近く */
  .btn {
    padding: 16px 22px;
    min-width: 0;
    min-height: 52px;
    width: 100%;
    font-size: 11.5px;
    letter-spacing: .18em;
    gap: 12px;
  }

  .btn-row {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

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

  /* メニュー (full screen) */
  .menu-fs {
    padding: 60px 24px;
  }

  .menu-fs ul {
    gap: 12px;
  }

  .menu-fs a.lvl {
    font-size: clamp(32px, 11vw, 44px);
    padding: 6px 12px;
  }

  .menu-fs a.lvl small {
    font-size: 10px;
    letter-spacing: .28em;
    margin-top: 4px;
  }

  .menu-fs__line {
    height: 40px;
    margin: 18px auto;
  }

  .menu-fs__contact {
    font-size: 11px;
    padding: 14px 24px;
    letter-spacing: .28em;
    margin-top: 10px;
  }

  /* フッター */
  .footer {
    padding: 70px 20px 50px;
    min-height: auto;
  }

  .footer__logo {
    width: 80px;
    height: 80px;
    margin-bottom: 26px;
  }

  .footer__name {
    font-size: 11px;
    letter-spacing: .32em;
    margin-bottom: 24px;
  }

  .footer__copy {
    font-size: clamp(46px, 13vw, 72px);
    margin-bottom: 20px;
    line-height: .95;
  }

  .footer__sub {
    font-size: 10.5px;
    letter-spacing: .28em;
    margin-bottom: 32px;
  }

  .footer__jp {
    font-size: 13.5px;
    line-height: 2;
    margin-bottom: 48px;
  }

  .footer__line {
    width: 80%;
    margin-bottom: 48px;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
  }

  .footer__nav h5 {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .22em;
  }

  .footer__nav a {
    font-size: 13.5px;
  }

  .footer__office li {
    font-size: 13px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    font-size: 10px;
    letter-spacing: .16em;
  }

  .footer__bottom .policy {
    gap: 18px;
  }

  /* リンクCTA */
  .lnk {
    font-size: 11.5px;
    letter-spacing: .16em;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}