/* ==========================================
   SynerGym 30代向け LP — Mobile First CSS
   カラーパレット: 黄色系・ソフトトーン
   ========================================== */

/* --- CSS Variables --- */
:root {
  --yellow-primary:   #F5C842;   /* ビタミンイエロー（メインアクセント） */
  --yellow-light:     #FEF8E2;   /* クリーム系背景 */
  --yellow-medium:    #FDF0B0;   /* やや濃いめ背景 */
  --yellow-deep:      #E8AA1A;   /* ボタンhover */
  --yellow-soft:      #FFFBF0;   /* 最も明るい背景 */
  --text-dark:        #2B2B2B;   /* メインテキスト */
  --text-mid:         #555555;   /* サブテキスト */
  --text-light:       #888888;   /* 補足テキスト */
  --white:            #FFFFFF;
  --border-light:     #EEE5C0;   /* 黄みのボーダー */
  --green-accent:     #5BAD7A;   /* チェックマーク等アクセント */
  --shadow-soft:      0 4px 20px rgba(245, 200, 66, 0.18);
  --shadow-card:      0 2px 12px rgba(0, 0, 0, 0.08);
  --radius-sm:        10px;
  --radius-md:        16px;
  --radius-lg:        24px;
  --font-main:        'Noto Sans JP', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--yellow-soft);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 70px; /* sticky CTA分 */
}

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

/* ==========================================
   FONT AWESOME アイコン 共通スタイル
   ========================================== */

/* FV feature バッジ内アイコン */
.fv-feature-item i {
  font-size: 0.85em;
  width: 1em;
  text-align: center;
}

/* 悩みカード アイコン */
.worry-icon i {
  font-size: 1.7rem;
  color: var(--yellow-deep);
  display: block;
  text-align: center;
}

/* 体の変化 アイコン */
.change-icon i {
  font-size: 1.5rem;
  color: var(--yellow-deep);
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--yellow-medium);
  border-radius: 12px;
  margin-bottom: 6px;
}

/* 体験の流れ ステップ見出し内アイコン */
.step-content h3 i {
  font-size: 1rem;
  color: var(--yellow-deep);
  width: 1.2em;
  text-align: center;
}

/* howto カード 時間帯アイコン */
.howto-emoji i {
  font-size: 1.3rem;
  color: var(--yellow-deep);
  display: block;
  text-align: center;
}

/* パーソナル p-icon */
.p-icon i {
  font-size: 1.4rem;
  color: var(--yellow-primary);
  display: block;
  text-align: center;
}

/* 声アバター */
.voice-avatar i {
  font-size: 1.4rem;
  color: var(--yellow-deep);
}

/* 比較メッセージ */
.compare-message i {
  color: var(--yellow-deep);
  margin-right: 4px;
}

/* キャンペーン store icon */
.campaign-store-icon i {
  font-size: 1.2rem;
  color: var(--yellow-deep);
}

/* キャンペーンタグ icon */
.price-campaign-tag i {
  color: #C43A3A;
  margin-right: 4px;
}

/* 店舗注記 icon */
.plan-note-icon i {
  font-size: 0.85rem;
  color: var(--yellow-deep);
}

/* 最終CTA badge icon */
.badge i {
  font-size: 0.8em;
  margin-right: 3px;
}

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

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 251, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--yellow-primary);
  box-shadow: 0 2px 12px rgba(245, 200, 66, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.header-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}

.header-cta-btn {
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.header-cta-btn:active {
  background: var(--yellow-deep);
  transform: scale(0.97);
}

/* ==========================================
   FIRST VIEW
   ========================================== */
.fv {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 56px; /* header height */
  overflow: hidden;
}

.fv-image-wrap {
  position: absolute;
  inset: 0;
}

.fv-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 251, 240, 0.2) 0%,
    rgba(30, 20, 0, 0.55) 50%,
    rgba(20, 12, 0, 0.80) 100%
  );
}

.fv-content {
  position: relative;
  z-index: 2;
  padding: 32px 20px 40px;
  width: 100%;
  color: var(--white);
}

.fv-badge {
  display: inline-block;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.fv-title {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.fv-sub {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.92;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.fv-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.fv-feature-item {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
}

.fv-note {
  font-size: 0.72rem;
  opacity: 0.75;
  margin-top: 12px;
  text-align: center;
}

/* ===== FV 比較バー ===== */
.fv-compare-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}

.fv-compare-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 12px 8px;
  text-align: center;
}

.fv-compare-other {
  background: rgba(0,0,0,0.4);
}

.fv-compare-syner {
  background: rgba(245, 200, 66, 0.25);
  border-left: 1.5px solid var(--yellow-primary);
}

.fv-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  font-size: 0.72rem;
  font-weight: 900;
  color: rgba(255,255,255,0.7);
  padding: 0 8px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.fv-compare-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.75;
  color: var(--white);
}

.fv-compare-item.fv-compare-syner .fv-compare-label {
  color: var(--yellow-primary);
  opacity: 1;
}

.fv-compare-val {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}

.fv-compare-item.fv-compare-syner .fv-compare-val {
  color: var(--yellow-primary);
}

.fv-compare-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.fv-compare-item.fv-compare-syner .fv-compare-sub {
  color: rgba(255,251,200,0.85);
}

/* ===== FV キャンペーンバー ===== */
.fv-campaign-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 10, 0, 0.55);
  border: 1.5px solid var(--yellow-primary);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

/* キラキラライン */
.fv-campaign-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow-primary), transparent);
  animation: shimmer 2.4s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { opacity: 0.3; }
  50%  { opacity: 1; }
  100% { opacity: 0.3; }
}

.fv-campaign-fire {
  display: none;
}

.fv-campaign-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fv-campaign-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--yellow-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fv-campaign-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.fv-campaign-main s {
  font-size: 0.82rem;
  opacity: 0.7;
  text-decoration-color: rgba(255, 100, 100, 0.9);
}

.fv-campaign-main strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--yellow-primary);
  letter-spacing: 0.02em;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(245, 200, 66, 0.5);
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary:active {
  background: var(--yellow-deep);
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(245, 200, 66, 0.3);
}

.btn-primary.mt-40 {
  margin-top: 40px;
}

.btn-primary.btn-large {
  font-size: 1.05rem;
  padding: 18px 28px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--yellow-primary);
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
}

.btn-secondary:active {
  background: var(--yellow-light);
  transform: scale(0.97);
}

.btn-arrow {
  font-size: 1.1em;
}

/* ==========================================
   SECTION COMMON
   ========================================== */
.section {
  padding: 64px 0;
}

.section-inner {
  padding: 0 18px;
  max-width: 480px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--yellow-deep);
  background: var(--yellow-medium);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.section-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ==========================================
   COMPARE SECTION (他社比較)
   ========================================== */
.compare-section {
  background: var(--white);
}

.compare-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

/* ヘッダー行 */
.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
}

.compare-col-head {
  background: var(--text-dark);
}

.compare-col-other {
  background: #F0F0F0;
  font-size: 0.78rem;
  font-weight: 800;
  color: #777;
  text-align: center;
  padding: 10px 6px;
  border-left: 1px solid #DDD;
}

.compare-col-syner {
  background: var(--yellow-primary);
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  padding: 10px 6px;
  border-left: 1px solid var(--yellow-deep);
}

/* データ行 */
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  border-top: 1px solid var(--border-light);
}

.compare-row:nth-child(even) .compare-col-item {
  background: #FAFAFA;
}
.compare-row:nth-child(even) .compare-col-other {
  background: #F5F5F5;
}
.compare-row:nth-child(even) .compare-col-syner {
  background: var(--yellow-soft);
}

.compare-col-item {
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 12px 10px;
  background: #FDFDFD;
  display: flex;
  align-items: center;
  line-height: 1.45;
}

.compare-col-other {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
}

.compare-col-syner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  background: #FFFCE8;
  border-left: 2px solid var(--yellow-primary);
}

/* 価格行 */
.compare-row-price .compare-col-item {
  font-weight: 800;
}
.compare-row-price .compare-col-other,
.compare-row-price .compare-col-syner {
  padding: 14px 6px;
}

/* 判定アイコン */
.c-good {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-accent);
  text-align: center;
  line-height: 1.4;
}

.c-bad {
  font-size: 0.75rem;
  font-weight: 600;
  color: #AAAAAA;
  text-align: center;
  line-height: 1.4;
}

.c-price-other {
  font-size: 0.88rem;
  font-weight: 900;
  color: #AAAAAA;
}

.c-price-syner {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--yellow-deep);
}

/* まとめメッセージ */
.compare-message {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compare-message p {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.compare-message strong {
  font-weight: 900;
}

/* ==========================================
   WORRY SECTION (悩み共感)
   ========================================== */
.worry-section {
  background: var(--white);
}

.worry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.worry-card {
  background: var(--yellow-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.worry-card:active {
  transform: scale(0.97);
}

.worry-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.worry-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.55;
}

.worry-answer {
  background: var(--yellow-primary);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}

.worry-answer p {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* ==========================================
   CHANGE SECTION (体の変化)
   ========================================== */
.change-section {
  background: var(--yellow-soft);
}

.change-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.change-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.change-icon {
  font-size: 1.6rem;
}

.change-item h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.change-item p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.change-answer {
  background: var(--yellow-medium);
  border-left: 4px solid var(--yellow-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 18px;
}

.change-answer p {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.65;
}

.change-answer strong {
  color: var(--text-dark);
  font-weight: 800;
}

/* ==========================================
   REASON SECTION (選ばれる理由)
   ========================================== */
.reason-section {
  background: var(--white);
  padding: 64px 0;
}

.reason-block {
  margin-bottom: 40px;
  background: var(--yellow-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.reason-block:last-child {
  margin-bottom: 0;
}

.reason-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.reason-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.reason-block:hover .reason-img-wrap img {
  transform: scale(1.03);
}

.reason-text-wrap {
  padding: 22px 18px 24px;
}

.reason-num {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--yellow-deep);
  margin-bottom: 6px;
}

.reason-text-wrap h3 {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.reason-text-wrap p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ==========================================
   HOW TO SECTION (通い方)
   ========================================== */
.howto-section {
  background: var(--yellow-light);
}

.howto-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.howto-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.howto-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.howto-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.howto-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ==========================================
   FACILITY SECTION (設備紹介)
   ========================================== */
.facility-section {
  background: var(--white);
}

.facility-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.facility-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--yellow-soft);
}

.facility-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.facility-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facility-label {
  padding: 16px 16px 18px;
}

.facility-tag {
  display: inline-block;
  background: var(--yellow-medium);
  color: var(--text-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.facility-label h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.facility-label p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ==========================================
   TRIAL INFO SECTION (体験でわかること)
   ========================================== */
.trial-info-section {
  background: var(--yellow-light);
}

.trial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trial-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
}

.trial-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green-accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 1px;
}

.trial-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.trial-item p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ==========================================
   FLOW SECTION (体験の流れ)
   ========================================== */
.flow-section {
  background: var(--white);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  background: var(--yellow-soft);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.flow-arrow {
  text-align: center;
  font-size: 1.4rem;
  color: var(--yellow-deep);
  padding: 6px 0;
  font-weight: 900;
}

.step-num {
  flex-shrink: 0;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 48px;
}

.step-num span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.step-content h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ==========================================
   PERSONAL SECTION (パーソナル)
   ========================================== */
.personal-section {
  background: linear-gradient(160deg, #2B2B2B 0%, #3D3526 100%);
  position: relative;
  overflow: hidden;
}

/* 背景デコレーション */
.personal-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(245, 200, 66, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.personal-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(245, 200, 66, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* パーソナルセクション内のテキスト色を反転 */
.personal-section .section-label {
  background: rgba(245, 200, 66, 0.2);
  color: var(--yellow-primary);
}

.personal-section .section-title {
  color: var(--white);
}

.personal-section .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.personal-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.personal-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(245, 200, 66, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 16px;
  box-shadow: none;
}

.personal-feat-item strong {
  color: var(--yellow-primary) !important;
}

.personal-feat-item p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.p-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.personal-feat-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.personal-feat-item p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.personal-cta-box {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid var(--yellow-primary);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(245, 200, 66, 0.2);
}

.personal-cta-label {
  display: inline-block;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

/* btn-secondary を暗背景上で白く見せる */
.personal-section .btn-secondary {
  background: var(--yellow-primary);
  border-color: var(--yellow-primary);
  color: var(--text-dark);
}

.personal-cta-box h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 12px;
}

.personal-cta-box p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ==========================================
   VOICE SECTION (お客様の声)
   ========================================== */
.voice-section {
  background: var(--white);
}

.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice-card {
  background: var(--yellow-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
}

.voice-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.voice-avatar {
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-medium);
  border-radius: 50%;
  flex-shrink: 0;
}

.voice-profile strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

.voice-profile span {
  font-size: 0.75rem;
  color: var(--text-mid);
}

.voice-body {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 10px;
}

.voice-stars {
  font-size: 0.85rem;
  color: var(--yellow-deep);
  letter-spacing: 0.1em;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  background: var(--yellow-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  transition: background 0.15s;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  background: var(--yellow-soft);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--yellow-deep);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 18px 16px;
}

.faq-answer p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.faq-answer a {
  color: var(--yellow-deep);
  text-decoration: underline;
}

/* ==========================================
   STORE SECTION (店舗一覧)
   ========================================== */
.store-section {
  background: var(--white);
}

.store-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  box-shadow: var(--shadow-card);
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.store-card:active {
  background: var(--yellow-light);
  transform: scale(0.98);
}

.store-area-badge {
  flex-shrink: 0;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  min-width: 34px;
  text-align: center;
}

.store-info {
  flex: 1;
  min-width: 0;
}

.store-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-address {
  font-size: 0.72rem;
  color: var(--text-mid);
  line-height: 1.4;
  margin-bottom: 2px;
}

.store-tel {
  font-size: 0.72rem;
  color: var(--text-light);
}

.store-arrow {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--yellow-deep);
  font-weight: 700;
}

.store-all-link {
  text-align: center;
}

.store-all-link a {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--yellow-deep);
  text-decoration: underline;
  padding: 8px 0;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta-section {
  background: linear-gradient(160deg, var(--yellow-medium) 0%, var(--yellow-light) 100%);
  border-top: 3px solid var(--yellow-primary);
}

.final-cta-content {
  text-align: center;
}

.final-cta-content h2 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.final-cta-content > p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.final-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.badge {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
}

.final-note {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 14px;
}

.final-personal-link {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.final-personal-link p {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.final-personal-link a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow-deep);
  text-decoration: underline;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0 24px;
}

.footer-inner {
  padding: 0 18px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--yellow-primary);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--yellow-primary);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

/* ==========================================
   STICKY CTA
   ========================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 10px 16px 12px;
  background: rgba(255, 251, 240, 0.96);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--yellow-primary);
  box-shadow: 0 -4px 16px rgba(245, 200, 66, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(245, 200, 66, 0.45);
  transition: background 0.2s, transform 0.1s;
}

.sticky-cta-btn:active {
  background: var(--yellow-deep);
  transform: scale(0.97);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.worry-grid .worry-card:nth-child(1)  { transition-delay: 0.0s; }
.worry-grid .worry-card:nth-child(2)  { transition-delay: 0.05s; }
.worry-grid .worry-card:nth-child(3)  { transition-delay: 0.1s; }
.worry-grid .worry-card:nth-child(4)  { transition-delay: 0.15s; }
.worry-grid .worry-card:nth-child(5)  { transition-delay: 0.2s; }
.worry-grid .worry-card:nth-child(6)  { transition-delay: 0.25s; }
.worry-grid .worry-card:nth-child(7)  { transition-delay: 0.3s; }
.worry-grid .worry-card:nth-child(8)  { transition-delay: 0.35s; }
.worry-grid .worry-card:nth-child(9)  { transition-delay: 0.4s; }
.worry-grid .worry-card:nth-child(10) { transition-delay: 0.45s; }

/* ==========================================
   CAMPAIGN SECTION
   ========================================== */
.campaign-section {
  background: var(--white);
}

.campaign-main-card {
  background: linear-gradient(135deg, #FFF8D6 0%, #FEF0A0 50%, #FDDД60 100%);
  background: linear-gradient(135deg, #FFF8D6 0%, #FDF0B0 100%);
  border: 2px solid var(--yellow-primary);
  border-radius: var(--radius-lg);
  padding: 24px 20px 18px;
  margin-bottom: 16px;
  box-shadow: 0 6px 24px rgba(245, 200, 66, 0.28);
  position: relative;
  overflow: hidden;
}

/* 背景デコ */
.campaign-main-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(245, 200, 66, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.campaign-fire {
  display: inline-block;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.campaign-main-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.campaign-price-cross {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.campaign-label-text {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.06em;
}

.campaign-original {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  text-decoration: line-through;
  text-decoration-color: #E05555;
  text-decoration-thickness: 2px;
}

.campaign-arrow-down {
  font-size: 1rem;
  color: var(--yellow-deep);
  font-weight: 900;
  line-height: 1;
}

.campaign-free-badge {
  background: #E05555;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  box-shadow: 0 3px 10px rgba(224, 85, 85, 0.35);
}

.campaign-main-desc {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.75;
}

.campaign-main-desc strong {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--text-dark);
}

.campaign-note {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
}

.campaign-store-box {
  background: var(--yellow-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.campaign-store-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.campaign-store-icon {
  font-size: 1.3rem;
}

.campaign-store-desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}

.btn-campaign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(245, 200, 66, 0.4);
  transition: background 0.2s, transform 0.1s;
}

.btn-campaign:active {
  background: var(--yellow-deep);
  transform: scale(0.97);
}

/* ==========================================
   PRICE SECTION
   ========================================== */
.price-section {
  background: var(--yellow-light);
}

/* 入会金ボックス */
.price-entry-box {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.price-entry-label {
  background: var(--text-dark);
  color: var(--yellow-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  text-align: center;
}

.price-entry-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 8px;
}

.price-entry-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.price-entry-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.price-yen {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-tax {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-left: 2px;
}

.price-entry-detail {
  margin: 8px 18px;
  background: var(--yellow-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.price-detail-label {
  color: var(--text-mid);
}

.price-detail-val {
  font-weight: 700;
  color: var(--text-dark);
}

.price-detail-divider {
  height: 1px;
  background: var(--border-light);
}

.price-campaign-tag {
  margin: 0 18px 16px;
  background: linear-gradient(90deg, #FFF0F0, #FFE4E4);
  border: 1px solid #F5BBBB;
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  text-align: center;
}

.price-campaign-tag span {
  font-size: 0.82rem;
  font-weight: 800;
  color: #C43A3A;
  letter-spacing: 0.02em;
}

/* 月額プラン */
.price-plans-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 3px solid var(--yellow-primary);
}

.price-plans {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.price-plan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

/* マスター会員 強調 */
.price-plan-master {
  border: 2px solid var(--yellow-primary);
  box-shadow: 0 6px 24px rgba(245, 200, 66, 0.3);
}

.plan-recommend-ribbon {
  position: absolute;
  top: 12px;
  right: -8px;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 16px 4px 10px;
  border-radius: 4px 0 0 4px;
  letter-spacing: 0.06em;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.12);
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

.plan-regular {
  background: var(--yellow-soft);
  border-bottom: 1px solid var(--border-light);
}

.plan-master {
  background: linear-gradient(90deg, var(--yellow-medium), var(--yellow-light));
  border-bottom: 2px solid var(--yellow-primary);
}

.plan-name {
  font-size: 0.98rem;
  font-weight: 900;
  color: var(--text-dark);
}

.plan-badge {
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--yellow-primary);
  color: var(--text-dark);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  padding: 12px 18px 10px;
  border-bottom: 1px solid var(--border-light);
}

.plan-price-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.plan-price-unit {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.plan-price-unit small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
}

.plan-features {
  list-style: none;
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.plan-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green-accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}

.plan-check-gold {
  background: var(--yellow-deep);
}

.price-note {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
}

.price-note p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.65;
}

.price-note a {
  color: var(--yellow-deep);
  text-decoration: underline;
}

/* レギュラー会員 実施店舗注記 */
.plan-note-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--yellow-medium);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-top: 4px;
  border-left: 3px solid var(--yellow-deep);
}

.plan-note-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-note-text {
  font-size: 0.75rem !important;
  font-weight: 600;
  color: var(--text-mid) !important;
  line-height: 1.6;
}

/* ==========================================
   HOW TO CARD — 画像付きバリエーション
   ========================================== */
.howto-card-img {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  gap: 0;
  border-radius: var(--radius-md);
}

.howto-card-photo {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.howto-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.howto-card-img:hover .howto-card-photo img {
  transform: scale(1.04);
}

.howto-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.howto-card-body .howto-emoji {
  font-size: 1.5rem;
}

.howto-card-body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.howto-card-body p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ==========================================
   VOICE — バナー画像
   ========================================== */
.voice-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  height: 180px;
  box-shadow: var(--shadow-card);
}

.voice-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.voice-banner-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30,20,0,0.7));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 24px 18px 14px;
  letter-spacing: 0.03em;
}

/* ==========================================
   PERSONAL — 画像バナー
   ========================================== */
.personal-img-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  height: 200px;
  box-shadow: var(--shadow-card);
}

.personal-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.personal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(30,20,0,0.72) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.personal-img-overlay span {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ==========================================
   MEDIA: PC (for reference, not primary)
   ========================================== */
@media (min-width: 600px) {
  .section-inner {
    padding: 0 24px;
  }
  .fv-title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .worry-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
