/* =====================================================
   LIMITED 戸田公園（東口店・西口店） 新デザイン (2026-08)
   黒 × クリーム × ゴールド（武蔵浦和店と共通テイスト）
   ===================================================== */
: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;
}

/* ---------- 英字セクションラベル ---------- */
.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; }
.tiny-br { display: none; }
/* PC専用改行（SPでは幅が狭く自然に折返すため非表示） */
.pc-br { display: inline; }
@media (max-width: 760px) { .pc-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); }

/* ---------- ヒーロー（HTML組み） ---------- */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
/* 旧サイトと同じ2枚の写真を斜め分割で合成 */
.hero-bgs { position: absolute; inset: 0; }
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .52;
}
.hero .bg-left {
  object-position: 50% 32%;
  clip-path: polygon(0 0, 56% 0, 46% 100%, 0 100%);
}
/* 右写真は右側60%の箱に置き、人物が斜め分割の右側に入るようにする */
.hero .bg-right {
  left: 40%;
  width: 60%;
  object-position: 50% 20%;
  clip-path: polygon(26.7% 0, 100% 0, 100% 100%, 10% 100%);
}
.hero-divider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.6);
  clip-path: polygon(55.6% 0, 56.4% 0, 46.4% 100%, 45.6% 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(54px, 9vw, 110px) 24px clamp(46px, 8vw, 96px);
  color: var(--white);
}
.hero-catch {
  display: inline-block;
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  font-size: clamp(13px, 1.9vw, 17px);
  font-weight: 700;
  letter-spacing: .18em;
  text-indent: .18em;
  padding: 5px 18px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(27px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
}
.hero-title .gold { color: var(--gold-bright); }
.hero-brand {
  font-family: "Times New Roman", "Yu Mincho", serif;
  color: var(--gold-bright);
  font-size: clamp(17px, 2.6vw, 26px);
  letter-spacing: .14em;
  margin-top: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  list-style: none;
}
.hero-badges li {
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(218,174,66,.75);
  border-radius: 999px;
  font-size: clamp(11.5px, 1.6vw, 14px);
  font-weight: 700;
  padding: 6px 16px;
  white-space: nowrap;
}
.hero-badges li::before { content: "✔ "; color: var(--gold-bright); }

/* ---------- 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%; }
}
/* 電話は2店舗分を横並び(PC)・縦積み(SP) */
.tel-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.btn-cta.tel {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  box-shadow: none;
  min-height: 60px;
  font-size: 16px;
  width: min(300px, 92%);
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.btn-cta.tel .shop-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .18em;
  text-indent: .18em;
}
.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;
}

/* ---------- キャンペーン ---------- */
.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;
  padding: 0 14px;
}
.campaign .lead .em { color: var(--red-text); }
/* HTMLチケット（全幅共通） */
.campaign-ticket-sp { display: block; max-width: 560px; margin: 14px auto 0; padding: 0 12px; }
.ct-card {
  position: relative;
  background: #fdfbf4;
  border: 1px solid #e5decd;
  border-radius: 10px;
  padding: 22px 12px 18px;
  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, 24px);
  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: clamp(15px, 2vw, 18px); text-decoration: line-through; }
.ct-price .arw { color: #8f7420; font-size: clamp(15px, 2vw, 18px); }
.ct-price .zero {
  font-family: "Times New Roman", "Yu Mincho", serif;
  color: #8f7420;
  font-size: clamp(58px, 8vw, 72px);
  font-weight: 700;
}
.ct-price .zero .yen { font-size: clamp(27px, 4vw, 34px); }
.ct-sub { color: #777; font-size: clamp(10.5px, 3.5vw, 12.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, 20px);
  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, 25px); }

/* ---------- お悩み (YOUR PROBLEM) ---------- */
.problem { background: var(--black); padding: 64px 0 70px; }
.problem-lead {
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 700;
  padding: 0 16px;
}
.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); }
/* 90%の強調数字 */
.problem-close .num {
  font-family: "Times New Roman", "Yu Mincho", serif;
  color: var(--gold-bright);
  font-size: clamp(30px, 5.6vw, 54px);
  font-weight: 700;
  line-height: 1;
  vertical-align: -2px;
}
/* 初心者サポート3本柱 */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 940px;
  margin: 38px auto 0;
  padding: 0 20px;
}
.support-card {
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  background: #0d0d0d;
  padding: 20px 18px 18px;
  color: var(--white);
  text-align: center;
}
.support-card .s-num {
  font-family: "Times New Roman", serif;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
}
.support-card h4 { font-size: clamp(15px, 1.9vw, 17px); margin-bottom: 8px; line-height: 1.5; }
.support-card p { font-size: 13px; color: #ccc; line-height: 1.7; text-align: left; }

/* ---------- 実績 (RESULTS) ---------- */
.results { background: var(--cream); padding: 64px 0 30px; }
.ba-cat {
  color: var(--gold);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: .2em;
  text-align: center;
  margin-bottom: 14px;
}
.ba-block { max-width: 1040px; margin: 0 auto 44px; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 20px;
}
.ba-case {
  background: #0d0d0d;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  padding: 14px 14px 12px;
  color: var(--white);
}
.ba-case-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.ba-case-head .p { font-size: 18px; font-weight: 800; }
.ba-case-head .t { color: var(--gold-bright); font-size: 14px; font-weight: 700; }
.ba-case img { width: 100%; border-radius: 6px; }
.ba-case ul { list-style: none; margin-top: 10px; }
.ba-case li {
  font-size: 12.5px;
  color: #ddd;
  padding: 3px 0 3px 1.2em;
  position: relative;
  line-height: 1.6;
}
.ba-case li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 7px; }
.ba-note {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  padding: 0 16px 10px;
}

/* ---------- こんな方が選んでいます (CHOOSE) ---------- */
.choose { background: var(--black); padding: 64px 0 66px; }
.choose-list {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
}
.choose-list li {
  background: #0d0d0d;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  color: var(--white);
  font-size: clamp(14.5px, 2vw, 17px);
  font-weight: 700;
  padding: 15px 18px 15px 52px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.6;
}
.choose-list li::before {
  content: "✔";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-bright);
  font-size: 19px;
}
.choose-list .gold { color: var(--gold-bright); }
.choose-close {
  text-align: center;
  color: var(--white);
  margin-top: 30px;
  font-size: clamp(19px, 3vw, 29px);
  font-weight: 800;
  line-height: 1.6;
}
.choose-close::before {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--gold-bright));
  margin: 0 auto 14px;
}
.choose-close .gold { color: var(--gold-bright); }

/* ---------- 特徴 (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%; border-radius: 6px; }
.feature-collage { display: flex; align-items: flex-end; gap: 8px; }
.feature-collage img { width: calc((100% - 8px) / 2); 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; }
.feature-text .kome { font-size: 12.5px; color: var(--gray); display: block; margin-top: 6px; }

/* ---------- お客様の声 (VOICE) ---------- */
.voice { background: var(--white); padding: 64px 0 40px; }
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
.voice-card {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.voice-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 30%; }
.voice-body { padding: 18px 20px 20px; }
.voice-title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 6px;
}
.voice-title::before { content: "“"; color: var(--gold); font-family: "Times New Roman", serif; font-size: 1.3em; margin-right: 2px; }
.voice-person {
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.voice-text { font-size: 13.5px; line-height: 1.75; color: #333; }
.voice-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 24px; padding: 0 16px; }

/* ---------- 料金 (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; padding: 0 16px; }
.free-now { color: #d32129; font-weight: 800; white-space: nowrap; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
.plan-grid + .plan-grid { margin-top: 20px; }
.plan-card {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card.best { border: 2px solid var(--gold-bright); }
.plan-name {
  background: linear-gradient(135deg, #c9a544, #a9822f);
  color: var(--black);
  text-align: center;
  font-weight: 800;
  font-size: 17px;
  padding: 12px 8px;
}
.plan-best-tag {
  background: var(--black);
  color: var(--gold-bright);
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .3em;
  text-indent: .3em;
  padding: 5px 4px 4px;
  border-bottom: 1px solid #333;
}
.plan-price { text-align: center; padding: 18px 10px 2px; }
.plan-price .yen { font-size: 27px; font-weight: 800; color: var(--gold-bright); }
.plan-price .unit { font-size: 13px; color: #bbb; }
.plan-time { text-align: center; font-size: 13.5px; color: #ddd; padding-bottom: 12px; border-bottom: 1px solid #333; margin: 0 18px 12px; }
.plan-card ul { list-style: none; padding: 0 22px 14px; 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-reco {
  margin-top: auto;
  background: #201c10;
  border-top: 1px solid #3a3a3a;
  color: var(--gold-bright);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  padding: 10px 12px;
  line-height: 1.5;
}
.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; }

/* ---------- 会員特典 (MEMBER OFFER) ---------- */
.deal { background: var(--black); padding: 60px 0 64px; }
.deal-flex {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 20px;
}
.deal-flex img { width: min(340px, 42%); border-radius: 8px; }
.deal-body { flex: 1; color: var(--white); }
.deal-badge {
  display: inline-block;
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-indent: .2em;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.deal-body h3 { font-size: clamp(18px, 2.6vw, 24px); line-height: 1.6; margin-bottom: 10px; }
.deal-price {
  font-weight: 800;
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.5;
}
.deal-price .num {
  font-family: "Times New Roman", "Yu Mincho", serif;
  color: var(--gold-bright);
  font-size: clamp(38px, 5.4vw, 54px);
  line-height: 1;
}
.deal-price .sm { font-size: .55em; }
.deal-note { color: #bbb; font-size: 12.5px; margin-top: 8px; }

/* ---------- 体験の流れ (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; }
.flow-belongings {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
}
.flow-belongings .gold { color: var(--gold); }

/* ---------- トレーナー (TRAINER) ---------- */
.trainers { background: var(--black); padding: 64px 0 40px; }
.trainers-about {
  max-width: 760px;
  margin: -8px auto 38px;
  color: #ddd;
  font-size: 14.5px;
  line-height: 1.9;
  padding: 0 20px;
  text-align: center;
}
.trainers-about .gold { color: var(--gold-bright); font-weight: 700; }
.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(320px, 42%); object-fit: cover; border-radius: 6px; align-self: flex-start; }
.trainer-role { color: var(--gold-bright); font-weight: 700; font-size: 15px; }
.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); }
.trainer-body .trainer-history { font-size: 13.5px; color: #ccc; line-height: 1.8; }
/* コンパクトカード */
.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-shop {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 1px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.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(3, 1fr); gap: 16px; max-width: 940px; padding: 0 20px; }
}

/* ---------- 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) ---------- */
.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;
  padding: 0 20px;
}
.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; }
.recruit-link { color: var(--gold-bright); font-weight: 700; }

/* ---------- 店舗情報 (ACCESS) ---------- */
.shop { background: var(--white); padding: 64px 0 30px; }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.shop-card {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
}
.shop-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.shop-card-body { padding: 22px 24px 24px; }
.shop-name { font-size: clamp(17px, 2.2vw, 20px); font-weight: 800; margin-bottom: 12px; text-align: center; line-height: 1.5; }
.shop-name .shop-name-tag { display: block; font-size: 11.5px; font-weight: 700; color: var(--gold); letter-spacing: .04em; }
.shop-table { width: 100%; text-align: left; border-collapse: collapse; }
.shop-table th, .shop-table td { padding: 9px 6px; border-bottom: 1px solid #e7e0d0; font-size: 14px; vertical-align: top; line-height: 1.7; }
.shop-table th { width: 5.6em; color: var(--gold); white-space: nowrap; font-weight: 700; }
.sns-icons { display: flex; justify-content: center; gap: 20px; margin: 18px 0 0; }
.sns-icons img { width: 40px; }
.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(3, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.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;
}

/* ---------- 求人ページ (recruit.html) ---------- */
.recruit-hero { background: var(--black); padding: 56px 0 48px; }
.recruit-hero .sec-heading { margin-bottom: 18px; }
.recruit-hero-copy {
  text-align: center;
  color: #ddd;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.9;
  padding: 0 20px;
}
.recruit-hero-copy .gold { color: var(--gold-bright); font-weight: 700; }
.recruit-detail { background: var(--white); padding: 56px 0 40px; }
.recruit-table-wrap { max-width: 720px; margin: 0 auto; padding: 0 16px; }
.recruit-table th { width: 6.5em; }
.recruit-detail .cta-buttons { margin-top: 34px; }
.recruit-photo { max-width: 480px; margin: 36px auto 0; padding: 0 16px; }
.recruit-photo img { border-radius: 8px; }
.recruit-back { text-align: center; margin-top: 34px; font-size: 14px; }
.recruit-back a { color: var(--gold); font-weight: 700; text-decoration: none; }
.recruit-back a:hover { text-decoration: underline; }

/* =====================================================
   モバイル
   ===================================================== */
@media (max-width: 640px) {
  .btn-cta { font-size: 17.5px; white-space: nowrap; }
  .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; }
  .campaign-ticket-sp { margin: 14px 12px 0; padding: 0; }
  .ct-card { padding: 18px 12px 16px; }
  .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; }
  .tel-row { flex-direction: column; align-items: center; gap: 12px; }
  .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: 56px;
    font-size: 15.5px;
  }
  .campaign .btn-cta.tel .shop-tag,
  .flow .btn-cta.tel .shop-tag { color: var(--gold-bright); }
  .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; }
  .support-grid { grid-template-columns: 1fr; max-width: 480px; gap: 12px; padding: 0 16px; margin-top: 26px; }
  .support-card { text-align: left; padding: 16px 16px 14px; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
  .support-card .s-num { margin-bottom: 0; font-size: 24px; }
  .support-card h4 { margin-bottom: 0; font-size: 15px; }
  .support-card p { grid-column: 1 / -1; margin-top: 8px; }
  .results { padding: 44px 0 22px; }
  .results .sec-heading { margin-bottom: 18px; }
  .ba-block { margin-bottom: 26px; }
  .ba-cat { margin-bottom: 8px; }
  .sp-br { display: inline; }
  .choose { padding: 48px 0 46px; }
  .choose-list li { font-size: 14.5px; padding: 13px 14px 13px 44px; margin-bottom: 10px; }
  .choose-list li::before { left: 15px; font-size: 17px; }
  .choose-close { margin-top: 22px; font-size: 19px; }
  .price { padding: 44px 0 40px; }
  .price .sec-heading { margin-bottom: 6px; line-height: 1.35; }
  .price-note-top { margin-bottom: 8px; }
  .plan-grid { padding: 0 14px; gap: 14px; }
  .plan-grid + .plan-grid { margin-top: 14px; }
  .plan-price { padding: 14px 10px 2px; }
  .plan-time { padding-bottom: 10px; margin: 0 16px 10px; }
  .plan-card ul { padding: 0 18px 12px; }
  .option-box { margin: 26px 14px 0; padding: 22px 16px; }
  .option-box h3 { font-size: 18px; margin-bottom: 10px; }
  .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; }
  .deal { padding: 44px 0 46px; }
  .deal-flex { flex-direction: column; gap: 18px; }
  .deal-flex img { width: min(340px, 100%); }
  .deal-body { text-align: center; }
}

@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; }

  .hero-inner { padding: 44px 20px 40px; }
  .hero .hero-bg { opacity: .42; }
  .hero .bg-left { object-position: 42% 22%; clip-path: polygon(0 0, 58% 0, 44% 100%, 0 100%); }
  .hero .bg-right { object-position: 50% 18%; clip-path: polygon(30% 0, 100% 0, 100% 100%, 6.7% 100%); }
  .hero-divider { clip-path: polygon(57.5% 0, 58.5% 0, 44.5% 100%, 43.5% 100%); }
  .hero-badges { gap: 8px; margin-top: 20px; }
  .hero-badges li { padding: 5px 12px; }

  .ba-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 14px; padding: 0 14px; }
  .ba-case-head .p { font-size: 19px; }
  .ba-case li { font-size: 13px; }

  .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; }

  .voice { padding: 44px 0 30px; }
  .voice .sec-heading { margin-bottom: 20px; }
  .voice-grid { grid-template-columns: 1fr; max-width: 480px; gap: 14px; padding: 0 16px; }
  .voice-body { padding: 15px 16px 16px; }
  .voice-title { font-size: 15.5px; }
  .voice-text { font-size: 13px; }
  .voice-note { margin-top: 16px; }

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

  .trainers { padding: 44px 0 32px; }
  .trainers-about { font-size: 13.5px; text-align: left; margin-bottom: 26px; }
  .trainer-card { flex-direction: column; padding: 18px; gap: 14px; margin: 0 16px 16px; }
  .trainer-card img { width: 100%; 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 { 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; }
  .flow-belongings { padding: 0 16px; font-size: 13.5px; }

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

  .shop { padding: 44px 0 24px; }
  .shop .sec-heading { margin-bottom: 18px; }
  .shop-grid { grid-template-columns: 1fr; max-width: 480px; gap: 16px; padding: 0 16px; margin-bottom: 26px; }
  .shop-card-body { padding: 16px 16px 18px; }
  .shop-name { font-size: 17px; margin-bottom: 10px; }
  .shop-table th, .shop-table td { padding: 8px 4px; font-size: 13.5px; }
  .sns-icons { gap: 18px; margin-top: 14px; }
  .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級 */
@media (max-width: 350px) {
  .tiny-br { display: inline; }
  .recruit-table th { width: 5.2em; }
  .recruit-table th, .recruit-table td { font-size: 13px; }
  .feature-title { font-size: 15.5px; }
  .feature-text { font-size: 13.5px; }
  .trainer-history { font-size: 13px; }
  .trainer-grid { grid-template-columns: 1fr; }
  .step-head h3 { font-size: 16px; }
  .branch-card img { width: 96px; }
  .branch-card h4 { font-size: 13.5px; }
  .branch-tag { font-size: 10px; }
  .hero-title { font-size: 24px; }
  .ct-card h3 { font-size: 15.5px; }
}
