@charset "utf-8";
/* =====================================================================
 * system-text.css
 * 料金システムの画像（system1-5.jpg / system3.jpg）をテキスト化したもの。
 * 画像と同じ「白レンガ × ネオン」の雰囲気を CSS で再現する。
 * すべて .st- プレフィックスで名前空間化し、既存CSSと衝突させない。
 * ===================================================================== */

/* ---- 全体ラッパー（白レンガ背景） ---------------------------------- */
.st-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 16px 36px;
  box-sizing: border-box;
  color: #1a1a1a;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background-color: #f2f1ef;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0 2px, transparent 2px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0 2px, transparent 2px);
  background-size: 92px 46px;
}

.st-section * {
  box-sizing: border-box;
}

/* 文字をくっきり見せるためのデフォルト改行・余白
   ※左右marginは指定しない（中央寄せ用の margin:0 auto を打ち消さないため） */
.st-section p {
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.65;
}

/* ---- 大ネオン見出し（プレイ料金 / 基本プレイ / 交通費 など） -------- */
.st-neon-title {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: clamp(2.4rem, 9vw, 4rem);
  color: #d8faff;
  margin: 10px 0 16px;
  text-shadow:
    3px 3px 0 #000,
    -2px -1px 0 #00e5ff,
    2px 1px 0 #ff39c0,
    0 0 16px rgba(0, 224, 255, 0.65),
    0 0 26px rgba(255, 70, 200, 0.4);
}
/* プレイ料金・基本プレイ（水色ボックス内）は背景と同化しないよう濃い青に */
.st-neon-box .st-neon-title {
  color: #1570d0;
}

/* SYSTEM ロゴ（黒文字ネオン） */
.st-system-logo {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: clamp(3rem, 13vw, 6rem);
  margin: 4px 0 10px;
  color: #111;
  text-shadow:
    -3px 0 0 #00e5ff,
    3px 0 0 #ff39c0,
    0 0 18px rgba(0, 224, 255, 0.5);
}

.st-top-cat {
  text-align: center;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 4px 18px;
  border-radius: 999px;
  background: rgba(0, 224, 255, 0.18);
  color: #00a6d8;
  font-weight: 800;
  font-size: clamp(0.95rem, 3.6vw, 1.4rem);
  text-shadow: 0 0 8px rgba(0, 224, 255, 0.6);
}

.st-hours {
  text-align: center;
  margin-top: 14px;
}
.st-hours p {
  font-weight: 800;
  color: #d6258f;
  font-size: clamp(1.05rem, 4.4vw, 1.7rem);
  margin: 4px 0;
}
.st-hours .st-hours-last {
  color: #1b8bff;
}

/* ---- 悪質な店舗にご注意 -------------------------------------------- */
.st-warn-title {
  text-align: center;
  font-weight: 900;
  color: #111;
  font-size: clamp(1.5rem, 6.5vw, 2.6rem);
  margin: 30px 0 6px;
}
.st-diamond {
  list-style: none;
  padding: 0;
  margin: 6px 0;
  text-align: center;
}
.st-diamond li {
  display: inline-block;
  margin: 4px 10px;
  font-weight: 900;
  color: #1b8bff;
  font-size: clamp(1.1rem, 4.8vw, 1.9rem);
}
.st-diamond li::before {
  content: "\25C6";
  color: #ff1aa1;
  margin-right: 4px;
}
.st-warn-none {
  text-align: center;
  font-weight: 900;
  color: #1b8bff;
  font-size: clamp(1.4rem, 6vw, 2.4rem);
  text-shadow: 0 0 10px rgba(27, 139, 255, 0.35);
  margin: 4px 0 14px;
}
.st-cert-badge {
  text-align: center;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 30px;
  border-radius: 999px;
  background: rgba(0, 224, 255, 0.2);
  color: #00b1e0;
  font-weight: 900;
  font-size: clamp(1.2rem, 5vw, 2rem);
  text-shadow: 0 0 10px rgba(0, 224, 255, 0.7);
}
.st-cert-no {
  text-align: center;
  color: #555;
  font-size: clamp(0.78rem, 3vw, 1.05rem);
  margin-top: 8px;
}

/* ---- 黒ピル見出し（コース名・オプション見出し） -------------------- */
.st-pill-black {
  display: block;
  width: fit-content;
  max-width: 96%;
  margin: 34px auto 16px;
  padding: 10px 34px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #4fe8ff;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.03em;
  font-size: clamp(1.4rem, 5.8vw, 2.3rem);
  text-shadow: 0 0 6px #00e0ff, 0 0 14px rgba(0, 224, 255, 0.7);
}

/* ---- 小ピル（選べるスク水プレイ♪ など） --------------------------- */
.st-mini-pill {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 3px 18px;
  border-radius: 999px;
  background: rgba(0, 224, 255, 0.16);
  color: #00a6d8;
  font-weight: 800;
  font-size: clamp(0.95rem, 3.8vw, 1.4rem);
  text-shadow: 0 0 8px rgba(0, 224, 255, 0.55);
}

/* ---- ネオン枠の水色ボックス --------------------------------------- */
.st-neon-box {
  position: relative;
  margin: 18px auto;
  padding: 24px 18px 26px;
  border-radius: 26px;
  background: #c7f3ff;
  border: 3px solid #46dcff;
  box-shadow:
    0 0 0 2px rgba(0, 200, 255, 0.5) inset,
    0 0 14px rgba(0, 210, 255, 0.7),
    0 0 22px rgba(255, 80, 200, 0.35);
}

/* コース用ボックス（育成コース／スク水コースを大きく囲む。
   既存の水色ボックスより明るめの水色で区別） */
.st-course-box {
  position: relative;
  max-width: 1000px;
  margin: 26px auto;
  padding: 12px 18px 28px;
  border-radius: 26px;
  background: #e4faff;
  border: 3px solid #7fe0f7;
  box-shadow:
    0 0 0 2px rgba(150, 230, 255, 0.45) inset,
    0 0 14px rgba(130, 225, 255, 0.55);
}
.st-course-box .st-pill-black {
  margin-top: 6px;
}

/* 補足注意文 */
.st-note {
  text-align: center;
  color: #333;
  font-size: clamp(0.82rem, 3.2vw, 1.1rem);
  margin: 6px 0 10px;
}

/* 基本料金（入会金など）＝メニューと金額を枠で一括り */
.st-basic-fees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 14px auto 4px;
}
.st-fee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 2px solid #ff7ec4;
  box-shadow: 0 2px 6px rgba(255, 120, 200, 0.22);
}
.st-fee-name {
  font-weight: 800;
  color: #333;
  font-size: clamp(0.85rem, 3.4vw, 1.2rem);
}
.st-fee-val {
  font-weight: 900;
  color: #e0249a;
  font-size: clamp(1rem, 4.2vw, 1.5rem);
}
.st-fee-val span {
  font-size: 0.72em;
}

/* ---- コースのリード文 --------------------------------------------- */
.st-course-lead {
  text-align: center;
  color: #333;
  font-weight: 700;
  font-size: clamp(0.88rem, 3.6vw, 1.25rem);
  margin: 4px 0;
}
.st-course-lead.strong {
  font-weight: 900;
  color: #1b8bff;
  font-size: clamp(0.95rem, 4vw, 1.45rem);
}
.st-course-opt {
  text-align: center;
  font-weight: 900;
  color: #111;
  font-size: clamp(1rem, 4.4vw, 1.7rem);
  margin: 8px 0 4px;
}

/* スク水コースのオプション（文字色そのまま・枠付きチップ／黒タイトル中央に合わせ縦並び中央） */
.st-splash-opts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 780px;
  margin: 12px auto;
}
.st-splash-opts span {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 2px solid #5cc8e8;
  box-shadow: 0 2px 6px rgba(0, 180, 230, 0.18);
  font-weight: 900;
  font-style: italic;
  color: #16a0c8;
  font-size: clamp(0.95rem, 4vw, 1.55rem);
  text-shadow: 0 0 6px rgba(0, 200, 255, 0.3);
}
.st-splash-opts span.free {
  color: #ffd400;
  border-color: #ffc23d;
  -webkit-text-stroke: 0.6px #c47e00;
  text-shadow: 0 0 6px rgba(255, 150, 0, 0.5);
}

/* ---- 料金行（時間 ＋ 金額） --------------------------------------- */
.st-price-list {
  max-width: 760px;
  margin: 12px auto;
}
.st-price-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  column-gap: clamp(10px, 3vw, 24px);
  margin: 6px 0;
}
.st-dur,
.st-amt {
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 8.5vw, 3.4rem);
  line-height: 1.2;
  white-space: nowrap;
}
.st-dur {
  text-align: right;
  min-width: 3.4em;
  position: relative; /* おすすめ♪ の配置基準 */
}
.st-amt {
  text-align: left;
  min-width: 5.2em;
}
.st-amt span {
  font-size: 0.62em;
}

/* 育成コース＝グリーン×シアン */
.st-price-list.green .st-dur {
  color: #2fd06a;
  text-shadow: 2px 2px 0 #0a5a2a, 0 0 12px rgba(90, 255, 150, 0.55);
}
.st-price-list.green .st-amt {
  color: #36dcff;
  text-shadow: 2px 2px 0 #0a4a60, 0 0 12px rgba(60, 220, 255, 0.55);
}
/* スク水コース＝金額はブルーのまま／時間(分)は緑寄りに色分け */
.st-price-list.blue .st-dur {
  color: #2fcf78;
  text-shadow: 2px 2px 0 #0c5a30, 0 0 12px rgba(80, 240, 150, 0.5);
}
.st-price-list.blue .st-amt {
  color: #1f8dff;
  text-shadow: 2px 2px 0 #ffffff, 0 0 10px rgba(40, 150, 255, 0.5);
}

.st-row-note {
  text-align: center;
  color: #555;
  font-size: clamp(0.78rem, 3vw, 1.05rem);
  margin: -2px 0 6px;
}

/* おすすめ♪ ラベル（「75分」の文字のすぐ左に固定。被らず、中央ペアもずらさない） */
.st-dur-num {
  position: relative;
}
.st-osusume {
  position: absolute;
  right: 100%; /* 「75分」の左端を基準に */
  top: 50%;
  transform: translateY(-50%);
  margin-right: 8px; /* 75分との間隔 */
  padding: 4px 13px;
  border-radius: 999px;
  background: #ddd9f6;
  color: #5b54c9;
  font-weight: 800;
  font-size: clamp(0.62rem, 2.6vw, 1.1rem);
  white-space: nowrap;
}
/* 画面が狭いときはラベルを小さくして画面外に出ないように */
@media (max-width: 480px) {
  .st-osusume {
    font-size: 0.55rem;
    padding: 3px 8px;
    margin-right: 5px;
  }
}

/* ---- オプション行（ラベル ＋ 数量 ＋ 金額） ----------------------- *
 * 各行を左右ぴったり半分に分割。
 *   左半分(1fr) … ラベル(＋数量) を中央線に右揃え
 *   右半分(1fr) … 金額 を中央線から左揃え
 * これで金額の頭が「黒タイトルの中央線」に揃い、全行で縦一列になる。 */
.st-opt-list {
  max-width: 900px;
  margin: 12px auto;
}
.st-opt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: clamp(6px, 2vw, 16px);
  margin: 12px 0;
}
.st-opt-l {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 2vw, 12px);
}
.st-opt-row .st-opt-amt {
  justify-self: start;
  position: relative; /* 注記の絶対配置の基準 */
}
/* 注記（※90分コース以上）はグリッドの桁計算から外し、
   金額の右に重ねる。これで他行の中央＋頭揃えに影響しない。 */
.st-opt-amt .st-opt-note {
  position: absolute;
  left: 100%;
  top: 0;
  transform: translateY(-55%); /* 金額の右肩（上）に小さく重ねる */
  margin-left: 1px;
  white-space: nowrap;
  font-weight: 700;
  color: #888;
  font-size: clamp(0.56rem, 2.1vw, 0.8rem);
  text-shadow: none;
}
@media (max-width: 360px) {
  .st-opt-amt .st-opt-note {
    font-size: 0.5rem;
    margin-left: 0;
  }
}
.st-pill-pink {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 999px;
  background: linear-gradient(#fbdcef, #f6c6e4);
  color: #1a1a1a;
  font-weight: 900;
  font-size: clamp(1rem, 4.2vw, 1.55rem);
}
.st-opt-qty {
  font-weight: 800;
  color: #333;
  font-size: clamp(0.85rem, 3.4vw, 1.15rem);
  white-space: nowrap;
}
.st-opt-amt {
  font-weight: 900;
  color: #111;
  font-size: clamp(1.3rem, 5.6vw, 2.2rem);
  text-shadow: 0 0 10px rgba(255, 120, 215, 0.7);
}
.st-opt-amt span {
  font-size: 0.7em;
}
.st-opt-note {
  font-weight: 700;
  color: #555;
  font-size: clamp(0.75rem, 3vw, 1rem);
}

/* ---- 基本プレイ タグ ---------------------------------------------- */
.st-play-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 16px;
}
.st-play-tags span {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  background: #5d6f7d;
  color: #eaf8ff;
  font-weight: 900;
  font-size: clamp(1rem, 4vw, 1.5rem);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.st-foreign-note {
  text-align: center;
  font-weight: 900;
  color: #1b8bff;
  font-size: clamp(1.05rem, 4.6vw, 1.7rem);
  margin-top: 14px;
  text-shadow: 0 0 8px rgba(27, 139, 255, 0.3);
}

/* ---- 交通費／デートコースの行 ------------------------------------- */
.st-fee-list {
  max-width: 820px;
  margin: 14px auto;
}
.st-fee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 5vw, 50px);
  margin: 12px 0;
}
.st-fee-amt {
  font-weight: 900;
  color: #111;
  font-size: clamp(1.4rem, 6vw, 2.3rem);
  text-shadow: 0 0 10px rgba(255, 120, 215, 0.7);
  white-space: nowrap;
}
.st-fee-amt span {
  font-size: 0.7em;
}
.st-fee-call {
  font-weight: 900;
  color: #111;
  font-size: clamp(1.1rem, 4.8vw, 1.9rem);
}
.st-center-note {
  text-align: center;
  color: #333;
  font-size: clamp(0.85rem, 3.4vw, 1.15rem);
  line-height: 1.8;
  margin: 6px auto 14px;
}

/* ---- 禁止事項 ----------------------------------------------------- */
.st-prohibit-box {
  max-width: 880px;
  margin: 12px auto;
  padding: 22px 16px;
  border-radius: 26px;
  background: #00f0ff;
  box-shadow: 0 0 14px rgba(0, 224, 255, 0.6);
}
.st-prohibit-main {
  text-align: center;
  font-weight: 900;
  color: #111;
  font-size: clamp(1.1rem, 4.8vw, 1.9rem);
  margin: 10px 0 2px;
}
.st-prohibit-sub {
  text-align: center;
  color: #5b54c9;
  font-weight: 700;
  font-size: clamp(0.8rem, 3.2vw, 1.1rem);
  margin: 0 0 6px;
}
.st-prohibit-after {
  text-align: center;
  font-weight: 900;
  color: #1b8bff;
  line-height: 1.7;
  font-size: clamp(1.05rem, 4.6vw, 1.7rem);
  margin: 16px auto 0;
  text-shadow: 0 0 8px rgba(27, 139, 255, 0.3);
}

/* ---- セクション間の区切り ----------------------------------------- */
.st-block + .st-block {
  margin-top: 26px;
}

/* =====================================================================
 * ご利用カード（旧 credit-banners.png をテキスト化）
 * 紫→青グラデ背景・白文字ネオン・カードロゴ＋チェックリスト
 * ===================================================================== */
.st-credit {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(110deg, #7b6cf0 0%, #6f73f2 35%, #4f7df6 70%, #3f8bf7 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

/* ヘッダー帯 */
.st-credit-head {
  margin: 0;
  padding: 12px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 900;
  font-size: clamp(1.15rem, 4.6vw, 2rem);
  text-shadow: 0 0 8px rgba(0, 230, 255, 0.9), 0 2px 4px rgba(0, 0, 0, 0.35);
}

/* 本体：左ロゴ・右チェックリスト */
.st-credit-body {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
}

/* カードロゴ列 */
.st-credit-logos {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: clamp(140px, 27vw, 200px);
}
/* 3枚とも同じ大きさの白枠に収め、ロゴを中央配置して高さ・幅を均等に */
.st-credit-logos img {
  width: 100%;
  height: clamp(50px, 12vw, 64px);
  display: block;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 7px 14px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* チェックリスト */
.st-credit-list {
  flex: 1 1 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-credit-list li {
  position: relative;
  padding-left: 2em;
  margin: 10px 0;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.5;
  font-size: clamp(0.95rem, 3.6vw, 1.4rem);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.st-credit-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35em;
  height: 1.35em;
  border-radius: 50%;
  border: 2.5px solid #3df0ff;
  color: #3df0ff;
  font-size: 0.85em;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 230, 255, 0.7);
  text-shadow: none;
}

/* フッター帯 */
.st-credit-foot {
  margin: 0;
  padding: 10px 14px 12px;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(0.88rem, 3.4vw, 1.3rem);
  text-shadow: 0 0 6px rgba(0, 230, 255, 0.7), 0 1px 3px rgba(0, 0, 0, 0.35);
}

@media (max-width: 480px) {
  .st-credit-body {
    gap: 12px;
    padding: 14px 14px;
  }
  .st-credit-list li {
    padding-left: 1.7em;
    margin: 8px 0;
  }
}
