:root {
  --teal: #51c2c1;
  --teal-deep: #199392;
  --teal-mid: #4fc3b7;
  --teal-soft: #4db5b5;
  --navy: #04263c;
  --ink: #202124;
  --muted: #656773;
  --red: #fa5756;
  --red-alt: #fb5a59;
  --mint: #d1eeef;
  --gray: #eff1f2;
  --white: #fff;
  --header: 66px;
  --inner: 1000px;
  --font: "Oswald", "Noto Sans JP", sans-serif;
  --en: "Oswald", sans-serif;
  --inter: "Oswald", sans-serif;
  --serif: "Oswald", "Zen Old Mincho", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: clip;
  max-width: 100%;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.inner {
  width: min(100%, var(--inner));
  margin: 0 auto;
  padding: 0 21px;
}

.num {
  font-family: var(--en);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
}

.en-title {
  margin: 0;
  font-family: var(--en);
  font-weight: 700;
  font-size: clamp(28px, 8.5vw, 40px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(79, 195, 183, 0.55);
  transform: skewX(-8deg);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 8px;
}

.ja-title {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--teal-deep);
  line-height: 1.4;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: background 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.cta img {
  width: 11px;
  height: 18px;
}

.cta-wide {
  width: 100%;
  min-height: 70px;
  font-size: 16px;
}

.cta-gold {
  background: linear-gradient(180deg, #fec140 0%, #fb5a59 40%);
  min-height: 72px;
  font-size: 16px;
  transition: background 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .header-cta:hover,
  .sp-menu > .cta:hover {
    background: #ff6f6e;
    box-shadow: 0 8px 20px rgba(250, 87, 86, 0.35);
  }

  .cta-gold:hover {
    background: linear-gradient(180deg, #ffd056 0%, #ff6e6d 42%);
    box-shadow: 0 10px 24px rgba(251, 90, 89, 0.3);
  }
}

.cta-dark {
  background: var(--ink);
  min-height: 70px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  overflow: visible;
  max-width: 100%;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  main {
    overflow-x: hidden;
  }
}

.header-bar {
  display: grid;
  grid-template-columns: 85px minmax(0, 1fr) 66px;
  align-items: start;
  height: 66px;
  min-height: 66px;
  max-height: 66px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  padding: 5px 16px 7px;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.header-logo img {
  width: 53px;
  height: 73px;
  object-fit: contain;
}

.header-shop {
  display: none;
}

.header-nav {
  display: none;
}

.header-cta {
  justify-self: end;
  margin: 6px 8px 0 0;
  width: min(200px, 48vw);
  max-width: 100%;
  height: 54px;
  min-height: 54px;
  font-size: clamp(13px, 3.8vw, 16px);
  padding: 0 12px;
  box-sizing: border-box;
}

.menu-button {
  width: 66px;
  height: 66px;
  background: #1d3045;
  display: grid;
  place-items: center;
  align-self: start;
}

.menu-button img {
  width: 30px;
  height: 24px;
}

.crumb {
  background: var(--mint);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin: 0;
  min-height: 54px;
  height: auto;
  padding: 22px 12px 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 38, 60, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 50;
}

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

.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(86vw, 360px);
  max-width: 100%;
  height: 100%;
  background: #1d3045;
  color: var(--white);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, visibility 0.28s;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sp-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.sp-menu nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sp-menu .cta {
  margin-top: auto;
}

.hero {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 440 / 392;
  padding: 0;
  background: linear-gradient(152deg, rgb(80, 193, 193) 10%, rgb(212, 240, 240) 50%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  display: none;
}

.hero-shots {
  position: absolute;
  inset: 0;
}

.hero-shot {
  position: absolute;
  width: calc(146 / 440 * 100%);
  height: calc(111 / 392 * 100%);
  max-width: none;
  object-fit: cover;
}

.hero-shot-1 { left: calc(1 / 440 * 100%); top: calc(121 / 392 * 100%); }
.hero-shot-2 { left: calc(147 / 440 * 100%); top: calc(112 / 392 * 100%); height: calc(110 / 392 * 100%); }
.hero-shot-3 { left: calc(293 / 440 * 100%); top: calc(102 / 392 * 100%); }
.hero-shot-4 { left: calc(1 / 440 * 100%); top: calc(20 / 392 * 100%); }
.hero-shot-5 { left: calc(147 / 440 * 100%); top: calc(11 / 392 * 100%); height: calc(110 / 392 * 100%); }
.hero-shot-6 { left: calc(293 / 440 * 100%); top: calc(1 / 392 * 100%); }

.hero-woman {
  position: absolute;
  left: calc(292 / 440 * 100%);
  right: auto;
  top: calc(140 / 392 * 100%);
  width: calc(155 / 440 * 100%);
  height: calc(252 / 392 * 100%);
  z-index: 3;
  overflow: visible;
  isolation: isolate;
}

.hero-woman::before {
  content: "";
  position: absolute;
  left: 28%;
  right: 6%;
  top: 6%;
  bottom: -4%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 52% 36% at 60% 16%, rgba(0, 0, 0, 0.28) 0%, transparent 72%),
    radial-gradient(ellipse 52% 48% at 58% 42%, rgba(0, 0, 0, 0.32) 0%, transparent 72%),
    radial-gradient(ellipse 42% 38% at 36% 78%, rgba(0, 0, 0, 0.24) 0%, transparent 70%),
    radial-gradient(ellipse 48% 32% at 52% 96%, rgba(0, 0, 0, 0.2) 0%, transparent 72%),
    radial-gradient(ellipse 50% 36% at 74% 58%, rgba(0, 0, 0, 0.22) 0%, transparent 72%);
  filter: blur(12px);
}

.hero-woman-photo {
  display: none;
}

.hero-woman-clip {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-woman-clip img {
  position: absolute;
  top: -12%;
  right: -22%;
  width: auto;
  height: 112%;
  max-width: none;
  object-fit: unset;
}

.hero-copy {
  position: absolute;
  left: calc(21 / 440 * 100%);
  top: calc(244 / 392 * 100%);
  width: min(calc(268 / 440 * 100%), 61%);
  z-index: 2;
}

.hero-copy p,
.hero-copy h1 {
  margin: 0;
  line-height: 1.16;
  transform: rotate(-4deg) skewX(-10deg);
  transform-origin: left center;
  font-weight: 700;
  white-space: nowrap;
}

.hero-kicker,
.hero-slash,
.hero-copy .hero-sub {
  opacity: 0;
  translate: -48px 0;
}

.hero.is-ready .hero-kicker {
  animation: hero-slide-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.hero.is-ready .hero-slash {
  animation: hero-slide-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.hero.is-ready .hero-copy .hero-sub {
  animation: hero-slide-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}

@keyframes hero-slide-in {
  from {
    opacity: 0;
    translate: -48px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .hero-slash,
  .hero-copy .hero-sub {
    opacity: 1;
    translate: none;
    animation: none !important;
  }

  .header-cta,
  .sp-menu > .cta,
  .cta-gold {
    transition: none;
  }
}

.hero-kicker {
  color: var(--navy);
  font-size: clamp(16px, 5.2vw, 24px);
  line-height: 1.15;
}

.hero-slash {
  position: relative;
  width: calc(440 / 300 * 100%);
  aspect-ratio: 440 / 90;
  height: auto;
  min-height: 0;
  margin: calc(-18 / 300 * 100%) 0 0 calc(-21 / 300 * 100%);
}

.hero-slash img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
}

.hero-main {
  position: absolute;
  left: calc(23 / 440 * 100%);
  top: 32%;
  z-index: 1;
  padding: 0;
  color: var(--white);
  font-size: clamp(26px, 8.5vw, 39px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-copy .hero-sub {
  color: var(--navy);
  font-size: clamp(14px, 4.6vw, 21px);
  line-height: 1.15;
  letter-spacing: 0.05em;
  margin-top: clamp(6px, 1.8vw, 10px);
}

.price-band {
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px 12px;
  min-height: 128px;
  box-sizing: border-box;
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.price-band-inner {
  display: grid;
  grid-template-columns: auto minmax(0, max-content) auto;
  column-gap: clamp(4px, 1.5vw, 8px);
  align-items: start;
  max-width: 100%;
  justify-content: center;
}

.price-label {
  display: grid;
  gap: 5px;
  margin-top: 14px;
}

.price-label span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--teal-deep);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 99px;
  line-height: 1;
  white-space: nowrap;
}

.price-label span:first-child {
  height: 32px;
  font-size: 20px;
}

.price-label span:last-child {
  height: 42px;
  font-size: 29px;
  padding-bottom: 4px;
}

.price-main {
  grid-column: 2;
  grid-row: 1;
  font-size: clamp(52px, 18vw, 88px);
  line-height: 0.85;
  color: var(--white);
  transform: skewX(-8deg);
  white-space: nowrap;
  margin: 16px 0 0;
}

.price-unit {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  align-self: end;
  font-size: clamp(22px, 7vw, 35px);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  margin: 0 0 0 4px;
  white-space: nowrap;
}

.price-tax {
  grid-column: 2 / 4;
  grid-row: 2;
  margin: 0;
  font-size: 15px;
  text-align: right;
  line-height: 1.2;
}

.campaign {
  position: relative;
  color: var(--white);
  padding: 26px 0 20px;
  overflow: hidden;
}

.campaign-bg {
  position: absolute;
  inset: 0;
}

.campaign-bg img,
.campaign-bg::after {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 39, 61, 0.7);
}

.campaign-inner {
  position: relative;
  z-index: 1;
}

.campaign h2 {
  margin: 0 0 25px;
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.05em;
}

.campaign-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 0 clamp(16px, 5vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  height: 99px;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.campaign-from,
.campaign-old,
.campaign-zero,
.campaign-yen {
  margin: 0;
}

.campaign-from {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 4.5vw, 18px);
  font-weight: 700;
  color: var(--teal-mid);
  line-height: 1.11;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.campaign-price {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 2px;
}

.campaign-price:has(.campaign-zero) {
  align-items: flex-end;
  transform: translateY(-4px);
}

.campaign-arrow {
  display: block;
  width: 14px;
  height: 23px;
  flex-shrink: 0;
  align-self: center;
}

.campaign-old {
  position: relative;
  font-size: clamp(44px, 14vw, 58px);
  color: var(--ink);
  line-height: 0.81;
  padding-right: 0.06em;
}

.campaign-old::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 48%;
  height: 4px;
  background: var(--teal-mid);
  transform: rotate(18deg);
}

.campaign-zero {
  font-size: clamp(72px, 23vw, 100px);
  line-height: 0.83;
  color: var(--red-alt);
  padding-right: 0.08em;
  margin-left: -8px;
}

.campaign-yen {
  font-size: clamp(16px, 4.5vw, 22px);
  font-weight: 700;
  padding-bottom: 4px;
  margin-left: 2px;
}

.campaign-yen.is-red {
  color: var(--red-alt);
  font-size: clamp(26px, 8vw, 36px);
  padding-bottom: 6px;
  margin-left: 4px;
}

.campaign-date {
  margin: 10px 0 14px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
}

.campaign-date .num {
  font-style: normal;
  font-size: 24px;
}

.campaign-date .num:nth-of-type(2),
.campaign-date .num:nth-of-type(3) {
  font-size: 34px;
  line-height: 1;
}

.campaign .cta-gold {
  width: 100%;
  max-width: 100%;
  min-height: 72px;
  font-size: clamp(15px, 4.2vw, 22px);
  letter-spacing: 0.02em;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  padding: 12px 14px;
  box-sizing: border-box;
}

.campaign .cta img {
  width: 14px;
  height: 23px;
  flex-shrink: 0;
}

.store {
  background: var(--mint);
  padding: 20px 0 36px;
}

.store-layout {
  display: flex;
  flex-direction: column;
}

.store-info {
  display: contents;
}

.store-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
  order: -1;
}

.store-head h2 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.badge {
  display: inline-grid;
  place-items: center;
  min-width: 72px;
  height: 29px;
  padding: 0 6px;
  border: 1.7px solid var(--teal-mid);
  border-radius: 5px;
  color: var(--teal-mid);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.store-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  padding: 22px 0 12px;
  overflow: visible;
}

.store-slider {
  position: relative;
  order: 0;
  flex-shrink: 0;
  height: 235px;
  padding: 0 30px;
  overflow: visible;
}

.store-slider .slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  right: 30px;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.9s ease-in-out;
}

.store-slider .slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.store-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 23px;
  padding: 0;
  overflow: visible;
  z-index: 2;
}

.slider-nav img {
  width: 14px;
  height: 23px;
  max-width: none;
}

.slider-nav.prev {
  left: 8px;
}

.slider-nav.next {
  right: 8px;
}

.slider-nav.prev img {
  transform: scaleX(-1);
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 17px 0 0;
  order: 3;
  flex-shrink: 0;
}

.dots button {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  padding: 0;
  border-radius: 50%;
  background: #d9e8e9;
  aspect-ratio: 1;
}

.dots button.is-active {
  background: var(--teal-mid);
}

.store-lead {
  color: var(--teal-deep);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 32px;
  margin: 18px 0 12px;
  padding: 0 28px;
  order: 1;
  flex-shrink: 0;
}

.store-desc {
  margin: 0;
  padding: 0 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  order: 2;
  flex-shrink: 0;
}

.store-dl {
  display: grid;
  grid-template-columns: 75px 1fr;
  column-gap: 0;
  row-gap: 0;
  margin: 17px 0 0;
}

.store-dl dt {
  margin: 0;
  color: var(--teal-deep);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.store-dl dd {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.store-dl dt,
.store-dl dd {
  padding: 0 0 18px;
}

.store-dl dt:nth-child(1),
.store-dl dd:nth-child(2),
.store-dl dt:nth-child(3),
.store-dl dd:nth-child(4) {
  border-bottom: 1px solid var(--white);
  margin-bottom: 18px;
}

.store-dl dt:nth-last-child(2),
.store-dl dd:last-child {
  padding-bottom: 22px;
}

.store-map {
  position: relative;
  width: 100%;
  height: 161px;
  overflow: hidden;
}

.store-map-link {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.store-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about {
  background: var(--teal);
  color: var(--white);
  padding: 36px 0 16px;
}

.about-kicker {
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.about-title-wrap {
  margin: 12px auto 28px;
  text-align: center;
}

.about-title-line {
  margin: 0 auto 8px;
  color: var(--teal-deep);
  background: var(--white);
  display: inline-block;
  padding: 8px 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.about-title-line:last-child {
  margin-bottom: 0;
}

.circles {
  display: grid;
  grid-template-columns: 191px 191px;
  justify-content: center;
  column-gap: 11px;
  row-gap: 0;
  margin: 0 auto 28px;
  max-width: 400px;
}

.circle {
  width: 191px;
  max-width: 191px;
  margin: 0;
  flex: none;
}

.circle-menu {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  margin-bottom: -20px;
  z-index: 1;
}

.circle-room {
  grid-column: 1;
  grid-row: 2;
  z-index: 0;
}

.circle-pro {
  grid-column: 2;
  grid-row: 2;
  z-index: 0;
}

.circle-face {
  width: 191px;
  height: 191px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid #e8e8e8;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 14px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.circle-face img {
  width: 72px;
  max-width: 84px;
  height: 66px;
  max-height: 76px;
  margin-bottom: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.circle-menu .circle-face img {
  width: 84px;
  max-width: 84px;
  height: 76px;
  max-height: 76px;
}

.circle-face span,
.circle-face b {
  display: block;
  color: var(--teal-deep);
  font-family: "Noto Sans JP", sans-serif;
}

.circle-face span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 2px;
}

.circle-face b {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.circle-pro .circle-face {
  padding: 12px 8px 10px;
}

.circle-pro .circle-face b {
  font-size: 16px;
  line-height: 1.15;
}

.about-block {
  margin-bottom: 36px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  margin-left: -21px;
}

.about-point .num {
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--white);
  color: var(--teal-deep);
  width: 119px;
  min-width: 119px;
  height: 83px;
  border-radius: 0 48px 48px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px 0 32px;
  font-family: var(--en);
  font-size: 48px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: none;
}

.about-point h3 {
  margin: 0;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.about-photo img {
  width: 100%;
  height: 167px;
  object-fit: cover;
  border-radius: 0;
}

.about-desc {
  margin: 14px 0 0;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.asagaya-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 12px;
}

.asagaya-card > img {
  order: 2;
  width: 100%;
  height: 268px;
  object-fit: cover;
}

.asagaya-body {
  display: contents;
}

.asagaya-body h3 {
  order: 1;
  margin: 0;
  padding: 18px 16px 14px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.05em;
}

.asagaya-body h3 em {
  color: var(--teal-deep);
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
}

.tags {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 6px;
  margin: 14px 12px 12px;
}

.tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: none;
  border-radius: 999px;
  color: #4fc3b7;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  background: #d1eeef;
}

.asagaya-body p {
  order: 4;
  margin: 0;
  padding: 0 16px 22px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.reviews {
  background: var(--teal);
  padding: 4px 0 40px;
}

.reviews h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.review-card {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 32px 10px;
  overflow: hidden;
}

.review-track {
  position: relative;
  overflow: hidden;
}

.review-track .slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transition: opacity 0.45s ease-in-out, visibility 0.45s ease-in-out;
}

.review-track .slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.review-track .slide > article:nth-child(n + 2) {
  display: none;
}

.review-card .dots {
  margin: 10px 0 0;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  color: var(--muted);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars img {
  width: 24px;
  height: 24px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
}

.review-user img {
  width: 40px;
  height: 42px;
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.review-extra {
  display: none;
}

.review-text.is-open .review-extra {
  display: inline;
}

.review-more {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: right;
  color: var(--teal-deep);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.review-card .slider-nav {
  display: block;
}

.price {
  background: var(--gray);
  padding: 37px 0 48px;
}

.price .en-title {
  font-size: 38px;
  line-height: 38px;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px #50c1c1;
}

.price .ja-title {
  margin: 0 0 33px;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.05em;
}

.price-row {
  display: grid;
  grid-template-columns: 138px 1fr;
  column-gap: 12px;
  justify-content: space-between;
  align-items: start;
  padding: 19px 0 18px;
  box-sizing: border-box;
  border-bottom: 1px solid #d5e0e2;
  min-height: 100px;
}

.price-row:first-child {
  padding-top: 0;
}

.price-row > div:first-child {
  width: 138px;
  text-align: center;
}

.price-row > div:last-child {
  text-align: right;
}

.pace {
  display: inline-grid;
  place-items: center;
  box-sizing: border-box;
  min-width: 138px;
  width: 138px;
  height: 30px;
  border: 1.5px solid #50c1c1;
  color: #50c1c1;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.member {
  margin: 12px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-align: center;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin: 0;
  font-size: 54px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  text-align: right;
}

.price-amount span {
  display: inline-block;
  margin-left: 4px;
  font-family: var(--font);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.price-incl {
  margin: 4px 0 0;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.price-incl .num {
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
}

.reasons {
  background: var(--mint);
  padding: 33px 0 72px;
  overflow: hidden;
}

.reasons .en-title {
  font-size: clamp(26px, 8vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px rgba(79, 195, 183, 0.65);
  transform: none;
  font-style: italic;
}

.reasons .ja-title {
  margin: 2px 0 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 38px;
  letter-spacing: 0;
}

.point-head {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--teal-mid);
  color: var(--white);
  border-radius: 0 56px 56px 0;
  min-height: 96px;
  padding: 12px 20px 12px 14px;
  width: calc(100% + 20px);
  max-width: min(399px, calc(100% + 20px));
  margin: 0 0 20px -20px;
  box-sizing: border-box;
}

.point-head.is-flip {
  border-radius: 56px 0 0 56px;
  margin-left: auto;
  margin-right: -21px;
  width: calc(100% + 21px);
  padding: 12px 14px 12px 28px;
}

.reasons .compare + .point-head {
  margin-top: 34px;
}

.reasons .checks + .point-head {
  margin-top: 27px;
}

.point-no {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: var(--en);
  font-weight: 700;
  font-style: italic;
  line-height: 0.85;
  text-align: center;
}

.point-no small {
  display: block;
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  text-align: center;
  position: relative;
  left: 0.22em;
}

.point-no b {
  display: block;
  font-size: 51px;
  font-weight: 700;
  font-style: italic;
  line-height: 0.88;
  text-align: center;
}

.point-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 34px;
}

.reason-row {
  display: grid;
  gap: 17px;
  margin: 0 0 18px;
}

.reason-copy {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--ink);
}

.reason-copy strong {
  color: var(--red-alt);
  font-weight: 700;
}

.reason-photo img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.compare {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 17px 20px;
  display: grid;
  gap: 0;
}

.compare-col + .compare-col {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #d9d9d9;
}

.compare-col h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 13px;
  border: 2px solid rgba(79, 195, 183, 0.9);
  color: #4fc1c1;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  min-height: 36px;
  padding: 4px 8px;
  text-align: center;
  background: var(--white);
}

.compare-col p {
  margin: 0 0 8px;
  color: var(--teal-soft);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: left;
}

.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-col li {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--ink);
}

.checks {
  background: var(--white);
  border-radius: 10px;
  padding: 19px 16px 22px;
  display: grid;
  gap: 12px;
}

.check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.check img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 4px;
}

.trainers {
  background: linear-gradient(180deg, var(--teal-soft), var(--teal));
  padding: 45px 0 56px;
}

.trainers .en-title {
  font-size: 38px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 0.6px #bfe8e6;
  transform: none;
  font-style: italic;
}

.trainers .ja-title {
  margin: 2px 0 28px;
  color: var(--white);
  font-size: 26px;
  line-height: 38px;
  letter-spacing: 0;
}

.trainer-list {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.trainer-card {
  background: var(--white);
  border-radius: 8px;
  padding: 10px;
}

.trainer-photo {
  height: 152px;
  background: #b9c2c4;
}

.trainer-card h3 {
  margin: 12px 0 6px;
  color: var(--teal-mid);
  font-family: var(--inter);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.trainer-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.access {
  background: var(--gray);
  padding: 37px 0 56px;
  overflow: hidden;
}

.access .en-title {
  font-size: 38px;
  line-height: 38px;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px rgba(79, 195, 183, 0.7);
  transform: none;
  font-style: italic;
}

.access .ja-title {
  margin: 0 0 26px;
  color: var(--teal-deep);
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0.05em;
}

.access-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0 4px;
}

.access-tabs button {
  min-height: 64px;
  padding: 8px 10px;
  background: #d9d9d9;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border-radius: 10px 10px 0 0;
  letter-spacing: 0.05em;
}

.access-tabs button.is-active {
  background: var(--teal-deep);
  color: var(--white);
}

.access-line {
  height: 4px;
  background: var(--teal-deep);
  margin: 0 -21px 41px;
  width: calc(100% + 42px);
}

.access-panel {
  display: none;
}

.access-panel.is-active {
  display: grid;
  gap: 23px;
}

.access-step {
  display: grid;
  grid-template-columns: 198px minmax(0, 1fr);
  column-gap: 13px;
  align-items: start;
}

.access-photo {
  position: relative;
}

.access-step img {
  width: 100%;
  height: 146px;
  object-fit: cover;
  display: block;
}

.step-no {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}

.access-step h3 {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: var(--ink);
}

.access-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
}

.faq {
  background: var(--mint);
  padding: 48px 0 56px;
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid #b7d8da;
}

.faq-item {
  border-bottom: 1px solid #b7d8da;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 2.2em 1fr 26px;
  gap: 8px;
  align-items: center;
  text-align: left;
  padding: 16px 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.faq-question .num {
  color: var(--teal-mid);
  font-family: var(--en);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.faq-icon {
  width: 26px;
  height: 26px;
  background: url("../assets/icons/group10.svg") center / contain no-repeat;
}

.faq-item.is-open .faq-icon {
  background-image: url("../assets/icons/group9.svg");
}

.faq-answer-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s ease;
}

.faq-item.is-open .faq-answer-panel {
  grid-template-rows: 1fr;
}

.faq-answer-clip {
  overflow: hidden;
  min-height: 0;
}

.faq-answer {
  background: var(--white);
  border-radius: 10px;
  margin: 0 0 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
}

.pilates {
  padding: 24px 21px 48px;
}

.pilates-card {
  border: 2px solid var(--teal-mid);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(192deg, #fff 0%, #d1eeef 50%);
  padding: 18px 16px 24px;
}

.pilates-card h2 {
  margin: 0 0 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: italic;
  color: var(--teal-mid);
  font-size: 32px;
  line-height: 1.2;
}

.pilates-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.pilates-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.pilates-card .tags {
  order: unset;
  justify-content: flex-start;
  margin: 0 0 12px;
}

.pilates-card .tags span {
  background: var(--white);
  border: 1.5px solid var(--teal-mid);
  color: var(--teal-mid);
  font-size: 12px;
  font-weight: 700;
  border-radius: 18px;
  padding: 6px 12px;
}

.pilates-body p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
}

.pilates-cta {
  margin-top: 18px;
  width: 100%;
  min-height: 56px;
  height: 56px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  gap: 12px;
  align-items: center;
}

.pilates-cta img {
  display: block;
  width: 12px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
}

.site-footer {
  background: #1e2f43;
  color: #fff;
  padding: 0;
  font-size: 14px;
  line-height: 1.35;
}

.site-footer .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0;
}

.footer-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer-pc {
  display: none;
}

.footer-sp {
  display: block;
}

.footer-text-link {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer-text-link li {
  margin: 0;
}

.footer-text-link a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-decoration: none;
}

.footer-sp-shop {
  width: 100%;
}

.footer-shop-name {
  margin: 0;
  text-align: center;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.footer-shop-name span {
  width: 16px;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(90deg);
  transition: 0.6s;
}

.footer-shop-name span::after {
  content: "";
  width: 14px;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  right: 1px;
  top: 48%;
  transform: rotate(-90deg);
}

.footer-shop-name.is-open span {
  transform: rotate(0deg);
}

.footer-shop-name.is-open span::after {
  transform: rotate(0deg);
  opacity: 0;
}

.footer-sp-shop > .footer-text-link {
  display: none;
}

.footer-sp-shop.is-open > .footer-text-link {
  display: block;
}

.footer-sp-shop > .footer-text-link a {
  background: rgba(255, 255, 255, 0.04);
}

.footer-icon-link {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.footer-icon-link li {
  width: 32px;
  margin: 0 6px;
}

.footer-icon-link img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand {
  margin-top: 10px;
  padding: 0 20px 40px;
}

.footer-brand-ttl {
  margin: 0 0 10px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.footer-brand-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  transition: 0.2s;
}

.footer-brand-logo img {
  display: block;
  height: 24px;
  width: auto;
}

.footer-gym-name {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0;
}

.footer-copyright {
  margin: 0;
  border-top: 1px solid #566372;
  text-align: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 400;
}

@media (max-width: 439px) {
  .campaign-card {
    padding: 0 20px;
    gap: 4px;
  }

  .campaign-old {
    font-size: clamp(40px, 12.5vw, 52px);
  }

  .campaign-zero {
    font-size: clamp(64px, 20vw, 88px);
    margin-left: -4px;
  }

  .campaign-yen.is-red {
    margin-left: 2px;
  }
}

@media (min-width: 768px) {
  :root {
    --header: 70px;
  }

  .inner {
    padding: 0;
  }

  .header-bar {
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 6px 0 10px;
    height: 70px;
    min-height: 70px;
    max-height: none;
  }

  .header-logo {
    flex: 0 0 104px;
    width: 104px;
    height: 104px;
    padding: 6px 19px 8px;
    align-self: start;
    position: relative;
    z-index: 46;
  }

  .header-logo img {
    width: 66px;
    height: 90px;
  }

  .header-shop {
    display: block;
    margin: 0 0 0 20px;
    font-weight: 700;
    font-size: 16px;
    color: var(--muted);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .header-cta {
    flex: 0 0 200px;
    width: 200px;
    height: auto;
    font-size: 18px;
    margin: 0;
  }

  .menu-button {
    display: none;
  }

  .crumb {
    display: block;
    font-size: 14px;
    height: 31px;
    min-height: 31px;
    line-height: 31px;
    padding: 0;
    margin-top: -3px;
  }

  .hero {
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
    z-index: 0;
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    padding: 0;
    aspect-ratio: 1440 / 529;
    background: linear-gradient(164.19deg, rgb(80, 193, 193) 10.065%, rgb(212, 240, 240) 49.825%);
  }

  .hero-visual {
    overflow: hidden;
    z-index: 0;
  }

  .hero-bg {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: top center;
  }

  .hero-shot {
    width: calc(166.67 / 1440 * 100%);
    height: calc(126.75 / 529 * 100%);
    max-width: none;
  }

  .hero-shot-1 { left: calc(220 / 1440 * 100%); top: calc(54.91 / 529 * 100%); }
  .hero-shot-2 { left: calc(386.67 / 1440 * 100%); top: calc(44.93 / 529 * 100%); height: calc(125.75 / 529 * 100%); }
  .hero-shot-3 { left: calc(553.33 / 1440 * 100%); top: calc(32.95 / 529 * 100%); }
  .hero-shot-4 { left: calc(720 / 1440 * 100%); top: calc(21.97 / 529 * 100%); }
  .hero-shot-5 { left: calc(886.67 / 1440 * 100%); top: calc(10.99 / 529 * 100%); height: calc(125.75 / 529 * 100%); }
  .hero-shot-6 { left: calc(1053.33 / 1440 * 100%); top: calc(0.02 / 529 * 100%); }

  .hero-woman {
    position: absolute;
    left: calc(780 / 1440 * 100%);
    right: auto;
    top: 0;
    bottom: 0;
    width: calc(540 / 1440 * 100%);
    height: 100%;
    z-index: 3;
    overflow: visible;
    isolation: isolate;
    background: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-woman::before {
    content: "";
    position: absolute;
    left: 32%;
    right: 14%;
    top: 8%;
    bottom: -4%;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 52% 36% at 60% 16%, rgba(0, 0, 0, 0.28) 0%, transparent 72%),
      radial-gradient(ellipse 52% 48% at 58% 42%, rgba(0, 0, 0, 0.32) 0%, transparent 72%),
      radial-gradient(ellipse 42% 38% at 36% 78%, rgba(0, 0, 0, 0.24) 0%, transparent 70%),
      radial-gradient(ellipse 48% 32% at 52% 96%, rgba(0, 0, 0, 0.2) 0%, transparent 72%),
      radial-gradient(ellipse 50% 36% at 74% 58%, rgba(0, 0, 0, 0.22) 0%, transparent 72%);
    filter: blur(18px);
  }

  .hero .hero-woman-photo {
    display: block;
    position: absolute;
    top: -12%;
    left: auto;
    right: 0;
    width: auto;
    height: 122%;
    max-width: none;
    object-fit: unset;
    object-position: right top;
    z-index: 1;
  }

  .hero-woman-clip {
    display: none;
  }

  .hero-copy {
    position: absolute;
    left: calc(269 / 1440 * 100%);
    top: calc(200 / 529 * 100%);
    bottom: auto;
    width: calc(720 / 1440 * 100%);
    z-index: 2;
  }

  .hero-copy p,
  .hero-copy h1 {
    line-height: 1.16;
  }

  .hero-kicker {
    font-size: 3.79vw;
    line-height: 4.42vw;
  }

  .hero-slash {
    width: 139%;
    height: 14.21vw;
    min-height: 0;
    margin: -2.85vw 0 1.4vw calc((220 - 269) / 720 * 100%);
  }

  .hero-main {
    position: absolute;
    left: 4.2%;
    top: 33%;
    padding: 0;
    font-size: 6.16vw;
    line-height: 1;
    letter-spacing: -0.308vw;
  }

  .hero-copy .hero-sub {
    font-size: 3.32vw;
    line-height: 1.15;
    letter-spacing: 0.166vw;
    margin-top: 0;
  }

  .price-band {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    min-height: 159px;
    padding: 12px 0 10px;
  }

  .price-band-inner {
    width: fit-content;
    max-width: none;
    margin: 0 auto;
    grid-template-columns: 134px max-content max-content max-content;
    column-gap: 0;
    align-items: center;
    justify-content: center;
  }

  .price-label {
    margin-top: 0;
    gap: 7px;
  }

  .price-label span {
    width: 134px;
  }

  .price-label span:first-child {
    height: 43px;
    font-size: 27px;
  }

  .price-label span:last-child {
    height: 57px;
    font-size: 39px;
    padding-bottom: 0;
  }

  .price-main {
    grid-column: auto;
    grid-row: auto;
    font-size: 132px;
    line-height: 1.05;
    margin: -8px 18px 0 28px;
  }

  .price-unit {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    align-self: end;
    font-size: 43px;
    letter-spacing: 0.05em;
    padding-bottom: 28px;
    margin: 0;
  }

  .price-tax {
    grid-column: auto;
    grid-row: auto;
    align-self: end;
    font-size: 20px;
    text-align: left;
    padding-bottom: 36px;
    margin: 0;
  }

  .price-tax .num {
    font-size: 23px;
  }

  .campaign {
    padding: 32px 0 40px;
    min-height: 291px;
    box-sizing: border-box;
  }

  .campaign-inner.inner {
    width: 100%;
    max-width: 1100px;
    padding: 0;
  }

  .campaign h2 {
    font-size: 35px;
    margin: 0 0 28px;
  }

  .campaign-grid {
    display: grid;
    grid-template-columns: max-content 452px;
    gap: 31px;
    align-items: end;
    justify-content: center;
    max-width: none;
    margin: 0 auto;
  }

  .campaign-grid > .campaign-card {
    min-width: max-content;
  }

  .campaign-card {
    width: max-content;
    min-width: 483px;
    min-height: 147px;
    height: 147px;
    padding: 0 24px;
    gap: 8px;
    flex-wrap: nowrap;
    box-sizing: border-box;
    justify-content: center;
  }

  .campaign-from {
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 1.11;
  }

  .campaign-arrow {
    display: block;
    width: 17px;
    height: 28px;
  }

  .campaign-price {
    gap: 8px;
  }

  .campaign-price:has(.campaign-zero) {
    transform: translateY(-12px);
  }

  .campaign-old {
    font-size: 70px;
    line-height: 0.81;
    padding-right: 0.08em;
  }

  .campaign-old::after {
    background: var(--teal-mid);
    height: 5px;
    top: 48%;
  }

  .campaign-zero {
    font-size: 128px;
    line-height: 0.83;
    padding-right: 0.1em;
    margin-left: 0;
  }

  .campaign-yen {
    font-size: 27px;
    padding-bottom: 6px;
    margin-left: 6px;
  }

  .campaign-yen.is-red {
    font-size: 44px;
    padding-bottom: 8px;
    margin-left: 8px;
  }

  .campaign-grid > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .campaign-date {
    text-align: center;
    font-size: 27px;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
  }

  .campaign-date .num {
    font-size: 27px;
  }

  .campaign-date .num:nth-of-type(2),
  .campaign-date .num:nth-of-type(3) {
    font-size: 38px;
  }

  .campaign .cta-gold {
    width: 452px;
    max-width: 100%;
    min-height: 90px;
    font-size: 25px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 18px;
  }

  .campaign .cta img {
    width: 16px;
    height: 26px;
    flex-shrink: 0;
  }

  .store {
    padding: 37px 0 54px;
  }

  .store-layout {
    display: grid;
    grid-template-columns: 491px 465px;
    gap: 28px;
    justify-content: center;
    align-items: stretch;
  }

  .store-info {
    display: flex;
    flex-direction: column;
  }

  .store-head {
    order: 0;
    gap: 15px;
    margin-bottom: 42px;
  }

  .store-head h2 {
    font-size: 26px;
    letter-spacing: 0.05em;
  }

  .store-card {
    width: 491px;
    min-height: 544px;
    padding: 22px 6px 20px;
    overflow: visible;
  }

  .store-slider {
    order: 0;
    flex-shrink: 0;
    height: 292px;
    padding: 0 29px;
    overflow: visible;
  }

  .store-slider .slide {
    top: 0;
    bottom: 0;
    left: 29px;
    right: 29px;
  }

  .store-slider img {
    height: 100%;
    border-radius: 0;
  }

  .slider-nav {
    width: 17px;
    height: 27px;
  }

  .slider-nav img {
    width: 17px;
    height: 27px;
  }

  .slider-nav.prev {
    left: 0;
  }

  .slider-nav.next {
    right: 0;
  }

  .store-lead {
    order: 1;
    flex-shrink: 0;
    margin: 12px 0;
    padding: 0 29px;
    font-size: 20px;
    line-height: 32px;
  }

  .store-desc {
    order: 2;
    flex-shrink: 0;
    margin: 0;
    padding: 0 29px;
    font-size: 16px;
    line-height: 1.65;
  }

  .dots {
    order: 3;
    margin: 12px 0 0;
  }

  .store-dl {
    grid-template-columns: 72px 1fr;
    column-gap: 0;
    row-gap: 0;
    margin: 0;
  }

  .store-dl dt,
  .store-dl dd {
    padding: 0 0 22px;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }

  .store-dl dd {
    padding-left: 16px;
  }

  .store-dl dt:first-child {
    padding-top: 26px;
  }

  .store-dl dt:nth-child(1),
  .store-dl dd:nth-child(2),
  .store-dl dt:nth-child(3),
  .store-dl dd:nth-child(4) {
    border-bottom: 1px solid var(--white);
    margin-bottom: 22px;
  }

  .store-dl dt:nth-last-child(2),
  .store-dl dd:last-child {
    padding-bottom: 36px;
  }

  .store-map {
    height: 187px;
    margin-top: auto;
  }

  .about {
    padding: 64px 0 24px;
  }

  .about-kicker {
    font-size: 22px;
    letter-spacing: 0.05em;
  }

  .about-title-wrap {
    margin: 24px auto 34px;
  }

  .about-title-line {
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
    padding: 12px 28px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0.04em;
  }

  .about-title-line:first-child {
    padding-left: 36px;
    padding-right: 36px;
  }

  .about-title-line:last-child {
    margin-bottom: 0;
  }

  .circles {
    display: flex;
    max-width: 770px;
    margin: 0 auto 46px;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
  }

  .circle,
  .circle-menu,
  .circle-room,
  .circle-pro {
    width: 235px;
    max-width: 235px;
    flex: 0 0 235px;
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    margin-bottom: 0;
    z-index: auto;
  }

  .circle-face {
    width: 235px;
    height: 235px;
    aspect-ratio: 1 / 1;
    padding: 22px 14px 18px;
    border-width: 6px;
    box-shadow: 0 0 42px rgba(0, 0, 0, 0.15);
  }

  .circle-face img,
  .circle-menu .circle-face img {
    width: 100px;
    max-width: 100px;
    height: 92px;
    max-height: 92px;
    margin-bottom: 6px;
  }

  .circle-face span {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .circle-face b {
    font-size: 22px;
    line-height: 1.15;
  }

  .circle-pro .circle-face {
    padding: 20px 12px 16px;
  }

  .circle-pro .circle-face img {
    height: 86px;
    max-height: 86px;
    margin-bottom: 4px;
  }

  .circle-pro .circle-face b {
    font-size: 20px;
    line-height: 1.12;
    letter-spacing: 0.02em;
  }

  .about-block {
    display: grid;
    grid-template-columns: 478px minmax(0, 497px);
    grid-template-rows: auto 1fr;
    column-gap: 21px;
    row-gap: 16px;
    justify-content: space-between;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto 30px;
  }

  .about-photo {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .about-point {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    margin-left: 0;
    gap: 14px;
  }

  .about-desc {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    align-self: start;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0;
  }

  .about-photo img {
    height: 290px;
    border-radius: 0;
  }

  .about-point .num {
    width: 125px;
    min-width: 125px;
    height: 103px;
    border-radius: 0 59px 59px 0;
    font-size: 77px;
    justify-content: flex-start;
    padding: 0 24px 0 14px;
    overflow: hidden;
    transform: none;
  }

  .about-point h3 {
    font-size: 30px;
    font-weight: 900;
    line-height: 42px;
    letter-spacing: 0.05em;
  }

  .asagaya-card {
    display: grid;
    grid-template-columns: 477px minmax(0, 1fr);
    column-gap: 43px;
    align-items: center;
    box-sizing: border-box;
    max-width: 1000px;
    min-height: 353px;
    margin: 37px auto 0;
    padding: 17px 28px 17px 15px;
  }

  .asagaya-card > img {
    order: unset;
    width: 477px;
    max-width: 100%;
    height: 319px;
    border-radius: 0;
  }

  .asagaya-body {
    display: block;
    padding: 0;
  }

  .asagaya-body h3 {
    order: unset;
    margin: 0 0 18px;
    padding: 0;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0.05em;
  }

  .asagaya-body h3 em {
    font-size: 30px;
    font-weight: 700;
  }

  .tags {
    order: unset;
    gap: 10px 8px;
    justify-content: center;
    margin: 0 0 18px;
  }

  .tags span {
    font-size: 14px;
    padding: 8px 12px;
  }

  .asagaya-body p {
    order: unset;
    padding: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0;
  }

  .reviews {
    padding: 8px 0 56px;
  }

  .reviews-head {
    max-width: 1000px;
    margin: 0 auto 16px;
  }

  .reviews h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.05em;
  }

  .review-card {
    box-sizing: border-box;
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 46px 14px;
  }

  .review-score {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 38px;
    gap: 10px;
  }

  .stars img {
    width: 24px;
    height: 24px;
  }

  .review-track .slide {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .review-track .slide > article:nth-child(n + 2) {
    display: block;
  }

  .review-user {
    margin: 0 0 10px;
    font-size: 16px;
  }

  .review-user img {
    width: 45px;
    height: 48px;
  }

  .review-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0.05em;
  }

  .review-more {
    font-size: 14px;
  }

  .review-card .slider-nav {
    display: block;
    top: 50%;
    transform: translateY(-50%);
  }

  .review-card .slider-nav.prev {
    left: 22px;
  }

  .review-card .slider-nav.next {
    right: 22px;
  }

  .price-table {
    max-width: 583px;
    margin: 0 auto;
  }

  .price {
    padding: 37px 0 64px;
  }

  .price .en-title {
    font-size: 54px;
    letter-spacing: 0.02em;
    line-height: 55px;
    -webkit-text-stroke: 1.2px #50c1c1;
  }

  .price .ja-title {
    margin: 0 0 48px;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0.05em;
  }

  .price-row {
    grid-template-columns: 202px auto;
    column-gap: 24px;
    justify-content: space-between;
    align-items: start;
    padding: 28px 0 26px;
    margin: 0;
    min-height: 0;
    box-sizing: border-box;
    border-bottom-color: #d5e0e2;
  }

  .price-row:first-child {
    padding-top: 8px;
  }

  .price-row > div:first-child {
    width: 202px;
    text-align: center;
  }

  .price-row > div:last-child {
    text-align: right;
  }

  .pace {
    box-sizing: border-box;
    min-width: 202px;
    width: 202px;
    height: 44px;
    border: 2px solid #50c1c1;
    color: #50c1c1;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .member {
    margin: 16px 0 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: var(--ink);
    text-align: center;
  }

  .price-amount {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin: 0;
    font-size: 78px;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: var(--navy);
  }

  .price-amount span {
    display: inline-block;
    margin-left: 6px;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    color: var(--navy);
  }

  .price-incl {
    margin: 2px 0 0;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
  }

  .price-incl .num {
    font-style: normal;
    font-size: 26px;
    font-weight: 700;
  }

  .reasons {
    padding: 54px 0 72px;
    overflow: visible;
  }

  .reasons .en-title {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 1.2px rgba(79, 195, 183, 0.7);
    transform: none;
    font-style: italic;
  }

  .reasons .ja-title {
    margin: 3px 0 48px;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0;
    color: var(--ink);
  }

  .reason-row {
    display: grid;
    grid-template-columns: 484px minmax(0, 481px);
    gap: 33px;
    align-items: start;
    justify-content: space-between;
    max-width: 998px;
    margin: 0 auto 29px;
  }

  .reason-row.is-reverse {
    grid-template-columns: minmax(0, 499px) 483px;
    gap: 12px;
    direction: ltr;
  }

  .reason-row.is-reverse .reason-photo {
    order: 2;
  }

  .reason-row.is-reverse .reason-copy {
    order: 1;
  }

  .reason-photo img {
    height: 250px;
  }

  .reason-row.is-reverse .reason-photo img {
    height: 313px;
  }

  .reason-copy {
    font-size: 18px;
    line-height: 36px;
  }

  .point-head {
    max-width: 996px;
    width: 100%;
    margin: 0 auto 44px;
    min-height: 142px;
    padding: 0 48px 0 20px;
    gap: 20px;
    border-radius: 0 83px 83px 0;
  }

  .point-head.is-flip {
    border-radius: 83px 0 0 83px;
    padding: 0 20px 0 48px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .point-no small {
    font-size: 28px;
    line-height: 1;
    left: 0.28em;
  }

  .point-no b {
    font-size: 62px;
    line-height: 0.88;
  }

  .point-head h3 {
    font-size: 32.5px;
    letter-spacing: 0.05em;
    line-height: 50px;
  }

  .point-head h3 br {
    display: none;
  }

  .sp-br {
    display: none;
  }

  .compare {
    max-width: 998px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 34px 22px 40px;
    border-radius: 15px;
    min-height: 261px;
  }

  .compare-col {
    padding: 0 24px;
  }

  .compare-col + .compare-col {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid #d9d9d9;
  }

  .compare-col h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin: 0 0 16px;
    padding: 4px 12px;
    font-size: 20px;
    line-height: 1.4;
    border-width: 2.5px;
  }

  .compare-col p {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 36px;
    text-align: left;
  }

  .compare-col li {
    font-size: 20px;
    line-height: 1.5;
  }

  .checks {
    max-width: 998px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 29px 32px 36px;
    min-height: auto;
    gap: 15px;
  }

  .check {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 41px;
    align-items: center;
    gap: 20px;
  }

  .check img {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    margin-top: 0;
  }

  .reasons .point-head + .reason-row {
    margin-top: 0;
  }

  .reasons .compare + .point-head,
  .reasons .checks + .point-head {
    margin-top: 64px;
  }

  .trainers .en-title {
    font-size: 56px;
    line-height: 38px;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 0.7px #bfe8e6;
  }

  .trainers .ja-title {
    margin: 12px 0 45px;
    font-size: 40px;
    line-height: 38px;
    letter-spacing: 0;
    color: var(--white);
  }

  .trainer-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
  }

  .access {
    padding: 56px 0 72px;
    overflow: visible;
  }

  .access .en-title {
    font-size: 56px;
    line-height: 58px;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 1px rgba(79, 195, 183, 0.75);
    transform: none;
    font-style: italic;
  }

  .access .ja-title {
    margin: 0 0 72px;
    font-size: 40px;
    line-height: 58px;
    letter-spacing: 0.05em;
    color: var(--teal-deep);
  }

  .access-tabs {
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
  }

  .access-tabs button {
    min-height: 66px;
    padding: 12px 16px;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    border-radius: 12px 12px 0 0;
  }

  .access-line {
    max-width: 1000px;
    height: 6px;
    width: 100%;
    margin: 0 auto 62px;
  }

  .access-panel.is-active {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    gap: 35px;
  }

  .access-step {
    grid-template-columns: 304px minmax(0, 1fr);
    column-gap: 23px;
    row-gap: 0;
    align-items: start;
  }

  .access-step img {
    height: 224px;
  }

  .step-no {
    top: 17px;
    left: 17px;
    width: 41px;
    height: 41px;
    font-size: 20px;
  }

  .access-step h3 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: 0.05em;
  }

  .access-step p {
    font-size: 16px;
    line-height: 1.92;
    letter-spacing: 0.05em;
  }

  .access-tabs,
  .access-line,
  .access-panel.is-active {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq {
    padding: 58px 0 74px;
  }

  .faq .en-title {
    font-size: 56px;
    line-height: 53px;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 1px rgba(79, 195, 183, 0.75);
    transform: none;
    font-style: italic;
  }

  .faq .ja-title {
    margin: 4px 0 0;
    font-size: 40px;
    line-height: 53px;
    letter-spacing: 0.05em;
    color: var(--ink);
  }

  .faq-list {
    max-width: 597px;
    margin: 51px auto 0;
  }

  .faq-question {
    grid-template-columns: 50px 1fr 39px;
    gap: 8px;
    padding: 18px 0;
    font-size: 22px;
    line-height: 36px;
  }

  .faq-question .num {
    font-size: 33px;
    line-height: 1;
  }

  .faq-icon {
    width: 39px;
    height: 39px;
  }

  .faq-answer {
    margin: 0 0 20px;
    padding: 22px;
    font-size: 22px;
    line-height: 36px;
  }

  .faq-answer-panel {
    transition: grid-template-rows 0.6s ease;
  }

  .pilates {
    padding: 36px 0 64px;
  }

  .pilates-card {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 469px) minmax(0, 1fr);
    column-gap: 29px;
    row-gap: 0;
    padding: 24px 22px 29px 18px;
    align-items: start;
  }

  .pilates-card h2 {
    grid-column: 1 / -1;
    margin: 0 0 17px;
    padding-left: 15px;
    font-size: 47px;
    line-height: 59px;
    letter-spacing: 0;
  }

  .pilates-card > img {
    width: 469px;
    max-width: 100%;
    height: 242px;
    margin: 0;
    border-radius: 0;
  }

  .pilates-body {
    min-width: 0;
  }

  .pilates-body h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.05em;
  }

  .pilates-card .tags {
    margin: 0 0 16px;
    gap: 8px;
  }

  .pilates-card .tags span {
    min-height: 37px;
    padding: 0 16px;
    font-size: 17px;
    line-height: 1;
    border-radius: 18px;
  }

  .pilates-body p {
    font-size: 18px;
    line-height: 30px;
  }

  .pilates-cta {
    grid-column: 1 / -1;
    justify-self: center;
    width: 436px;
    max-width: 100%;
    min-height: 70px;
    height: 70px;
    margin-top: 36px;
    padding: 0 28px;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.02em;
    border-radius: 48px;
    gap: 14px;
    align-items: center;
  }

  .pilates-cta img {
    display: block;
    width: 15px;
    height: 25px;
    margin: 0;
    flex-shrink: 0;
  }

  .campaign-grid > *,
  .store-layout > *,
  .about-block > *,
  .asagaya-card > *,
  .access-step > *,
  .pilates-card > * {
    min-width: 0;
  }

  .site-footer .inner {
    padding: 20px 10px;
  }

  .footer-list {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-pc {
    display: block;
    flex: 0 1 auto;
  }

  .footer-sp {
    display: none;
  }

  .footer-text-link--max {
    flex: 0 1 20%;
  }

  .footer-text-link li {
    margin: 16px 0;
  }

  .footer-text-link a {
    display: inline;
    text-align: left;
    padding: 0;
    border: 0;
    letter-spacing: normal;
  }

  .footer-icon-link {
    margin: 0;
    width: 120px;
    flex: 0 1 auto;
    justify-content: space-between;
  }

  .footer-icon-link li {
    width: 40px;
    margin: 6px 10px;
  }

  .footer-brand {
    margin: 10px 0 20px;
    padding: 0;
  }

  .footer-brand-logos {
    gap: 18px;
  }

  .footer-brand-logo {
    width: auto;
    justify-content: center;
  }

  .footer-brand-logo img {
    height: 16px;
  }

  .footer-gym-name {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .footer-copyright {
    font-size: 12px;
    letter-spacing: normal;
  }
}

/* ACF: each slide owns its image, heading and description. */
.applegym-shop-detail .store-card { position: relative; }
.applegym-shop-detail .store-slides { display: grid; order: 0; }
.applegym-shop-detail .store-entry { grid-area: 1 / 1; min-width: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .45s ease; }
.applegym-shop-detail .store-entry.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.applegym-shop-detail .store-slider-controls { position: absolute; top: 22px; left: 0; right: 0; height: 235px; pointer-events: none; z-index: 2; }
.applegym-shop-detail .store-slider-controls button { pointer-events: auto; }
.applegym-shop-detail .store-layout--no-slides { grid-template-columns: minmax(0, 1fr); }
.applegym-shop-detail .store-map iframe { display: block; position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.applegym-shop-detail .store-map > p { margin: 0; }
.applegym-shop-detail .trainer-photo img { width: 100%; height: 100%; object-fit: cover; }
.applegym-shop-detail .trainer-comment { font-size: 14px; line-height: 1.7; }
.applegym-shop-detail .google-review { min-width: 0; }
@media (min-width: 768px) {
  .applegym-shop-detail .store-slider-controls { height: 292px; left: 6px; right: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .applegym-shop-detail .store-entry { transition: none; }
}

/* Original review-card HTML populated from the existing Google Reviews widget. */
.applegym-shop-detail [data-review-slider] .review-track { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
.applegym-shop-detail [data-review-slider] [hidden] { display: none !important; }
.applegym-shop-detail .review-item { min-width: 0; }
.applegym-shop-detail .review-item .review-user img { flex-shrink: 0; object-fit: cover; border-radius: 50%; }
.applegym-shop-detail .review-user a { color: inherit; overflow-wrap: anywhere; }
.applegym-shop-detail .review-card.is-enhanced .review-text:not(.is-open) { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden; }
.applegym-shop-detail .review-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.applegym-shop-detail .review-item-stars { display: inline-flex; gap: 2px; }
.applegym-shop-detail .review-item-stars svg { width: 14px; height: 14px; }
.applegym-shop-detail .review-score .stars svg { width: 24px; height: 24px; }
.applegym-shop-detail .review-attribution { margin-top: 16px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; font-size: 12px; color: var(--muted); }
.applegym-shop-detail .review-attribution img { max-width: 144px; height: auto; }
.applegym-shop-detail .review-attribution a { color: var(--teal-deep); text-decoration: underline; }
.applegym-shop-detail .review-card .screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media (min-width: 768px) {
  .applegym-shop-detail [data-review-slider] .review-track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}
