:root {
  --ink: #151918;
  --charcoal: #202524;
  --charcoal-2: #2b302f;
  --paper: #ffffff;
  --soft: #f1f3f2;
  --soft-2: #e5e8e7;
  --muted: #6e7774;
  --line: #d5d9d7;
  --silver: #a9b1ae;
  --line-green: #06c755;
  --max: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 34px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(12,15,14,.74), rgba(12,15,14,.1));
  transition: background .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(21,25,24,.96);
  backdrop-filter: blur(14px);
}
.header-logo img { max-width: 180px; }
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.main-nav a {
  position: relative;
  padding: 28px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 20px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav-cta { display: none; }
.header-cta {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.16);
  font-size: 12px;
  font-weight: 900;
}
.menu-button { display: none; }
.menu-button:focus { outline: 2px solid #fff; outline-offset: 2px; }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  place-items: center;
  color: #fff;
  background: #121615;
  isolation: isolate;
  overflow: hidden;
}
.hero-slides,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}
.hero-slides {
  z-index: -2;
  overflow: hidden;
  background: #121615;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center center);
  filter: grayscale(.88) contrast(1.03);
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 1.1s ease-in-out;
}
.hero-image.is-active { opacity: 1; }
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,13,12,.38) 0%, rgba(10,13,12,.20) 42%, rgba(10,13,12,.74) 100%),
    radial-gradient(circle at 50% 44%, transparent 5%, rgba(7,9,9,.32) 80%);
}
.hero-content {
  width: min(960px, calc(100% - 40px));
  padding: calc(var(--header-h) + 64px) 20px 150px;
  text-align: center;
}
.hero-location,
.hero-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}
.hero-location { margin-bottom: 28px; color: rgba(255,255,255,.76); }
.hero-logo {
  width: min(440px, 56vw);
  margin: 0 auto 28px;
}
.hero-kicker { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.35;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero-copy {
  margin-top: 22px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}
.hero-actions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.hero-line-action { text-align: center; }
.hero-line-action .cta-note { margin-top: 10px; }
.hero-about-label-mobile { display: none; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); filter: brightness(1.04); }
.button-line { color: #fff; background: var(--line-green); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.64); background: rgba(0,0,0,.16); }
.button-dark { color: #fff; background: var(--ink); }
.button-large { min-width: 330px; min-height: 62px; }
.cta-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}
.cta-note-inverse { color: rgba(255,255,255,.74); }
.hero-bottom {
  position: absolute;
  inset: auto 0 0;
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.22);
  background: rgba(20,24,23,.82);
  backdrop-filter: blur(10px);
}
.hero-bottom span {
  padding: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.hero-bottom span + span { border-left: 1px solid rgba(255,255,255,.16); }
.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 102px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
}
.scroll-cue span { font-size: 15px; }

.latest-blog {
  min-height: 152px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  padding-left: max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.latest-blog-head {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px 22px 0;
  border-right: 1px solid var(--line);
}
.latest-blog-head > p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}
.latest-blog-head h2 {
  margin-top: 3px;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -.045em;
}
.latest-blog-more {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 0 13px;
  border: 1px solid #aeb3b1;
  color: var(--ink);
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.latest-blog-more:hover,
.latest-blog-more:focus-visible {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}
.latest-blog-more > span:last-child { font-size: 13px; }
.latest-blog-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.latest-blog-list.latest-blog-count-1 { grid-template-columns: minmax(0, 1fr); }
.latest-blog-list.latest-blog-count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.latest-blog-empty {
  min-height: 152px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.latest-blog-item {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--line);
}
.latest-blog-item a {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 48px 22px 24px;
  transition: background .2s ease;
}
.latest-blog-item a:hover,
.latest-blog-item a:focus-visible { background: var(--soft); }
.latest-blog-item p {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}
.latest-blog-item h3 {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -.02em;
}
.latest-blog-arrow {
  position: absolute;
  right: 20px;
  bottom: 22px;
  font-size: 16px;
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
  padding: 130px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 70px;
}
.section-heading > .eyebrow { grid-column: 1 / -1; margin-bottom: -45px; }
.section-heading > h2 { grid-column: 1; }
.section-heading > p:not(.eyebrow) { grid-column: 2; color: var(--muted); }
.section-heading.compact {
  grid-template-columns: 1fr;
  align-items: start;
}
.section-heading.compact > * { grid-column: 1; }
.section-heading.compact > .eyebrow { margin-bottom: -45px; }
.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.section-heading.centered .eyebrow { margin-bottom: 18px; }
.section-heading.centered p:not(.eyebrow) { margin-top: 18px; color: var(--muted); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}
.eyebrow::after {
  content: "";
  width: 90px;
  height: 1px;
  background: var(--silver);
}
.section h2,
.community-break h2,
.trainers h2 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.25;
  letter-spacing: -.055em;
}

.about {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 70px 50px;
}
.about .section-heading {
  display: block;
  margin: 0;
}
.about .section-heading .eyebrow { margin-bottom: 24px; }
.about .about-title {
  font-size: clamp(38px, 3.65vw, 52px);
  line-height: 1.38;
  letter-spacing: -.06em;
}
.about .about-title span {
  display: block;
  white-space: nowrap;
}
.about-intro {
  align-self: end;
  max-width: 620px;
  color: var(--muted);
}
.about-intro .lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}
.feature-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-list li {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(145deg, #fff 0%, #f6f7f7 100%);
  box-shadow: 0 14px 32px rgba(21,25,24,.06);
}
.feature-list li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--charcoal);
}
.feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.feature-number {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
}
.feature-number::after {
  content: "FEATURE";
  margin-top: 9px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .2em;
}
.feature-visual {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 3px;
  background: #f8f7f4;
}
.feature-visual img {
  height: 100%;
  object-position: center;
}
.feature-visual-illustration img {
  object-fit: contain;
  filter: grayscale(1) contrast(1.02);
  mix-blend-mode: multiply;
}
.feature-visual-photo img {
  object-fit: cover;
  filter: grayscale(.15) contrast(1.02);
  mix-blend-mode: normal;
}
.feature-list h3 {
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.5;
}
.feature-list p { color: var(--muted); font-size: 13px; line-height: 1.85; }
.fit-check {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .75fr 1fr 1.3fr;
  gap: 34px;
  align-items: start;
  padding: 54px;
  color: #fff;
  background: var(--charcoal);
}
.fit-check .eyebrow { color: #c5ccca; }
.fit-check h3 {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.35;
}
.fit-check ul { border-top: 1px solid rgba(255,255,255,.24); }
.fit-check li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
}
.fit-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.community-break {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.7fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: center;
  padding: 85px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}
.community-copy {
  align-self: center;
  max-width: 420px;
  padding-right: 30px;
}
.community-copy h2 { font-size: clamp(34px, 3.4vw, 48px); }
.community-copy h2 span,
.trainers-copy h2 span,
.news .section-heading h2 span {
  display: block;
  white-space: nowrap;
}
.community-copy .eyebrow { margin-bottom: 25px; }
.community-copy p:not(.eyebrow) { margin: 26px 0; color: var(--muted); }
.community-gallery {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(12px, 1.4vw, 20px);
  align-items: center;
}
.community-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8ddda;
}
.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.18) contrast(1.02);
}
.community-photo-one { grid-column: 1; grid-row: 1; align-self: end; }
.community-photo-two { grid-column: 2; grid-row: 1 / span 2; }
.community-photo-three { grid-column: 1; grid-row: 2; align-self: start; }
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  min-width: 250px;
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}
.text-link-light { color: #fff; }

.stores .section-heading { margin-bottom: 52px; }
.stores-list { display: grid; gap: 26px; }
.store {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: var(--soft);
}
.store-gallery {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--charcoal);
}
.store-gallery-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: zoom-in;
}
.store-gallery-stage img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(.18);
  transition: opacity .2s ease, transform .45s ease;
}
.store-gallery-stage:hover img { transform: scale(1.015); }
.store-gallery-caption {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px 15px;
  color: #fff;
  background: rgba(15,18,17,.82);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: .04em;
}
.store-gallery-caption strong { font-size: 12px; }
.store-gallery-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(15,18,17,.64);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
}
.store-gallery-prev { left: 18px; }
.store-gallery-next { right: 18px; }
.store-gallery-control:hover { background: rgba(15,18,17,.9); }
.store-reverse > .store-gallery { order: 2; }
.store-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}
.store-index {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.store-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.3;
}
.store-copy > p:not(.store-index) { color: var(--muted); font-size: 14px; }
.store-copy > strong { margin-top: 18px; font-size: 14px; }
.store-links {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.store-links a,
.store-links button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.store-links button span { margin-left: auto; margin-right: 10px; color: var(--muted); font-size: 10px; }

body.gallery-open { overflow: hidden; }
.store-lightbox {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  height: min(820px, calc(100% - 40px));
  max-height: none;
  padding: 34px 72px 48px;
  border: 0;
  color: #fff;
  background: #101312;
}
.store-lightbox[open] {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}
.store-lightbox::backdrop {
  background: rgba(4,6,5,.88);
  backdrop-filter: blur(8px);
}
.store-lightbox figure { width: 100%; height: 100%; display: grid; place-items: center; }
.store-lightbox figure img { width: 100%; height: 100%; max-height: calc(100vh - 170px); object-fit: contain; }
.store-lightbox figcaption { position: absolute; left: 34px; bottom: 18px; color: rgba(255,255,255,.72); font-size: 11px; }
.store-lightbox-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.28);
  font-size: 24px;
  cursor: pointer;
}
.store-lightbox-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.28);
  cursor: pointer;
  transform: translateY(-50%);
}
.store-lightbox-prev { left: 16px; }
.store-lightbox-next { right: 16px; }
.store-lightbox-position { position: absolute; right: 34px; bottom: 18px; color: rgba(255,255,255,.72); font-size: 11px; }
.store-gallery button:focus-visible,
.store-links button:focus-visible,
.store-lightbox button:focus-visible { outline: 2px solid var(--line-green); outline-offset: 3px; }

.cta-band {
  width: 100%;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 38px max(32px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--charcoal);
}
.cta-band p { color: rgba(255,255,255,.62); font-size: 12px; }
.cta-band h2 { margin-top: 5px; font-size: clamp(24px, 3vw, 40px); line-height: 1.35; }
.cta-band-action { flex: 0 0 auto; text-align: center; }
.cta-band-action .cta-note { color: rgba(255,255,255,.72); }
.cta-band-light {
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.cta-band-light p { color: var(--muted); }
.cta-band-light .cta-note { color: var(--muted); }

.quick-info {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(540px, 1.22fr);
  gap: 82px;
  align-items: center;
  padding-block: 108px;
  color: var(--ink);
  isolation: isolate;
}
.quick-info::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: #fff;
}
.quick-info .section-heading { margin: 0; }
.quick-info .section-heading .eyebrow { margin: 0 0 22px; }
.quick-info .section-heading .eyebrow { color: #59615e; }
.quick-info .section-heading .eyebrow::after { background: #9aa29f; }
.quick-info .section-heading h2 {
  font-size: clamp(44px, 4.7vw, 64px);
  line-height: 1.32;
  letter-spacing: -.06em;
}
.quick-info .section-heading h2 span { display: block; }
.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(21,25,24,.38);
}
.quick-card {
  grid-column: auto;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(130px, .42fr) 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(21,25,24,.18);
}
.quick-number { display: none; }
.quick-grid dt {
  color: #434b48;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .045em;
}
.quick-card-trial dt::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  margin-right: 10px;
  vertical-align: 4px;
  background: var(--line-green);
}
.quick-grid dd {
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}
.quick-grid dd strong {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 900;
  letter-spacing: -.01em;
}
.quick-grid dd small {
  display: block;
  margin-top: 5px;
  color: #66706c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .025em;
}

.reviews {
  width: 100%;
  padding-inline: max(32px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}
.review-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews .section-heading h2 span:first-child { display: block; }
.review-list article { min-height: 360px; padding: 40px; background: #fff; }
.review-list article + article { border-left: 1px solid var(--line); }
.review-list span,
.result-list figcaption span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
}
.review-list h3 {
  margin: 50px 0 18px;
  font-size: 22px;
  line-height: 1.5;
}
.review-list p { color: var(--muted); font-size: 13px; }
.review-list a {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
}
.annotation { margin-top: 22px; color: var(--muted); font-size: 11px; }

.trainers {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.65fr);
  color: #fff;
  background: var(--charcoal);
}
.trainers-copy {
  align-self: center;
  padding: 70px max(42px, calc((100vw - var(--max)) / 2));
  padding-right: 50px;
}
.trainers-copy h2 { font-size: clamp(36px, 3.2vw, 44px); }
.trainers-copy .eyebrow { margin-bottom: 24px; color: #c0c8c5; }
.trainers-copy > p:not(.eyebrow) { margin: 26px 0; color: rgba(255,255,255,.66); }
.trainer-cards { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); }
.trainer-cards figure { position: relative; min-height: 650px; overflow: hidden; }
.trainer-cards img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(.45) contrast(1.02);
}
.trainer-cards figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 70px 24px 26px;
  background: linear-gradient(transparent, rgba(11,14,13,.86));
}
.trainer-cards strong { display: block; font-size: 18px; }
.trainer-cards span { font-size: 9px; letter-spacing: .14em; color: rgba(255,255,255,.62); }

.result-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}
.result-list figure { background: var(--soft); }
.result-list img {
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
  background: #fff;
}
.result-media { display: block; }
.result-list figcaption { padding: 28px; }
.result-list figcaption strong { display: block; margin-top: 8px; font-size: 20px; }
.results > .text-link { margin-top: 30px; }

.price {
  width: 100%;
  padding-inline: max(32px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}
.price-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-list article {
  position: relative;
  padding: 42px;
  border: 1px solid var(--line);
  background: #fff;
}
.price-list article.price-featured { border-top: 6px solid var(--ink); }
.price-list article > p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}
.price-list h3 { margin: 12px 0 34px; font-size: 21px; }
.price-value { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; }
.price-value span { font-size: 12px; font-weight: 800; }
.price-value strong { font-size: clamp(34px, 4vw, 54px); letter-spacing: -.05em; }
.price-list small { color: var(--muted); }
.price-list ul { margin-top: 30px; border-top: 1px solid var(--line); }
.price-list li {
  position: relative;
  padding: 13px 0 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.price-list li::before { content: "✓"; position: absolute; left: 0; font-weight: 900; }
.centered-action { margin-top: 42px; text-align: center; }

.trial-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: steps;
}
.trial-steps li { position: relative; }
.trial-steps li > span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
}
.trial-steps img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
  background: var(--charcoal);
  filter: none;
}
.trial-step-picture { display: block; }
.trial .section-heading.centered { max-width: 1100px; }
.trial-steps li > span,
.trial-steps h3 { display: none; }
.trial-steps p { margin-top: 18px; color: var(--muted); font-size: 13px; }

.faq {
  display: grid;
  grid-template-columns: .48fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq .section-heading { display: block; margin: 0; }
.faq .section-heading .eyebrow { margin-bottom: 22px; }
.about .section-heading h2 span,
.quick-info .section-heading h2 span,
.faq .section-heading h2 span {
  display: block;
}
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px 5px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.faq summary::marker { display: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  grid-column: 3;
  font-size: 21px;
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq summary span,
.faq details p span { font-size: 20px; font-weight: 900; }
.faq details p {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 0 5px 24px;
  color: var(--muted);
  font-size: 13px;
}

.news {
  width: 100%;
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 90px;
  padding-inline: max(32px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}
.news .section-heading { display: block; margin: 0; }
.news .section-heading .eyebrow { margin-bottom: 24px; }
.news .section-heading h2 { font-size: clamp(36px, 3.6vw, 48px); }
.news-list { border-top: 1px solid var(--line); }
.news-list a {
  display: grid;
  grid-template-columns: 110px 110px 1fr 20px;
  gap: 20px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}
.news-list time,
.news-list span { color: var(--muted); font-size: 10px; font-weight: 800; }
.news-list strong { font-size: 14px; }

.brand-message {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.brand-message > img,
.brand-message-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
}
.brand-message > img { object-fit: cover; object-position: center 45%; filter: grayscale(.85); }
.brand-message-shade { z-index: -1; background: rgba(15,19,18,.62); }
.brand-message .eyebrow { justify-content: center; color: rgba(255,255,255,.65); }
.brand-message blockquote {
  margin: 26px 0;
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -.04em;
}
.brand-message-line:first-child { display: block; }
.brand-message > div > p:last-child { font-weight: 800; letter-spacing: .08em; }

.final-cta {
  padding: 120px 24px;
  color: #fff;
  text-align: center;
  background: var(--ink);
}
.final-cta > img { width: min(320px, 58vw); margin: 0 auto 38px; }
.final-cta > p { color: rgba(255,255,255,.66); }
.final-cta h2 {
  margin: 18px 0;
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -.05em;
}
.final-cta h2 span + span::before { content: " "; }
.final-cta .button { margin-top: 36px; }
.final-cta > .cta-note { margin-top: 12px; color: rgba(255,255,255,.72); }
.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 55px max(32px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: #090c0b;
}
.site-footer > img { max-width: 210px; }
.site-footer nav { display: flex; justify-content: flex-end; gap: 26px; font-size: 11px; }
.site-footer small { color: rgba(255,255,255,.45); font-size: 9px; }
.mobile-fixed-cta { display: none; }

@media (min-width: 821px) {
  .store { grid-template-columns: 1fr 1fr; }
  .hero-content { display: flex; flex-direction: column; }
  .hero-location,
  .hero-bottom,
  .hero-actions > .button-outline { display: none; }
  .hero-kicker { order: 1; }
  .hero-logo { order: 2; }
  .hero h1 { order: 3; }
  .hero-copy { order: 4; }
  .hero-actions { order: 5; }
  .scroll-cue { bottom: 28px; }
  .about .section-heading h2 span,
  .quick-info .section-heading h2 span,
  .faq .section-heading h2 span,
  .trial .section-heading h2 {
    white-space: nowrap;
  }
  .quick-info .section-heading h2 span { display: block; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 160px 1fr auto; padding-inline: 22px; gap: 18px; }
  .header-logo img { max-width: 150px; }
  .main-nav { gap: 16px; font-size: 10px; }
  .header-cta { padding-inline: 14px; font-size: 10px; }
  .section { width: min(var(--max), calc(100% - 44px)); }
  .quick-info { grid-template-columns: .72fr 1.28fr; gap: 54px; }
  .trainers { grid-template-columns: 1fr; }
  .trainers-copy { padding: 85px max(32px, calc((100vw - var(--max)) / 2)); }
  .trainer-cards figure { min-height: 520px; }
  .price-list article { padding: 32px 24px; }
  .price-value { display: block; }
  .price-value strong { display: block; }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .feature-title-tablet-line { display: block; white-space: nowrap; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .site-header { grid-template-columns: 150px 1fr auto; padding-inline: 18px; }
  .site-header.is-scrolled { height: 64px; }
  .header-logo { position: relative; z-index: 2; }
  .header-cta { display: none; }
  .menu-button {
    position: relative;
    z-index: 2;
    grid-column: 3;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    color: #fff;
    background: transparent;
  }
  .menu-button span:not(.sr-only) { width: 23px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 1;
    inset: var(--header-h) 0 auto;
    height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 40px;
    background: rgba(21,25,24,.98);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 15px; }
  .main-nav a::after { display: none; }
  .main-nav .main-nav-cta {
    min-height: 52px;
    display: grid;
    place-items: center;
    margin-top: 24px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--line-green);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    font-size: 14px;
    text-align: center;
  }
  .hero { min-height: 820px; }
  .hero-image { object-position: var(--hero-position-tablet, var(--hero-position, center center)); }
  .hero-content { padding-bottom: 180px; }
  .hero-logo { width: min(390px, 76vw); }
  .hero h1 { font-size: clamp(32px, 7vw, 52px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-line-action { width: min(360px, 100%); }
  .hero-actions .button { width: min(360px, 100%); }
  .hero-bottom { min-height: 100px; }
  .hero-bottom span { padding: 14px 7px; font-size: 10px; }
  .scroll-cue { display: none; }
  .latest-blog {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .latest-blog-head {
    min-height: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: center;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .latest-blog-head > p,
  .latest-blog-head h2 { grid-column: 1; }
  .latest-blog-more {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin-top: 0;
  }
  .latest-blog-list { grid-template-columns: 1fr; }
  .latest-blog-item { border-right: 0; }
  .latest-blog-item + .latest-blog-item { border-top: 1px solid var(--line); }
  .latest-blog-item a {
    min-height: 72px;
    padding: 10px 46px 10px 18px;
  }
  .latest-blog-item h3 {
    max-width: 100%;
    margin-top: 4px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .latest-blog-arrow {
    top: 50%;
    right: 18px;
    bottom: auto;
    transform: translateY(-50%);
  }
  .section { padding-block: 95px; }
  .section-heading {
    display: block;
    margin-bottom: 52px;
  }
  .section-heading > .eyebrow,
  .section-heading.compact > .eyebrow { margin: 0 0 18px; }
  .section-heading > p:not(.eyebrow) { margin-top: 22px; }
  .about { grid-template-columns: 1fr; gap: 42px; }
  .about .section-heading,
  .about-intro,
  .feature-list,
  .fit-check { grid-column: 1; }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .fit-check { grid-template-columns: 1fr; }
  .community-break { min-height: auto; grid-template-columns: 1fr; }
  .community-copy { max-width: 620px; padding-right: 0; }
  .community-gallery { width: 100%; }
  .store { grid-template-columns: 1fr; }
  .store-reverse > .store-gallery { order: 0; }
  .store-gallery { min-height: 340px; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .cta-band-action,
  .cta-band-action .button { width: 100%; }
  .quick-info { grid-template-columns: 1fr; gap: 42px; }
  .quick-card { grid-template-columns: minmax(120px, .42fr) 1fr; }
  .quick-grid dd { text-align: right; }
  .review-list { grid-template-columns: 1fr; }
  .review-list article + article { border-left: 0; border-top: 1px solid var(--line); }
  .trainer-cards { grid-template-columns: repeat(3, minmax(240px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
  .trainer-cards::before {
    content: "横にスワイプ →";
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    color: #fff;
    background: rgba(21,25,24,.72);
    backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    pointer-events: none;
  }
  .trainer-cards figure { scroll-snap-align: start; }
  .result-list { grid-template-columns: 1fr; }
  .price-list { grid-template-columns: 1fr; }
  .price-value { display: flex; }
  .trial-steps { grid-template-columns: 1fr; gap: 44px; }
  .trial-steps li { display: grid; grid-template-columns: 180px 1fr; column-gap: 24px; align-items: center; }
  .trial-step-picture { grid-row: 1 / span 2; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  .news { grid-template-columns: 1fr; gap: 45px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  :root { --muted: #5d6663; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .site-header { padding-inline: 14px; }
  .header-logo img { max-width: 132px; }
  .hero { min-height: 680px; }
  .hero-image { object-position: var(--hero-position-mobile, var(--hero-position-tablet, var(--hero-position, center center))); }
  .hero-content {
    width: calc(100% - 22px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 6px;
    padding-bottom: 52px;
  }
  .hero-location,
  .hero-bottom { display: none; }
  .hero-kicker { order: 1; margin-bottom: 16px; transform: translateY(-38px); }
  .hero-logo { order: 2; }
  .hero h1 { order: 3; }
  .hero-copy { order: 4; }
  .hero-actions { order: 5; }
  .hero-logo { width: min(300px, 78vw); margin-bottom: 20px; }
  .hero-kicker { font-size: 9px; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(27px, 7.2vw, 38px); line-height: 1.42; }
  .hero-copy { margin-top: 16px; font-size: 13px; line-height: 1.85; }
  .hero-actions { margin-top: 24px; }
  .hero-line-action .cta-note { margin-top: 9px; font-size: 10px; }
  .hero-actions > .button-outline {
    display: none;
  }
  .hero-about-label-pc { display: none; }
  .hero-about-label-mobile { display: inline; }
  .section { width: calc(100% - 32px); padding-block: 68px; }
  .section-heading { margin-bottom: 44px; }
  .section h2,
  .community-break h2,
  .trainers h2 { font-size: clamp(33px, 9.2vw, 42px); }
  .about .about-title {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.42;
  }
  .reviews .section-heading h2 span,
  .faq .section-heading h2 span { display: inline; white-space: normal; }
  .quick-info .section-heading h2 span,
  .results .section-heading h2 span { display: block; white-space: nowrap; }
  .reviews .section-heading h2 span:first-child { display: block; }
  .trial .section-heading h2 span { display: block; white-space: nowrap; }
  .section-heading > p:not(.eyebrow),
  .about-intro { font-size: 15px; line-height: 1.9; }
  .about-intro .lead { font-size: 18px; line-height: 1.85; }
  .about { gap: 34px; }
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
  }
  .feature-list li {
    min-height: 252px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 66px;
    grid-template-rows: 66px auto 1fr;
    column-gap: 8px;
    align-content: start;
    padding: 14px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }
  .feature-list li:nth-child(2),
  .feature-list li:nth-child(3) { background: #f2f3f2; }
  .feature-list li:nth-child(even) { border-left: 1px solid var(--line); }
  .feature-list li:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .feature-list li::before { display: none; }
  .feature-top {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }
  .feature-number { font-size: 30px; }
  .feature-number::after { margin-top: 6px; font-size: 7px; }
  .feature-visual {
    grid-column: 2;
    grid-row: 1;
    width: 66px;
    height: 66px;
    margin: 0;
    border-radius: 0;
    background: transparent;
  }
  .feature-list h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 14px 0 8px;
    font-size: 15px;
    line-height: 1.45;
  }
  .feature-list p {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 12.5px;
    line-height: 1.72;
  }
  .review-list p,
  .trial-steps p,
  .faq details p { font-size: 14px; line-height: 1.85; }
  .fit-check { padding: 34px 24px; }
  .community-break { grid-template-columns: 1fr; padding: 64px 16px; }
  .community-gallery { grid-template-columns: 1fr; grid-template-rows: none; gap: 14px; }
  .community-photo-one,
  .community-photo-two,
  .community-photo-three { grid-column: 1; grid-row: auto; }
  .community-photo-one { width: 82%; justify-self: start; order: 1; }
  .community-photo-two { width: 100%; order: 2; }
  .community-photo-three { width: 82%; justify-self: end; order: 3; }
  .store-gallery { min-height: 260px; }
  .store-gallery-caption { inset: auto 12px 12px; }
  .store-gallery-control { width: 38px; height: 38px; }
  .store-gallery-prev { left: 12px; }
  .store-gallery-next { right: 12px; }
  .store-copy { padding: 36px 24px; }
  .store-copy > p:not(.store-index) { font-size: 15px; line-height: 1.8; }
  .cta-band { padding-inline: 18px; }
  .cta-band .button { width: 100%; }
  .quick-info { gap: 34px; }
  .quick-card { min-height: 82px; grid-template-columns: 104px 1fr; gap: 14px; padding: 15px 2px; }
  .quick-grid dt { font-size: 12px; }
  .quick-grid dd { display: block; white-space: normal; }
  .quick-grid dd strong { display: block; font-size: 23px; line-height: 1.3; letter-spacing: -.01em; }
  .quick-grid dd small { display: block; margin-top: 4px; font-size: 10px; line-height: 1.5; }
  .reviews,
  .price,
  .news { padding-inline: 16px; }
  .review-list article { min-height: auto; padding: 32px 24px; }
  .review-list h3 { margin-top: 30px; }
  .trainers-copy { padding: 64px 24px; }
  .trainers-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
  .trainer-cards { grid-template-columns: repeat(3, 78vw); }
  .trainer-cards figure { min-height: 500px; }
  .result-list { gap: 28px; }
  .result-list figure {
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 5px solid var(--charcoal);
    border-radius: 4px;
    background: #f1f2f2;
    box-shadow: 0 14px 32px rgba(21,25,24,.08);
  }
  .result-list img {
    aspect-ratio: 2.4 / 1;
    object-fit: contain;
    background: #eef0ef;
  }
  .result-list figcaption {
    min-height: 112px;
    padding: 24px;
    background: #fff;
  }
  .result-list figcaption strong { font-size: 18px; line-height: 1.6; }
  .price-list article { padding: 32px 22px; }
  .price-value { display: block; }
  .price-list small,
  .price-list li { font-size: 13px; line-height: 1.7; }
  .trial-steps li { display: block; }
  .faq summary { grid-template-columns: 30px 1fr; font-size: 14px; line-height: 1.65; }
  .faq details p { grid-template-columns: 30px 1fr; }
  .news-list a { grid-template-columns: 86px 1fr 20px; gap: 12px; padding: 18px 0; }
  .news-list span { display: none; }
  .news-list strong { font-size: 13px; }
  .brand-message { min-height: 560px; }
  .brand-message > img { object-position: 44% center; }
  .brand-message blockquote { font-size: clamp(22px, 6.2vw, 24px); line-height: 1.55; letter-spacing: -.025em; }
  .brand-message-line { display: block; white-space: nowrap; }
  .final-cta { padding: 90px 18px; }
  .final-cta h2 { font-size: 42px; line-height: 1.3; }
  .final-cta h2 span { display: block; }
  .final-cta h2 span + span::before { content: ""; }
  .button-large { width: 100%; min-width: 0; }
  .site-footer { padding: 42px 20px; }
  .site-footer nav { display: grid; gap: 12px; }
  .mobile-fixed-cta {
    position: fixed;
    z-index: 60;
    inset: auto 10px calc(8px + env(safe-area-inset-bottom));
    min-height: 50px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--line-green);
    box-shadow: 0 12px 32px rgba(0,0,0,.28);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-fixed-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.menu-open .mobile-fixed-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
  }
  .store-lightbox {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    padding: 54px 10px 62px;
  }
  .store-lightbox figure img { max-height: calc(100vh - 140px); }
  .store-lightbox figcaption { left: 14px; right: 70px; bottom: 18px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .store-lightbox-position { right: 14px; }
  .store-lightbox-control { top: auto; bottom: 54px; width: 42px; height: 42px; transform: none; }
  .store-lightbox-prev { left: 14px; }
  .store-lightbox-next { right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-image:not(:first-child) { display: none; }
}

/* ログイン中の下書きプレビューでは、WordPress管理バーと固定ヘッダーが重ならないようにする。 */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
