/* ============================================================
   ゆる麻布ラウンジ — brand design system
   base   #FAFAF8 (白レンガ)
   ink    #1A1A1A (ブラック)
   accent #FFCC00 (イエロー・差し色)
   tone   モダンで上質。罫線はヘアライン、影は柔らかく、
          イエローは細い線・小さな点に絞って効かせる
   ============================================================ */

:root {
  --base: #FAFAF8;
  --base-card: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #56564F;
  --line: #E8E8E2;
  --accent: #FFCC00;
  --display: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --latin: "Manrope", sans-serif;
  --w-prose: 720px;
  --w-wide: 1080px;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.03), 0 6px 20px rgba(26, 26, 26, 0.05);
  --shadow-md: 0 2px 4px rgba(26, 26, 26, 0.04), 0 20px 48px rgba(26, 26, 26, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--base);
  /* subtle white-brick pattern（壁モチーフ） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='70'%3E%3Cpath d='M0 .5H140M0 35.5H140M70.5 0V35M35.5 35V70M105.5 35V70' stroke='%231A1A1A' stroke-opacity='.04' fill='none'/%3E%3C/svg%3E");
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

/* 横スクロール防止（clipはstickyを壊さない） */
html, body { overflow-x: clip; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.pc { display: inline; }
.sp { display: none; }

h1, h2, h3 { font-feature-settings: "palt"; }

::selection { background: var(--accent); color: var(--ink); }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* ───────── Header ───────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 22px; width: auto; }
@media (max-width: 640px) { .brand-logo { height: 18px; } }
.global-nav { margin-left: auto; display: flex; gap: 28px; }
.global-nav a {
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  color: var(--ink-soft); padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.global-nav a:hover { color: var(--ink); border-color: var(--accent); }
@media (max-width: 860px) { .global-nav { display: none; } .site-header { justify-content: space-between; } }

/* ───────── Buttons ───────── */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-family: var(--display); font-weight: 700;
  font-feature-settings: "palt";
  white-space: nowrap;
  border: none; border-radius: 100px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s, color .2s, opacity .2s;
}
.btn-small {
  font-size: 13px; padding: 10px 24px;
  background: var(--ink); color: #fff;
}
.btn-small:hover { opacity: .85; }
/* primary = black pill with arrow（上質・モダン。差し色はホバー時の矢印に） */
.btn-primary {
  font-size: 16px; padding: 19px 52px;
  background: var(--ink); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary::after {
  content: "\2192";
  font-family: var(--latin); font-weight: 700;
  display: inline-block; margin-left: 12px;
  transition: transform .2s ease, color .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover::after { transform: translateX(4px); color: var(--accent); }
.btn-ghost {
  font-size: 15px; padding: 17px 44px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-block { display: block; width: 100%; padding-left: 12px; padding-right: 12px; }
.btn-large { font-size: 18px; padding: 22px 64px; }
.cta-note { margin-top: 16px; font-size: 12.5px; color: var(--ink-soft); }

/* ───────── Hero ───────── */
.hero {
  max-width: var(--w-prose);
  margin: 0 auto;
  padding: clamp(88px, 13vh, 160px) 24px clamp(64px, 9vh, 104px);
  text-align: center;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  letter-spacing: 0.14em; margin-bottom: 34px;
}
/* yellow slashes ＼ ／ flanking the eyebrow */
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; display: inline-block;
  width: 2.5px; height: 14px; border-radius: 2px;
  background: var(--accent); vertical-align: -2px;
}
.hero-eyebrow::before { transform: rotate(-26deg); margin-right: 16px; }
.hero-eyebrow::after { transform: rotate(26deg); margin-left: 16px; }
.hero-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.46; letter-spacing: 0.03em;
  margin-bottom: 40px;
}
.hero-title .line { display: block; }

/* signature: 壁 mark — a single yellow underline */
.kabe { position: relative; display: inline-block; }
.kabe .cross {
  position: absolute; left: 0.02em; right: 0.02em; bottom: -0.14em;
  height: 0.08em; border-radius: 2px;
  background: var(--accent); display: block;
}

.hero-copy {
  text-align: left; max-width: 580px; margin: 0 auto 46px;
  font-size: 15.5px; color: var(--ink-soft);
}
.hero-copy p + p { margin-top: 1.2em; }
.hero-cta { margin-top: 8px; }

/* yellow highlighter for key phrases（細く・控えめに） */
.marker {
  font-weight: 700; color: var(--ink);
  background: linear-gradient(transparent 74%, var(--accent) 74%);
  padding: 0 0.08em;
}

/* ───────── Photo marquee ───────── */
.photo-marquee {
  display: flex; gap: 18px; overflow: hidden;
  padding: 12px 0 28px;
}
.marquee-track {
  display: flex; gap: 18px; flex-shrink: 0;
  min-width: max-content; padding-right: 18px;
  animation: marquee 60s linear infinite;
}
.marquee-track img {
  height: clamp(190px, 26vw, 300px); width: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.photo-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-100% - 18px)); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-track[aria-hidden="true"] { display: none; }
  .photo-marquee { overflow-x: auto; }
}

/* ───────── Sections ───────── */
.section {
  max-width: var(--w-prose);
  margin: 0 auto;
  padding: clamp(84px, 11vh, 132px) 24px;
}
.section-wide { max-width: var(--w-wide); }
/* full-bleed white band（白レンガ地と交互にリズムを作る） */
.band {
  background: var(--base-card);
  box-shadow: 0 0 0 100vmax var(--base-card);
  clip-path: inset(0 -100vmax);
}
.section-head { text-align: center; margin-bottom: clamp(44px, 6vh, 68px); }
.section-head h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(25px, 3.8vw, 36px); letter-spacing: 0.05em;
}
.section-lead { margin-top: 22px; color: var(--ink-soft); font-size: 15px; }

/* english label above heading */
.section-en {
  display: block;
  font-family: var(--latin); font-weight: 800; font-size: 11.5px;
  letter-spacing: 0.32em; text-indent: 0.32em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

/* section mark = a single yellow line */
.section-mark {
  display: block; width: 28px; height: 3px; margin: 0 auto 20px;
  background: var(--accent); border-radius: 2px;
}

.section-foot { text-align: center; margin-top: 48px; font-weight: 500; }

/* ───────── Card base（白・ヘアライン罫線・柔らかい影） ───────── */
.benefit-card, .service-item, .result-block, .voice-card, .price-card,
.member-col, .check-list {
  background: var(--base-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* numbered label on cards */
.card-num {
  display: block;
  font-family: var(--latin); font-weight: 800; font-size: 12px;
  letter-spacing: 0.25em;
  color: #B9B9B2;
}

/* icon + label row on cards */
.card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255, 204, 0, 0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--ink); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.service-item .card-icon { width: 48px; height: 48px; }
.service-item .card-icon svg { width: 22px; height: 22px; }
.member-col .card-icon, .result-block .card-icon { width: 52px; height: 52px; margin-bottom: 16px; }

/* mid-page CTA */
.inline-cta { text-align: center; margin-top: clamp(48px, 6vh, 64px); }

/* ───────── Check list ───────── */
.check-list {
  list-style: none; max-width: 640px; margin: 0 auto;
  padding: 20px 40px;
}
.check-list li {
  position: relative; padding: 16px 0 16px 36px;
  font-weight: 500; font-size: 15.5px;
}
.check-list li + li { border-top: 1px solid var(--line); }
.check-list li::before {
  content: ""; position: absolute; left: 2px; top: 27px;
  width: 13px; height: 7px;
  border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

/* ───────── Benefits ───────── */
.benefit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.benefit-card {
  padding: 40px 38px 42px;
}
.benefit-card h3 {
  font-family: var(--display); font-weight: 900; font-size: 19px;
  margin-bottom: 14px;
}
.benefit-card p { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 720px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ───────── Story ───────── */
.story { max-width: 600px; margin: 0 auto; }
.story p + p { margin-top: 1.4em; }
.story-em {
  font-family: var(--display); font-weight: 900;
  font-size: 19px; line-height: 2.1;
  text-align: center;
  padding: 30px 0;
  margin: 1.8em 0 !important;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative;
}
.story-em::before {
  content: ""; position: absolute; left: 50%; top: -2px;
  transform: translateX(-50%);
  width: 40px; height: 3px; border-radius: 2px;
  background: var(--accent);
}

/* ───────── Services ───────── */
.service-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-item {
  padding: 34px 32px 38px;
  display: flex; flex-direction: column;
}
.freq {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--ink-soft);
  background: var(--base);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 4px 14px;
}
.service-item h3 {
  font-family: var(--display); font-weight: 900; font-size: 17.5px;
  margin-bottom: 12px;
}
.service-item p { font-size: 13.8px; color: var(--ink-soft); }
@media (max-width: 960px) { .service-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .service-list { grid-template-columns: 1fr; } }

/* ───────── Gallery ───────── */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery figure:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery figcaption {
  font-size: 12.5px; font-weight: 500; color: var(--ink-soft);
  margin-top: 12px; letter-spacing: 0.06em;
}
.gallery figcaption::before {
  content: ""; display: inline-block;
  width: 12px; height: 2px; border-radius: 1px;
  background: var(--accent);
  margin-right: 8px; vertical-align: 3px;
}
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ───────── Members ───────── */
.member-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.member-col { padding: 36px 34px 40px; }
.member-col h3 {
  font-family: var(--display); font-weight: 900; font-size: 16.5px;
  margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.member-col p { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 640px) { .member-cols { grid-template-columns: 1fr; } }

/* ───────── Results ───────── */
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.result-block {
  padding: 36px 34px 40px;
}
.result-block h3 {
  font-family: var(--display); font-weight: 900; font-size: 17.5px;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.result-block ul { list-style: none; }
.result-block li {
  position: relative; padding: 11px 0 11px 22px;
  font-size: 13.8px; color: var(--ink-soft);
}
.result-block li + li { border-top: 1px solid var(--line); }
.result-block li::before {
  content: ""; position: absolute; left: 2px; top: 20px;
  width: 9px; height: 2px; border-radius: 1px;
  background: var(--accent);
}
@media (max-width: 720px) { .result-grid { grid-template-columns: 1fr; } }

/* ───────── Voices ───────── */
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.voice-card {
  padding: 38px 38px 36px;
  display: flex; flex-direction: column;
}
.voice-card p { font-size: 14.2px; color: var(--ink-soft); flex: 1; }
/* pull-quote headline（本人の言葉から抜粋） */
.voice-card .voice-headline {
  font-family: var(--display); font-weight: 900;
  font-size: 17.5px; line-height: 1.6; color: var(--ink);
  font-feature-settings: "palt";
  flex: none;
  position: relative; padding-top: 16px; margin-bottom: 8px;
}
.voice-card .voice-headline::before {
  content: ""; position: absolute; top: 0; left: 2px;
  width: 26px; height: 3px; border-radius: 2px;
  background: var(--accent);
}
@media (max-width: 640px) { .voice-card .voice-headline { font-size: 16.5px; } }
.voice-card footer {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.voice-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--line);
}
.voice-card cite {
  font-style: normal; font-family: var(--display); font-weight: 900; font-size: 15px;
  display: block;
}
.voice-meta { font-size: 12.5px; color: var(--ink-soft); }
.voice-meta a { color: var(--ink-soft); }
@media (max-width: 720px) { .voice-grid { grid-template-columns: 1fr; } }

/* ───────── Pricing ───────── */
.price-grid {
  display: grid; grid-template-columns: 1.06fr 1fr; gap: 24px;
  max-width: 880px; margin: 0 auto;
  align-items: center;
}
.price-card {
  position: relative;
  padding: 46px 40px 42px; text-align: center;
  display: flex; flex-direction: column; gap: 8px;
}
.price-featured {
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-md);
  padding-top: 54px; padding-bottom: 50px;
}
.price-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  border-radius: 100px;
  font-family: var(--display); font-weight: 700; font-size: 12px;
  padding: 5px 18px; letter-spacing: 0.08em; white-space: nowrap;
}
.price-card h3 { font-family: var(--display); font-weight: 900; font-size: 18px; }
.price-figure { line-height: 1.2; margin-top: 8px; }
.price-figure .num {
  font-family: var(--latin); font-weight: 800;
  font-size: clamp(40px, 5vw, 52px); letter-spacing: -0.01em;
}
.price-featured .price-figure .num {
  background: linear-gradient(transparent 82%, var(--accent) 82%);
}
.price-figure .unit { font-size: 14px; font-weight: 500; margin-left: 4px; }
.price-sub { font-size: 13px; color: var(--ink-soft); }
.price-card .btn { margin-top: 20px; }
.price-note {
  text-align: center; margin-top: 40px;
  font-size: 13px; color: var(--ink-soft);
}
@media (max-width: 680px) { .price-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ───────── FAQ ───────── */
.faq-list { max-width: 660px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: 15px;
  padding: 22px 40px 22px 38px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
  content: "Q"; position: absolute; left: 0; top: 22px;
  font-family: var(--latin); font-weight: 800; font-size: 15px;
  color: #B9B9B2;
}
/* plus / close icon */
.faq-list summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 14px; height: 14px; margin-top: -7px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1.5px 14px no-repeat;
  transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 36px 24px 38px; font-size: 14px; color: var(--ink-soft);
}

/* ───────── Final CTA ───────── */
.final-cta {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: clamp(80px, 11vh, 140px) 24px clamp(90px, 12vh, 150px);
}
.final-inner {
  text-align: center;
  background: var(--base-card);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: clamp(64px, 9vh, 104px) 24px;
}
.final-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(30px, 5.4vw, 46px); letter-spacing: 0.05em;
  margin-bottom: 44px; line-height: 1.6;
}

/* ───────── Footer（黒帯・ヘッダーの黄ラインと対になる） ───────── */
.site-footer {
  background: var(--ink);
  border-top: 3px solid var(--accent);
  padding: 64px 24px 56px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.site-footer .brand-logo { height: 24px; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 12.5px; color: rgba(255, 255, 255, 0.65); text-decoration: none;
}
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.copyright { font-family: var(--latin); font-size: 11.5px; color: rgba(255, 255, 255, 0.45); letter-spacing: 0.05em; }

/* ───────── Mobile sticky CTA bar ───────── */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.cta-bar.show { transform: none; }
.cta-bar .btn { display: block; font-size: 15px; padding: 15px 12px; }
@media (min-width: 721px) { .cta-bar { display: none; } }
@media (prefers-reduced-motion: reduce) { .cta-bar { transition: none; } }

/* ───────── Sub pages（join / 規約類） ───────── */
.page-main {
  max-width: var(--w-prose); margin: 0 auto;
  padding: clamp(56px, 8vh, 88px) 24px clamp(80px, 11vh, 120px);
}
.page-wide { max-width: 920px; }
.page-head { text-align: center; margin-bottom: clamp(40px, 6vh, 60px); }
.page-head h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(26px, 4vw, 38px); letter-spacing: 0.05em;
}
.page-lead { margin-top: 18px; color: var(--ink-soft); font-size: 15px; text-align: center; }

/* join */
.join-note {
  max-width: 640px; margin: 40px auto 0;
  background: var(--base-card);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  font-size: 13px; color: var(--ink-soft);
}
.join-note p + p { margin-top: 0.8em; }
.join-note a { color: var(--ink); }
.back-link { display: block; text-align: center; margin-top: 48px; font-size: 13.5px; color: var(--ink-soft); }
.back-link:hover { color: var(--ink); }

/* legal pages */
.legal-body { font-size: 14px; color: var(--ink-soft); }
.legal-body h2 {
  font-family: var(--display); font-weight: 900; font-size: 16.5px;
  color: var(--ink); margin: 2.6em 0 0.9em;
}
.legal-body p { margin: 0.7em 0; }
.legal-intro { color: var(--ink-soft); }
.legal-dates { margin-top: 3.5em; padding-top: 1.5em; border-top: 1px solid var(--line); font-size: 13px; }
.legal-dates p { margin: 0.2em 0; }

/* tokusho definition table */
.tokusho-list { border-top: 1px solid var(--line); }
.tokusho-list div {
  display: grid; grid-template-columns: 220px 1fr; gap: 16px;
  padding: 18px 4px; border-bottom: 1px solid var(--line);
}
.tokusho-list dt { font-weight: 700; color: var(--ink); font-size: 14px; }
.tokusho-list dd { font-size: 14px; color: var(--ink-soft); }
@media (max-width: 600px) {
  .tokusho-list div { grid-template-columns: 1fr; gap: 4px; padding: 14px 2px; }
}

/* ───────── Reveal ───────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

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

  /* ── Mobile first view: 大きく・短く・写真を近くに ── */
  .hero { padding: 48px 22px 40px; }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: 0.08em; margin-bottom: 22px;
    white-space: nowrap;
  }
  .hero-eyebrow::before, .hero-eyebrow::after { height: 12px; vertical-align: -1px; }
  .hero-eyebrow::before { margin-right: 10px; }
  .hero-eyebrow::after { margin-left: 10px; }
  .hero-title {
    font-size: clamp(36px, 10.6vw, 44px);
    line-height: 1.32; letter-spacing: 0.02em;
    margin-bottom: 24px;
  }
  .hero-copy { font-size: 14px; margin-bottom: 32px; }
  .hero-copy .pc-para { display: none; }
  .hero-cta .btn-primary, .inline-cta .btn-primary, .btn-large {
    display: block; max-width: 360px;
    margin-left: auto; margin-right: auto;
    padding: 18px 20px; font-size: 16px;
  }
  .cta-note { margin-top: 12px; font-size: 12px; }
  .photo-marquee { padding-top: 4px; }
  .marquee-track img { height: 210px; }

  .section { padding: 64px 22px; }
  .check-list { padding: 10px 24px; }
  .check-list li { padding: 15px 0 15px 34px; font-size: 14.5px; }

  .site-footer { padding: 44px 24px 38px; gap: 14px; }
  .footer-nav { gap: 2px 20px; }
  .footer-nav a { line-height: 1.7; }
}
