/* =====================================================
   LIMITED 武蔵浦和店 新デザイン (2026-07)
   黒 × クリーム × ゴールドの新テイスト
   ===================================================== */
:root {
  --black: #000000;
  --ink: #141414;
  --cream: #f6f3ec;
  --white: #ffffff;
  --gold: #a9822f;        /* セクションラベル */
  --gold-bright: #daae42; /* 明るい金(数値・case) */
  --red: #e0232c;         /* CTA・強調 */
  --red-text: #ff0000;
  --cta-cream: #fffacd;   /* CTAボタン文字色 */
  --text: #1a1a1a;
  --gray: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { color: inherit; }
body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.inner { max-width: 980px; margin: 0 auto; padding: 0 16px; }

/* ---------- 英字セクションラベル (ENPERT風) ---------- */
.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--gold);
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 20px;
  letter-spacing: .45em;
  text-indent: .45em;
  margin-bottom: 18px;
}
.sec-label::before, .sec-label::after {
  content: "";
  width: 90px;
  height: 1px;
  background: var(--gold);
}
.sec-heading {
  text-align: center;
  font-size: clamp(24px, 3.6vw, 35px);
  font-weight: 800;
  margin-bottom: 34px;
}
.sp-br { display: none; }
/* 読点で改行して語中の不自然な折返しを防ぐ。1行に収まる351-640pxだけ無効化 */
.xs-br { display: inline; }
@media (min-width: 351px) and (max-width: 640px) { .xs-br { display: none; } }
/* 320px級だけで改行（それ以上の幅では1行に収まる） */
.tiny-br { display: none; }
.on-dark { color: var(--white); }
.on-dark .sec-label { color: var(--gold-bright); }
.on-dark .sec-label::before, .on-dark .sec-label::after { background: var(--gold-bright); }

/* ---------- ヘッダー ---------- */
header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo { height: 52px; width: auto; }
.header-sitename { display: none; }
.nav-toggle-cb, .nav-toggle { display: none; }
nav ul { display: flex; flex-wrap: wrap; gap: 4px 22px; list-style: none; }
nav a { text-decoration: none; font-size: 14px; font-weight: 600; }
nav a:hover { color: var(--gold); }

/* ---------- ヒーロー ---------- */
.hero { position: relative; }
.hero img { width: 100%; }
.hero-reserve-link {
  position: absolute;
  left: 64.8%; top: 85.8%; width: 33.9%; height: 12.1%;
  border-radius: 999px;
}
.hero-reserve-link:hover { box-shadow: 0 0 0 3px rgba(255,255,255,.55) inset; }

/* ---------- CTAボタン(赤) ---------- */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 30px 0 10px;
}
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 92%);
  min-height: 76px;
  padding: 14px 24px;
  background: linear-gradient(180deg, #e8332b 0%, #d32129 100%);
  color: var(--cta-cream);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  text-align: center;
  line-height: 1.4;
}
.btn-cta:hover { opacity: .88; }
.btn-cta.primary { position: relative; overflow: hidden; }
.btn-cta.primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3.2s ease-in-out infinite;
}
@keyframes btn-shine {
  0% { left: -80%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
.btn-cta.tel { background: linear-gradient(180deg, #3a3a3a, #1d1d1d); }
.campaign .btn-cta.tel,
.flow .btn-cta.tel {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  box-shadow: none;
  min-height: 62px;
  font-size: 18px;
}
/* ---------- キャンペーン ---------- */
.campaign { background: var(--cream); padding: 48px 0 46px; }
.seo-lead { text-align: center; font-size: clamp(11.5px, 1.7vw, 13.5px); font-weight: 600; color: var(--gray); margin: -14px auto 20px; padding: 0 16px; line-height: 1.6; max-width: 760px; }
.campaign .lead {
  text-align: center;
  font-size: clamp(18px, 2.7vw, 25px);
  font-weight: 700;
  margin-bottom: 10px;
}
.campaign .lead .em { color: var(--red-text); }
.campaign-ticket { max-width: 860px; margin: 0 auto; }
.campaign-ticket-sp { display: none; }
.cta-micro {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 14px;
}
.campaign .note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}

/* ---------- お悩み (YOUR PROBLEM) ---------- */
.problem { background: var(--black); padding: 64px 0 70px; }
.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.problem-card {
  position: relative;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  background: #0d0d0d;
  padding: 26px clamp(16px, 2.8vw, 28px) 20px;
  color: var(--white);
}
.problem-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 36px; height: 36px;
  border-top: 2px solid var(--gold-bright);
  border-left: 2px solid var(--gold-bright);
  border-top-left-radius: 10px;
  pointer-events: none;
}
.problem-card .case {
  color: var(--gold-bright);
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
}
.problem-card h3 { font-size: clamp(19px, 2.6vw, 24px); margin: 2px 0 12px; }
.problem-card li {
  list-style: none;
  font-size: clamp(13.5px, 1.7vw, 15.5px);
  padding: 9px 0 9px 1.4em;
  position: relative;
  border-bottom: 1px dashed #333;
}
.problem-card li:last-child { border-bottom: none; }
.problem-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 13px;
}
.problem-close {
  text-align: center;
  color: var(--white);
  margin-top: 26px;
  font-size: clamp(15px, 2.6vw, 25px);
  font-weight: 700;
  line-height: 1.65;
}
.problem-close::before {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--gold-bright));
  margin: 0 auto 14px;
}
.problem-close .gold { color: var(--gold-bright); }
.problem-close .big { font-size: clamp(17px, 3vw, 29px); }

/* ---------- 実績 (RESULTS) ---------- */
.results { background: var(--cream); padding: 64px 0 30px; }
.ba-block { max-width: 900px; margin: 0 auto 56px; }
.ba-cat {
  color: var(--gold);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 10px;
}
.ba-panel-wrap { position: relative; container-type: inline-size; }
.ba-panel-wrap > .panel-bg { width: 100%; }
.ba-abs { position: absolute; line-height: 1.45; }
.ba-person { color: #fff; font-weight: 800; font-size: 2.57cqw; white-space: nowrap; }
.ba-term { color: var(--gold-bright); font-weight: 700; font-size: 2.06cqw; white-space: nowrap; }
.ba-photo { position: absolute; object-fit: cover; }
.ba-stat { color: var(--gold-bright); font-weight: 800; font-size: 2.68cqw; white-space: nowrap; }
.ba-stat.pct { font-size: 3.6cqw; }
.ba-desc { color: #fff; font-size: 1.5cqw; line-height: 1.35; }
.ba-sp, .ba-note-sp { display: none; }

/* ---------- REASON ---------- */
.reason { background: var(--black); padding: 64px 0 70px; }
.reason-copy {
  text-align: center;
  color: var(--white);
  font-size: clamp(15px, 2.4vw, 23px);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.65;
}
.reason-copy .gold { color: var(--gold-bright); }
.reason-ng {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.reason-ng figure { width: min(440px, 100%); }
.reason-ng figcaption {
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: clamp(14px, 2vw, 19px);
  margin-bottom: 12px;
}
.reason-ng img { width: 100%; }
.reason-table-title {
  text-align: center;
  color: var(--white);
  font-size: clamp(16px, 2.4vw, 23px);
  font-weight: 700;
  margin-bottom: 22px;
}
.reason-table { max-width: 940px; margin: 0 auto 46px; }
.reason-close {
  text-align: center;
  color: var(--white);
  font-size: clamp(16px, 2.8vw, 27px);
  font-weight: 800;
  line-height: 1.7;
}
.reason-close .gold { color: var(--gold-bright); }

/* ---------- 比較表 SPカード版 ---------- */
.cmp-sp { display: none; }
.cmp-item {
  background: #0d0d0d;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  padding: 14px 14px 12px;
  margin: 0 auto 12px;
  max-width: 480px;
}
.cmp-q {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  padding-left: 1.1em;
  position: relative;
}
.cmp-q::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--gold);
  font-size: 10px;
}
.cmp-others { display: flex; gap: 8px; margin-bottom: 8px; }
.cmp-others .o {
  flex: 1;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 7px 4px 8px;
  text-align: center;
}
.cmp-others .l { display: block; color: #888; font-size: 10px; margin-bottom: 3px; }
.cmp-others .v { color: #bbb; font-size: 12px; line-height: 1.4; }
.cmp-ltd {
  background: linear-gradient(135deg, #2a2413, #191919);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 8px 6px 10px;
  text-align: center;
}
.cmp-ltd .l {
  display: block;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .35em;
  padding-left: .35em;
  margin-bottom: 2px;
}
.cmp-ltd .v { color: var(--gold-bright); font-size: 15.5px; font-weight: 800; line-height: 1.45; }

/* ---------- 特徴 (STRENGTH) ---------- */
.features { background: var(--cream); padding: 64px 0 40px; }
.features .sec-label { margin-bottom: 6px; }
.feature-block {
  max-width: 900px;
  margin: 0 auto 62px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.feature-block:nth-child(even) { flex-direction: row-reverse; }
.feature-media { flex: 0 0 46%; }
.feature-media img { width: 100%; }
.feature-collage { display: flex; align-items: flex-end; gap: 8px; }
.feature-collage img { width: calc((100% - 16px) / 3); aspect-ratio: 3 / 4; object-fit: cover; }
.feature-body { flex: 1; }
.feature-num {
  font-family: "Times New Roman", serif;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
}
.feature-title {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  margin: 6px 0 16px;
  line-height: 1.5;
}
.feature-text { font-size: 15px; }

/* ---------- 料金 (PRICE) ---------- */
.price { background: var(--white); padding: 64px 0 50px; }
.price .sec-label { margin-bottom: 6px; }
.price-note-top { text-align: center; font-size: 14px; color: var(--gray); margin-bottom: 30px; }
.ltp-sp { display: none; }
.free-now { color: #d32129; font-weight: 800; white-space: nowrap; }
.price-cat {
  text-align: center;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 800;
  margin: 38px 0 22px;
  letter-spacing: .1em;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}
.plan-card {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-name {
  background: linear-gradient(135deg, #c9a544, #a9822f);
  color: var(--black);
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  padding: 12px 8px;
}
.plan-price { text-align: center; padding: 18px 10px 6px; }
.plan-price .yen { font-size: 27px; font-weight: 800; color: var(--gold-bright); }
.plan-price .tax { display: block; font-size: 13px; color: #bbb; }
.plan-time { text-align: center; font-size: 14px; color: #ddd; padding-bottom: 12px; border-bottom: 1px solid #333; margin: 0 18px 12px; }
.plan-card ul { list-style: none; padding: 0 22px 22px; font-size: 13.5px; }
.plan-card li { padding: 5px 0 5px 1.4em; position: relative; }
.plan-card li::before { content: "✔"; position: absolute; left: 0; color: var(--gold-bright); }
.plan-visual { max-width: 760px; margin: 34px auto 0; }
.option-box {
  max-width: 760px;
  margin: 44px auto 0;
  background: var(--cream);
  border-radius: 10px;
  padding: 30px 34px;
}
.option-box h3 { text-align: center; font-size: 21px; letter-spacing: .2em; margin-bottom: 18px; }
.option-line { display: flex; justify-content: space-between; border-bottom: 1px dashed #c9b98a; padding: 10px 4px; font-size: 15px; font-weight: 600; }
.option-note { margin-top: 20px; font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ---------- トレーナー (TRAINER) ---------- */
.trainers { background: var(--black); padding: 64px 0 40px; }
.trainer-card {
  max-width: 880px;
  margin: 0 auto 42px;
  display: flex;
  gap: 34px;
  background: #111;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 28px;
  color: var(--white);
}
.trainer-card img { width: min(250px, 38%); object-fit: cover; border-radius: 6px; align-self: flex-start; }
.trainer-role { color: var(--gold-bright); font-weight: 700; font-size: 15px; }
.trainer-role-note { font-size: 12px; color: #bbb; font-weight: 400; }
.trainer-kana { font-size: 12.5px; color: #aaa; margin-top: 8px; }
.trainer-name { font-size: 24px; font-weight: 800; margin-bottom: 14px; }
.trainer-label {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  padding: 2px 14px;
  margin: 12px 0 6px;
}
.trainer-body ul { list-style: none; font-size: 14.5px; }
.trainer-body li { padding-left: 1.2em; position: relative; }
.trainer-body li::before { content: "・"; position: absolute; left: 0; color: var(--gold-bright); }
/* コンパクトカード(店長・総代表以外の10名) */
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px;
}
.trainer-mini {
  background: #111;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  overflow: hidden;
  color: var(--white);
}
.trainer-mini img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.tm-body { padding: 12px 14px 14px; }
.tm-kana { font-size: 10.5px; color: #aaa; }
.tm-name { font-size: 16.5px; font-weight: 800; margin: 2px 0 8px; }
.tm-meta { font-size: 11.5px; line-height: 1.6; color: #ccc; margin-top: 4px; }
.tm-meta span { color: var(--gold-bright); font-weight: 700; margin-right: 6px; }
@media (min-width: 1000px) {
  .trainer-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1100px; padding: 0 20px; }
}

/* ---------- 体験の流れ (FLOW) ---------- */
.flow { background: var(--cream); padding: 64px 0 46px; }
.step-card {
  max-width: 820px;
  margin: 0 auto 34px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,.07);
  padding: 30px 34px;
}
.step-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.step-num {
  font-family: "Times New Roman", serif;
  background: var(--black);
  color: var(--gold-bright);
  font-size: 15px;
  letter-spacing: .15em;
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
}
.step-head h3 { font-size: clamp(18px, 2.4vw, 23px); }
.step-flex { display: flex; gap: 26px; align-items: center; }
.step-flex .txt { flex: 1; font-size: 15px; }
.step-flex img { width: min(280px, 40%); border-radius: 6px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); padding: 64px 0 40px; }
.faq-item { max-width: 820px; margin: 0 auto 26px; }
.faq-q {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-weight: 800;
  font-size: clamp(15px, 2.2vw, 18px);
}
.faq-q::before {
  content: "Q";
  font-family: "Times New Roman", serif;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}
.faq-a {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-top: 8px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 14.5px;
}
.faq-a::before {
  content: "A";
  font-family: "Times New Roman", serif;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

/* ---------- 求人 (RECRUIT) ---------- */
/* ---------- 最新記事(BLOG) ---------- */
.blog-home { background: var(--cream); padding: 56px 0 52px; }
.blog-home .sec-heading { margin-bottom: 26px; }
.bh-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bh-card {
  display: block;
  background: var(--white);
  border-left: 4px solid var(--gold-bright);
  border-radius: 10px;
  padding: 18px 20px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.bh-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,.13); transform: translateY(-2px); }
.bh-date {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .08em;
}
.bh-card h3 { font-size: 15.5px; font-weight: 800; line-height: 1.55; margin-top: 4px; }
.bh-more {
  display: block;
  width: fit-content;
  margin: 26px auto 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.bh-more:hover { text-decoration: underline; }

.recruit { background: var(--black); padding: 60px 0 66px; color: var(--white); }
.recruit-flex {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}
.recruit-flex img { width: min(230px, 34%); border-radius: 8px; }
.recruit-body h3 { font-size: clamp(20px, 2.8vw, 27px); margin-bottom: 14px; }
.recruit-body p { font-size: 15px; margin-bottom: 8px; }
.recruit-tel { color: var(--gold-bright); font-size: 19px; font-weight: 800; text-decoration: none; }

/* ---------- 店舗情報 (ACCESS) ---------- */
.shop { background: var(--white); padding: 64px 0 30px; }
.shop-main { max-width: 820px; margin: 0 auto 40px; text-align: center; }
.shop-main .shop-name { font-size: clamp(19px, 2.6vw, 24px); font-weight: 800; margin-bottom: 20px; }
.shop-table { max-width: 560px; margin: 0 auto; text-align: left; border-collapse: collapse; width: 100%; }
.shop-table th, .shop-table td { padding: 10px 8px; border-bottom: 1px solid #eee; font-size: 15px; vertical-align: top; }
.shop-table th { width: 7.5em; color: var(--gold); white-space: nowrap; font-weight: 700; }
.sns-icons { display: flex; justify-content: center; gap: 22px; margin: 28px 0 6px; }
.sns-icons img { width: 42px; }
.branch-title {
  text-align: center;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: .15em;
  margin: 46px 0 26px;
}
.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
/* タブレット級は2×2（4カラムだとカードが狭すぎるため） */
@media (min-width: 761px) and (max-width: 999px) {
  .branch-grid { grid-template-columns: repeat(2, 1fr); max-width: 660px; }
}
.branch-card { display: block; background: var(--cream); border-radius: 10px; overflow: hidden; color: inherit; text-decoration: none; transition: box-shadow .2s, transform .2s; }
.branch-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,.12); transform: translateY(-2px); }
.branch-link { display: block; margin-top: 8px; font-size: 11px; font-weight: 700; color: #a8862c; }
.branch-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 28%; }
.branch-card > div { padding: 16px 18px 20px; }
.branch-card h4 { font-size: 15.5px; line-height: 1.5; margin-bottom: 8px; }
.branch-tag { display: block; font-size: 11px; font-weight: 700; letter-spacing: .02em; margin-bottom: 3px; }
.branch-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

footer {
  background: var(--black);
  color: #999;
  text-align: center;
  font-size: 12.5px;
  padding: 26px 10px;
  margin-top: 40px;
}

/* =====================================================
   モバイル
   ===================================================== */
/* ---------- スマホ用カード(Before After) ---------- */
.ba-sp-card {
  background: #0d0d0d;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  padding: 16px 14px 14px;
  margin: 0 auto 14px;
  max-width: 480px;
  color: var(--white);
}
.ba-sp-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.ba-sp-head .p { font-size: 19px; font-weight: 800; }
.ba-sp-head .t { color: var(--gold-bright); font-size: 15px; font-weight: 700; }
.ba-sp-photos { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; }
.ba-sp-photos figure { width: 42%; margin: 0; }
.ba-sp-photos img { width: 100%; display: block; border-radius: 4px; }
.ba-sp-photos figcaption {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .35em;
  padding-left: .35em;
  color: #999;
  margin-top: 5px;
}
.ba-sp-photos .af figcaption { color: var(--gold-bright); }
.ba-sp-photos .arw { color: var(--gold-bright); font-size: 20px; margin-bottom: 18px; }
.ba-sp-stat {
  text-align: center;
  color: var(--gold-bright);
  font-size: 26px;
  font-weight: 800;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 7px 0 8px;
  margin-bottom: 10px;
}
.ba-sp-stat .lbl { font-size: 11px; font-weight: 400; letter-spacing: .3em; display: block; color: #bbb; }
.ba-sp-card li { list-style: none; font-size: 13.5px; padding: 4px 0 4px 1.2em; position: relative; }
.ba-sp-card li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 9px; top: 8px; }
.ba-note-sp { font-size: 11px; color: var(--gray); text-align: center; margin-top: -6px; padding: 0 16px 10px; }

@media (max-width: 640px) {
  .hero { overflow: hidden; }
  .hero img { margin-top: -13.6%; }
  .hero-reserve-link { left: 24.4%; top: 88.95%; width: 50.8%; height: 7.64%; }
  .btn-cta { font-size: 17.5px; white-space: nowrap; }
  /* キャンペーン(SP): チケット拡大・ボタン縮小・電話は黒・余白圧縮 */
  .campaign { padding: 22px 0 32px; }
  .campaign .sec-label { margin-bottom: 12px; }
  .campaign .sec-heading { margin-bottom: 8px; }
  .campaign .lead { margin-bottom: 2px; font-size: clamp(15px, 4.8vw, 18px); }
  .cta-micro span { white-space: nowrap; }
  /* SPはticket.pngをやめてHTMLチケットを表示（文字を大きく） */
  .campaign-ticket { display: none; }
  .campaign-ticket-sp { display: block; margin: 14px 12px 0; }
  .ct-card {
    position: relative;
    background: #fdfbf4;
    border: 1px solid #e5decd;
    border-radius: 10px;
    padding: 18px 12px 16px;
    text-align: center;
  }
  .ct-card::before, .ct-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid #e5decd;
    transform: translateY(-50%);
  }
  .ct-card::before { left: -10px; }
  .ct-card::after { right: -10px; }
  .ct-badge {
    display: inline-block;
    border: 1px solid #c9a961;
    color: #8f7420;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3em;
    text-indent: .3em;
    padding: 3px 10px;
    margin-bottom: 8px;
  }
  .ct-card h3 {
    font-family: "Times New Roman", "Yu Mincho", serif;
    font-size: clamp(16.5px, 5.2vw, 20px);
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    margin-bottom: 4px;
  }
  .ct-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    line-height: 1.1;
  }
  .ct-price .was { color: #9b9384; font-size: 15px; text-decoration: line-through; }
  .ct-price .arw { color: #8f7420; font-size: 15px; }
  .ct-price .zero {
    font-family: "Times New Roman", "Yu Mincho", serif;
    color: #8f7420;
    font-size: 58px;
    font-weight: 700;
  }
  .ct-price .zero .yen { font-size: 27px; }
  .ct-sub { color: #777; font-size: clamp(10.5px, 3.5vw, 11.5px); white-space: nowrap; margin-top: 2px; }
  .ct-band {
    background: #faf7ef;
    border: 1px solid #e5decd;
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px 8px;
    text-align: center;
    font-size: clamp(15px, 4.6vw, 18px);
    font-weight: 800;
    white-space: nowrap;
  }
  .ct-band .sara {
    border: 1px solid #c9a961;
    color: #8f7420;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-indent: .2em;
    padding: 2px 8px;
    margin-right: 8px;
    vertical-align: 3px;
  }
  .ct-band .was { color: #9b9384; text-decoration: line-through; font-weight: 700; }
  .ct-band .zero { color: #8f7420; font-size: clamp(19px, 6vw, 23px); }
  /* FLOWのCTAはキャンペーンと完全に同一。幅は%だとカードのpadding分だけ細くなるのでvwで揃える */
  .campaign .cta-buttons,
  .flow .cta-buttons { gap: 14px; margin: 22px 0 6px; }
  .campaign .btn-cta.primary,
  .flow .btn-cta.primary { width: min(320px, 86vw); min-height: 60px; font-size: 17px; }
  .campaign .btn-cta.tel,
  .flow .btn-cta.tel {
    background: linear-gradient(180deg, #3a3a3a, #1d1d1d);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
    width: min(320px, 86vw);
    min-height: 54px;
    font-size: 15.5px;
  }
  .cta-micro { margin-top: 10px; font-size: 11.5px; }
  .campaign .note { margin-top: 4px; font-size: 11.5px; }
  .problem { padding: 48px 0 44px; }
  .problem-card { padding: 22px 20px 16px; }
  .problem-close { font-size: 15px; padding: 0 14px; margin-top: 20px; }
  .problem-close .big { font-size: 17px; }
  .ba-panel-wrap { display: none; }
  .ba-sp, .ba-note-sp { display: block; }
  .results { padding: 44px 0 22px; }
  .results .sec-heading { margin-bottom: 18px; }
  .ba-block { margin-bottom: 30px; }
  .ba-cat { text-align: center; margin-bottom: 8px; }
  .ba-sp { padding: 0 14px; }
  .sp-br { display: inline; }
  /* REASON(SP): 比較表画像→HTMLカード置換・余白圧縮 */
  .reason { padding: 48px 0 44px; }
  .reason-copy { margin-bottom: 22px; }
  .reason-ng { gap: 18px; margin-bottom: 30px; }
  .reason-table { display: none; }
  .cmp-sp { display: block; padding: 0 14px; margin-bottom: 30px; }
  .reason-table-title { margin-bottom: 14px; }
  /* PRICE(SP): 余白圧縮・カード左右ガター・長期契約テーブルをHTML化(plan1/2.jpg非表示) */
  .price { padding: 28px 0 40px; }
  .price .sec-heading { margin-bottom: 6px; line-height: 1.35; }
  .price-note-top { margin-bottom: 8px; }
  .price-cat { margin: 16px 0 10px; }
  .plan-grid { padding: 0 14px; gap: 14px; }
  .plan-price { padding: 14px 10px 4px; }
  .plan-time { padding-bottom: 10px; margin: 0 16px 10px; }
  .plan-card ul { padding: 0 18px 16px; }
  .plan-visual { display: none; }
  .ltp-sp { display: block; padding: 0 14px; margin-top: 20px; }
  .ltp-title {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .06em;
    margin-bottom: 10px;
  }
  .ltp-card {
    border: 1px solid #ddd2b4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--white);
  }
  .ltp-name {
    background: linear-gradient(135deg, #c9a544, #a9822f);
    color: var(--black);
    text-align: center;
    font-weight: 800;
    font-size: 14px;
    padding: 7px 8px;
  }
  .ltp-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 9px 12px;
    border-bottom: 1px solid #f0ead8;
  }
  .ltp-row:last-child { border-bottom: none; }
  .ltp-row .t { color: #777; font-size: 12px; width: 6.2em; flex-shrink: 0; }
  .ltp-row .p { font-weight: 800; font-size: 15px; }
  .ltp-row .s { color: #d32129; font-size: 11px; font-weight: 700; margin-left: auto; white-space: nowrap; }
  .option-box { margin: 26px 14px 0; padding: 22px 16px; }
  .option-box h3 { font-size: 18px; margin-bottom: 10px; }
  /* 項目名と金額が詰まる/不揃いになるのでSPは縮小＋金額を右寄せnowrap */
  .option-line { font-size: clamp(12px, 3.6vw, 14px); gap: 10px; padding: 9px 2px; }
  .option-line span:last-child { white-space: nowrap; text-align: right; }
  .option-note { margin-top: 14px; }
}

/* 320px級の極小幅: 決め台詞を1行に収める・見出し縮小 */
@media (max-width: 350px) {
  .problem-close { padding: 0 10px; }
  .problem-close .big { font-size: 15px; }
  .sec-heading { font-size: 21px; }
}

@media (max-width: 760px) {
  .problem-cards { grid-template-columns: 1fr; max-width: 480px; gap: 18px; padding: 0 16px; }
  .header-inner { flex-wrap: nowrap; gap: 10px; padding: 10px 14px; justify-content: flex-start; }
  .header-inner > a { flex-shrink: 0; }
  .header-logo { height: 40px; width: auto; max-width: none; }
  .header-sitename { display: block; font-size: clamp(12px, 3.6vw, 14px); font-weight: 800; line-height: 1.4; white-space: nowrap; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    margin-left: auto;
    flex-shrink: 0;
    cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; background: #1a1a1a; border-radius: 2px; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(0,0,0,.15);
    border-top: 1px solid #eee;
  }
  .nav-toggle-cb:checked ~ nav { display: block; }
  nav ul { flex-direction: column; gap: 0; padding: 4px 0; }
  nav li { border-bottom: 1px solid #f2f2f2; }
  nav li:last-child { border-bottom: none; }
  nav a { display: block; padding: 13px 22px; font-size: 15px; }

  .sec-label { font-size: 15px; letter-spacing: .3em; text-indent: .3em; white-space: nowrap; }

  /* EXPERT(SP): 番号+見出しを横並び・本文に左右ガター・余白圧縮 */
  .features { padding: 48px 0 8px; }
  .features .sec-heading { margin-bottom: 24px; }
  .feature-block, .feature-block:nth-child(even) { flex-direction: column; gap: 14px; margin-bottom: 36px; }
  .feature-media { flex: none; width: 100%; }
  .feature-body {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 0 20px;
  }
  .feature-num { font-size: 34px; }
  .feature-title { margin: 0; font-size: 19px; line-height: 1.45; }
  .feature-text { grid-column: 1 / -1; margin-top: 10px; font-size: 14.5px; line-height: 1.7; }
  .feature-block:last-child { margin-bottom: 0; }

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

  .trainers { padding: 44px 0 32px; }
  .trainer-card { flex-direction: column; padding: 18px; gap: 14px; margin: 0 16px 16px; }
  .trainer-card img { width: 58%; margin: 0 auto; }
  .trainer-name { font-size: 21px; margin-bottom: 8px; }
  .trainer-body ul { font-size: 13.5px; }
  .trainer-label { margin: 10px 0 4px; font-size: 12px; }

  /* FLOW(SP): STEP番号と見出しを縦積みにして見出しを1行に収める・余白圧縮 */
  .flow { padding: 44px 0 28px; }
  .flow .sec-heading { margin-bottom: 20px; }
  .step-card { margin-bottom: 20px; padding: 20px 18px; }
  .step-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
  .step-head h3 { font-size: 17.5px; line-height: 1.5; }
  .step-flex { flex-direction: column; align-items: stretch; gap: 14px; }
  .step-flex img { width: 100%; }
  .step-flex .txt { font-size: 14px; line-height: 1.75; }

  /* 最新記事(SP): 1カラム・余白圧縮 */
  .blog-home { padding: 44px 0 40px; }
  .blog-home .sec-heading { margin-bottom: 18px; }
  .bh-grid { grid-template-columns: 1fr; max-width: 480px; gap: 12px; }
  .bh-card { padding: 15px 16px; }
  .bh-card h3 { font-size: 14.5px; }
  .bh-more { margin-top: 20px; }

  .recruit-flex { flex-direction: column; }
  .recruit-flex img { width: 60%; }

  /* ACCESS(SP): 左右ガター・文字と行間の調整・系列店カードの圧縮 */
  .shop { padding: 44px 0 24px; }
  .shop .sec-heading { margin-bottom: 18px; }
  .shop-main { margin-bottom: 26px; padding: 0 16px; }
  .shop-main .shop-name { font-size: 18px; line-height: 1.55; margin-bottom: 14px; }
  .shop-table th, .shop-table td { padding: 9px 4px; font-size: 14px; line-height: 1.7; }
  .shop-table th { width: 5.6em; }
  .sns-icons { gap: 18px; margin: 20px 0 4px; }
  .sns-icons img { width: 38px; }
  .branch-title { font-size: 17px; margin: 28px 0 16px; }
  .branch-grid { grid-template-columns: 1fr; max-width: 480px; gap: 14px; padding: 0 16px; }
  .branch-card { display: flex; align-items: stretch; }
  .branch-card img { width: 104px; flex-shrink: 0; aspect-ratio: auto; height: auto; object-position: 50% 30%; }
  .branch-card > div { padding: 12px 14px; }
  .branch-card h4 { font-size: 14.5px; margin-bottom: 5px; }
  .branch-card p { font-size: 12.5px; line-height: 1.65; }

  .sec-label::before, .sec-label::after { width: 44px; }
}

/* 320px級: EXPERT見出し行の折返し防止（760pxブロックより後に置いて上書き） */
@media (max-width: 350px) {
  .feature-body { padding: 0 16px; column-gap: 10px; }
  .feature-num { font-size: 30px; }
  .feature-title { font-size: 16.5px; }
  .tiny-br { display: inline; }
  .step-head h3 { font-size: 16px; }
  .branch-card img { width: 96px; }
  .branch-card h4 { font-size: 13.5px; }
  .branch-tag { font-size: 10px; }
  .ltp-row { padding: 9px 8px; gap: 6px; }
  .ltp-row .t { font-size: 11px; width: 6.2em; }
  .ltp-row .p { font-size: 14px; }
  .ltp-row .s { font-size: 10px; }
}
