/* =========================================================
   ゆい♡らぶ 交流クラブ 料金ページ 専用スタイル
   - .cp-page スコープで既存CSSと干渉しない
   - 月額（ピンク）と都度（ブルー）でセクション明確分離
   - メイン #f8a5c2（ピンク）+ サブ #74b9ff（ブルー）
   - スマホ最優先・余白広め・ボタン大きく
========================================================= */

.cp-page {
  font-family: 'Hiragino Maru Gothic ProN', 'BIZ UDPGothic', 'Meiryo', 'Noto Sans JP', sans-serif;
  background: #fafbfd;
  color: #2d2440;
  font-size: 17px;
  line-height: 1.95;
  padding-bottom: 80px;
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   ダイヤモンド降下演出（料金ページ）
============================================ */
.cp-diamond-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none; /* クリックを邪魔しない */
  overflow: hidden;
  z-index: 50; /* コンテンツより前に出す */
}
.cp-diamond {
  position: absolute;
  top: -50px;
  font-size: 28px;
  opacity: 0;
  /* 薄めにするためフィルター調整：彩度を下げて、明度を上げる */
  filter: drop-shadow(0 2px 4px rgba(255, 200, 220, 0.3)) saturate(0.6) brightness(1.15);
  user-select: none;
  will-change: transform, opacity;
}

/* 12個のダイヤモンドそれぞれに異なる位置・サイズ・タイミングを設定 */
.cp-diamond--1  { left:  5%;  font-size: 30px; animation: cp-diamond-fall 9s linear infinite;       animation-delay: 0s;   }
.cp-diamond--2  { left: 15%;  font-size: 22px; animation: cp-diamond-fall 11s linear infinite;      animation-delay: 1.5s; }
.cp-diamond--3  { left: 25%;  font-size: 36px; animation: cp-diamond-fall 8s linear infinite;       animation-delay: 3s;   }
.cp-diamond--4  { left: 35%;  font-size: 26px; animation: cp-diamond-fall 12s linear infinite;      animation-delay: 0.8s; }
.cp-diamond--5  { left: 45%;  font-size: 32px; animation: cp-diamond-fall 10s linear infinite;      animation-delay: 2.2s; }
.cp-diamond--6  { left: 55%;  font-size: 24px; animation: cp-diamond-fall 13s linear infinite;      animation-delay: 4s;   }
.cp-diamond--7  { left: 65%;  font-size: 34px; animation: cp-diamond-fall 9.5s linear infinite;     animation-delay: 1.2s; }
.cp-diamond--8  { left: 75%;  font-size: 28px; animation: cp-diamond-fall 11.5s linear infinite;    animation-delay: 3.5s; }
.cp-diamond--9  { left: 85%;  font-size: 30px; animation: cp-diamond-fall 8.5s linear infinite;     animation-delay: 0.4s; }
.cp-diamond--10 { left: 92%;  font-size: 22px; animation: cp-diamond-fall 12.5s linear infinite;    animation-delay: 2.8s; }
.cp-diamond--11 { left: 30%;  font-size: 20px; animation: cp-diamond-fall 14s linear infinite;      animation-delay: 5s;   }
.cp-diamond--12 { left: 70%;  font-size: 38px; animation: cp-diamond-fall 10.5s linear infinite;    animation-delay: 6s;   }

/* ダイヤモンドが降ってくるアニメーション
   - 上から下に落下
   - 少しだけ回転＆横揺れ
   - 出現・消失でフェードイン/アウト */
@keyframes cp-diamond-fall {
  0% {
    transform: translate(0, -50px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5; /* 最大不透明度を 0.5 に下げて薄く */
  }
  50% {
    transform: translate(20px, 50vh) rotate(180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translate(-20px, 100vh) rotate(360deg);
    opacity: 0;
  }
}

/* スマホでは数を減らして軽量化 */
@media (max-width: 720px) {
  .cp-diamond--3,
  .cp-diamond--6,
  .cp-diamond--9,
  .cp-diamond--11 {
    display: none;
  }
  .cp-diamond {
    font-size: 22px !important;
  }
}

/* アニメーション軽減設定が有効な場合は非表示 */
@media (prefers-reduced-motion: reduce) {
  .cp-diamond-rain {
    display: none;
  }
}

/* ヒーローセクション・コンテンツのレイヤー設定（ダイヤモンドより下） */
.cp-page .cp-hero,
.cp-page .cp-container {
  position: relative;
  z-index: 1;
}
.cp-page *,
.cp-page *::before,
.cp-page *::after { box-sizing: border-box; }

/* ===== 共通コンテナ ===== */
.cp-page .cp-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== セクション余白 ===== */
.cp-page .cp-section,
.cp-page .cp-plan-section {
  margin-top: 64px;
}
.cp-page .cp-section:first-of-type,
.cp-page .cp-plan-section:first-of-type { margin-top: 40px; }

/* =========================================================
   共通ボタン
========================================================= */
.cp-page .cp-btn {
  display: inline-block;
  padding: 22px 36px;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  letter-spacing: 0.05em;
  font-family: inherit;
  width: 100%;
  line-height: 1.4;
}
.cp-page .cp-btn:hover, .cp-page .cp-btn:focus {
  transform: translateY(-2px);
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
.cp-page .cp-btn--pink {
  background: linear-gradient(90deg, #f8a5c2 0%, #ff8fb1 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(248, 165, 194, 0.45);
}
.cp-page .cp-btn--blue {
  background: linear-gradient(90deg, #74b9ff 0%, #5a9cf5 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(116, 185, 255, 0.45);
}
.cp-page .cp-btn--xl {
  font-size: 1.3rem;
  padding: 26px 40px;
}
.cp-page .cp-btn--ghost {
  background: #fff;
  color: #5a4a5f;
  border: 2px solid #d4c8d8;
  box-shadow: none;
  font-size: 1rem;
  padding: 14px 24px;
}
.cp-page .cp-btn--ghost:hover { background: #f8f4fa; border-color: #b8a8c0; color: #3a2a4f; }
.cp-page .cp-btn--supporter {
  background: linear-gradient(90deg, #ffcb78 0%, #ff9f47 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 159, 71, 0.4);
}
/* 銀行振込ボタン（カード決済と同じ存在感、色だけ抑えめ） */
.cp-page .cp-btn--bank {
  background: #fff;
  color: #2d2440;
  border: 2px solid #c4b8d0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.cp-page .cp-btn--bank:hover, .cp-page .cp-btn--bank:focus {
  background: #faf8fd;
  border-color: #8a7a8f;
  color: #2d2440;
}

/* CTA ボタングループ（カード内・主+副） */
.cp-page .cp-plan-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* =========================================================
   ① ファーストビュー
   ★ 重要：サイトナビゲーション（固定/sticky）と被らないよう
   上余白を十分に確保する（PC 140px / モバイル 100px）
========================================================= */
.cp-page .cp-hero {
  background:
    radial-gradient(ellipse at top right, #ffe8f1 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, #e3f0ff 0%, transparent 55%),
    linear-gradient(180deg, #fff8fb 0%, #f6fbff 100%);
  padding: 140px 20px 64px !important;
  text-align: center !important;
  border-bottom: 1px solid #f4e4ec;
  position: relative;
  z-index: 1;
}
.cp-page .cp-hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f8a5c2 0%, #c9a3e6 50%, #74b9ff 100%);
  color: #fff;
  padding: 7px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(201, 163, 230, 0.35);
  text-shadow: 0 1px 2px rgba(180, 80, 130, 0.25);
}
.cp-page .cp-hero h1 {
  font-size: 1.7rem !important;
  color: #d96b9e !important;
  margin: 0 auto 14px !important;
  line-height: 1.55 !important;
  font-weight: bold !important;
  max-width: 720px;
  padding: 0 !important;
}
.cp-page .cp-hero .cp-hero-sub {
  font-size: 1rem !important;
  color: #5a4a5f !important;
  margin: 0 auto 28px !important;
  line-height: 1.85 !important;
  max-width: 640px;
  padding: 0 !important;
}
.cp-page .cp-hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
}
.cp-page .cp-hero-cta .cp-btn {
  width: auto;
  min-width: 220px;
}

/* スマホ：上余白も縮小 */
@media (max-width: 720px) {
  .cp-page .cp-hero {
    padding: 100px 16px 44px !important;
  }
  .cp-page .cp-hero-badge {
    font-size: 0.82rem;
    padding: 6px 16px;
    margin-bottom: 14px;
  }
  .cp-page .cp-hero h1 {
    font-size: 1.35rem !important;
    line-height: 1.5 !important;
  }
  .cp-page .cp-hero .cp-hero-sub {
    font-size: 0.95rem !important;
    margin-bottom: 22px !important;
  }
  .cp-page .cp-hero-cta .cp-btn {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   無料体験（特別カード・トップ配置）
========================================================= */
.cp-page .cp-free {
  background: linear-gradient(135deg, #fff5f8 0%, #fff 60%, #f4f8ff 100%);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 8px 28px rgba(248, 165, 194, 0.18);
  border: 2px dashed #f8a5c2;
  text-align: center;
  position: relative;
}
.cp-page .cp-free .cp-free-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f8a5c2 0%, #ff8fb1 100%);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(248, 165, 194, 0.35);
}
.cp-page .cp-free h2 {
  font-size: 1.7rem;
  color: #d96b9e;
  margin: 0 0 4px;
}
.cp-page .cp-free .cp-free-amount {
  font-size: 2.8rem;
  color: #f8669c;
  font-weight: bold;
  line-height: 1.1;
  margin: 12px 0 6px;
}
.cp-page .cp-free .cp-free-amount small {
  font-size: 0.4em;
  color: #8a7a8f;
  font-weight: normal;
}
.cp-page .cp-free .cp-free-meta {
  color: #5a6a8f;
  font-size: 1rem;
  margin: 0 0 22px;
}
.cp-page .cp-free .cp-merits {
  text-align: left;
  background: #fff;
  border-color: #ffd9e6;
  margin-bottom: 24px;
}

/* =========================================================
   プランセクション共通（月額／都度を区切るコンテナ）
========================================================= */
.cp-page .cp-plan-section {
  border-radius: 28px;
  padding: 48px 36px 40px;
  position: relative;
}
.cp-page .cp-plan-section--monthly {
  background: linear-gradient(135deg, #fff0f6 0%, #fff8fb 60%, #fff5f8 100%);
  border: 2px solid #ffcfdc;
  box-shadow: 0 14px 40px rgba(248, 165, 194, 0.18);
}
.cp-page .cp-plan-section--oneshot {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 60%, #f0f6ff 100%);
  border: 2px solid #cfe6ff;
  box-shadow: 0 14px 40px rgba(116, 185, 255, 0.18);
}

/* セクションヘッダー */
.cp-page .cp-plan-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.cp-page .cp-plan-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.cp-page .cp-plan-badge--pink {
  background: linear-gradient(90deg, #f8a5c2 0%, #ff8fb1 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(248, 165, 194, 0.35);
}
.cp-page .cp-plan-badge--blue {
  background: linear-gradient(90deg, #74b9ff 0%, #5a9cf5 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(116, 185, 255, 0.35);
}
.cp-page .cp-plan-section h2 {
  font-size: 1.85rem;
  margin: 0 0 12px;
  font-weight: bold;
  line-height: 1.5;
}
.cp-page .cp-plan-section--monthly h2 { color: #d96b9e; }
.cp-page .cp-plan-section--oneshot h2 { color: #5a9cf5; }
.cp-page .cp-plan-section-lead {
  color: #5a4a5f;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.85;
}
.cp-page .cp-plan-section-lead strong {
  color: #2d2440;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 4px;
}
.cp-page .cp-plan-section-note {
  text-align: center;
  margin: 24px 0 0;
  font-size: 0.9rem;
  color: #8a7a8f;
}

/* プラングリッド */
.cp-page .cp-plan-grid {
  display: grid;
  gap: 20px;
}
.cp-page .cp-plan-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
.cp-page .cp-plan-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* プランカード */
.cp-page .cp-plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.cp-page .cp-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.cp-page .cp-plan-card--pink {
  border: 2px solid #ffd9e6;
}
.cp-page .cp-plan-card--blue {
  border: 2px solid #cfe6ff;
}
.cp-page .cp-plan-card--featured {
  border-width: 3px;
  border-color: #f8a5c2;
  box-shadow: 0 10px 32px rgba(248, 165, 194, 0.3);
  background: linear-gradient(135deg, #fff 0%, #fffafc 100%);
}
.cp-page .cp-plan-card-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff6f9c 0%, #f8a5c2 100%);
  color: #fff;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255, 111, 156, 0.35);
}

.cp-page .cp-plan-card h3 {
  font-size: 1.3rem;
  margin: 0 0 4px;
  text-align: center;
  font-weight: bold;
}
.cp-page .cp-plan-card--pink h3 { color: #d96b9e; }
.cp-page .cp-plan-card--blue h3 { color: #5a9cf5; }

.cp-page .cp-plan-price {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  margin: 8px 0 4px;
}
.cp-page .cp-plan-card--pink .cp-plan-price { color: #f8669c; }
.cp-page .cp-plan-card--blue .cp-plan-price { color: #74b9ff; }
.cp-page .cp-plan-price small {
  font-size: 0.5em;
  color: #8a7a8f;
  font-weight: normal;
  margin-left: 4px;
}
.cp-page .cp-plan-meta {
  text-align: center;
  color: #5a4a5f;
  font-size: 0.95rem;
  margin: 0 0 18px;
}

/* メリットリスト（カード内・既存スタイル流用） */
.cp-page .cp-merits {
  list-style: none;
  margin: 0 0 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  border: 1px dashed #e4dce8;
  flex: 1;
}
.cp-page .cp-plan-card--pink .cp-merits { border-color: #ffd9e6; background: #fff8fb; }
.cp-page .cp-plan-card--blue .cp-merits { border-color: #cfe6ff; background: #f4f8ff; }
.cp-page .cp-merits li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 0.98rem;
  color: #2d2440;
  line-height: 1.65;
}
.cp-page .cp-merits li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 7px;
  font-weight: bold;
  font-size: 1.1em;
}
.cp-page .cp-plan-card--pink .cp-merits li::before { color: #f8a5c2; }
.cp-page .cp-plan-card--blue .cp-merits li::before { color: #74b9ff; }
.cp-page .cp-free .cp-merits li::before { color: #f8a5c2; }

/* =========================================================
   pay.jp 決済ボタン関連（プロキシボタン方式）
   - 表示は cp-pay-trigger（私たちのカスタムボタン）
   - pay.jp が自動生成する input は完全に非表示
   - クリック時に JS がプロキシ的に pay.jp ボタンを click()
========================================================= */
/* コンテナ */
.cp-page .cp-payjp-form {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

/* 裏で動く pay.jp 関連を完全に非表示・無効化 */
.cp-page .cp-payjp-hidden {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
/* pay.jp が生成する全要素も念のため隠す */
.cp-page .cp-payjp-hidden * {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* カスタムトリガーボタン：少し読み込み中の演出 */
.cp-page .cp-pay-trigger[data-payjp-ready="0"] {
  opacity: 0.65;
  cursor: wait;
}

/* 決済処理中オーバーレイ */
.cp-page .cp-pay-loading {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}
.cp-page .cp-pay-loading.is-active { display: flex; }
.cp-page .cp-pay-loading-inner {
  background: #fff;
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.cp-page .cp-pay-loading-spinner {
  font-size: 2.5rem;
  animation: cp-spin 1.2s linear infinite;
  display: inline-block;
}
@keyframes cp-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =========================================================
   モーダル（成功・エラー）
========================================================= */
.cp-page .cp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cp-page .cp-modal.is-open { display: flex; }
.cp-page .cp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 36, 64, 0.55);
  backdrop-filter: blur(4px);
}
.cp-page .cp-modal-content {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 40px 32px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: cp-modal-pop 0.25s ease-out;
}
@keyframes cp-modal-pop {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.cp-page .cp-modal-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 12px;
}
.cp-page .cp-modal-title {
  font-size: 1.35rem;
  color: #d96b9e;
  margin: 0 0 16px;
  font-weight: bold;
}
.cp-page .cp-modal-text {
  font-size: 1rem;
  color: #4a3a5f;
  line-height: 1.95;
  margin: 0 0 28px;
}
.cp-page .cp-modal-content .cp-btn {
  width: auto;
  min-width: 180px;
  padding: 16px 32px;
  font-size: 1rem;
}
/* 銀行振込モーダル：コンパクト・読みやすく */
.cp-page .cp-modal-content--wide {
  max-width: 440px;
  text-align: left;
  padding: 24px 22px 20px !important;
  max-height: 85vh;
  overflow-y: auto;
}
.cp-page .cp-modal-content--wide .cp-modal-icon {
  text-align: center;
  font-size: 2.4rem !important;
  margin-bottom: 4px;
}
.cp-page .cp-modal-content--wide .cp-modal-title {
  text-align: center;
  font-size: 1.1rem !important;
  margin: 0 0 12px !important;
}

.cp-page .cp-bank-plan {
  text-align: center;
  font-size: 0.95rem;
  color: #d96b9e;
  font-weight: bold;
  margin: 0 0 14px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #fff5f8 0%, #f4f8ff 100%);
  border-radius: 10px;
}
.cp-page .cp-bank-steps {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-page .cp-bank-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #fafbfd;
  border-radius: 10px;
  border: 1px solid #ebe8ee;
}
.cp-page .cp-bank-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #74b9ff 0%, #5a9cf5 100%);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.cp-page .cp-bank-steps li > div {
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2d2440;
}
.cp-page .cp-bank-steps li > div strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 2px;
}
.cp-page .cp-bank-steps small {
  display: block;
  font-size: 0.78rem;
  color: #6a5a6f;
  line-height: 1.5;
}
.cp-page .cp-bank-note {
  font-size: 0.8rem;
  color: #8a7a8f;
  text-align: center;
  margin: 10px 0 14px;
}
.cp-page .cp-modal-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.cp-page .cp-modal-cta .cp-btn {
  width: 100%;
  max-width: 340px;
  font-size: 0.98rem !important;
  padding: 14px 20px !important;
}
.cp-page .cp-modal-cta .cp-btn--xl {
  font-size: 1.05rem !important;
  padding: 16px 22px !important;
}

/* スマホ：さらにコンパクトに */
@media (max-width: 480px) {
  .cp-page .cp-modal-content--wide {
    padding: 20px 16px 16px !important;
    max-height: 92vh;
  }
  .cp-page .cp-modal-content--wide .cp-modal-icon {
    font-size: 2rem !important;
  }
  .cp-page .cp-modal-content--wide .cp-modal-title {
    font-size: 1rem !important;
    margin: 0 0 10px !important;
  }
  .cp-page .cp-bank-plan {
    font-size: 0.88rem;
    padding: 7px 10px;
    margin: 0 0 10px;
  }
  .cp-page .cp-bank-steps {
    gap: 6px;
    margin: 0 0 8px;
  }
  .cp-page .cp-bank-steps li {
    padding: 8px 10px;
    gap: 8px;
  }
  .cp-page .cp-bank-step-num {
    width: 22px;
    height: 22px;
    font-size: 0.78rem;
  }
  .cp-page .cp-bank-steps li > div {
    font-size: 0.85rem;
    line-height: 1.45;
  }
  .cp-page .cp-bank-steps li > div strong {
    font-size: 0.88rem;
  }
  .cp-page .cp-bank-steps small {
    font-size: 0.72rem;
  }
  .cp-page .cp-bank-note {
    font-size: 0.74rem;
    margin: 8px 0 12px;
  }
  .cp-page .cp-modal-cta .cp-btn {
    font-size: 0.92rem !important;
    padding: 12px 16px !important;
  }
  .cp-page .cp-modal-cta .cp-btn--xl {
    font-size: 0.98rem !important;
    padding: 14px 18px !important;
  }
}

/* =========================================================
   ⑥ 安心訴求
========================================================= */
.cp-page .cp-trust {
  background: linear-gradient(135deg, #fff5fa 0%, #f4f8ff 100%);
  border-radius: 24px;
  padding: 40px 32px;
}
.cp-page .cp-trust h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #d96b9e;
  margin: 0 0 24px;
}
.cp-page .cp-trust h2::before { content: '🌷 '; }
.cp-page .cp-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cp-page .cp-trust-grid li {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px 18px 56px;
  position: relative;
  font-size: 1rem;
  color: #2d2440;
  line-height: 1.7;
  box-shadow: 0 3px 10px rgba(248, 165, 194, 0.1);
  border: 1px solid #ffe4ee;
}
.cp-page .cp-trust-grid li::before {
  content: '💗';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

/* =========================================================
   お支払い方法のご案内
========================================================= */
.cp-page .cp-payment-info {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  border: 1px solid #e4dce8;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
.cp-page .cp-payment-info h2 {
  text-align: center;
  font-size: 1.4rem;
  color: #2d2440;
  margin: 0 0 12px;
}
.cp-page .cp-payment-info-lead {
  text-align: center;
  color: #5a4a5f;
  margin: 0 0 24px;
  font-size: 1rem;
}
.cp-page .cp-payment-info-lead strong {
  color: #d96b9e;
  background: linear-gradient(transparent 60%, #ffe4ee 60%);
  padding: 0 4px;
}

/* シングル銀行振込カード（中央寄せ） */
.cp-page .cp-payment-info-single {
  background: linear-gradient(135deg, #fafbfd 0%, #fff 100%);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  border: 2px solid #ebe8ee;
  max-width: 600px;
  margin: 0 auto;
}
.cp-page .cp-payment-info-single .cp-payment-info-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}
.cp-page .cp-payment-info-single h3 {
  font-size: 1.2rem;
  color: #2d2440;
  margin: 0 0 18px;
}
.cp-page .cp-payment-flow {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  counter-reset: flow;
  text-align: left;
}
.cp-page .cp-payment-flow li {
  position: relative;
  padding: 10px 0 10px 44px;
  color: #2d2440;
  font-size: 1rem;
  line-height: 1.7;
  border-bottom: 1px dashed #ebe8ee;
}
.cp-page .cp-payment-flow li:last-child { border-bottom: none; }
.cp-page .cp-payment-flow li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f8a5c2 0%, #ff8fb1 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(248, 165, 194, 0.35);
}
.cp-page .cp-payment-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: #8a7a8f;
  text-align: center;
}
.cp-page .cp-payment-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.cp-page .cp-payment-info-item {
  background: linear-gradient(135deg, #fafbfd 0%, #fff 100%);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
  border: 1px solid #ebe8ee;
}
.cp-page .cp-payment-info-icon {
  font-size: 2.6rem;
  margin-bottom: 8px;
}
.cp-page .cp-payment-info-item h3 {
  font-size: 1.1rem;
  color: #5a4a5f;
  margin: 0 0 10px;
}
.cp-page .cp-payment-info-item p {
  font-size: 0.92rem;
  color: #5a4a5f;
  margin: 0;
  line-height: 1.75;
}

/* =========================================================
   ⑦ サポーター募集
========================================================= */
.cp-page .cp-supporter {
  background: linear-gradient(135deg, #fff8e6 0%, #fff 100%);
  border: 2px solid #ffcb78;
  border-radius: 22px;
  padding: 36px 32px;
  text-align: center;
}
.cp-page .cp-supporter h2 {
  color: #cc7a00;
  font-size: 1.45rem;
  margin: 0 0 12px;
}
.cp-page .cp-supporter h2::before { content: '🤝 '; }
.cp-page .cp-supporter p {
  color: #5a4a3f;
  font-size: 1rem;
  margin: 0 0 8px;
  line-height: 1.85;
}
.cp-page .cp-supporter .cp-supporter-fee {
  font-size: 1.15rem;
  color: #cc7a00;
  font-weight: bold;
  margin: 16px 0 24px;
}
.cp-page .cp-supporter .cp-btn--supporter {
  display: inline-block;
  width: auto;
  min-width: 280px;
}
.cp-page .cp-supporter .cp-supporter-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #8a6f4f;
}

/* ===== 戻るリンク ===== */
.cp-page .cp-back {
  text-align: center;
  margin-top: 56px;
}
.cp-page .cp-back a {
  display: inline-block;
  padding: 12px 28px;
  color: #8a7a8f;
  text-decoration: none;
  border: 1px solid #d4c8d8;
  border-radius: 999px;
  font-size: 0.95rem;
}
.cp-page .cp-back a:hover { background: #fff; color: #d96b9e; border-color: #f8a5c2; }

/* =========================================================
   レスポンシブ（スマホ最優先）
========================================================= */
@media (max-width: 720px) {
  .cp-page { font-size: 16px; }
  .cp-page .cp-container { padding: 0 14px; }
  .cp-page .cp-section,
  .cp-page .cp-plan-section { margin-top: 44px; }

  .cp-page .cp-hero { padding: 52px 16px 48px; }
  .cp-page .cp-hero h1 { font-size: 1.55rem; }
  .cp-page .cp-hero .cp-hero-sub { font-size: 1rem; margin-bottom: 26px; }
  .cp-page .cp-hero-cta .cp-btn { width: 100%; min-width: 0; }

  /* 無料体験 */
  .cp-page .cp-free { padding: 28px 22px; }
  .cp-page .cp-free h2 { font-size: 1.4rem; }
  .cp-page .cp-free .cp-free-amount { font-size: 2.2rem; }

  /* プランセクション */
  .cp-page .cp-plan-section { padding: 36px 20px 28px; border-radius: 22px; }
  .cp-page .cp-plan-section h2 { font-size: 1.45rem; }
  .cp-page .cp-plan-section-lead { font-size: 0.98rem; }
  .cp-page .cp-plan-grid--two,
  .cp-page .cp-plan-grid--three { grid-template-columns: 1fr; gap: 16px; }
  .cp-page .cp-plan-card { padding: 24px 20px; }
  .cp-page .cp-plan-card h3 { font-size: 1.2rem; }
  .cp-page .cp-plan-price { font-size: 1.7rem; }

  /* 安心 */
  .cp-page .cp-trust { padding: 32px 22px; }
  .cp-page .cp-trust h2 { font-size: 1.3rem; }
  .cp-page .cp-trust-grid { grid-template-columns: 1fr; }

  /* 支払い方法 */
  .cp-page .cp-payment-info { padding: 28px 20px; }
  .cp-page .cp-payment-info-grid { grid-template-columns: 1fr; gap: 14px; }

  /* サポーター */
  .cp-page .cp-supporter { padding: 28px 22px; }
  .cp-page .cp-supporter h2 { font-size: 1.25rem; }
  .cp-page .cp-supporter .cp-btn--supporter { width: 100%; min-width: 0; }

  /* ボタン */
  .cp-page .cp-btn { font-size: 1.05rem; padding: 18px 26px; }
  .cp-page .cp-btn--xl { font-size: 1.15rem; padding: 22px 28px; }
  .cp-page .cp-btn--ghost { font-size: 0.95rem; padding: 12px 20px; }

  /* モーダル */
  .cp-page .cp-modal-content { padding: 32px 22px 24px; border-radius: 18px; }
  .cp-page .cp-modal-icon { font-size: 3rem; }
  .cp-page .cp-modal-title { font-size: 1.2rem; }
  .cp-page .cp-modal-text { font-size: 0.95rem; }
}

/* ============================================
   今後の開催予定（料金ページのイベント一覧）
============================================ */
.cp-page .cp-event-list {
  display: grid;
  gap: 22px;
  margin: 30px auto 20px;
  max-width: 880px;
}
@media (min-width: 720px) {
  .cp-page .cp-event-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cp-page .cp-event-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 6px 22px rgba(116, 185, 255, 0.18);
  border: 2px solid #e3f0ff;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.cp-page .cp-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(116, 185, 255, 0.28);
}

.cp-page .cp-event-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.cp-page .cp-event-card-type {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, #ff7a9e, #e84d77);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
}
.cp-page .cp-event-card-date {
  font-size: 0.88rem;
  color: #6c8aa8;
  font-weight: 600;
}

.cp-page .cp-event-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #2d2440;
  line-height: 1.5;
}

.cp-page .cp-event-card-info {
  margin: 0 0 18px;
  padding: 16px 18px;
  background: #f5faff;
  border-radius: 12px;
  flex-grow: 1;
}
.cp-page .cp-event-card-info p {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #4a5a70;
  line-height: 1.7;
}
.cp-page .cp-event-card-info p:last-child {
  margin-bottom: 0;
}
.cp-page .cp-event-card-price {
  font-size: 1rem !important;
  color: #2d2440 !important;
}
.cp-page .cp-event-card-price strong {
  color: #e84d77;
  font-size: 1.05rem;
}
.cp-page .cp-event-card-price-sep {
  color: #ccc;
  margin: 0 6px;
}

.cp-page .cp-event-card-btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #74b9ff, #4a90e2);
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 6px 18px rgba(74, 144, 226, 0.32);
}
.cp-page .cp-event-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(74, 144, 226, 0.42);
  opacity: 0.95;
}

/* イベントなしの場合 */
.cp-page .cp-events-empty {
  background: #fff;
  border-radius: 18px;
  padding: 44px 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(116, 185, 255, 0.12);
  margin: 20px auto;
  max-width: 600px;
}
.cp-page .cp-events-empty p {
  margin: 0 0 14px;
  color: #4a5a70;
  line-height: 1.85;
  font-size: 0.98rem;
}

/* スマホ最適化 */
@media (max-width: 720px) {
  .cp-page .cp-event-card {
    padding: 22px 20px;
  }
  .cp-page .cp-event-card-title {
    font-size: 1.1rem;
  }
  .cp-page .cp-event-card-info {
    padding: 14px 16px;
  }
  .cp-page .cp-event-card-info p {
    font-size: 0.88rem;
  }
  .cp-page .cp-event-card-price {
    font-size: 0.95rem !important;
  }
  .cp-page .cp-event-card-price strong {
    font-size: 1rem;
  }
  .cp-page .cp-event-card-btn {
    font-size: 1rem;
    padding: 14px 18px;
  }
}

/* ============================================
   LINE送信メッセージ コピーヘルパー
   料金ページ＆イベント詳細ページ共通
============================================ */
.cp-line-msg-helper {
  margin: 22px auto 0;
  max-width: 560px;
  background: linear-gradient(135deg, #fff8fb 0%, #fff5f7 100%);
  border: 2px dashed #f8a5c2;
  border-radius: 14px;
  padding: 20px 22px;
  text-align: left;
}
.cp-line-msg-helper-title {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #c54177;
  line-height: 1.5;
}
.cp-line-msg-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #ffd6df;
}
.cp-line-msg-text {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 1rem;
  color: #2d2440;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  align-items: center;
  word-break: break-all;
}
.cp-line-msg-copy {
  flex-shrink: 0;
  background: linear-gradient(135deg, #06c755, #05a548);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  font-family: inherit;
  white-space: nowrap;
}
.cp-line-msg-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
}
.cp-line-msg-copy.is-copied {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  animation: cp-copy-pulse 0.4s ease;
}
@keyframes cp-copy-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.cp-line-msg-note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  line-height: 1.6;
}

/* イベント詳細ページでも使えるよう .ev-single スコープにも対応 */
.ev-single .cp-line-msg-helper {
  margin: 22px auto 18px;
}

/* スマホ最適化 */
@media (max-width: 560px) {
  .cp-line-msg-helper {
    padding: 16px 18px;
  }
  .cp-line-msg-helper-title {
    font-size: 0.88rem;
  }
  .cp-line-msg-text {
    font-size: 0.95rem;
    min-width: 100%;
  }
  .cp-line-msg-copy {
    width: 100%;
    padding: 12px;
  }
}
