:root {
  --navy: #12303b;
  --navy-deep: #0d2732;
  --teal: #0b7c78;
  --ink: #243c45;
  --muted: #607078;
  --line: #d7dddc;
  --paper: #f8f6f0;
  --mist: #f0f4f5;
  --white: #ffffff;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

figure {
  margin: 0;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 82px;
  padding: 0 4vw;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
}

.brand img {
  display: block;
  height: 42px;
  width: auto;
}

.brand-main {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-sub {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-top: 5px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  padding: 0 4px;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.header-cta {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  justify-self: end;
  padding: 13px 25px;
}

.hero {
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(8.333% - 1px),
    rgba(18, 48, 59, 0.055) calc(8.333% - 1px),
    rgba(18, 48, 59, 0.055) 8.333%
  );
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 82px);
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(46px, 7vw, 112px);
}

.eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  margin: 0 0 24px;
}

.hero h1 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 3.9vw, 56px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.42;
  margin: 0;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:first-child,
.hero h1 span:nth-child(2) {
  color: var(--navy);
}

.hero h1 span:last-child {
  color: var(--teal);
}

.hero-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 2.05;
  margin: 30px 0 0;
  max-width: 520px;
}

.hero-actions {
  margin-top: 36px;
}

.hero-actions > p {
  color: var(--muted);
  font-size: 12px;
  margin: 12px 0 0;
}

/* ===== 期間限定キャンペーンバッジ ===== */
.campaign-badge {
  background: #edf4f2;
  border: 1px solid var(--teal);
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
  padding: 14px 22px 15px;
}

.campaign-badge-label {
  background: var(--teal);
  color: var(--white);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  padding: 4px 10px;
}

.campaign-badge-main {
  align-items: flex-start;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 700;
  gap: 2px;
  margin: 0;
}

.campaign-badge-strike {
  color: var(--muted);
  font-weight: 600;
  text-decoration: line-through;
}

.campaign-badge-arrow {
  color: var(--teal);
  font-weight: 700;
}

.campaign-badge-main strong {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.button {
  align-items: center;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 36px;
  justify-content: space-between;
  min-width: 280px;
  padding: 17px 22px 17px 25px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.button-light:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.hero-visual {
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-visual-label {
  align-items: center;
  bottom: 0;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px 30px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.hero-visual::after {
  background: linear-gradient(to top, rgba(7, 28, 37, 0.72), transparent 26%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-visual-label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.hero-visual-label strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(6vw, 32px);
}

.trust-strip div {
  align-items: baseline;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 25px 20px;
}

.trust-strip div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 120px max(6vw, 32px);
}

.section-heading {
  margin: 0 auto 60px;
  max-width: 760px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.breath-intro h2,
.final-cta h2,
.greeting-card h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
  margin: 0;
}

.section-heading > p:last-child,
.breath-intro > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
  margin: 24px 0 0;
}

.concerns-section {
  background: var(--paper);
}

.concern-layout {
  align-items: stretch;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  margin: 0 auto;
  max-width: var(--content);
}

.concern-photo {
  margin: 0;
  min-height: 100%;
}

.concern-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.concern-grid {
  border-top: 1px solid var(--navy);
  display: grid;
  grid-template-columns: 1fr;
}

.concern-card {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 46px 1fr;
  min-height: 98px;
  padding: 20px 26px;
}

.concern-card span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 15px;
}

.concern-card p {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0;
}

.breath-section {
  background: var(--white);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.breath-intro {
  align-self: start;
}

.breath-figure {
  border: 1px solid var(--line);
  margin: 32px 0 0;
}

.breath-figure img {
  display: block;
  height: auto;
  width: 100%;
}

.breath-grid {
  border-top: 1px solid var(--navy);
}

.breath-grid article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 48px 1fr;
  padding: 29px 4px;
}

.breath-grid article span,
.reason-card > span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 15px;
}

.breath-grid h3,
.reason-card h3,
.step-list h3,
.flow-copy h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 12px;
}

.breath-grid p,
.reason-card p,
.step-list p,
.flow-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  margin: 0;
}

.breath-grid article > span {
  grid-row: 1 / span 2;
}

.statement {
  background: var(--navy);
  color: var(--white);
  grid-column: 1 / -1;
  padding: 35px 42px;
  text-align: center;
}

.statement p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}

.statement strong {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 600;
}

.reasons-section {
  background: var(--mist);
}

.reason-grid {
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: var(--content);
}

.reason-card {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-height: 360px;
  padding: 42px 35px;
}

.reason-card h3 {
  font-size: 24px;
  margin: 48px 0 17px;
}

.reason-card p {
  font-size: 15px;
}

.center-cta {
  margin: 42px auto 0;
  width: max-content;
}

.program-section {
  background: var(--paper);
}

.flow-list {
  display: grid;
  gap: 72px;
  margin: 0 auto;
  max-width: var(--content);
}

.flow-step {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 1fr;
}

/* 偶数ステップは写真を右に（ジグザグ） */
.flow-step:nth-child(even) .flow-photo {
  order: 2;
}

.flow-photo {
  margin: 0;
  overflow: hidden;
}

.flow-photo img {
  aspect-ratio: 16 / 11;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.flow-num {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.flow-copy h3 {
  margin-top: 14px;
}

.reviews-section {
  background: #f8f9fa;
}

.review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: var(--content);
}

/* カルーセルドット */
.review-dots {
  display: none;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.review-dot {
  background: rgba(0,0,0,0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: background .2s;
  width: 10px;
}

.review-dot.active {
  background: #4285f4;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  color: var(--ink);
  padding: 22px 24px 24px;
}

/* ヘッダー：Gアイコン＋名前 */
.review-header {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.review-avatar {
  display: none;
}

.review-g-icon {
  flex-shrink: 0;
  order: -1;
}

.review-meta {
  flex: 1;
}

.review-source {
  color: #70757a;
  font-size: 12px;
  margin: 2px 0 0;
}

.stars {
  color: #fbbc04;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin: 2px 0 16px;
}

.review-card blockquote {
  color: #3c4043;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.review-name {
  color: #70757a;
  font-size: 13px;
  font-weight: 600;
  margin: 20px 0 0;
}

.trainers-section {
  background: var(--white);
}

.trainers-layout {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.4fr 1fr;
  margin: 0 auto;
  max-width: var(--content);
}

.trainer-intro {
  align-self: start;
  position: sticky;
  top: 128px;
}

.portrait-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.portrait-grid figure {
  background: var(--mist);
  border: 1px solid var(--line);
  margin: 0 -1px -1px 0;
}

.portrait-grid img {
  aspect-ratio: 1 / 1.04;
  filter: saturate(0.86);
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.portrait-grid figcaption {
  background: var(--white);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.portrait-grid figcaption strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
}

.portrait-grid figcaption span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.greeting-section {
  background: var(--paper);
}

.greeting-card {
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 390px 1fr;
  margin: 0 auto;
  max-width: 1060px;
}

.greeting-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.greeting-card > div {
  padding: 60px 62px;
}

.greeting-card h2 {
  font-size: 44px;
}

.greeting-card > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.greeting-card > div > strong {
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  margin-top: 25px;
}

.price-section {
  background: var(--white);
}

.price-blocks {
  display: grid;
  gap: 40px;
  margin: 0 auto;
  max-width: var(--content);
}

.price-block-label {
  border-left: 3px solid var(--teal);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  padding-left: 12px;
}

.price-grid {
  border-left: 1px solid var(--line);
  display: grid;
  margin: 0;
}

.price-grid-1 {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.price-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.price-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 40px 30px;
  text-align: center;
}

.price-card.trial {
  background: #edf4f2;
  border: 2px solid var(--teal);
  padding-top: 56px;
  position: relative;
}

.trial-ribbon {
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  position: absolute;
  top: 0;
}

.trial-was {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: line-through;
}

.price-card > p:first-child {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
}

.price-card strong {
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.3;
}

.price-card.trial strong {
  color: var(--teal);
}

.price-card small {
  font-size: 20px;
  margin-right: 3px;
}

.price-card small.per {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  margin-left: 4px;
  margin-right: 0;
}

/* 初回体験カード */
.trial-label {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}

.trial-main {
  color: var(--teal);
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 4.4vw, 62px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

/* 入会金の割引強調 */
/* 入会金の割引バッジ */
.admission-offer {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
}

.admission-offer-badge {
  align-self: center;
  background: #fbecea;
  border-radius: 4px;
  color: #c0392b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 14px;
}

.admission-offer-price {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.admission-offer-price b {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

/* 支払い方法 */
.payment-method {
  border-top: 1px solid var(--line);
  margin: 24px auto 0;
  max-width: var(--content);
  padding-top: 20px;
}

.payment-method-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

.payment-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.payment-cards span {
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
}

.payment-note {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
  color: var(--muted);
  font-size: 12px;
  margin: 16px auto 0;
  max-width: var(--content);
  text-align: right;
}

.price-card > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.price-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 27px 0 0;
  padding-top: 21px;
}

.benefit-row {
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 32px auto 0;
  max-width: var(--content);
}

.benefit-row span {
  border-right: 1px solid var(--line);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 16px 10px;
  text-align: center;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  border-top: 1px solid var(--navy);
  margin: 0 auto;
  max-width: 940px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  padding: 27px 2px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span:last-child {
  color: var(--teal);
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span:last-child {
  transform: rotate(45deg);
}

.faq-list details > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  margin: -3px 0 0;
  max-width: 800px;
  padding: 0 2px 28px;
}

.access-section {
  background: var(--white);
}

.access-layout {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(350px, 0.78fr) minmax(500px, 1.22fr);
  margin: 0 auto;
  max-width: var(--content);
}

.location-list {
  align-self: center;
}

.location-list article {
  border-top: 1px solid var(--line);
  padding: 27px 0;
}

.location-list article:nth-child(2) {
  border-bottom: 1px solid var(--line);
}

.location-list article > p {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 8px;
}

.location-list h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 20px;
}

.location-list dl {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 18px;
}

.location-list dl > div {
  display: grid;
  grid-template-columns: 75px 1fr;
}

.location-list dt {
  color: var(--teal);
  font-weight: 700;
}

.location-list dd {
  margin: 0;
}

.location-list article > a {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 2px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hours {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 23px;
  padding-top: 23px;
}

.hours p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.hours span {
  color: var(--navy);
  font-weight: 700;
  margin-right: 6px;
}

.location-photo-grid {
  display: grid;
  gap: 8px;
}

/* ===== 店舗マップブロック ===== */
.store-block {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 48px;
  max-width: var(--content);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}

.store-block:last-of-type {
  margin-bottom: 0;
}

.store-map iframe {
  display: block;
  height: 100%;
  min-height: 340px;
  width: 100%;
}

.store-info {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 36px 32px;
}

.store-label {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0;
}

.store-name {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.store-dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 0;
}

.store-dl > div {
  display: flex;
  gap: 12px;
}

.store-dl dt {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  width: 4.5em;
}

.store-dl dd {
  color: var(--ink);
  font-size: 14px;
  margin: 0;
}

.store-map-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.store-info .button {
  align-self: flex-start;
  margin-top: auto;
}
.location-gallery {
  margin-top: 40px;
}

.gallery-tabs {
  display: flex;
  border-bottom: 2px solid var(--line);
  gap: 0;
  margin-bottom: 16px;
}

.gallery-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: -2px;
  padding: 12px 28px;
  transition: color .18s, border-color .18s;
}

.gallery-tab.active {
  border-bottom-color: var(--teal);
  color: var(--teal);
}

.gallery-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr 1fr;
}

.gallery-grid figure:first-child {
  grid-column: 1 / -1;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-grid img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.location-photo-grid figure {
  position: relative;
}

.location-photo-grid img {
  aspect-ratio: 16 / 7.8;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.location-photo-grid figcaption {
  background: var(--navy);
  bottom: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  left: 0;
  letter-spacing: 0.18em;
  padding: 9px 14px;
  position: absolute;
}

.final-cta {
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 0.8fr;
  padding: 100px max(8vw, 40px);
}

.final-cta .eyebrow {
  color: #8fc0bc;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 2;
  max-width: 520px;
}

.final-offer {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 68px;
}

.final-offer > p {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 14px;
}

.final-offer strong {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.final-offer small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
}

.final-offer strong > span {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
}

footer {
  align-items: end;
  background: #081e27;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  padding: 58px max(6vw, 32px) 34px;
}

.footer-brand > span {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer-brand img {
  display: block;
  height: 40px;
  width: auto;
}
  letter-spacing: 0.18em;
  margin: 4px 0 0;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.footer-links a {
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  font-size: 13px;
  min-height: 44px;
  padding: 0 2px;
}

.copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  grid-column: 1 / -1;
  letter-spacing: 0.12em;
  margin: 25px 0 0;
}

.mobile-fixed-cta,
.mobile-only {
  display: none;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-content {
    padding: 64px 5vw;
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 52px);
  }

  .breath-section,
  .program-section,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .breath-intro,
  .trainer-intro {
    position: static;
  }

  .trainers-layout {
    grid-template-columns: 1fr;
  }

  .trainer-intro {
    max-width: 650px;
  }

  .greeting-card {
    grid-template-columns: 320px 1fr;
  }

  .greeting-card > div {
    padding: 42px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 66px;
  }

  .campaign-badge {
    padding: 16px 20px 18px;
    text-align: center;
    width: 100%;
  }

  .campaign-badge-label {
    font-size: 12px;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
    padding: 5px 14px;
  }

  .campaign-badge-main {
    align-items: center;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
  }

  .campaign-badge-arrow {
    display: none;
  }

  .campaign-badge-strike {
    font-size: 14px;
  }

  .campaign-badge-main strong {
    font-size: 36px;
    line-height: 1.15;
  }

  .campaign-badge-main .campaign-badge-strike {
    margin-top: 6px;
  }

  body {
    font-size: 15px;
    padding-bottom: 72px;
  }

  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .brand img {
    height: 34px;
  }

  .brand-main {
    font-size: 22px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(18, 48, 59, 0.045) calc(25% - 1px),
      rgba(18, 48, 59, 0.045) 25%
    );
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }

  .hero-visual {
    aspect-ratio: 1.28;
    min-height: 0;
  }

  .hero-content {
    padding: 48px 22px 55px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.2vw, 44px);
    line-height: 1.45;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.95;
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 29px;
    width: 100%;
  }

  .button {
    font-size: 14px;
    min-width: 0;
    width: 100%;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .trust-strip {
    padding: 0;
  }

  .trust-strip div {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    padding: 17px 5px;
  }

  .trust-strip div:first-child {
    border-left: 0;
  }

  .trust-strip strong {
    font-size: 21px;
  }

  .trust-strip span {
    font-size: 12px;
    text-align: center;
  }

  .section {
    padding: 82px 20px;
  }

  .section-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .concerns-section .section-heading h2 {
    font-size: 31px;
  }

  .section-heading h2,
  .breath-intro h2,
  .final-cta h2 {
    font-size: 36px;
    line-height: 1.5;
  }

  .section-heading > p:last-child,
  .breath-intro > p:last-child {
    font-size: 15px;
    line-height: 1.95;
  }

  .concern-layout {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .concern-photo img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .concern-card {
    min-height: 84px;
    padding: 17px 6px;
  }

  .concern-card p {
    font-size: 17px;
  }

  .breath-section {
    gap: 40px;
  }

  .breath-grid article {
    gap: 13px;
    grid-template-columns: 38px 1fr;
    padding: 24px 0;
  }

  .breath-grid h3,
  .reason-card h3,
  .step-list h3,
  .flow-copy h3 {
    font-size: 21px;
  }

  .breath-grid p,
  .reason-card p,
  .step-list p,
  .flow-copy p {
    font-size: 15.5px;
  }

  .statement {
    padding: 29px 18px;
  }

  .statement strong {
    display: block;
    font-size: 19px;
    line-height: 1.75;
  }

  .reason-grid,
  .review-grid,
  .price-grid,
  .price-grid-2 {
    border-left: 1px solid var(--line);
    grid-template-columns: 1fr;
  }

  .price-grid-1 {
    max-width: none;
  }

  .price-blocks {
    gap: 32px;
  }

  .reason-card {
    min-height: 0;
    padding: 32px 25px 37px;
  }

  .reason-card h3 {
    margin-top: 25px;
  }

  .center-cta {
    width: 100%;
  }

  .flow-list {
    gap: 44px;
  }

  .flow-step {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  /* スマホでは写真を常に上に */
  .flow-step:nth-child(even) .flow-photo {
    order: 0;
  }

  .flow-num {
    font-size: 32px;
  }

  .flow-copy h3 {
    margin-top: 8px;
  }

  .review-grid {
    border-top: none;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-dots {
    display: none;
  }

  .review-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    flex: 0 0 84vw;
    max-width: 340px;
    padding: 24px 22px 22px;
    scroll-snap-align: center;
  }

  .review-card:first-child {
    border-left: 0;
  }

  .review-card blockquote {
    font-size: 14px;
  }

  .trainers-layout {
    gap: 38px;
  }

  .portrait-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portrait-grid figcaption {
    padding: 14px 12px 16px;
  }

  .portrait-grid figcaption strong {
    font-size: 15px;
  }

  .greeting-card {
    display: block;
  }

  .greeting-card img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .greeting-card > div {
    padding: 31px 24px 36px;
  }

  .greeting-card h2 {
    font-size: 36px;
  }

  .greeting-card > div > p:not(.eyebrow) {
    font-size: 15.5px;
  }

  .price-card {
    padding: 33px 22px;
  }

  .benefit-row {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-row span {
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .faq-list summary {
    font-size: 17px;
    gap: 20px;
    line-height: 1.65;
    padding: 23px 0;
  }

  .faq-list details > p {
    font-size: 15.5px;
  }

  .access-layout {
    gap: 39px;
  }

  .store-block {
    border-radius: 10px;
    grid-template-columns: 1fr;
  }

  .store-map iframe {
    min-height: 260px;
  }

  .store-info {
    padding: 24px 20px 24px;
  }

  .store-name {
    font-size: 24px;
  }

  .store-info .button {
    width: 100%;
  }

  .location-list h3 {
    font-size: 27px;
  }

  .location-photo-grid img {
    aspect-ratio: 16 / 9;
  }

  .final-cta {
    display: block;
    padding: 82px 22px;
  }

  .final-cta > div:first-child > p:last-child {
    font-size: 14px;
  }

  .final-offer {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 38px;
    padding-left: 0;
    padding-top: 34px;
  }

  .final-offer strong > span {
    font-size: 50px;
  }

  footer {
    display: block;
    padding: 50px 22px 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .copyright {
    margin-top: 34px;
  }

  .mobile-fixed-cta {
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: block;
    left: 0;
    padding: 9px 12px;
    position: fixed;
    right: 0;
    z-index: 60;
  }

  .mobile-fixed-cta a {
    align-items: center;
    background: var(--navy);
    color: var(--white);
    display: flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: space-between;
    padding: 14px 18px 14px 21px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
