/* ============================================================
   GAME ROOM — Sub Page Stylesheet
   :root 変数はサーバー側の partial{html} でも出力されるが、
   ローカルプレビュー用にここでも定義しておく。
   ============================================================ */

:root {
  --black:   #070707;
  --black2:  #101010;
  --black3:  #191919;
  --orange:  #ff6a00;
  --orange2: #ff8a00;
  --amber:   #ffb13b;
  --yellow:  #ffd000;
  --white:   #ffffff;
  --text:    #f7f0e7;
  --muted:   #a59a8d;
  --panel:   rgba(255, 255, 255, .07);
  --line:    rgba(255, 106, 0, .34);
  --glow:    0 0 32px rgba(255, 106, 0, .34);
}

/* ============================================================
   Base Styles（partial{html}が生成する内容をローカル用に再現）
   サーバー上では partial{html} の inline <style> と重複するが無害。
   ============================================================ */

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  background: #050505;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none }

.page {
  width: min(430px, 100%);
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 78% 8%, rgba(255,106,0,.42), transparent 165px),
    radial-gradient(circle at 7% 32%, rgba(255,138,0,.18), transparent 210px),
    linear-gradient(180deg, #060606 0%, #111 40%, #080808 100%);
}
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black 0 860px, transparent 1120px);
}
.base-light { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.base-light::before {
  content: "";
  position: absolute;
  right: -92px; top: 80px;
  width: 280px; height: 540px;
  background:
    repeating-linear-gradient(90deg, rgba(255,106,0,.2) 0 4px, transparent 4px 14px),
    linear-gradient(180deg, rgba(255,106,0,.26), transparent);
  clip-path: polygon(34% 0, 100% 0, 66% 100%, 0 100%);
  opacity: .9;
}
.base-light::after {
  content: "GAME ROOM";
  position: absolute;
  left: -22px; top: 108px;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,.045);
  font-size: 94px;
  line-height: .76;
  letter-spacing: -.1em;
  font-weight: 1000;
}

.topbar {
  position: relative;
  z-index: 5;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: rgba(7,7,7,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.logo { display: flex; align-items: center; min-width: 0 }
.logo img { height: 22px; width: auto; display: block; filter: drop-shadow(0 0 6px rgba(255,106,0,.5)) }
.login {
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 1000;
}

.main { position: relative; z-index: 3; padding: 22px 0 0; background: #0b0b0b }
.zone { margin: 0 14px 26px }
.zone-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; position: relative }
.zone-head strong {
  background: transparent;
  color: #fff;
  padding: 0;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .18em;
  white-space: nowrap;
  font-family: monospace;
  text-shadow: 0 0 12px rgba(255,106,0,.5);
}
.zone-head strong::before { content: "//"; color: var(--orange); margin-right: 6px; opacity: .8 }
.zone-head span {
  font-size: 9px;
  font-weight: 900;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
  letter-spacing: .1em;
  font-family: monospace;
  flex-shrink: 0;
}
.zone-head::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(255,106,0,.5), rgba(255,106,0,.1) 50%, transparent);
}

/* Footer */
.ftx-wrap {
  background: #0a080f;
  border-top: 1px solid rgba(255,106,0,.2);
  padding: 36px 20px calc(32px + env(safe-area-inset-bottom));
  position: relative;
  overflow: hidden;
}
.ftx-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, #ff6a00 40%, #aa00ff 60%, transparent 95%);
  filter: blur(1px);
}
.ftx-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,80,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.ftx-logo { display: flex; justify-content: center; margin-bottom: 28px }
.ftx-logo img { height: 20px; filter: drop-shadow(0 0 10px rgba(255,106,0,.8)) brightness(1.2); opacity: .9 }
.ftx-group { margin-bottom: 22px }
.ftx-group-label {
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #ff8c00;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-left: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 8px rgba(255,120,0,.6);
}
.ftx-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,106,0,.5), rgba(255,106,0,.1), transparent);
}
.ftx-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr }
.ftx-list li { border-bottom: 1px solid rgba(255,255,255,.07) }
.ftx-list li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07) }
.ftx-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}
.ftx-list a::before { content: '\25B8'; font-size: 9px; color: #ff7700; flex-shrink: 0 }
.ftx-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12) 40%, transparent); margin: 4px 0 20px }
.ftx-copy { text-align: center; font-size: 10px; color: rgba(255,255,255,.28); letter-spacing: .08em; font-family: monospace; margin-top: 8px }

@keyframes ticker { to { transform: translateX(-100%) } }
@keyframes ai-dot-opac { 0%, 100% { opacity: .1 } 20% { opacity: 1 } }

/* ── Sub Ticker（インデックスと同じオレンジティッカー） ── */
.sub-ticker {
  position: relative;
  height: 36px;
  background: var(--orange);
  color: #111;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 11px;
  font-weight: 1000;
  white-space: nowrap;
  z-index: 5;
  letter-spacing: .08em;
}
.sub-ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 18s linear infinite;
}

/* ── Back Breadcrumb ── */
.sub-breadcrumb {
  padding: 14px 14px 0;
}
.btn-left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .14em;
  color: var(--amber);
  font-family: monospace;
  text-decoration: none;
  padding: 7px 13px 7px 10px;
  border: 1px solid rgba(255, 106, 0, .32);
  background: rgba(255, 106, 0, .07);
  transition: background .18s, border-color .18s;
}
.btn-left a::before {
  content: "\25C0";
  font-size: 7px;
  color: var(--orange);
  filter: drop-shadow(0 0 4px rgba(255, 106, 0, .8));
}
.btn-left a:active {
  background: rgba(255, 106, 0, .18);
  border-color: rgba(255, 106, 0, .65);
  color: #fff;
}

/* ── Sub Page Hero ── */
.sub-hero {
  position: relative;
  padding: 16px 14px 14px;
  overflow: hidden;
}
/* 右側の斜めストライプ光（base-lightと統一） */
.sub-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  width: 220px;
  height: 100%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 106, 0, .15) 0 3px, transparent 3px 12px),
    linear-gradient(180deg, rgba(255, 106, 0, .2), transparent);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  pointer-events: none;
  opacity: .8;
}
/* コンパクトヒーロー（ログインページなど、ファーストビューでボタンを見せたい場合） */
.sub-hero--sm {
  padding: 8px 14px 6px;
}
.sub-hero--sm .sub-eyebrow { display: none; }
.sub-hero--sm .sub-heading { font-size: 18px; margin: 0; }

.sub-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .24em;
  color: var(--orange);
  font-family: monospace;
  text-shadow: 0 0 10px rgba(255, 106, 0, .7);
  margin: 0 0 12px;
}
.sub-eyebrow::before {
  content: "//";
  color: var(--orange);
  opacity: .8;
  letter-spacing: 0;
  margin-right: -4px;
}
.sub-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 0, .5), transparent);
}
.sub-heading {
  margin: 0;
  font-size: 32px;
  font-weight: 1000;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #fff;
  text-shadow:
    0 0 28px rgba(255, 106, 0, .25),
    0 2px 0 rgba(0, 0, 0, .8);
  position: relative;
  padding-bottom: 20px;
}
.sub-heading::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 0, .8), rgba(255, 106, 0, .2) 55%, transparent);
}

/* ── Notice Card ── */
/* .zone / .zone-head は partial{html} が生成するCSSで既に定義済み。
   ここではカード本体のみ追加。 */
.notice-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, .32);
  border-top: 2px solid var(--orange);
  background:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 19px,
      rgba(255, 255, 255, .018) 19px, rgba(255, 255, 255, .018) 20px
    ),
    rgba(0, 0, 0, .58);
  box-shadow:
    0 8px 0 rgba(0, 0, 0, .4),
    inset 0 0 28px rgba(255, 106, 0, .04);
}
/* 左上コーナーブラケット */
.notice-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 10px; height: 10px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
  pointer-events: none;
}
/* 右下コーナーブラケット */
.notice-card::after {
  content: "";
  position: absolute;
  bottom: 8px; right: 8px;
  width: 10px; height: 10px;
  border-right: 1.5px solid rgba(255, 106, 0, .45);
  border-bottom: 1.5px solid rgba(255, 106, 0, .45);
  pointer-events: none;
}

.notice-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 106, 0, .09);
  border-bottom: 1px solid rgba(255, 106, 0, .2);
}
.notice-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 8px rgba(255, 106, 0, 1),
    0 0 18px rgba(255, 106, 0, .5);
  animation: sub-blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes sub-blink {
  0%, 100% { opacity: .25; }
  50%       { opacity: 1; }
}
.notice-card-label-text {
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .22em;
  color: var(--orange);
  font-family: monospace;
  text-shadow: 0 0 8px rgba(255, 106, 0, .55);
}
.notice-card-body {
  position: relative;
  z-index: 1;
  padding: 20px 18px 24px;
}
/* 背面グラデーション */
.notice-card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 106, 0, .055) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.notice-card-body p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  letter-spacing: .02em;
}
/* 透かし文字 */
.notice-card-wm {
  position: absolute;
  right: -4px;
  bottom: -14px;
  font-size: 64px;
  font-weight: 1000;
  letter-spacing: -.08em;
  color: rgba(255, 255, 255, .028);
  font-family: monospace;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
}

/* ── Reason Intro Text ── */
.reason-intro {
  margin-bottom: 16px;
}
.reason-intro p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  margin: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 106, 0, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* ── Form Wrapper (.contents) ── */
.contents {
  margin-top: 4px;
}
.reason-form-body {
  padding: 18px 16px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 19px,
      rgba(255, 255, 255, .018) 19px, rgba(255, 255, 255, .018) 20px
    ),
    rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 106, 0, .28);
  border-top: 2px solid rgba(255, 106, 0, .6);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.reason-form-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 106, 0, .055) 0%, transparent 45%);
  pointer-events: none;
}

/* ラジオ・チェックボックス */
.reason-form-body input[type="radio"],
.reason-form-body input[type="checkbox"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.reason-form-body label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
  transition: color .15s;
  position: relative;
  z-index: 1;
}
.reason-form-body label:last-child {
  border-bottom: none;
}
.reason-form-body label:active {
  color: var(--amber);
}
.reason-form-body textarea {
  width: 100%;
  min-height: 90px;
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 106, 0, .3);
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  padding: 10px 12px;
  resize: vertical;
  outline: none;
  transition: border-color .2s;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.reason-form-body textarea:focus {
  border-color: rgba(255, 106, 0, .7);
}
.reason-form-body br {
  display: block;
  margin: 0;
}

/* ── Submit Button ── */
.reason-submit {
  display: flex;
  justify-content: center;
}
.reason-submit input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  font-size: 15px;
  font-weight: 1000;
  font-family: inherit;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  box-shadow:
    inset 0 -5px 0 rgba(0, 0, 0, .22),
    0 0 22px rgba(255, 106, 0, .3);
  transition: filter .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.reason-submit input[type="submit"]:active {
  filter: brightness(.9);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .22);
}

/* ── HR (#{$design['hr']} 向け) ── */
.sub-content hr,
.zone hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, .35) 40%, transparent);
  margin: 20px 0 0;
}

/* ── Notice / Error Area (#notice) ── */
#notice {
  margin: 0 14px 4px;
}
#notice:empty {
  display: none;
}
/* notice・error の共通スタイル（中身はPHP出力） */
#notice > * {
  display: block;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  border: 1px solid rgba(255, 106, 0, .35);
  border-top: 2px solid var(--orange);
  background: rgba(255, 106, 0, .1);
  color: rgba(255, 255, 255, .9);
}

/* ── No-member Description ── */
.no-member-desc {
  margin: 0 14px 20px;
}
.no-member-desc p {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ── Registration CTA Button (.download_button) ── */
.download_button {
  margin: 0 14px 14px;
}
.download_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow:
    inset 0 -6px 0 rgba(0, 0, 0, .22),
    0 0 28px rgba(255, 106, 0, .4),
    0 0 60px rgba(255, 106, 0, .15);
  position: relative;
  overflow: hidden;
  transition: filter .18s;
}
.download_button a::before {
  content: "\25B6";
  margin-right: 10px;
  font-size: 12px;
}
/* シャインアニメーション */
.download_button a::after {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255, 255, 255, .18);
  transform: skewX(-20deg);
  animation: dl-btn-shine 2.8s ease-in-out infinite;
}
@keyframes dl-btn-shine {
  0%    { left: -60% }
  40%, 100% { left: 120% }
}
.download_button a:active {
  filter: brightness(.88);
}

/* ── Legal Links ── */
.no-member-links {
  margin: 0 14px;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 12px;
  line-height: 2.2;
  color: rgba(255, 255, 255, .55);
}
.no-member-links a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
}
.no-member-links a:active {
  text-decoration: underline;
}

/* ── Confirm Body ── */
.confirm-body {
  margin-bottom: 20px;
}
.confirm-body p {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ── Confirm Action Buttons ── */
.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

/* 「退会しない」→ 目立つオレンジCTA */
.taikai_no a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow:
    inset 0 -5px 0 rgba(0, 0, 0, .22),
    0 0 24px rgba(255, 106, 0, .4);
  position: relative;
  overflow: hidden;
  transition: filter .18s;
}
.taikai_no a::before {
  content: "\25C0";
  margin-right: 8px;
  font-size: 11px;
}
.taikai_no a::after {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255, 255, 255, .18);
  transform: skewX(-20deg);
  animation: dl-btn-shine 2.8s ease-in-out infinite;
}
.taikai_no a:active { filter: brightness(.88); }

/* 「退会する」→ 控えめなゴーストボタン */
.taikai_yes a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  background: transparent;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: color .18s, border-color .18s;
}
.taikai_yes a:active {
  color: rgba(255, 255, 255, .7);
  border-color: rgba(255, 255, 255, .3);
}

/* ── Device Info Text ── */
.kishu-desc {
  margin-bottom: 20px;
}
.kishu-desc p {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ── Test Device Block（テスト端末のみ表示） ── */
.test-block {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .45);
  font-family: monospace;
}

/* ── Tokutei (特定商取引) ── */
ul.radius {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.radius li {
  display: block;
  padding: 0;
}
.tokutei-body {
  padding: 0 16px 24px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
}
.tokutei-body br + br {
  display: none;
}
/* ● 見出し行 */
.tokutei-item {
  margin-bottom: 18px;
  padding: 14px 16px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 19px,
      rgba(255, 255, 255, .016) 19px, rgba(255, 255, 255, .016) 20px
    ),
    rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 106, 0, .22);
  border-top: 2px solid rgba(255, 106, 0, .55);
  position: relative;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
}
.tokutei-item::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .6);
  border-left: 1.5px solid rgba(255, 106, 0, .6);
  pointer-events: none;
}
.tokutei-item::after {
  content: "";
  position: absolute;
  bottom: 6px; right: 6px;
  width: 8px; height: 8px;
  border-bottom: 1.5px solid rgba(255, 106, 0, .35);
  border-right: 1.5px solid rgba(255, 106, 0, .35);
  pointer-events: none;
}
.tokutei-item-head {
  display: block;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .14em;
  color: var(--amber);
  font-family: monospace;
  margin-bottom: 6px;
}
.tokutei-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .78);
}
/* JSで注入されるbox */
#box1, #box2 {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.85;
}

/* ── partial{notice} 出力コンテンツ向け ── */
.sub-notice-wrap {
  margin-bottom: 14px;
}
.sub-notice-wrap p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
  margin: 0 0 10px;
}
.sub-notice-wrap a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── toiawase_sp_1 ── */
iframe { border: none }

/* .info_tell：元の黄色ハイライトをGAME ROOMテーマに置換 */
.info_tell {
  color: var(--amber);
  font-weight: 1000;
  text-shadow: 0 0 10px rgba(255, 177, 59, .45);
}

/* お問い合わせ方法セレクト */
.toiawase-select-block {
  margin-bottom: 20px;
}
.toiawase-select-label {
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .2em;
  color: var(--muted);
  font-family: monospace;
  margin: 0 0 8px;
}
.toiawase-select-wrap {
  position: relative;
}
.toiawase-select-wrap::after {
  content: "\25BC";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--orange);
  pointer-events: none;
}
#main_product {
  width: 100%;
  height: 50px;
  padding: 0 40px 0 14px;
  background: rgba(0, 0, 0, .65);
  border: 1px solid rgba(255, 106, 0, .35);
  border-top: 2px solid rgba(255, 106, 0, .65);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color .18s;
}
#main_product:focus {
  border-color: rgba(255, 106, 0, .85);
}
#main_product option {
  background: #111;
  color: var(--text);
}

/* 電話問い合わせ：注意書きブロック */
.tell-notice {
  padding: 14px 16px;
  background: rgba(255, 106, 0, .06);
  border: 1px solid rgba(255, 106, 0, .2);
  border-top: 2px solid rgba(255, 106, 0, .5);
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
}
.tell-notice p {
  margin: 0 0 6px;
}
.tell-notice p:last-child {
  margin: 0;
}
.tell-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--amber);
  font-family: monospace;
  text-shadow: 0 0 8px rgba(255, 177, 59, .4);
}

/* チェックリスト */
.tellch {
  margin-bottom: 16px;
}
.tellch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: color .15s;
}
.tellch-item:last-child {
  border-bottom: none;
}
.tellch-item:active {
  color: rgba(255, 255, 255, .95);
}
.tellch-item input[type="checkbox"] {
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

/* 電話ボタン（JS が display:none → block を制御） */
.icon_arrow {
  margin-top: 4px;
}
.icon_arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow:
    inset 0 -6px 0 rgba(0, 0, 0, .22),
    0 0 28px rgba(255, 106, 0, .4);
  transition: filter .18s;
  position: relative;
  overflow: hidden;
}
.icon_arrow a::before {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255, 255, 255, .18);
  transform: skewX(-20deg);
  animation: dl-btn-shine 2.8s ease-in-out infinite;
}
.icon_arrow a:active {
  filter: brightness(.88);
}
.icon_arrow .icon {
  width: 22px;
  height: auto;
  filter: brightness(0);
}

/* ── qr_sp_1 ── */
.qr-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, .28);
  border-top: 2px solid var(--orange);
  background: rgba(0, 0, 0, .54);
  box-shadow:
    0 8px 0 rgba(0, 0, 0, .36),
    inset 0 0 28px rgba(255, 106, 0, .03);
  padding: 28px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.qr-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 10px; height: 10px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
  pointer-events: none;
}
.qr-card::after {
  content: "";
  position: absolute;
  bottom: 8px; right: 8px;
  width: 10px; height: 10px;
  border-bottom: 1.5px solid rgba(255, 106, 0, .4);
  border-right: 1.5px solid rgba(255, 106, 0, .4);
  pointer-events: none;
}
.qr-sitename {
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .18em;
  color: var(--amber);
  font-family: monospace;
  text-shadow: 0 0 8px rgba(255, 177, 59, .4);
}
.qr-img-wrap {
  background: #fff;
  padding: 12px;
  box-shadow: 0 0 32px rgba(255, 106, 0, .2);
}
.qr-img-wrap img {
  display: block;
  width: 180px;
  height: auto;
}
.qr-url {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  font-family: monospace;
  letter-spacing: .02em;
  word-break: break-all;
  text-align: center;
}
.qr-wm {
  position: absolute;
  right: -4px;
  bottom: -14px;
  font-size: 64px;
  font-weight: 1000;
  letter-spacing: -.08em;
  color: rgba(255, 255, 255, .025);
  font-family: monospace;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

/* ── qa_sp_1 ── */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qa-item {
  position: relative;
  border: 1px solid rgba(255, 106, 0, .22);
  border-top: 2px solid rgba(255, 106, 0, .55);
  background: rgba(0, 0, 0, .45);
  overflow: hidden;
}
.qa-item::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .6);
  border-left: 1.5px solid rgba(255, 106, 0, .6);
  pointer-events: none;
}
.qa-item::after {
  content: "";
  position: absolute;
  bottom: 6px; right: 6px;
  width: 8px; height: 8px;
  border-bottom: 1.5px solid rgba(255, 106, 0, .3);
  border-right: 1.5px solid rgba(255, 106, 0, .3);
  pointer-events: none;
}
.qa-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 106, 0, .07);
  border-bottom: 1px solid rgba(255, 106, 0, .14);
}
.qa-q-badge {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #111;
  font-size: 11px;
  font-weight: 1000;
  font-family: monospace;
  margin-top: 1px;
}
.qa-q-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  color: rgba(255, 255, 255, .92);
}
.qa-a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 18px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
}
.qa-a-badge {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 1000;
  font-family: monospace;
  margin-top: 3px;
}
.qa-a-body {
  flex: 1;
  min-width: 0;
}
.qa-a p {
  margin: 0 0 6px;
}
.qa-a p:last-child {
  margin: 0;
}
#box4 {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-top: 4px;
}

/* ── privacy_sp_1 ── */
.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-intro {
  padding: 16px;
  background: rgba(255, 106, 0, .06);
  border: 1px solid rgba(255, 106, 0, .22);
  border-top: 2px solid rgba(255, 106, 0, .5);
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  position: relative;
}
.privacy-intro::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .6);
  border-left: 1.5px solid rgba(255, 106, 0, .6);
  pointer-events: none;
}
.privacy-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 1px solid rgba(255, 106, 0, .2);
  background: rgba(0, 0, 0, .38);
  overflow: hidden;
}
.privacy-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.privacy-item-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, .15);
  border: 1px solid rgba(255, 106, 0, .45);
  color: var(--orange);
  font-size: 11px;
  font-weight: 1000;
  font-family: monospace;
  text-shadow: 0 0 6px rgba(255, 106, 0, .6);
}
.privacy-item-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .03em;
}
.privacy-item-body {
  padding: 14px 16px 16px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .68);
  font-weight: 600;
}
.privacy-contact-box {
  padding: 16px;
  background: rgba(255, 106, 0, .07);
  border: 1px solid rgba(255, 106, 0, .25);
  border-top: 2px solid rgba(255, 106, 0, .55);
  font-size: 13px;
  line-height: 2.2;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  position: relative;
}
.privacy-contact-box::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
  pointer-events: none;
}
.privacy-contact-head {
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .2em;
  color: var(--orange);
  font-family: monospace;
  text-shadow: 0 0 8px rgba(255, 106, 0, .5);
  margin-bottom: 8px;
}

/* ── maintenance_sp_1 ── */
.maintenance-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px;
  min-height: 60vh;
  text-align: center;
}
.maintenance-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
}
.maintenance-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 106, 0, .9), 0 0 24px rgba(255, 106, 0, .4);
  animation: sub-blink 1.6s ease-in-out infinite;
}
.maintenance-dot:nth-child(2) { animation-delay: .3s; }
.maintenance-dot:nth-child(3) { animation-delay: .6s; }
.maintenance-label {
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .26em;
  color: var(--orange);
  font-family: monospace;
  text-shadow: 0 0 10px rgba(255, 106, 0, .7);
  margin: 0 0 18px;
}
.maintenance-title {
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 106, 0, .25);
  margin: 0 0 28px;
  line-height: 1.2;
}
.maintenance-card {
  width: 100%;
  position: relative;
  border: 1px solid rgba(255, 106, 0, .28);
  border-top: 2px solid rgba(255, 106, 0, .6);
  background: rgba(0, 0, 0, .54);
  padding: 22px 20px 26px;
  overflow: hidden;
}
.maintenance-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
  pointer-events: none;
}
.maintenance-card::after {
  content: "";
  position: absolute;
  bottom: 6px; right: 6px;
  width: 8px; height: 8px;
  border-bottom: 1.5px solid rgba(255, 106, 0, .4);
  border-right: 1.5px solid rgba(255, 106, 0, .4);
  pointer-events: none;
}
.maintenance-card p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  letter-spacing: .02em;
}
.maintenance-card p:last-child {
  margin: 0;
}
.maintenance-wm {
  position: absolute;
  right: -6px; bottom: -16px;
  font-size: 72px;
  font-weight: 1000;
  letter-spacing: -.08em;
  color: rgba(255, 255, 255, .024);
  font-family: monospace;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

/* ── kiyaku_sp_1 ── */
/* カード構造は .privacy-item を共用 */
.kiyaku-pricing {
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(255, 106, 0, .06);
  border: 1px solid rgba(255, 106, 0, .2);
  border-top: 1px solid rgba(255, 106, 0, .4);
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
  line-height: 2;
}
.kiyaku-pricing-label {
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .18em;
  color: var(--amber);
  font-family: monospace;
  margin-bottom: 6px;
  text-shadow: 0 0 8px rgba(255, 177, 59, .4);
}

/* ── guide_sp_1 ── */
.guide-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-section {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 1px solid rgba(255, 106, 0, .22);
  background: rgba(0, 0, 0, .38);
  overflow: hidden;
}
.guide-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .88);
  letter-spacing: .02em;
}
.guide-section-head::before {
  content: "\25A0";
  color: var(--orange);
  font-size: 8px;
  text-shadow: 0 0 6px rgba(255, 106, 0, .7);
  flex-shrink: 0;
}
.guide-section-body {
  padding: 14px 16px 18px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .68);
  font-weight: 600;
}
.guide-section-body p {
  margin: 0 0 6px;
}
.guide-section-body p:last-child {
  margin: 0;
}

/* ── tai04_xdx_sp_1 ── */
/* TOPへ戻るボタン */
a.retire_button2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow:
    inset 0 -6px 0 rgba(0, 0, 0, .22),
    0 0 28px rgba(255, 106, 0, .4);
  position: relative;
  overflow: hidden;
  transition: filter .18s;
  margin-bottom: 20px;
}
a.retire_button2::before {
  content: "\25C0";
  margin-right: 8px;
  font-size: 10px;
}
a.retire_button2::after {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255, 255, 255, .18);
  transform: skewX(-20deg);
  animation: dl-btn-shine 2.8s ease-in-out infinite;
}
a.retire_button2:active { filter: brightness(.88); }

/* 退会するリンク（規約内） */
.retire-inline-link {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 広告エリア */
.ad-block {
  margin: 16px 0;
  text-align: center;
}

/* 規約ゾーン見出し */
.tai-kiyaku-head {
  margin: 24px 0 12px;
}

/* ── tai04_tj_sp_1 ── */
/* TOPへ戻るボタン（blue02-full） */
a.blue02-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow:
    inset 0 -6px 0 rgba(0, 0, 0, .22),
    0 0 28px rgba(255, 106, 0, .4);
  position: relative;
  overflow: hidden;
  transition: filter .18s;
}
a.blue02-full::before {
  content: "\25C0";
  margin-right: 8px;
  font-size: 10px;
}
a.blue02-full::after {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255, 255, 255, .18);
  transform: skewX(-20deg);
  animation: dl-btn-shine 2.8s ease-in-out infinite;
}
a.blue02-full:active { filter: brightness(.88); }

/* 削除完了ステータスカード */
.complete-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 106, 0, .22);
  border-top: 2px solid rgba(255, 106, 0, .55);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.complete-stats::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .6);
  border-left: 1.5px solid rgba(255, 106, 0, .6);
}
.complete-stats-label {
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .22em;
  color: var(--muted);
  font-family: monospace;
}
.complete-stats-value {
  font-size: 26px;
  font-weight: 1000;
  color: #fff;
  letter-spacing: -.02em;
  text-shadow: 0 0 20px rgba(255, 106, 0, .2);
}
.complete-stats-point {
  font-size: 11px;
  color: var(--muted);
  font-family: monospace;
  letter-spacing: .1em;
}

/* キャリアカード */
.carrier-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 1px solid rgba(255, 106, 0, .22);
  background: rgba(0, 0, 0, .38);
  overflow: hidden;
  margin-bottom: 10px;
}
.carrier-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
p.au span, p.docomo span, p.softbank span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .08em;
  font-family: monospace;
  color: #111;
  margin-right: 4px;
}
p.au span    { background: #ea6100; }
p.docomo span { background: #e2001a; }
p.softbank span { background: #1b1b1b; color: #fff; }
p.au, p.docomo, p.softbank {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
}
.carrier-body {
  padding: 12px 14px 16px;
  font-size: 12px;
  line-height: 2;
  color: rgba(255, 255, 255, .62);
  font-weight: 600;
}
.carrier-retire-link {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(255, 106, 0, .15);
  border: 1px solid rgba(255, 106, 0, .5);
  color: var(--orange);
  font-size: 12px;
  font-weight: 1000;
  font-family: monospace;
  letter-spacing: .06em;
  text-decoration: none;
  margin-right: 4px;
}

/* ── tai03_sp_1 ── */
.retire-warn-card {
  position: relative;
  border: 1px solid rgba(255, 177, 59, .35);
  border-top: 2px solid var(--amber);
  background: rgba(255, 177, 59, .06);
  overflow: hidden;
  margin-bottom: 14px;
}
.retire-warn-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 177, 59, .7);
  border-left: 1.5px solid rgba(255, 177, 59, .7);
  pointer-events: none;
}
.retire-warn-card::after {
  content: "";
  position: absolute;
  bottom: 6px; right: 6px;
  width: 8px; height: 8px;
  border-bottom: 1.5px solid rgba(255, 177, 59, .4);
  border-right: 1.5px solid rgba(255, 177, 59, .4);
  pointer-events: none;
}
.retire-warn-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 1000;
  color: var(--amber);
  letter-spacing: .06em;
  text-shadow: 0 0 14px rgba(255, 177, 59, .55);
  border-bottom: 1px solid rgba(255, 177, 59, .2);
  background: rgba(255, 177, 59, .08);
}
.retire-warn-title::before {
  content: "\FF01";
  font-size: 18px;
  filter: drop-shadow(0 0 6px rgba(255, 177, 59, .8));
}
.retire-warn-body {
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
  color: rgba(255, 255, 255, .88);
  text-align: center;
  border-bottom: 1px solid rgba(255, 177, 59, .15);
}
.retire-warn-list {
  padding: 14px 16px 18px;
  font-size: 12px;
  line-height: 2.1;
  color: rgba(255, 255, 255, .62);
  font-weight: 600;
}

/* ── tai02_sp_1 ── */
.retire-survey-intro {
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 106, 0, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* アンケートフォーム */
.anke {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.anke dt {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  font-family: monospace;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.anke dd {
  margin: 0;
  padding: 14px 16px;
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 106, 0, .22);
  border-top: 1px solid rgba(255, 106, 0, .35);
}
.anke dd select,
.anke dd textarea {
  width: 100%;
  background: rgba(0, 0, 0, .65);
  border: 1px solid rgba(255, 106, 0, .3);
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  padding: 8px 12px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  resize: vertical;
  transition: border-color .18s;
}
.anke dd select:focus,
.anke dd textarea:focus {
  border-color: rgba(255, 106, 0, .7);
}
.anke dd textarea {
  min-height: 80px;
  padding: 10px 12px;
}
/* ネイティブ入力を非表示にしてlabel::beforeで描画 */
.anke dd input[type="radio"],
.anke dd input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

/* ラジオ用 label */
.anke dd label:has(input[type="radio"]) {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}
.anke dd label:has(input[type="radio"])::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 106, 0, .45);
  border-radius: 50%;
  background: transparent;
  transition: border-color .15s, box-shadow .15s;
}
.anke dd label:has(input[type="radio"])::after {
  content: "";
  position: absolute;
  left: 5px; top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  transition: transform .15s;
}
.anke dd label:has(input[type="radio"]:checked)::before {
  border-color: var(--orange);
  box-shadow: 0 0 6px rgba(255, 106, 0, .55);
}
.anke dd label:has(input[type="radio"]:checked)::after {
  transform: translateY(-50%) scale(1);
}

/* チェックボックス用 label */
.anke dd label:has(input[type="checkbox"]) {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}
.anke dd label:has(input[type="checkbox"])::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 106, 0, .45);
  border-radius: 3px;
  background: transparent;
  transition: border-color .15s, box-shadow .15s;
}
.anke dd label:has(input[type="checkbox"])::after {
  content: "";
  position: absolute;
  left: 6px; top: calc(50% - 5px);
  width: 5px; height: 9px;
  border: 2px solid var(--orange);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .15s;
}
.anke dd label:has(input[type="checkbox"]:checked)::before {
  border-color: var(--orange);
  box-shadow: 0 0 6px rgba(255, 106, 0, .55);
}
.anke dd label:has(input[type="checkbox"]:checked)::after {
  transform: rotate(45deg) scale(1);
}
.anke dd label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  margin-right: 16px;
}
.anke dd.reason label {
  display: flex;
  margin-right: 0;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding-bottom: 6px;
}
.anke dd.reason label:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* スキップリンク */
.retire-skip-link {
  display: flex;
  justify-content: flex-end;
  padding: 10px 2px 4px;
}
.retire-skip-link a {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .38);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .15s;
}
.retire-skip-link a:active {
  color: rgba(255, 255, 255, .65);
}

/* ── list_sp_1_2（コンテンツ一覧） ── */
.content-msg {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  font-family: monospace;
  letter-spacing: .08em;
  margin-bottom: 14px;
  padding: 8px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* 空状態 */
ul.pageitem {
  list-style: none;
  padding: 0;
  margin: 0;
}
li.textbox {
  padding: 32px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  letter-spacing: .04em;
}
li.textbox .header { display: none; }

/* コンテンツグリッド */
.content_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.content_item {
  position: relative;
  border: 1px solid rgba(255, 106, 0, .18);
  overflow: hidden;
  background: rgba(0, 0, 0, .5);
  transition: border-color .18s;
}
.content_item:active {
  border-color: rgba(255, 106, 0, .5);
}
.content_item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.content_img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, .04);
}
.content_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}
.content_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .7));
  pointer-events: none;
}
.content_description {
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(255, 106, 0, .14);
}
.content_item h3 {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .82);
  line-height: 1.5;
  letter-spacing: .02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ── detail_sp_1（コンテンツ詳細） ── */
.detail_title {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
  text-shadow: 0 0 20px rgba(255, 106, 0, .2);
}
.detail_content {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.detail_img {
  flex-shrink: 0;
  width: 120px;
}
.detail_img img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 106, 0, .3);
  box-shadow: 0 0 18px rgba(255, 106, 0, .2);
}
.detail_description {
  flex: 1;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
  margin: 0;
}

/* ダウンロード・ポイントエリア */
.detail_point {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail_point > p {
  margin: 0;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 106, 0, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  line-height: 2;
}

/* ダウンロードボタン */
.download_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow:
    inset 0 -6px 0 rgba(0, 0, 0, .22),
    0 0 28px rgba(255, 106, 0, .4);
  position: relative;
  overflow: hidden;
  transition: filter .18s;
}
.download_btn a::before {
  content: "\25BC";
  margin-right: 8px;
  font-size: 11px;
}
.download_btn a::after {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255, 255, 255, .18);
  transform: skewX(-20deg);
  animation: dl-btn-shine 2.8s ease-in-out infinite;
}
.download_btn a:active { filter: brightness(.88); }

/* ポイント追加ボタン */
.point_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  background: transparent;
  border: 1px solid rgba(255, 106, 0, .5);
  color: var(--orange);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-decoration: none;
  font-family: monospace;
  transition: background .18s, color .18s;
}
.point_btn a::before {
  content: "\FF0B";
  margin-right: 6px;
}
.point_btn a:active {
  background: rgba(255, 106, 0, .12);
  color: var(--amber);
}

/* 確認注意書き */
.detail_attention {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.9;
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ポイント不足テキスト */
.detail_point-insufficient {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail_point-insufficient > p {
  margin: 0;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.detail_point-insufficient .warn {
  color: var(--amber);
  text-shadow: 0 0 10px rgba(255, 177, 59, .4);
}

/* ── list_sp_1_3（マイページ） ── */
.mypage-point-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 16px;
  background: rgba(255, 106, 0, .06);
  border: 1px solid rgba(255, 106, 0, .25);
  border-top: 2px solid rgba(255, 106, 0, .6);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.mypage-point-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
}
.mypage-point-label {
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .2em;
  color: var(--muted);
  font-family: monospace;
}
.mypage-point-value {
  font-size: 30px;
  font-weight: 1000;
  color: var(--amber);
  letter-spacing: -.02em;
  text-shadow: 0 0 20px rgba(255, 177, 59, .45);
  font-family: monospace;
}
.mypage-point-unit {
  font-size: 11px;
  color: var(--muted);
  font-family: monospace;
  letter-spacing: .1em;
}
.mypage-count {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
  font-family: monospace;
  letter-spacing: .04em;
}
.mypage-count span {
  color: var(--amber);
  font-size: 15px;
}
.not_found {
  padding: 28px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  letter-spacing: .04em;
  margin-bottom: 14px;
}

/* ダウンロード履歴グリッド */
.found {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.history-item {
  position: relative;
  border: 1px solid rgba(255, 106, 0, .18);
  overflow: hidden;
  background: rgba(0, 0, 0, .5);
}
.history-item img {
  width: 100%;
  height: auto;
  display: block;
}
.history-item-name {
  display: block;
  padding: 6px 8px 2px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  line-height: 1.4;
  border-top: 1px solid rgba(255, 106, 0, .14);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.history-item-dl {
  display: block;
  text-align: center;
  padding: 7px 8px;
  font-size: 11px;
  font-weight: 1000;
  font-family: monospace;
  letter-spacing: .04em;
  color: var(--orange);
  text-decoration: none;
  background: rgba(255, 106, 0, .08);
  border-top: 1px solid rgba(255, 106, 0, .2);
  transition: background .15s;
}
.history-item-dl:active {
  background: rgba(255, 106, 0, .2);
}

/* ── detail_sp_1_2（CRUD詳細） ── */
/* 右上アクション */
.btn-right {
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 10;
}
.btn-right a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .1em;
  font-family: monospace;
  color: var(--amber);
  border: 1px solid rgba(255, 177, 59, .4);
  background: rgba(255, 177, 59, .07);
  text-decoration: none;
  transition: background .15s;
}
.btn-right a:active {
  background: rgba(255, 177, 59, .18);
}

/* .msg */
.detail-msg {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  font-family: monospace;
  letter-spacing: .06em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* 詳細テーブル */
table.detail {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
table.detail th {
  width: 36%;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  font-family: monospace;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  vertical-align: top;
  white-space: nowrap;
}
table.detail td {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  vertical-align: top;
  word-break: break-all;
}
table.detail tr:last-child th,
table.detail tr:last-child td {
  border-bottom: none;
}

/* セクション見出し（#キー） */
.content_subtitle {
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .18em;
  color: var(--orange);
  font-family: monospace;
  text-shadow: 0 0 8px rgba(255, 106, 0, .5);
  padding: 4px 0 8px;
}
.content_subtitle::before {
  content: "//";
  margin-right: 6px;
  opacity: .7;
}

/* CRUDボタン */
input.btn.wide {
  display: block;
  width: 100%;
  min-height: 50px;
  font-size: 14px;
  font-weight: 1000;
  font-family: inherit;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  transition: filter .18s;
  margin-bottom: 10px;
}
input.btn.wide.commit {
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .22), 0 0 22px rgba(255, 106, 0, .3);
}
input.btn.wide.gray {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .15);
}
input.btn.wide:active { filter: brightness(.88); }
.mb10 { margin-bottom: 10px; }

/* ナビリンク */
ul.link.info {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
ul.link.info li {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
ul.link.info li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .15s;
}
ul.link.info li a::before {
  content: "\25B8";
  color: var(--orange);
  font-size: 9px;
  flex-shrink: 0;
}
ul.link.info li a:active {
  color: var(--amber);
}

/* ── detail_fla_utas_sp_1（音楽DL詳細） ── */
h2.title_28 {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
  text-shadow: 0 0 20px rgba(255, 106, 0, .2);
}

/* テストデバッグブロック */
.test-debug {
  padding: 10px 12px;
  font-size: 11px;
  font-family: monospace;
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 14px;
  line-height: 2;
}

/* 楽曲メタ情報 */
.detail-meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .07);
}
.detail-meta-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.detail-meta-item:last-child {
  border-bottom: none;
}
.detail-meta-label {
  flex-shrink: 0;
  width: 84px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  font-family: monospace;
}
.detail-meta-value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}
.detail-meta-value.point {
  color: var(--amber);
  font-family: monospace;
  font-size: 15px;
  font-weight: 1000;
  text-shadow: 0 0 10px rgba(255, 177, 59, .4);
}

/* ── retire_try_docomo_sp_1 ── */
.retire-intro {
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 106, 0, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.carrier-section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .16em;
  font-family: monospace;
  color: #fff;
  background: rgba(255, 26, 26, .15);
  border: 1px solid rgba(255, 26, 26, .3);
  border-top: 2px solid rgba(255, 26, 26, .6);
  margin-bottom: 10px;
}
.carrier-section-head::before,
.carrier-section-head::after {
  content: "\25BC";
  color: rgba(255, 26, 26, .7);
  font-size: 8px;
}
h2.content_title {
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .18em;
  color: var(--muted);
  font-family: monospace;
  margin: 0 0 10px;
}
h2.content_title::before {
  content: "//";
  color: var(--orange);
  margin-right: 6px;
  opacity: .8;
}
ul.course_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
ul.course_list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  background: linear-gradient(180deg, rgba(200, 20, 20, .9), rgba(160, 10, 10, .95));
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow:
    inset 0 -5px 0 rgba(0, 0, 0, .25),
    0 0 22px rgba(200, 20, 20, .3);
  position: relative;
  overflow: hidden;
  transition: filter .18s;
  padding: 12px 16px;
  text-align: center;
}
ul.course_list li a::before {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255, 255, 255, .12);
  transform: skewX(-20deg);
  animation: dl-btn-shine 3s ease-in-out infinite;
}
ul.course_list li a:active { filter: brightness(.85); }
ul.course_list li a .b {
  font-size: 14px;
  font-weight: 1000;
  line-height: 1.6;
}
ul.course_list li.empty-course {
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  text-align: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

/* ── retire_sp_1（退会コース選択） ── */
/* コース選択リスト */
ul.link.info li.arrow2.list_28 {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* ヘッダー行（退会コース選択ラベル） */
ul.link.info li.arrow2.list_28:first-child {
  padding: 8px 14px;
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .22em;
  color: var(--muted);
  font-family: monospace;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 106, 0, .15);
}

/* コースボタン（退会可能） */
ul.link.info li.arrow2.list_28 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(200, 30, 30, .85), rgba(160, 10, 10, .9));
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .02em;
  text-decoration: none;
  text-align: center;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .22), 0 0 18px rgba(200, 20, 20, .25);
  position: relative;
  overflow: hidden;
  transition: filter .18s;
}
ul.link.info li.arrow2.list_28 a::before {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255, 255, 255, .1);
  transform: skewX(-20deg);
  animation: dl-btn-shine 3s ease-in-out infinite;
}
ul.link.info li.arrow2.list_28 a:active { filter: brightness(.88); }
ul.link.info li.arrow2.list_28 a .b {
  line-height: 1.7;
}
ul.link.info li.arrow2.list_28 a small {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  display: block;
}

/* 空状態 */
ul.link.info li.empty-course {
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  text-align: center;
  background: rgba(255, 255, 255, .04);
}

/* ── retire_old_sp_1 ── */
.retire-old-form {
  padding: 20px 16px 24px;
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 106, 0, .28);
  border-top: 2px solid rgba(255, 106, 0, .6);
  position: relative;
}
.retire-old-form::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
  pointer-events: none;
}
.retire-old-form label {
  display: block;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .18em;
  color: var(--amber);
  font-family: monospace;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(255, 177, 59, .4);
}
.retire-old-form input[type="text"] {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 14px;
  background: rgba(0, 0, 0, .65);
  border: 1px solid rgba(255, 106, 0, .35);
  color: var(--text);
  font-size: 18px;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: .12em;
  outline: none;
  margin-bottom: 16px;
  transition: border-color .18s;
  -webkit-appearance: none;
}
.retire-old-form input[type="text"]:focus {
  border-color: rgba(255, 106, 0, .8);
}
.retire-old-form input[type="submit"] {
  display: block;
  width: 100%;
  min-height: 52px;
  background: linear-gradient(180deg, rgba(200, 20, 20, .9), rgba(160, 10, 10, .95));
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  font-family: inherit;
  letter-spacing: .08em;
  border: none;
  cursor: pointer;
  box-shadow:
    inset 0 -5px 0 rgba(0, 0, 0, .22),
    0 0 22px rgba(200, 20, 20, .25);
  -webkit-appearance: none;
  transition: filter .18s;
}
.retire-old-form input[type="submit"]:active {
  filter: brightness(.88);
}

/* ── regist_sp_1（登録ページ） ── */
.regist-notice-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.9;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 10px;
}
.regist-notice-text a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.regist-charge-note {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 80, 80, .9);
  margin-bottom: 14px;
}
.payment-img {
  display: flex;
  justify-content: center;
  margin: 12px 0 16px;
}
.payment-img img {
  display: block;
  background: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  width: 120px;
  max-width: 50%;
  height: auto;
  object-fit: contain;
}

/* 登録課金コース（オレンジ - 退会の赤と区別） */
.regist-wrap ul.course_list li a {
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  box-shadow:
    inset 0 -5px 0 rgba(0, 0, 0, .22),
    0 0 22px rgba(255, 106, 0, .35);
}
/* 登録済みコース（控えめ表示） */
.regist-wrap ul.course_list li a[href="#"] {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .35);
  box-shadow: none;
}
.regist-wrap ul.course_list li a[href="#"]::before {
  display: none;
}

/* ── キャンペーンバナー（cp-banner）電脳系 ── */
.cp-banner {
  position: relative;
  margin-bottom: 16px;
  padding: 20px 16px 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 229, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, .03) 1px, transparent 1px),
    linear-gradient(160deg, #020b14 0%, #040f1e 60%, #070814 100%);
  background-size: 22px 22px, 22px 22px, 100%;
  border: 1px solid rgba(0, 229, 255, .25);
  border-top: 2px solid #00e5ff;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, .08),
    0 0 30px rgba(0, 229, 255, .18),
    inset 0 0 40px rgba(0, 229, 255, .04);
  animation: cp-cyber-glow 3s ease-in-out infinite;
}

@keyframes cp-cyber-glow {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(0,229,255,.08), 0 0 30px rgba(0,229,255,.18), inset 0 0 40px rgba(0,229,255,.04);
    border-top-color: #00e5ff;
  }
  50% {
    box-shadow: 0 0 0 1px rgba(0,229,255,.2), 0 0 50px rgba(0,229,255,.35), inset 0 0 60px rgba(0,229,255,.08);
    border-top-color: #80ffff;
  }
}

@keyframes cp-glitch {
  0%, 85%, 100% { transform: none; text-shadow: 0 0 20px rgba(0,229,255,.8), 0 0 40px rgba(0,229,255,.4); }
  87% { transform: translateX(-3px) skewX(-2deg); text-shadow: 3px 0 0 rgba(255,0,60,.7), -3px 0 0 rgba(0,229,255,.7); }
  89% { transform: translateX(3px) skewX(2deg);  text-shadow: -3px 0 0 rgba(255,0,60,.7), 3px 0 0 rgba(0,229,255,.7); }
  91% { transform: translateX(-1px); text-shadow: 2px 0 0 rgba(0,229,255,.5); }
}

/* マトリックスキャンバス */
.cp-matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

/* スキャンライン */
.cp-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, .12) 2px,
    rgba(0, 0, 0, .12) 3px
  );
  pointer-events: none;
  z-index: 0;
}

/* 右上コーナーカット装飾 */
.cp-banner::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: #00e5ff;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: .7;
  pointer-events: none;
}

.cp-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .28em;
  color: #ffe040;
  border: 1px solid rgba(255, 224, 64, .5);
  padding: 2px 8px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 8px rgba(255, 224, 64, .8);
}
.cp-banner-tag::before {
  content: ">";
  animation: cp-blink-cursor .9s step-end infinite;
}
@keyframes cp-blink-cursor { 0%, 100% { opacity: 1 } 50% { opacity: 0 } }

.cp-banner-free {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 900;
  color: #ffe040;
  letter-spacing: .02em;
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: -apple-system, sans-serif;
  text-align: center;
  text-shadow: 0 0 12px rgba(255, 224, 64, .6);
}
.cp-banner-free em {
  display: inline-block;
  font-style: normal;
  font-size: 34px;
  font-weight: 1000;
  color: #ffe040;
  letter-spacing: -.02em;
  text-shadow:
    0 0 16px rgba(255, 224, 64, .9),
    0 0 40px rgba(255, 224, 64, .5);
  animation: cp-glitch 5s ease-in-out infinite;
}

.cp-banner-sub {
  position: relative;
  z-index: 1;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 224, 64, .7);
  letter-spacing: .1em;
  text-align: center;
}
.cp-banner-sub::before {
  content: "// ";
  opacity: .6;
}

.cp-banner-deco {
  position: absolute;
  bottom: 8px; right: 10px;
  font-family: monospace;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  color: rgba(0, 229, 255, .15);
  z-index: 1;
}
.cp-banner-deco::after {
  content: "LIMITED_OFFER.exe";
}

/* ── regist_docomo_sp_1 ── */
.cp-regist-action {
  display: flex;
  justify-content: center;
  margin: 18px 0 14px;
}
.cp-regist-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ffe040 0%, #ffb300 100%);
  color: #000;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  box-shadow:
    0 0 20px rgba(255, 224, 64, .5),
    0 0 50px rgba(255, 224, 64, .2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: cp-regist-pulse 2s ease-in-out infinite;
}
.cp-regist-btn::before {
  content: "";
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,.35);
  transform: skewX(-20deg);
  animation: cp-regist-shine 2.5s ease-in-out infinite;
}
@keyframes cp-regist-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,224,64,.5), 0 0 50px rgba(255,224,64,.2); }
  50%       { box-shadow: 0 0 30px rgba(255,224,64,.8), 0 0 70px rgba(255,224,64,.4); }
}
@keyframes cp-regist-shine {
  0%   { left: -60%; }
  60%, 100% { left: 130%; }
}
.cp-course-info {
  margin: 6px 0 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  letter-spacing: .03em;
  line-height: 1.6;
}

.cp-regist-btn--done {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
}

.regist-warn-text {
  margin-top: 8px;
  padding: 8px 10px;
  background: rgba(255, 60, 60, .08);
  border-top: 1px solid rgba(255, 60, 60, .3);
  color: rgba(255, 200, 200, .85);
  font-size: 12px;
  line-height: 1.7;
}

/* ── regist_ok_sp_1 ── */
.login-cred-card {
  position: relative;
  border: 1px solid rgba(255, 106, 0, .28);
  border-top: 2px solid var(--orange);
  background: rgba(0, 0, 0, .6);
  overflow: hidden;
  margin-bottom: 16px;
}
.login-cred-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
  pointer-events: none;
}
.login-cred-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 106, 0, .09);
  border-bottom: 1px solid rgba(255, 106, 0, .18);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .22em;
  color: var(--orange);
  font-family: monospace;
  text-shadow: 0 0 8px rgba(255, 106, 0, .55);
}
.login-cred-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-cred-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.login-cred-label {
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .16em;
  color: var(--muted);
  font-family: monospace;
}
.login-cred-value {
  font-size: 15px;
  font-weight: 1000;
  font-family: monospace;
  color: var(--amber);
  letter-spacing: .06em;
  text-shadow: 0 0 10px rgba(255, 177, 59, .35);
  word-break: break-all;
}
.login-cred-note {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 12px;
  margin-top: 2px;
}

/* ── no_login_sp_1（ログインページ） ── */
.login-carrier {
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 1px solid rgba(255, 106, 0, .2);
  overflow: hidden;
}
.login-carrier-head {
  padding: 10px 14px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.login-carrier-head p.au,
.login-carrier-head p.docomo,
.login-carrier-head p.softbank {
  margin: 0;
}
.login-carrier-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  background: rgba(0, 0, 0, .4);
}
.login-carrier-btn form { margin: 0; width: 100%; }
.login-carrier-btn input[type="image"],
.login-carrier-btn img {
  display: block;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 106, 0, .2));
}

/* キャリアログインボタン（テキスト版） */
.carrier-login-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  transition: filter .15s;
  box-sizing: border-box;
}
.carrier-login-btn:active { filter: brightness(.85); }

.carrier-login-brand {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.2;
}
.carrier-login-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  opacity: .85;
}

.carrier-login-btn--docomo {
  background: linear-gradient(180deg, #e8001a, #c20016);
  color: #fff;
  box-shadow:
    inset 0 -4px 0 rgba(0, 0, 0, .2),
    0 0 28px rgba(232, 0, 26, .45);
}
.carrier-login-btn--au {
  background: linear-gradient(180deg, #f7931e, #d97800);
  color: #fff;
  box-shadow:
    inset 0 -4px 0 rgba(0, 0, 0, .2),
    0 0 28px rgba(247, 147, 30, .4);
}

/* ── login_id_sp_1（IDログインフォーム） ── */
.login-form {
  position: relative;
  border: 1px solid rgba(255, 106, 0, .28);
  border-top: 2px solid var(--orange);
  background: rgba(0, 0, 0, .54);
  overflow: hidden;
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.login-form::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
  pointer-events: none;
}
.login-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-form-label {
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .18em;
  color: var(--muted);
  font-family: monospace;
}
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  background: rgba(0, 0, 0, .65);
  border: 1px solid rgba(255, 106, 0, .3);
  color: var(--text);
  font-size: 16px;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: .08em;
  outline: none;
  transition: border-color .18s;
  -webkit-appearance: none;
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  border-color: rgba(255, 106, 0, .8);
}
.login-form input[type="submit"] {
  display: block;
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #111;
  font-size: 16px;
  font-weight: 1000;
  font-family: inherit;
  letter-spacing: .08em;
  border: none;
  cursor: pointer;
  box-shadow:
    inset 0 -5px 0 rgba(0, 0, 0, .22),
    0 0 22px rgba(255, 106, 0, .3);
  -webkit-appearance: none;
  transition: filter .18s;
}
.login-form input[type="submit"]:active {
  filter: brightness(.88);
}

/* ── toiawase_thanks_sp_1 ── */
/* .thanks：元のハイライトをGAME ROOMテーマに置換 */
.thanks {
  color: var(--amber);
  font-weight: 1000;
  font-size: 14px;
  letter-spacing: .03em;
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 0 12px rgba(255, 177, 59, .5);
}

/* 送信完了カード */
.thanks-sent-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, .28);
  border-top: 2px solid var(--orange);
  background:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 19px,
      rgba(255, 255, 255, .016) 19px, rgba(255, 255, 255, .016) 20px
    ),
    rgba(0, 0, 0, .54);
  box-shadow:
    0 8px 0 rgba(0, 0, 0, .36),
    inset 0 0 28px rgba(255, 106, 0, .03);
  margin-bottom: 16px;
}
.thanks-sent-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 10px; height: 10px;
  border-top: 1.5px solid rgba(255, 106, 0, .7);
  border-left: 1.5px solid rgba(255, 106, 0, .7);
  pointer-events: none;
}
.thanks-sent-card::after {
  content: "";
  position: absolute;
  bottom: 8px; right: 8px;
  width: 10px; height: 10px;
  border-bottom: 1.5px solid rgba(255, 106, 0, .4);
  border-right: 1.5px solid rgba(255, 106, 0, .4);
  pointer-events: none;
}

.thanks-sent-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 106, 0, .09);
  border-bottom: 1px solid rgba(255, 106, 0, .18);
}
.thanks-sent-head-label {
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .22em;
  color: var(--orange);
  font-family: monospace;
  text-shadow: 0 0 8px rgba(255, 106, 0, .55);
}

.thanks-sent-body {
  position: relative;
  z-index: 1;
  padding: 20px 18px 24px;
}
.thanks-sent-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 106, 0, .045) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.thanks-sent-body p {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  letter-spacing: .02em;
}
.thanks-sent-body p:last-child {
  margin-bottom: 0;
}

/* 日付ボックス（JSで注入） */
#datebox {
  color: var(--amber);
  font-weight: 1000;
  font-family: monospace;
  letter-spacing: .04em;
}

/* チェックリスト見出し */
.thanks-checklist-head {
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .16em;
  color: var(--muted);
  font-family: monospace;
  margin: 16px 0 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

/* チェックリスト各項目（p.check-item） */
.thanks-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
}
.thanks-checklist-item::before {
  content: "\25B8";
  color: var(--orange);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 4px;
}
.thanks-checklist-item:last-child {
  border-bottom: none;
}
