/* ==========================================================
   studio allez — style.css
   ========================================================== */
:root {
  --ink: #3c3a37;
  --ink-light: #6f6b66;
  --teal: #43a396;
  --teal-dark: #33847a;
  --teal-pale: #eaf5f3;
  --sand: #f7f4ee;
  --white: #ffffff;
  --line-green: #06c755;
  --line-green-dark: #05b34c;
  --border: #e5e0d8;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --en: "Jost", sans-serif;
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.9;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }
.sp-only { display: none; }
/* 行末に1〜2文字だけ残るのを防ぐ。文末のひとまとまりを丸ごと次行へ送る。
   画面幅に関係なく確実に効くので、日本語ではこれが最も堅い。
   ※ 折り返せなくなるので、囲むのは6文字程度までにすること */
.nowrap { white-space: nowrap; }
.pc-only { display: inline; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn--lg { padding: 18px 44px; font-size: 16px; }
.btn--line { background: var(--line-green); color: #fff; }
.btn--line:hover { background: var(--line-green-dark); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.85); backdrop-filter: blur(4px); }
.btn--white { background: #fff; color: var(--teal-dark); }
.btn--ghost-dark { background: #fff; color: var(--ink); border: 1px solid var(--border); }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header__logo { display: flex; flex-direction: column; line-height: 1.2; }
.header__logo-en { font-family: var(--en); font-size: 24px; font-weight: 500; letter-spacing: .12em; color: var(--ink); }
.header__logo-ja { font-size: 10.5px; letter-spacing: .18em; color: var(--ink-light); }
.gnav { display: flex; align-items: center; gap: 28px; }
.gnav__list { display: flex; gap: 26px; }
.gnav__list a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0; white-space: nowrap;
}
.gnav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.gnav__list a:hover::after { transform: scaleX(1); transform-origin: left; }
.gnav__cta { padding: 11px 26px; font-size: 14px; white-space: nowrap; }
.header__burger { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero__bg, .hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 22%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,40,38,.62) 0%, rgba(20,40,38,.38) 45%, rgba(20,40,38,.12) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto; width: 100%;
  padding: 140px 24px 40px;
  color: #fff;
}
.hero__kicker {
  font-family: var(--en); letter-spacing: .35em; font-size: 14px; font-weight: 400;
  margin-bottom: 20px; opacity: .95;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.55;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: .12em;
  margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero__place {
  font-size: 12.5px; letter-spacing: .1em; margin: -26px 0 36px;
  opacity: .9; text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__badges {
  position: relative; z-index: 2;
  display: flex; gap: 12px; justify-content: center;
  max-width: 1080px; margin: auto auto 0; width: 100%;
  padding: 48px 24px 36px;
}
.hero__badges li {
  flex: 1; max-width: 240px;
  background: rgba(255,255,255,.92);
  border-radius: 12px;
  text-align: center;
  padding: 14px 10px;
  line-height: 1.5;
}
.hero__badges strong { display: block; font-size: 16px; color: var(--teal-dark); letter-spacing: .06em; }
.hero__badges span { font-size: 12px; color: var(--ink-light); }

/* ---------- worries ---------- */
.worries { background: var(--sand); padding: 72px 0; }
.worries__intro {
  text-align: center; font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 26px); letter-spacing: .1em;
  margin-bottom: 36px;
}
.worries__list {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; max-width: 1000px; margin: 0 auto 40px;
}
.worries__list li {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 6px;
  text-align: center; font-size: 13.5px; font-weight: 500;
  position: relative; white-space: nowrap;
}
.worries__list li::before {
  content: "✓"; color: var(--teal); font-weight: 700; margin-right: 6px;
}
.worries__answer { text-align: center; font-size: clamp(16px, 2vw, 19px); letter-spacing: .06em; }
.worries__answer em { color: var(--teal-dark); font-weight: 700; border-bottom: 2px solid var(--teal); padding-bottom: 2px; }
.worries__quote {
  text-align: center; margin-top: 36px;
  font-family: var(--serif); font-size: clamp(17px, 2.2vw, 21px); letter-spacing: .1em;
}
.worries__quote span {
  display: block; margin-top: 8px;
  font-family: var(--sans); font-size: 12.5px; color: var(--ink-light); letter-spacing: .06em;
}
.worries__quote a { text-decoration: underline; }

/* ---------- sections ---------- */
.section { padding: 110px 0; }
.section__head { text-align: center; margin-bottom: 64px; }
.section__kicker {
  font-family: var(--en); color: var(--teal);
  letter-spacing: .32em; font-size: 13px; font-weight: 500;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 600; letter-spacing: .1em; line-height: 1.5;
  margin-bottom: 26px;
}
.section__lead {
  max-width: 820px; margin: 0 auto;
  font-size: 15.5px; color: var(--ink-light); letter-spacing: .04em;
  text-align: center;
}
.section__lead strong { color: var(--teal-dark); font-weight: 700; }

/* ---------- concept ---------- */
.concept__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.concept-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; color: var(--ink); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.concept-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(60,58,55,.14); }
.concept-card__img { aspect-ratio: 16/10; overflow: hidden; }
.concept-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.concept-card:hover .concept-card__img img { transform: scale(1.05); }
.concept-card__body { padding: 30px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.concept-card__en { font-family: var(--en); color: var(--teal); letter-spacing: .28em; font-size: 12px; margin-bottom: 8px; }
.concept-card__title { font-family: var(--serif); font-size: 23px; letter-spacing: .08em; margin-bottom: 14px; }
.concept-card__text { font-size: 14.5px; color: var(--ink-light); flex: 1; }
.concept-card__more {
  margin-top: 22px; font-size: 14px; font-weight: 700; color: var(--teal-dark);
  display: inline-flex; align-items: center; gap: 8px;
}
.concept-card__more::after { content: "→"; transition: transform .25s; }
.concept-card:hover .concept-card__more::after { transform: translateX(5px); }

/* ---------- features ---------- */
.features { background: var(--teal-pale); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature {
  background: #fff; border-radius: 16px; padding: 42px 34px;
  box-shadow: 0 4px 24px rgba(60,58,55,.05);
}
.feature__num {
  font-family: var(--en); font-size: 40px; font-weight: 300;
  color: var(--teal); line-height: 1; margin-bottom: 18px;
}
.feature__title { font-family: var(--serif); font-size: 21px; letter-spacing: .1em; margin-bottom: 14px; }
.feature__text { font-size: 14.5px; color: var(--ink-light); }

/* ---------- compare (乗り換え層向け) ---------- */
.compare__pains {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto 44px;
}
.compare__pains li {
  background: var(--sand); border-radius: 14px;
  padding: 28px 20px; text-align: center;
  font-size: 14.5px; font-weight: 500; line-height: 1.8;
  position: relative;
}
.compare__bridge {
  text-align: center; font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 24px); letter-spacing: .08em;
  margin-bottom: 40px;
}
.compare__bridge em { color: var(--teal-dark); font-weight: 700; }
.compare__table-wrap { overflow-x: auto; max-width: 900px; margin: 0 auto 48px; }
.compare__table {
  width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0;
  font-size: 14px;
}
.compare__table thead th {
  padding: 14px 16px; text-align: center; font-size: 14px; letter-spacing: .04em;
}
.compare__table .compare__col-other { color: var(--ink-light); font-weight: 500; }
.compare__table .compare__col-allez {
  background: var(--teal-dark); color: #fff;
  border-radius: 12px 12px 0 0; font-size: 15px;
}
.compare__table tbody th {
  width: 130px; text-align: left; font-weight: 700; font-size: 13.5px;
  padding: 16px 12px; border-bottom: 1px solid var(--border); white-space: nowrap;
}
.compare__table tbody td {
  padding: 16px 18px; border-bottom: 1px solid var(--border);
  text-align: center; line-height: 1.7;
}
.compare__table tbody td:nth-child(2) { color: var(--ink-light); }
.compare__table tbody td:nth-child(3) { background: var(--teal-pale); font-weight: 500; }
.compare__table tbody tr:last-child td:nth-child(3) { border-radius: 0 0 12px 12px; }
.compare__table tbody td strong { color: var(--teal-dark); }
/* ---------- pilates ---------- */
.pilates__feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 90px;
}
.pilates__feature-img { border-radius: 16px; overflow: hidden; }
.pilates__feature-img img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.pilates__feature-body h3 {
  font-family: var(--serif); font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: .08em; line-height: 1.6; margin-bottom: 20px;
}
.pilates__feature-body p { color: var(--ink-light); font-size: 15px; }
.compare__age {
  max-width: 860px; margin: 48px auto 0;
  background: var(--teal-pale); border-radius: 14px;
  padding: 28px; text-align: left;
  display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: center;
}
.compare__age-img { border-radius: 12px; overflow: hidden; }
.compare__age-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.compare__age-title {
  font-family: var(--serif); font-size: clamp(18px, 2.2vw, 22px);
  color: var(--teal-dark); letter-spacing: .08em; margin-bottom: 10px;
}
.compare__age-text { font-size: 14.5px; color: var(--ink-light); }
.pilates__machines-title {
  text-align: center; font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px); letter-spacing: .1em;
  margin-bottom: 44px;
}
.pilates__machines-title span {
  display: block; font-family: var(--en); font-size: 12px;
  letter-spacing: .32em; color: var(--teal); margin-bottom: 10px;
}
.machines { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.machine { background: #fff; }
.machine img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 12px; margin-bottom: 12px;
}
.machine figcaption { font-size: 12.5px; color: var(--ink-light); line-height: 1.7; }
.machine figcaption strong {
  display: block; font-size: 14.5px; color: var(--ink);
  letter-spacing: .04em; margin-bottom: 4px;
}

/* ---------- cta banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: #fff; padding: 72px 0; text-align: center;
}
.cta-banner__catch {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .12em; margin-bottom: 12px;
}
.cta-banner__text { font-size: 16px; margin-bottom: 32px; letter-spacing: .06em; }
.cta-banner__menu { display: block; font-size: 14.5px; opacity: .92; margin-bottom: 6px; }
.cta-banner__price { display: block; }
.cta-banner__price em { font-size: 2em; font-weight: 700; font-style: normal; font-family: var(--en); }
.cta-banner__sub { display: block; margin-top: 10px; font-size: 12.5px; opacity: .88; }
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner__scarcity { margin-top: 20px; font-size: 12.5px; letter-spacing: .08em; opacity: .9; }

/* ---------- hyperknife ---------- */
.hyperknife { background: var(--sand); }
.hk__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 48px; }
.hk-card {
  background: #fff; border-radius: 16px; padding: 30px;
  box-shadow: 0 4px 24px rgba(60,58,55,.05);
}
.hk-card__img { border-radius: 10px; overflow: hidden; margin-bottom: 22px; }
.hk-card__img img { width: 100%; aspect-ratio: 16/9.5; object-fit: cover; }
.hk-card__img img.is-lower { aspect-ratio: 4/3; object-position: center 60%; }
.hk-card h3 { font-family: var(--serif); font-size: 20px; letter-spacing: .08em; margin-bottom: 10px; }
.hk-card > p { font-size: 14.5px; color: var(--ink-light); margin-bottom: 14px; }
.hk-card ul li {
  font-size: 13.5px; padding: 5px 0 5px 24px; position: relative;
  border-bottom: 1px dashed var(--border);
}
.hk-card ul li::before { content: "✓"; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }
.hk__notes { margin-top: 0; }

/* ---------- price ---------- */
.price__trial { margin-bottom: 64px; }
.price__trial-label {
  text-align: center; font-family: var(--en); letter-spacing: .2em;
  color: var(--teal-dark); font-weight: 500; margin-bottom: 24px; font-size: 15px;
}
.price__trial-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.trial-card {
  background: linear-gradient(135deg, var(--teal-pale), #fdfcf9);
  border: 2px solid var(--teal); border-radius: 16px;
  padding: 34px 28px; text-align: center; position: relative;
}
.trial-card::before {
  content: "初回限定"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal-dark); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 18px; border-radius: 999px; letter-spacing: .1em;
}
.trial-card h3 { font-size: 16.5px; letter-spacing: .06em; margin-bottom: 14px; }
.trial-card h3 span {
  display: inline-block; margin-left: 8px; background: var(--ink); color: #fff;
  font-size: 12px; padding: 2px 10px; border-radius: 4px; vertical-align: middle;
}
.trial-card__price s { color: var(--ink-light); font-size: 17px; margin-right: 10px; }
.trial-card__price em { font-size: 36px; font-weight: 700; color: var(--teal-dark); font-family: var(--en); }
.trial-card__price span { font-size: 12px; color: var(--ink-light); }
.trial-card__memo { margin-top: 8px; font-size: 12px; color: var(--ink-light); }
.trial-card--set { background: linear-gradient(135deg, #e3f2ef, #fdfcf9); border-width: 3px; }
.price__admission {
  text-align: center; margin-top: 28px; font-size: 14.5px;
  letter-spacing: .04em;
}
.price__admission strong { color: var(--teal-dark); }

/* 料金2カラム */
.price__menus {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; margin-top: 64px;
}
.price__block-title {
  font-family: var(--serif); font-size: 19px; letter-spacing: .08em;
  border-bottom: 2px solid var(--ink); padding-bottom: 12px; margin-bottom: 4px;
}
.price__block-title span {
  font-family: var(--sans); font-size: 12px; color: var(--ink-light);
  font-weight: 500; margin-left: 10px; letter-spacing: .06em;
}
.price__table tr.price__cat th {
  background: var(--sand); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; color: var(--ink); padding: 12px;
}
.price__table td small {
  font-family: var(--sans); font-weight: 400; font-size: 11.5px;
  color: var(--ink-light); margin-left: 8px;
}
.price__notes { max-width: 1000px; margin: 40px auto 0; }
.price__notes li {
  font-size: 13px; color: var(--ink-light); line-height: 1.9;
  padding-left: 16px; position: relative;
}
.price__notes li::before { content: "※"; position: absolute; left: 0; }
.price__notes a { text-decoration: underline; }
.price__table-wrap { max-width: 820px; margin: 0 auto; }
.price__table { width: 100%; border-collapse: collapse; background: #fff; }
.price__table caption {
  font-family: var(--serif); font-size: 19px; letter-spacing: .1em;
  margin-bottom: 18px; text-align: center;
}
.price__table th, .price__table td {
  border-bottom: 1px solid var(--border);
  padding: 17px 12px; font-size: 15px; text-align: left;
}
.price__table tr:first-child th, .price__table tr:first-child td { border-top: 2px solid var(--ink); }
.price__table th { font-weight: 500; }
.price__table td { text-align: right; font-weight: 700; white-space: nowrap; font-family: var(--en); font-size: 16.5px; }
.price__note { margin-top: 20px; font-size: 13px; color: var(--ink-light); }
.price__note a { text-decoration: underline; }

/* ---------- flow ---------- */
.flow { background: var(--sand); }
.flow__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.flow__step {
  background: #fff; border-radius: 14px; padding: 30px 24px;
  position: relative; box-shadow: 0 4px 24px rgba(60,58,55,.05);
}
.flow__step span {
  font-family: var(--en); font-size: 12px; letter-spacing: .22em;
  color: var(--teal); font-weight: 500;
}
.flow__step h3 { font-family: var(--serif); font-size: 18px; letter-spacing: .06em; margin: 8px 0 10px; }
.flow__step p { font-size: 13.5px; color: var(--ink-light); }

/* ---------- results (before/after) ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 8px; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(60,58,55,.15);
  color: var(--teal-dark); font-size: 26px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
  padding-bottom: 4px;
}
.carousel__btn:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 6px 20px rgba(60,58,55,.22); }
.carousel__btn--prev { left: -20px; }
.carousel__btn--next { right: -20px; }
.results__grid { gap: 26px; }
.results__grid .result { flex: 0 0 calc((100% - 52px) / 3); scroll-snap-align: start; }
.result {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.result img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.result img.is-contain { object-fit: contain; background: #fff; }
.result figcaption { padding: 16px 18px 18px; line-height: 1.6; }
.result figcaption strong {
  display: block; font-size: 15px; letter-spacing: .06em; margin-bottom: 2px;
}
.result figcaption span { font-size: 12.5px; color: var(--ink-light); }
.results__note { margin-top: 28px; text-align: center; font-size: 12.5px; color: var(--ink-light); }
.swipe-hint { display: none; }

/* ---------- voice ---------- */
.voice { background: var(--sand); }
.voice__grid { gap: 24px; }
.voice__grid .voice-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.voice-card {
  background: #fff; border-radius: 14px; padding: 26px 26px 22px;
  box-shadow: 0 4px 24px rgba(60,58,55,.05);
  display: flex; flex-direction: column;
}
.voice-card__stars { color: #f0b429; font-size: 15px; letter-spacing: .2em; margin-bottom: 12px; }
.voice-card__text { font-size: 13.5px; color: var(--ink-light); line-height: 1.9; flex: 1; }
.voice-card__name {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--border);
  font-size: 12.5px; color: var(--ink); font-weight: 500; text-align: right;
}
.voice__more { text-align: center; margin-top: 36px; }
.voice__more a { font-size: 14px; font-weight: 700; text-decoration: underline; }

/* ---------- about ---------- */
.about__inner { display: grid; grid-template-columns: 5fr 6fr; gap: 56px; align-items: start; }
.about__img { position: sticky; top: calc(var(--header-h) + 24px); border-radius: 16px; overflow: hidden; }
.about__img img { width: 100%; object-fit: cover; }
.about__text p { margin-bottom: 22px; font-size: 15.5px; color: var(--ink-light); }
.about__sign { text-align: right; color: var(--ink) !important; margin-top: 30px; }
.about__sign em {
  font-family: var(--serif); font-size: 22px; margin-left: 14px;
  letter-spacing: .14em;
}

/* ---------- instructor ---------- */
.instructor { background: var(--teal-pale); }
.instructor__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px; max-width: 860px; margin: 0 auto;
}
.profile { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(60,58,55,.06); }
.profile__img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top; }
.profile__name {
  font-family: var(--serif); font-size: 21px; letter-spacing: .12em;
  padding: 26px 30px 4px;
}
.profile__name span {
  display: block; font-family: var(--en); font-size: 12.5px;
  letter-spacing: .18em; color: var(--teal-dark); margin-top: 6px;
}
.profile__quals { padding: 14px 30px 18px; }
.profile__quals li {
  font-size: 13.5px; color: var(--ink-light); padding: 6px 0 6px 20px;
  border-bottom: 1px dashed var(--border); position: relative;
}
.profile__quals li::before { content: "◆"; position: absolute; left: 0; font-size: 9px; top: 11px; color: var(--teal); }

/* ---------- faq ---------- */
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item dt {
  font-weight: 700; font-size: 16px; padding: 24px 44px 24px 40px;
  position: relative; cursor: pointer; letter-spacing: .04em;
}
.faq__item dt::before {
  content: "Q"; position: absolute; left: 0; top: 22px;
  font-family: var(--en); font-size: 20px; color: var(--teal);
}
.faq__item dt::after {
  content: "+"; position: absolute; right: 8px; top: 22px;
  font-size: 24px; font-weight: 300; color: var(--teal);
  transition: transform .3s;
}
.faq__item.is-open dt::after { transform: rotate(45deg); }
.faq__item dd {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  padding: 0 8px 0 40px; color: var(--ink-light); font-size: 14.5px; position: relative;
}
.faq__item dd::before {
  content: "A"; position: absolute; left: 0; top: -2px;
  font-family: var(--en); font-size: 20px; color: #c9a56a; opacity: 0;
  transition: opacity .3s;
}
.faq__item.is-open dd { padding-bottom: 26px; }
.faq__item.is-open dd::before { opacity: 1; }

/* ---------- access ---------- */
.access__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.access__img { border-radius: 14px; overflow: hidden; margin-bottom: 28px; }
.access__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.access__table { width: 100%; border-collapse: collapse; }
.access__table th, .access__table td {
  border-bottom: 1px solid var(--border); padding: 14px 8px;
  font-size: 14.5px; text-align: left; vertical-align: top;
}
.access__table th { width: 108px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.access__table td { color: var(--ink-light); }
.access__table small { font-size: 12.5px; }
.access__map { position: sticky; top: calc(var(--header-h) + 24px); }
.access__map iframe {
  width: 100%; height: 440px; border: 0; border-radius: 14px;
  display: block; margin-bottom: 14px;
}
.access__maplink { font-size: 13.5px; text-decoration: underline; }

/* ---------- footer ---------- */
.cta-banner--footer { background: linear-gradient(120deg, #2e6e66, var(--teal-dark)); }
.footer { background: #2b2a28; color: #d8d4cd; padding: 64px 0 0; }
.footer__inner {
  display: flex; justify-content: space-between; gap: 40px;
  flex-wrap: wrap; padding-bottom: 48px;
}
.footer__logo { font-family: var(--en); font-size: 26px; letter-spacing: .14em; color: #fff; }
.footer__sub { font-size: 12.5px; margin: 6px 0 18px; opacity: .8; }
.footer__addr { font-size: 13.5px; line-height: 2; }
.footer__addr a { color: #d8d4cd; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 36px; align-content: start; }
.footer__nav a { color: #d8d4cd; font-size: 13.5px; }
.footer__nav a:hover { color: #fff; }
.footer__copy {
  text-align: center; font-size: 11.5px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12); opacity: .7;
  font-family: var(--en); letter-spacing: .1em;
}

/* ---------- floating cta ---------- */
.float-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  transform: translateY(110%); transition: transform .35s;
}
.float-cta.is-visible { transform: translateY(0); }
.float-cta .btn { flex: 1; padding: 13px 10px; font-size: 14px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* 中間幅(タブレット・小型ノート): navが収まらないためハンバーガーに切替 */
@media (max-width: 1120px) {
  /* backdrop-filterはfixed子要素(全画面メニュー)の基準を歪めるため無効化 */
  .header { backdrop-filter: none; background: rgba(255,255,255,.97); }
  .header__burger {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
    align-items: center; z-index: 102;
  }
  .header__burger span {
    display: block; width: 24px; height: 2px; background: var(--ink);
    transition: transform .3s, opacity .3s;
  }
  .header__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .header__burger.is-open span:nth-child(2) { opacity: 0; }
  .header__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .gnav {
    position: fixed; inset: 0; background: #faf8f4;
    flex-direction: column; justify-content: center; gap: 36px;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
    z-index: 101;
  }
  .gnav.is-open { opacity: 1; visibility: visible; }
  .gnav__list { flex-direction: column; text-align: center; gap: 20px; }
  .gnav__list a { font-size: 17px; }
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1024px) {
  .machines { grid-template-columns: repeat(3, 1fr); }
  .flow__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .compare__pains { grid-template-columns: 1fr; gap: 10px; max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 32px; }
  .compare__pains li { padding: 14px 16px; font-size: 13px; line-height: 1.7; }
  body { font-size: 14.5px; }
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 32px; }
  .section__title { font-size: 24px; margin-bottom: 18px; }
  /* 見出し・キッカーが中央なので、リード文も中央に揃える。
     左揃えだと最終行の長さがまちまちで、中央の見出しの下に左寄せの塊が
     ぶら下がって見える（実機で違和感が出たため左揃えをやめた） */
  .section__lead { text-align: center; font-size: 14px; }

  /* ---- 日本語の改行最適化 ----
     text-wrap: balance / pretty は使わない。
     Safari 26 の pretty は「段落全体を評価して、最大幅より手前で折り返す」
     実装（rag を揃えるため）。英語は単語区切りでしか折り返せないので自然だが、
     日本語は任意の文字位置で折り返せるため、全行が短く詰められて
     「幅が余っているのに左に寄っている」状態になる。balance も同様に
     日本語見出しで不自然な位置に改行を入れる。
     代わりに word-break: auto-phrase で文節単位の改行にする。
     Chrome 119+ が BudouX で判定（<html lang="ja"> が前提）。
     Safari は Technology Preview 246 で実装中なので、対応すれば自動で効く。
     長い本文には掛けない（右端の余白が目立つため）。見出し・短文のみ。 */
  .hero__title, .section__title, .feature__title, .concept-card__title,
  .pilates__machines-title, .price__block-title, .profile__name,
  .voice-card__name, .worries__answer, .compare__age-text,
  .cta-banner__catch, .cta-banner__menu, .cta-banner__sub,
  .machine figcaption strong { word-break: auto-phrase; }

  /* 本文にも拡大。語中割れ（「リフォー／マー」「柔軟性／向上」等）は
     日本語の既定挙動で、手作業では潰しきれない（実測で全幅17件＋幅依存38件）。
     文節単位で折り返す auto-phrase が唯一の体系的な解。
     比較表だけは1行4文字程度しか入らず、文節送りで余白が目立つので除外する。 */
  p, li, dd, dt, figcaption, small, blockquote { word-break: auto-phrase; }
  .compare__table th, .compare__table td { word-break: normal; }

  /* 字間を詰めて1行に入る文字数を増やす（熟語が割れる確率が下がる） */
  .hero__title { letter-spacing: .02em; }
  .section__title { letter-spacing: .04em; }
  .feature__title { letter-spacing: .04em; }
  .cta-banner__catch { letter-spacing: .04em; }
  .section__lead br { display: none; }
  .section__lead br.sp-only { display: inline; }

  .header__logo-en { font-size: 20px; }

  /* hero */
  .hero { min-height: 88vh; }
  .hero__content { padding-top: 110px; }
  .hero__place { font-size: 10.5px; letter-spacing: .04em; margin: -20px 0 28px; }
  .hero__cta .btn { width: 100%; }
  .hero__badges { flex-direction: row; gap: 8px; padding: 32px 16px 28px; }
  .hero__badges li { padding: 12px 4px; border-radius: 10px; }
  /* 字間.06emのままだと8文字で101.8px、カラム幅101pxをわずかに超えて
     「完全マンツーマ／ン」と1文字だけ落ちる。字間を0にして96pxに収める */
  .hero__badges strong { font-size: 12px; letter-spacing: 0; }
  .hero__badges span { font-size: 10px; }

  /* お悩み: 2列コンパクト表示 */
  .worries { padding: 56px 0; }
  .worries__intro { margin-bottom: 24px; }
  .worries__list { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
  .worries__list li {
    text-align: left; padding: 9px 10px;
    font-size: 12px; line-height: 1.5;
    display: flex; align-items: center;
  }
  .worries__list li::before { margin-right: 5px; }
  .worries__quote { margin-top: 26px; }

  .concept__cards { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }

  /* 比較表: PCと同じ3列のまま390px幅に収める */
  .compare__table-wrap { overflow: visible; }
  .compare__table { min-width: 0; }
  .compare__table thead th { padding: 12px 4px; font-size: 11px; letter-spacing: 0; vertical-align: middle; }
  .compare__table .compare__col-allez { font-size: 11.5px; border-radius: 10px 10px 0 0; padding: 12px 4px; }
  .compare__table tbody th {
    width: 23%; white-space: normal;
    padding: 12px 4px; font-size: 10.5px; line-height: 1.5;
  }
  .compare__table tbody td {
    padding: 12px 6px; font-size: 11px; line-height: 1.6;
  }
  .compare__table tbody tr:last-child td:nth-child(3) { border-radius: 0 0 10px 10px; }
  .compare__age { grid-template-columns: 1fr; gap: 18px; padding: 20px; text-align: center; }
  .compare__age-img { max-width: 240px; margin: 0 auto; }
  .pilates__feature { grid-template-columns: 1fr; gap: 28px; }
  .machines { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* 2列で1行12文字程度しか入らず、左揃えだと右端のギザギザが目立つ。
     中央揃えにして画像の下で左右対称に見せる */
  .machine figcaption { text-align: center; }
  .machine figcaption strong { font-size: 13px; letter-spacing: 0; }
  .hk__grid { grid-template-columns: 1fr; }
  .price__trial-cards { grid-template-columns: 1fr; }
  .price__menus { grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
  /* ビフォーアフター・お客様の声: 1枚ずつの横スワイプに */
  .carousel__btn { display: none; }
  .results__grid, .voice__grid {
    gap: 14px; margin: 0 -24px; padding: 4px 24px 12px;
    -webkit-overflow-scrolling: touch;
  }
  .results__grid .result, .voice__grid .voice-card { flex: 0 0 82%; scroll-snap-align: center; }
  .swipe-hint {
    display: block; text-align: center; margin-bottom: 14px;
    font-size: 11.5px; color: var(--ink-light); letter-spacing: .1em;
  }
  .swipe-hint::after { content: " →"; }
  .flow__steps { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__img { position: static; }
  .instructor__grid { grid-template-columns: 1fr; }
  /* 375pxだと「BESJ コンプリヘンシブインストラクター」が約250pxで、
     使える幅247pxをわずかに超えて「…インストラクタ／ー」と1文字落ちる。
     左右の余白を30px→22pxに詰めて収める */
  .profile__quals { padding: 14px 22px 18px; }
  .access__grid { grid-template-columns: 1fr; }
  .access__map { position: static; }
  .access__map iframe { height: 320px; }
  .footer__inner { flex-direction: column; }

  .float-cta { display: flex; }
  body { padding-bottom: 0; }
}

/* ==========================================================
   News / Blog (下層ページ)
   ========================================================== */
.subpage { background: var(--white); }
.news-page { padding-top: calc(var(--header-h) + 56px); min-height: 70vh; }
.news-list { border-top: 1px solid var(--border); }
.news-item {
  display: grid; grid-template-columns: 96px 84px 1fr;
  gap: 16px; align-items: center;
  padding: 20px 8px; border-bottom: 1px solid var(--border);
  color: var(--ink); transition: background .2s;
}
.news-item:hover { background: var(--sand); }
.news-item__date { font-family: var(--en); font-size: 13.5px; color: var(--ink-light); letter-spacing: .06em; }
.news-item__cat {
  display: inline-block; text-align: center;
  background: var(--teal-pale); color: var(--teal-dark);
  font-size: 11.5px; font-weight: 700; border-radius: 999px;
  padding: 3px 10px; letter-spacing: .06em;
}
.news-item__title { font-size: 15px; font-weight: 500; line-height: 1.7; }
.news-list__loading, .news-list__empty {
  padding: 48px 0; text-align: center; color: var(--ink-light); font-size: 14.5px;
}
.news-list__empty a { text-decoration: underline; }
.news-page__archive { margin-top: 32px; text-align: center; font-size: 13px; color: var(--ink-light); }
.news-page__archive a { text-decoration: underline; }

/* 記事ページ */
.article__head { margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.article__meta { font-size: 13px; color: var(--ink-light); margin-bottom: 10px; }
.article__title { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); letter-spacing: .06em; line-height: 1.6; }
.article__body { font-size: 15.5px; line-height: 2.1; color: var(--ink); }
.article__body h2, .article__body h3 { font-family: var(--serif); margin: 1.6em 0 .6em; letter-spacing: .06em; }
.article__body p { margin-bottom: 1.2em; }
.article__body img { border-radius: 12px; margin: 1em 0; height: auto; }
.article__body a { text-decoration: underline; }
.article__back { margin-top: 48px; text-align: center; }
.article__back a { font-weight: 700; }
.gnav--simple { position: static !important; opacity: 1 !important; visibility: visible !important; flex-direction: row !important; background: none !important; }
.gnav--simple .gnav__list { flex-direction: row !important; }
.gnav--simple .gnav__list a { font-size: 14px !important; }

@media (max-width: 768px) {
  .news-item { grid-template-columns: 80px 1fr; gap: 8px 12px; padding: 16px 4px; }
  .news-item__cat { grid-column: 2; justify-self: start; }
  .news-item__title { grid-column: 1 / -1; }
  .gnav--simple .gnav__cta { display: none; }
}

/* newsサムネイル */
.news-item { grid-template-columns: 120px 1fr; }
.news-item__thumb { width: 120px; height: 90px; object-fit: cover; border-radius: 10px; }
.news-item__thumb--empty { display: block; background: var(--teal-pale); }
.news-item__body { display: block; }
.news-item__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 4px; }
.article__eyecatch { width: 100%; border-radius: 14px; margin-top: 20px; }
@media (max-width: 768px) {
  .news-item { grid-template-columns: 96px 1fr; gap: 12px; }
  .news-item__thumb { width: 96px; height: 72px; }
}

/* ---------- blog: filter / breadcrumb / pager ---------- */
.breadcrumb { font-size: 12px; color: var(--ink-light); margin-bottom: 28px; letter-spacing: .04em; }
.breadcrumb a { color: var(--ink-light); text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: var(--border); }
.breadcrumb [aria-current] { color: var(--ink); }

.news-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.news-filter__chip {
  border: 1px solid var(--border); background: #fff; color: var(--ink-light);
  font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 999px;
  cursor: pointer; transition: all .2s; font-family: var(--sans);
}
.news-filter__chip:hover { border-color: var(--teal); color: var(--teal-dark); }
.news-filter__chip.is-active { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }

.article__body { font-size: 15.5px; line-height: 2.05; color: var(--ink); }
.article__body p { margin-bottom: 1.1em; }
.article__body br + br { display: none; }
.article__body div { margin: 1em 0; text-align: center; }
.article__body img { display: inline-block; max-width: 100%; height: auto; border-radius: 12px; }
.article__body a { color: var(--teal-dark); text-decoration: underline; }
.article__body h2 { font-family: var(--serif); font-size: 21px; letter-spacing: .04em; margin: 1.8em 0 .7em; padding-left: 14px; border-left: 4px solid var(--teal); line-height: 1.6; }
.article__body h3 { font-family: var(--serif); font-size: 18px; margin: 1.5em 0 .6em; }
.article__body strong { font-weight: 700; }

.article__pager { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; }
.article__pager-link {
  flex: 1; max-width: 48%; padding: 16px 20px; border: 1px solid var(--border);
  border-radius: 12px; font-size: 13px; color: var(--ink); line-height: 1.6;
  transition: background .2s; overflow: hidden; display: block;
}
.article__pager-link:hover { background: var(--sand); }
.article__pager-link span { display: block; font-size: 11px; color: var(--teal-dark); font-weight: 700; margin-bottom: 4px; letter-spacing: .06em; }
.article__pager-next { text-align: right; margin-left: auto; }

@media (max-width: 768px) {
  .article__pager { flex-direction: column; }
  .article__pager-link { max-width: 100%; }
  .article__pager-next { text-align: left; }
  .article__body { font-size: 15px; }
}

/* サブページ(ブログ)ヘッダーのモバイル調整 */
.subpage .header__logo-en { white-space: nowrap; }
@media (max-width: 768px) {
  .gnav--simple { gap: 12px; }
  .gnav--simple .gnav__list { gap: 14px; }
  .gnav--simple .gnav__list a { font-size: 12px !important; white-space: nowrap; }
  .gnav--simple .gnav__cta { display: none; }
  .news-page { padding-top: calc(var(--header-h) + 32px); }
}
@media (max-width: 420px) {
  .gnav--simple .gnav__list li:nth-child(2) { display: none; }
}


/* ---------- news-latest (トップの新着ブログ) ---------- */
.news-latest { background: var(--sand); }
.news-latest .news-list { border-top: 1px solid var(--border); }
.news-latest__more { text-align: center; margin-top: 36px; }

/* インストラクターのInstagramリンク */
.profile__insta {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 30px 26px; padding: 8px 16px;
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--ink); font-size: 13px; font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.profile__insta:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }
.profile__insta svg { flex-shrink: 0; }
