/* ================================================================
   pe-sub.css &#8212; Patto-Eigo サブページ共通スタイル
   index.html のデザイントーンに合わせた下層ページ用ベース
================================================================ */

/* &#9472;&#9472; ページ共通ベース &#9472;&#9472; */
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,216,77,.38), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(59,130,246,.12), transparent 30%),
    linear-gradient(180deg, #fff8df 0%, #fffdf4 46%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #18203a;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}

/* &#9472;&#9472; ページラッパー（ヘッダー余白含む） &#9472;&#9472; */
.sp-page {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-height: 100vh;
  padding-top: 0px;
  padding-bottom: 60px;
}

/* &#9472;&#9472; 戻るボタン（上部・小） &#9472;&#9472; */
.sp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 20px 18px 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 rgba(24,32,58,.22);
  transition: transform .12s, box-shadow .12s;
}
.sp-back::before {
  content: "\2190";
  font-size: 13px;
}
.sp-back:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(24,32,58,.22);
}

/* &#9472;&#9472; ページヘッド &#9472;&#9472; */
.sp-head {
  position: relative;
  margin: 22px 18px 0;
  padding: 24px 20px 22px;
  border-radius: 28px;
  border: 3px solid #18203a;
  background: linear-gradient(135deg, #ffd84d 0%, #ff9b2f 100%);
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
}
.sp-head::before {
  content: "!";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Rubik", sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,.25);
  line-height: 1;
  pointer-events: none;
}
.sp-head-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.sp-head h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.15;
  color: #18203a;
}

/* &#9472;&#9472; ページヘッドカラーバリアント &#9472;&#9472; */
.sp-head--blue {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}
.sp-head--blue::before { color: rgba(255,255,255,.2); }
.sp-head--green {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}
.sp-head--pink {
  background: linear-gradient(135deg, #f9a8d4 0%, #ec4899 100%);
}
.sp-head--navy {
  background: linear-gradient(135deg, #334155 0%, #18203a 100%);
}
.sp-head--navy .sp-head-kicker {
  background: #ffd84d;
  color: #18203a;
}
.sp-head--navy h1 { color: #fff; }

/* &#9472;&#9472; notice ブロック &#9472;&#9472; */
.sp-notice-wrap {
  margin: 16px 18px 0;
}

/* &#9472;&#9472; 汎用カード &#9472;&#9472; */
.sp-card {
  position: relative;
  margin: 14px 18px 0;
  padding: 22px 20px;
  border-radius: 24px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  overflow: hidden;
}
.sp-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    #ff0080, #ff4400, #ffcc00, #00e898, #0088ff, #aa00ff, #ff0080);
  background-size: 200% 100%;
  animation: spRainbow 3s linear infinite;
}
@keyframes spRainbow {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* カードアイコンラベル */
.sp-card-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 8px;
  background: #fff3d0;
  border: 2px solid #ffd84d;
  color: #b05c00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.sp-card-icon::before {
  content: "\26A0";
  font-size: 13px;
  color: #ff8a2a;
}
.sp-card-icon--info { background: #dbeafe; border-color: #93c5fd; color: #1e40af; }
.sp-card-icon--info::before { content: "\2139"; color: #3b82f6; }
.sp-card-icon--check { background: #dcfce7; border-color: #86efac; color: #166534; }
.sp-card-icon--check::before { content: "\2713"; color: #22c55e; }

/* カード本文 */
.sp-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: #1e2a45;
  font-weight: 500;
}
.sp-card p + p { margin-top: 14px; }
.sp-card p strong {
  color: #dc2626;
  font-weight: 800;
}

/* &#9472;&#9472; セクションタイトル（カード外） &#9472;&#9472; */
.sp-section-title {
  margin: 28px 18px 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.04em;
  color: #18203a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-section-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ffd84d, #ff8a2a);
  flex-shrink: 0;
}

/* &#9472;&#9472; フォーム系 &#9472;&#9472; */
.sp-form {
  margin: 14px 18px 0;
}
.sp-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  color: #18203a;
  letter-spacing: .04em;
}
.sp-form input,
.sp-form select,
.sp-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 14px;
  border: 2.5px solid #18203a;
  background: #fff;
  font-size: 14px;
  color: #18203a;
  box-shadow: 3px 3px 0 rgba(24,32,58,.14);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.sp-form input:focus,
.sp-form select:focus,
.sp-form textarea:focus {
  border-color: #ffd84d;
  box-shadow: 3px 3px 0 rgba(255,216,77,.5);
}
.sp-form .sp-form-row { margin-bottom: 16px; }

/* &#9472;&#9472; アクションボタン &#9472;&#9472; */
.sp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 18px 0;
  padding: 15px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  text-align: center;
}
.sp-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #18203a;
}
.sp-btn:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 #18203a;
}
.sp-btn--primary { background: #ffd84d; color: #18203a; }
.sp-btn--dark    { background: #18203a; color: #ffd84d; }
.sp-btn--green   { background: #22c55e; color: #fff; }
.sp-btn--red     { background: #dc2626; color: #fff; }
.sp-btn--ghost   { background: #fff;    color: #18203a; }

/* &#9472;&#9472; ホームへ戻るボタン（下部・固定スタイル） &#9472;&#9472; */
.sp-home-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 18px 0;
  padding: 15px 18px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 rgba(24,32,58,.25);
  transition: transform .12s, box-shadow .12s;
}
.sp-home-btn::before { content: "\2302"; font-size: 16px; }
.sp-home-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(24,32,58,.25);
}

/* &#9472;&#9472; リスト &#9472;&#9472; */
.sp-list {
  margin: 14px 18px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 2px solid rgba(24,32,58,.1);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.sp-list li a::after {
  content: "\203A";
  margin-left: auto;
  font-size: 18px;
  color: rgba(24,32,58,.3);
}
.sp-list li a:hover {
  border-color: #ffd84d;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(24,32,58,.1);
}

/* ========================================
   退会ページ固有（retire_sp_1）
   ======================================== */

/* ヘッドをネイビーに上書き */
.retire-page .sp-head {
  background: linear-gradient(135deg, #334155 0%, #18203a 100%);
}
.retire-page .sp-head h1 { color: #fff; }
.retire-page .sp-head-kicker {
  background: #ffd84d;
  color: #18203a;
}
.retire-page .sp-head::before {
  content: "\26A0";
  font-size: 64px;
  color: rgba(255,255,255,.15);
}

/* 手順テキスト */
.retire-lead {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 18px 18px 0;
  padding: 16px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
}
.retire-lead-step {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.retire-lead-text {
  font-size: 13.5px;
  line-height: 1.85;
  color: #2d3a5e;
  font-weight: 500;
  padding-top: 2px;
}
.retire-lead-text strong {
  color: #dc2626;
  font-weight: 800;
}

/* 空メール送信ボタン */
.retire-mail-wrap {
  margin: 18px 18px 0;
  text-align: center;
}
.retire-mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: 999px;
  border: 3.5px solid #18203a;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.retire-mail-btn::before {
  content: "\2709";
  font-size: 18px;
}
.retire-mail-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}
.retire-mail-btn:active {
  transform: translate(3px,3px);
  box-shadow: 2px 2px 0 #18203a;
}

/* キャリア設定セクション */
.retire-carrier {
  margin: 24px 18px 0;
}
.retire-carrier-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(24,32,58,.5);
  letter-spacing: .1em;
}
.retire-carrier-title::before {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(24,32,58,.12);
}
.retire-carrier-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(24,32,58,.12);
}

.retire-carrier-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 2px solid rgba(24,32,58,.1);
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
  font-size: 13px;
  line-height: 1.75;
  color: #2d3a5e;
}
.retire-carrier-card a {
  display: inline-block;
  margin: 8px 0 4px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(24,32,58,.2);
}
.retire-carrier-card input[type="text"] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid rgba(24,32,58,.18);
  background: #f8fafc;
  font-size: 13px;
  color: #18203a;
  font-family: inherit;
}

/* ========================================
   登録ページ固有（regist_sp_1）
   ======================================== */

/* ---- ヘッド ---- */
.regist-page .sp-head {
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}
.regist-page .sp-head::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 28px;
  background: #f8fafc;
  border-radius: 28px 28px 0 0;
}
.regist-page .sp-head h1 { color: #fff; position: relative; z-index: 1; }
.regist-page .sp-head-kicker {
  background: #ffd84d;
  color: #18203a;
  position: relative;
  z-index: 1;
}
.regist-page .sp-head::before {
  content: "\2B50";
  font-size: 120px;
  color: rgba(255,255,255,.07);
  position: absolute;
  right: -10px; top: -10px;
  z-index: 0;
}

/* ---- 注意事項バナー ---- */
.regist-page .rg-notice-bar {
  margin: 18px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.regist-page .rg-kiyaku {
  font-size: 13px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.7;
}
.regist-page .rg-kiyaku a {
  color: #7c3aed;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.regist-page .rg-billing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  font-size: 12px;
  font-weight: 900;
  color: #dc2626;
  letter-spacing: .02em;
  width: fit-content;
}
.regist-page .rg-billing-badge::before { content: "\1F4C5"; font-size: 13px; }

/* ---- 決済バナー ---- */
.regist-page .rg-payment-wrap {
  margin: 16px 18px 0;
  border-radius: 16px;
  border: 2px solid rgba(24,32,58,.12);
  background: #fff;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.regist-page .rg-payment-wrap img {
  max-width: 200px;
  height: auto;
  display: block;
}

/* ---- セクションタイトル ---- */
.regist-page .rg-section-title {
  margin: 22px 18px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.regist-page .rg-section-title-text {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(124,58,237,.3);
}
.regist-page .rg-section-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(124,58,237,.3) 0%, transparent 100%);
  border-radius: 2px;
}

/* ---- コースリスト ---- */
.regist-page .rg-course-list {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* カード共通 */
.regist-page .rg-course-card {
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
  position: relative;
}
.regist-page .rg-course-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* 登録可能カード */
.regist-page .rg-course-card--available .rg-course-card-head {
  background: linear-gradient(135deg, #ede9fe 0%, #dbeafe 100%);
  border-bottom: 2px solid rgba(124,58,237,.2);
}

/* 登録済みカード */
.regist-page .rg-course-card--registered {
  opacity: .65;
}
.regist-page .rg-course-card--registered .rg-course-card-head {
  background: #f1f5f9;
  border-bottom: 2px solid #e2e8f0;
}
.regist-page .rg-registered-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #94a3b8;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  border: 1.5px solid #18203a;
}

.regist-page .rg-course-card-head {
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.regist-page .rg-course-point-wrap { flex: 1; min-width: 0; }
.regist-page .rg-course-point-label {
  font-size: 10px;
  font-weight: 900;
  color: #7c3aed;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.regist-page .rg-course-point-label--registered { color: #94a3b8; }
.regist-page .rg-course-point {
  font-family: "Rubik", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #18203a;
  line-height: 1;
}
.regist-page .rg-course-point span {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  margin-left: 2px;
}
.regist-page .rg-course-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(124,58,237,.4);
}
.regist-page .rg-course-arrow--registered {
  background: #e2e8f0;
  box-shadow: none;
  color: #94a3b8;
}

.regist-page .rg-course-card-body {
  padding: 10px 18px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  line-height: 1.7;
}
.regist-page .rg-price-main {
  font-size: 15px;
  font-weight: 900;
  color: #1e2a45;
}
.regist-page .rg-price-sub {
  font-size: 12px;
  color: #64748b;
}
.regist-page .rg-price-free {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fef9c3;
  border: 1.5px solid #fde047;
  color: #713f12;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}
.regist-page .rg-price-free::before { content: "\1F381"; }
.regist-page .rg-course-cta {
  padding: 9px 18px;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.regist-page .rg-course-cta::after { content: "\00BB"; }

/* ---- サービス紹介セクション ---- */
.regist-page .rg-service-card {
  margin: 22px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.regist-page .rg-service-card-head {
  padding: 13px 18px;
  background: linear-gradient(135deg, #1e3a5f 0%, #18203a 100%);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #7dd3fc;
  letter-spacing: .05em;
}
.regist-page .rg-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  border-bottom: 1px solid #f1f5f9;
  transition: background .12s;
}
.regist-page .rg-service-link:hover { background: #f8fafc; }
.regist-page .rg-service-link::after {
  content: "\203A";
  font-size: 20px;
  color: #7c3aed;
  font-weight: 900;
}

/* ===== PAGE-SCOPED STYLES APPEND POINT ===== */

/* ============================================
   各ページ固有スタイル（インラインから外部化）
   ============================================ */

/* === answer-quiz-page === */

/* ---- クイズ回答ページ固有 ---- */

/* ヘッドをバイオレット（問題ページと統一） */
.answer-quiz-page .sp-head {
  background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
}
.answer-quiz-page .sp-head h1 { color: #fff; }
.answer-quiz-page .sp-head-kicker { background: #fff; color: #6d28d9; }
.answer-quiz-page .sp-head::before {
  content: "\1F4AC";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* エラー */
.answer-quiz-page #notice {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fef2f2;
  border: 2px dashed #fca5a5;
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.8;
}

/* テストモード */
.answer-quiz-page .ans-test-info {
  margin: 10px 18px 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px dashed rgba(24,32,58,.2);
  font-size: 11px;
  color: rgba(24,32,58,.5);
  font-weight: 600;
  line-height: 1.8;
}

/* 問題ヘッダー */
.answer-quiz-page .ans-header {
  margin: 18px 18px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.answer-quiz-page .ans-genre-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #6d28d9;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 11px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.answer-quiz-page .ans-num-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 11px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}

/* 問題文カード */
.answer-quiz-page .ans-question-card {
  margin: 12px 18px 0;
  padding: 18px 20px;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  box-shadow: 4px 4px 0 #18203a;
}
.answer-quiz-page .ans-question-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 10px;
  border-radius: 8px;
  background: #6d28d9;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.answer-quiz-page .ans-question-text {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1.9;
  word-break: break-all;
  margin: 0;
}

/* ====== 正解カード ====== */
@keyframes answer-quiz-page-correctPop {
  0%   { transform: scale(.7); opacity: 0; }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes answer-quiz-page-starSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes answer-quiz-page-rainbowBg {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.answer-quiz-page .ans-correct-card {
  margin: 14px 18px 0;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 8px 8px 0 #18203a;
  overflow: hidden;
  animation: answer-quiz-page-correctPop .45s cubic-bezier(.22,.68,0,1.2) both;
}
.answer-quiz-page .ans-correct-banner {
  padding: 26px 20px 22px;
  background: linear-gradient(270deg, #4ade80, #22d3ee, #a78bfa, #f472b6, #facc15, #4ade80);
  background-size: 400% 400%;
  animation: answer-quiz-page-rainbowBg 4s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.answer-quiz-page .ans-correct-banner::before {
  content: "\2605\2606\2605";
  position: absolute;
  left: 0; right: 0;
  top: 8px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  letter-spacing: 6px;
  animation: answer-quiz-page-starSpin 3s linear infinite;
}
.answer-quiz-page .ans-correct-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #18203a;
  box-shadow: 4px 4px 0 #18203a, 0 0 0 6px rgba(255,255,255,.35);
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 1;
}
.answer-quiz-page .ans-correct-label {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,.25), 0 0 20px rgba(255,255,255,.4);
  letter-spacing: .06em;
}
.answer-quiz-page .ans-correct-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.85);
  letter-spacing: .12em;
}
.answer-quiz-page .ans-correct-body {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #18203a;
  line-height: 1.8;
  word-break: break-all;
  border-bottom: 2px solid rgba(24,32,58,.08);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* 解説 */
.answer-quiz-page .ans-desc {
  padding: 14px 20px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.answer-quiz-page .ans-desc-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #16a34a;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
  margin-top: 1px;
}
.answer-quiz-page .ans-desc-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e2a45;
  line-height: 1.9;
  word-break: break-all;
}

/* ====== 不正解カード ====== */
@keyframes answer-quiz-page-incorrectShake {
  0%   { transform: translateX(0); }
  15%  { transform: translateX(-8px) rotate(-2deg); }
  30%  { transform: translateX(8px) rotate(2deg); }
  45%  { transform: translateX(-6px) rotate(-1deg); }
  60%  { transform: translateX(6px) rotate(1deg); }
  75%  { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
@keyframes answer-quiz-page-slumpIn {
  0%   { transform: translateY(-10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes answer-quiz-page-teardrop {
  0%,100% { transform: translateY(0) scale(1); opacity: .7; }
  50%      { transform: translateY(6px) scale(.85); opacity: .3; }
}

.answer-quiz-page .ans-incorrect-card {
  margin: 14px 18px 0;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  animation: answer-quiz-page-incorrectShake .6s ease both;
}
.answer-quiz-page .ans-incorrect-banner {
  padding: 24px 20px 20px;
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.answer-quiz-page .ans-incorrect-banner::before {
  content: "\1F4A7\1F4A7\1F4A7";
  position: absolute;
  top: 6px; left: 0; right: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 8px;
  animation: answer-quiz-page-teardrop 1.8s ease-in-out infinite;
}
.answer-quiz-page .ans-incorrect-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #334155;
  border: 4px solid rgba(255,255,255,.2);
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1;
  animation: answer-quiz-page-slumpIn .4s .2s ease both;
}
.answer-quiz-page .ans-incorrect-label {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.answer-quiz-page .ans-incorrect-sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .14em;
}
.answer-quiz-page .ans-incorrect-body {
  padding: 14px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.8;
  word-break: break-all;
  border-bottom: 2px solid rgba(24,32,58,.08);
  background: #f8fafc;
}
.answer-quiz-page .ans-incorrect-body::before {
  content: "&#x3042;&#x306A;&#x305F;&#x306E;&#x56DE;&#x7B54;\A";
  white-space: pre;
  display: block;
  font-size: 10px;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.answer-quiz-page .ans-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 20px 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #475569 0%, #18203a 100%);
  color: #ffd84d;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.answer-quiz-page .ans-back-btn::before { content: "\21A9"; font-size: 16px; color: #ffd84d; }
.answer-quiz-page .ans-back-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}

/* 前後ナビ */
.answer-quiz-page .btn_grid2 {
  display: flex;
  gap: 10px;
  margin: 20px 18px 0;
}
.answer-quiz-page .next_btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 4px 4px 0 rgba(24,32,58,.3);
  transition: transform .12s, box-shadow .12s;
}
.answer-quiz-page .next_btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 rgba(24,32,58,.3);
}

/* パンくず */
.answer-quiz-page .breadcrumbs {
  margin: 16px 18px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}
.answer-quiz-page .breadcrumbs a { color: #6d28d9; text-decoration: none; }
.answer-quiz-page .breadcrumbs a:hover { text-decoration: underline; }

/* 不正アクセス */
.answer-quiz-page .ans-invalid {
  margin: 22px 18px 0;
  padding: 28px 20px;
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
}
.answer-quiz-page .ans-invalid::before {
  content: "\26A0";
  display: block;
  font-size: 36px;
  color: #ffd84d;
  margin-bottom: 10px;
}

/* === confirm-retire-page === */

/* ---- 退会確認ページ固有 ---- */

/* ヘッドをネイビー */
.confirm-retire-page .sp-head {
  background: linear-gradient(135deg, #334155 0%, #18203a 100%);
}
.confirm-retire-page .sp-head h1 { color: #fff; }
.confirm-retire-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.confirm-retire-page .sp-head::before {
  content: "?";
  font-family: "Rubik", sans-serif;
  font-size: 88px;
  color: rgba(255,255,255,.14);
  right: 20px;
}

/* 確認メッセージカード */
.confirm-retire-page .confirm-card {
  margin: 18px 18px 0;
  padding: 20px 18px;
  border-radius: 22px;
  background: #fff;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  font-size: 13.5px;
  line-height: 1.82;
  color: #2d3a5e;
  font-weight: 500;
}
.confirm-retire-page .confirm-question {
  font-size: 17px;
  font-weight: 900;
  color: #18203a;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

/* 選択ボタンエリア */
.confirm-retire-page .confirm-actions {
  margin: 22px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* やっぱりしない（メイン＝グリーン） */
.confirm-retire-page .confirm-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 999px;
  border: 3.5px solid #18203a;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.confirm-retire-page .confirm-cancel::before { content: "\2713"; font-size: 16px; }
.confirm-retire-page .confirm-cancel:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}
.confirm-retire-page .confirm-cancel:active {
  transform: translate(3px,3px);
  box-shadow: 2px 2px 0 #18203a;
}

/* やっぱりする（サブ＝ゴースト赤） */
.confirm-retire-page .confirm-proceed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2.5px solid rgba(220,38,38,.5);
  background: #fff;
  color: #dc2626;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(220,38,38,.25);
  transition: transform .12s, box-shadow .12s, background .12s;
}
.confirm-retire-page .confirm-proceed::before { content: "\203A"; font-size: 16px; }
.confirm-retire-page .confirm-proceed:hover {
  background: #fff1f1;
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 rgba(220,38,38,.3);
}
.confirm-retire-page .confirm-proceed:active {
  transform: translate(2px,2px);
  box-shadow: 1px 1px 0 rgba(220,38,38,.2);
}

/* === contents-list-page === */

/* ---- コンテンツ一覧ページ固有 ---- */

/* ヘッドをインディゴ */
.contents-list-page .sp-head {
  background: linear-gradient(135deg, #818cf8 0%, #4338ca 100%);
}
.contents-list-page .sp-head h1 { color: #fff; font-size: 22px; }
.contents-list-page .sp-head-kicker { background: #fff; color: #4338ca; }
.contents-list-page .sp-head::before {
  content: "\1F4DA";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}
.contents-list-page .sp-head-desc {
  margin: 6px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  word-break: break-all;
}

/* ポイントバー */
.contents-list-page .cl-point-bar {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contents-list-page .cl-point-bar::before {
  content: "\2B50";
  font-size: 20px;
  flex-shrink: 0;
}
.contents-list-page .cl-point-label {
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
}
.contents-list-page .cl-point-val {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #ffd84d;
  line-height: 1;
}
.contents-list-page .cl-point-unit {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  margin-left: 3px;
}

/* 難易度フィルター */
.contents-list-page .cl-diff-title {
  margin: 20px 18px 8px;
  font-size: 13px;
  font-weight: 900;
  color: #18203a;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .04em;
}
.contents-list-page .cl-diff-title::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, #818cf8, #4338ca);
  flex-shrink: 0;
}
.contents-list-page .cl-diff-list {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contents-list-page .cl-diff-list li a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  border: 2.5px solid #18203a;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  color: #18203a;
  text-decoration: none;
  box-shadow: 3px 3px 0 #18203a;
  transition: transform .1s, box-shadow .1s, background .1s;
}
.contents-list-page .cl-diff-list li a:hover {
  background: #eef2ff;
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 #18203a;
}

/* セクションタイトル */
.contents-list-page .cl-section-title {
  margin: 20px 18px 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #18203a;
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  word-break: break-all;
}

/* ページネーション */
.contents-list-page .cl-pagination { margin: 0 18px; }

/* コンテンツリスト */
.contents-list-page .cl-list {
  margin: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contents-list-page .cl-item {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
  position: relative;
  overflow: hidden;
}
.contents-list-page .cl-item:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}

/* 回答済ボーダー */
.contents-list-page .cl-item--done {
  border-color: #22c55e;
  box-shadow: 4px 4px 0 #22c55e;
}
.contents-list-page .cl-item--done:hover { box-shadow: 6px 6px 0 #22c55e; }

.contents-list-page .cl-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.contents-list-page .cl-item-genre {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  border: 1.5px solid #c7d2fe;
}
.contents-list-page .cl-item-num {
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: #94a3b8;
}
.contents-list-page .cl-item-question {
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  line-height: 1.7;
  word-break: break-all;
  margin-bottom: 8px;
}
.contents-list-page .cl-item-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.contents-list-page .cl-status-done {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #86efac;
}
.contents-list-page .cl-status-done::before { content: "\2713"; }
.contents-list-page .cl-status-new {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #bfdbfe;
}
.contents-list-page .cl-status-new::before { content: "\25CB"; }
.contents-list-page .cl-item-point {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

/* 空状態 */
.contents-list-page .cl-empty {
  margin: 0 18px;
  padding: 28px 20px;
  border-radius: 20px;
  border: 2px dashed rgba(24,32,58,.15);
  background: #f8fafc;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
}
.contents-list-page .cl-empty::before {
  content: "\1F4ED";
  display: block;
  font-size: 34px;
  margin-bottom: 10px;
}

/* === detail-ani-page === */

/* ---- アニメダウンロードページ固有 ---- */

/* ヘッドをコーラル */
.detail-ani-page .sp-head {
  background: linear-gradient(135deg, #fb923c 0%, #be123c 100%);
}
.detail-ani-page .sp-head h1 { color: #fff; }
.detail-ani-page .sp-head-kicker { background: #fff; color: #be123c; }
.detail-ani-page .sp-head::before {
  content: "\1F3A8";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* notice/error */
.detail-ani-page #notice {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fef2f2;
  border: 2px dashed #fca5a5;
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.8;
}
.detail-ani-page #notice:empty { display: none; }

/* テストモード */
.detail-ani-page .dl-test-info {
  margin: 10px 18px 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px dashed rgba(24,32,58,.2);
  font-size: 11px;
  color: rgba(24,32,58,.5);
  font-weight: 600;
  line-height: 1.8;
}

/* コンテンツカード */
.detail-ani-page .dl-card {
  margin: 18px 18px 0;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
}

/* 画像エリア */
.detail-ani-page .dl-image-wrap {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.detail-ani-page .dl-image-wrap img {
  display: block;
  max-width: 100%;
  border-radius: 16px;
  border: 3px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
}

/* 消費ポイント */
.detail-ani-page .dl-point-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff7ed;
  border-top: 2px solid rgba(24,32,58,.1);
  border-bottom: 2px solid rgba(24,32,58,.1);
}
.detail-ani-page .dl-point-label { font-size: 12px; font-weight: 700; color: #be123c; }
.detail-ani-page .dl-point-val {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #be123c;
}
.detail-ani-page .dl-point-unit { font-size: 12px; font-weight: 700; color: #be123c; }

/* ボタンエリア */
.detail-ani-page .dl-btn-wrap {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.detail-ani-page .dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 17px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb923c 0%, #be123c 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.detail-ani-page .dl-btn::before { content: "\1F4E5"; font-size: 18px; }
.detail-ani-page .dl-btn--redownload {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}
.detail-ani-page .dl-btn--redownload::before { content: "\1F504"; }
.detail-ani-page .dl-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}
.detail-ani-page .dl-confirm-note {
  font-size: 12px;
  font-weight: 600;
  color: rgba(24,32,58,.5);
  text-align: center;
  line-height: 1.8;
}

/* ポイント不足 */
.detail-ani-page .dl-no-point {
  padding: 24px 20px;
  text-align: center;
}
.detail-ani-page .dl-no-point::before {
  content: "\1F4B0";
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}
.detail-ani-page .dl-no-point-current {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 20px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 900;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
}
.detail-ani-page .dl-no-point p {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.9;
}
.detail-ani-page .dl-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb923c 0%, #be123c 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.detail-ani-page .dl-add-btn::before { content: "\2B50"; }
.detail-ani-page .dl-add-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* === detail-fla-utas-page === */

/* ---- 楽曲ダウンロードページ固有 ---- */

/* ヘッドをマゼンタ */
.detail-fla-utas-page .sp-head {
  background: linear-gradient(135deg, #e879f9 0%, #7e22ce 100%);
}
.detail-fla-utas-page .sp-head h1 { color: #fff; }
.detail-fla-utas-page .sp-head-kicker { background: #fff; color: #7e22ce; }
.detail-fla-utas-page .sp-head::before {
  content: "\1F3B5";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* notice/error */
.detail-fla-utas-page #notice {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fef2f2;
  border: 2px dashed #fca5a5;
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.8;
}
.detail-fla-utas-page #notice:empty { display: none; }

/* テストモード */
.detail-fla-utas-page .dl-test-info {
  margin: 10px 18px 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px dashed rgba(24,32,58,.2);
  font-size: 11px;
  color: rgba(24,32,58,.5);
  font-weight: 600;
  line-height: 1.8;
}

/* 楽曲カード */
.detail-fla-utas-page .dl-music-card {
  margin: 18px 18px 0;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
}

/* カードヘッド（タイトル部） */
.detail-fla-utas-page .dl-music-head {
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
  border-bottom: 2px solid rgba(24,32,58,.1);
  text-align: center;
}
.detail-fla-utas-page .dl-music-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 12px;
  border-radius: 999px;
  background: #7e22ce;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.detail-fla-utas-page .dl-music-title {
  font-size: 18px;
  font-weight: 950;
  color: #18203a;
  line-height: 1.4;
  letter-spacing: -.02em;
  word-break: break-all;
  margin: 0;
}

/* メタ情報テーブル */
.detail-fla-utas-page .dl-meta {
  padding: 4px 0;
}
.detail-fla-utas-page .dl-meta-row {
  display: flex;
  align-items: flex-start;
  padding: 11px 20px;
  border-bottom: 1.5px solid rgba(24,32,58,.07);
  gap: 10px;
}
.detail-fla-utas-page .dl-meta-row:last-child { border-bottom: none; }
.detail-fla-utas-page .dl-meta-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: .06em;
  width: 72px;
  padding-top: 2px;
}
.detail-fla-utas-page .dl-meta-val {
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  line-height: 1.6;
  word-break: break-all;
  flex: 1;
}

/* 消費ポイント行 */
.detail-fla-utas-page .dl-point-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fdf4ff;
  border-top: 2px solid rgba(24,32,58,.1);
  border-bottom: 2px solid rgba(24,32,58,.1);
}
.detail-fla-utas-page .dl-point-label { font-size: 12px; font-weight: 700; color: #7e22ce; }
.detail-fla-utas-page .dl-point-val {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #7e22ce;
}
.detail-fla-utas-page .dl-point-unit { font-size: 12px; font-weight: 700; color: #7e22ce; }

/* ボタンエリア */
.detail-fla-utas-page .dl-btn-wrap {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.detail-fla-utas-page .dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 17px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e879f9 0%, #7e22ce 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
  letter-spacing: .02em;
}
.detail-fla-utas-page .dl-btn::before { content: "\1F4E5"; font-size: 18px; }
.detail-fla-utas-page .dl-btn--redownload {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}
.detail-fla-utas-page .dl-btn--redownload::before { content: "\1F504"; }
.detail-fla-utas-page .dl-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}
.detail-fla-utas-page .dl-confirm-note {
  font-size: 12px;
  font-weight: 600;
  color: rgba(24,32,58,.5);
  text-align: center;
  line-height: 1.8;
}

/* ポイント不足 */
.detail-fla-utas-page .dl-no-point {
  padding: 24px 20px;
  text-align: center;
}
.detail-fla-utas-page .dl-no-point::before {
  content: "\1F4B0";
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}
.detail-fla-utas-page .dl-no-point-current {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 20px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 900;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
}
.detail-fla-utas-page .dl-no-point p {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.9;
}
.detail-fla-utas-page .dl-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e879f9 0%, #7e22ce 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.detail-fla-utas-page .dl-add-btn::before { content: "\2B50"; }
.detail-fla-utas-page .dl-add-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* === detail-img-page === */

/* ---- ダウンロード詳細ページ固有 ---- */

/* ヘッドをスカイブルー */
.detail-img-page .sp-head {
  background: linear-gradient(135deg, #38bdf8 0%, #0369a1 100%);
}
.detail-img-page .sp-head h1 { color: #fff; }
.detail-img-page .sp-head-kicker { background: #fff; color: #0369a1; }
.detail-img-page .sp-head::before {
  content: "\1F4E5";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* エラー・通知 */
.detail-img-page #notice {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fef2f2;
  border: 2px dashed #fca5a5;
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.8;
}

/* テストモード情報 */
.detail-img-page .dl-test-info {
  margin: 10px 18px 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px dashed rgba(24,32,58,.2);
  font-size: 11px;
  color: rgba(24,32,58,.5);
  font-weight: 600;
  line-height: 1.8;
}

/* コンテンツカード */
.detail-img-page .dl-card {
  margin: 18px 18px 0;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
}

/* 投票バナー */
.detail-img-page .dl-vote-banner {
  padding: 8px 16px;
  background: linear-gradient(90deg, #ff0080, #ff4400, #ffcc00, #00e898, #0088ff, #aa00ff);
  background-size: 300% 100%;
  animation: spRainbow 4s linear infinite;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

/* 画像エリア */
.detail-img-page .dl-image-wrap {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.detail-img-page .dl-image-wrap img {
  display: block;
  max-width: 100%;
  border-radius: 16px;
  border: 3px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
}

/* ポイント表示 */
.detail-img-page .dl-point-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f0f9ff;
  border-top: 2px solid rgba(24,32,58,.08);
  border-bottom: 2px solid rgba(24,32,58,.08);
}
.detail-img-page .dl-point-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}
.detail-img-page .dl-point-val {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #0369a1;
}
.detail-img-page .dl-point-unit {
  font-size: 12px;
  font-weight: 700;
  color: #0369a1;
}

/* ダウンロードボタン */
.detail-img-page .dl-btn-wrap {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.detail-img-page .dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 17px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8 0%, #0369a1 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
  letter-spacing: .02em;
}
.detail-img-page .dl-btn::before { content: "\1F4E5"; font-size: 18px; }
.detail-img-page .dl-btn--redownload {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}
.detail-img-page .dl-btn--redownload::before { content: "\1F504"; }
.detail-img-page .dl-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* 確認テキスト */
.detail-img-page .dl-confirm-note {
  font-size: 12px;
  font-weight: 600;
  color: rgba(24,32,58,.55);
  text-align: center;
  line-height: 1.8;
}

/* ポイント不足 */
.detail-img-page .dl-no-point {
  padding: 24px 20px;
  text-align: center;
}
.detail-img-page .dl-no-point::before {
  content: "\1F4B0";
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}
.detail-img-page .dl-no-point-current {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 20px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 900;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
}
.detail-img-page .dl-no-point p {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.9;
}
.detail-img-page .dl-add-point-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8 0%, #0369a1 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.detail-img-page .dl-add-point-btn::before { content: "\2B50"; }
.detail-img-page .dl-add-point-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* === detail-page === */

/* ---- 詳細ページ固有 ---- */

/* ヘッドをスレート */
.detail-page .sp-head {
  background: linear-gradient(135deg, #475569 0%, #18203a 100%);
}
.detail-page .sp-head h1 { color: #fff; font-size: 20px; }
.detail-page .sp-head h2 { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 600; margin: 4px 0 0; }
.detail-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.detail-page .sp-head::before {
  content: "\1F4C4";
  font-size: 68px;
  color: rgba(255,255,255,.14);
}

/* noticeメッセージ */
.detail-page .det-msg {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fffbeb;
  border: 2px solid #fde68a;
  font-size: 13px;
  font-weight: 700;
  color: #92400e;
  line-height: 1.8;
}
.detail-page .det-msg:empty { display: none; }

/* 詳細テーブルカード */
.detail-page .det-card {
  margin: 14px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}

/* セクション区切りタイトル */
.detail-page .det-subtitle {
  margin: 14px 18px 0;
  padding: 10px 16px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 2px solid rgba(24,32,58,.1);
  font-size: 13px;
  font-weight: 900;
  color: #334155;
  letter-spacing: .04em;
}

/* テーブル行 */
.detail-page table.detail {
  width: 100%;
  border-collapse: collapse;
}
.detail-page table.detail tr {
  border-bottom: 1.5px solid rgba(24,32,58,.07);
}
.detail-page table.detail tr:last-child { border-bottom: none; }
.detail-page table.detail th {
  display: block;
  padding: 10px 16px 2px;
  font-size: 11px;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: .06em;
  background: none;
  text-align: left;
}
.detail-page table.detail td {
  display: block;
  padding: 0 16px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  word-break: break-all;
  line-height: 1.7;
}

/* アクションボタン */
.detail-page .det-actions {
  margin: 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-page .det-actions input[type="button"] {
  display: block;
  width: 100%;
  padding: 15px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  letter-spacing: .02em;
  font-family: inherit;
}
.detail-page .det-actions input.commit {
  background: linear-gradient(135deg, #38bdf8 0%, #0369a1 100%);
  color: #fff;
}
.detail-page .det-actions input.gray {
  background: #dc2626;
  color: #fff;
}
.detail-page .det-actions input[type="button"]:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* ナビリスト */
.detail-page .det-nav {
  margin: 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.detail-page .det-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  border: 2px solid rgba(24,32,58,.1);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.detail-page .det-nav li a::after {
  content: "\203A";
  font-size: 18px;
  color: rgba(24,32,58,.3);
  font-weight: 900;
}
.detail-page .det-nav li a:hover {
  border-color: #ffd84d;
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 rgba(24,32,58,.1);
}

/* === detail-quiz-page === */

/* ---- クイズ詳細ページ固有 ---- */

/* ヘッドをバイオレット */
.detail-quiz-page .sp-head {
  background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
}
.detail-quiz-page .sp-head h1 { color: #fff; }
.detail-quiz-page .sp-head-kicker { background: #fff; color: #6d28d9; }
.detail-quiz-page .sp-head::before {
  content: "\2753";
  font-size: 72px;
  color: rgba(255,255,255,.18);
}

/* エラー・通知 */
.detail-quiz-page #notice {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fef2f2;
  border: 2px dashed #fca5a5;
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.8;
}

/* テストモード情報 */
.detail-quiz-page .quiz-test-info {
  margin: 10px 18px 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px dashed rgba(24,32,58,.2);
  font-size: 11px;
  color: rgba(24,32,58,.5);
  font-weight: 600;
  line-height: 1.8;
}

/* 問題ヘッダー */
.detail-quiz-page .quiz-header {
  margin: 18px 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.detail-quiz-page .quiz-genre-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #6d28d9;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 11px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
  letter-spacing: .04em;
}
.detail-quiz-page .quiz-num-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 11px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}

/* 問題カード */
.detail-quiz-page .quiz-question-card {
  margin: 12px 18px 0;
  padding: 22px 20px;
  border-radius: 24px;
  border: 3px solid #18203a;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  box-shadow: 5px 5px 0 #18203a;
  position: relative;
  overflow: hidden;
}
.detail-quiz-page .quiz-question-card::before {
  content: "Q";
  position: absolute;
  right: 14px;
  top: 10px;
  font-family: "Rubik", sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(109,40,217,.1);
  line-height: 1;
  pointer-events: none;
}
.detail-quiz-page .quiz-question-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 8px;
  background: #6d28d9;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.detail-quiz-page .quiz-question-text {
  font-size: 16px;
  font-weight: 800;
  color: #1e1b4b;
  line-height: 2;
  word-break: break-all;
}

/* 選択肢 */
.detail-quiz-page .quiz-answers {
  margin: 14px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: answer-counter;
}
.detail-quiz-page .detail_answer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px 15px 14px;
  border-radius: 18px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  font-size: 15px;
  font-weight: 700;
  color: #18203a;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
  word-break: break-all;
  line-height: 1.6;
  counter-increment: answer-counter;
}
.detail-quiz-page .detail_answer::before {
  content: counter(answer-counter, upper-alpha);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(24,32,58,.2);
  transition: background .12s, color .12s;
}
/* 選択肢ごとに色を変える */
.detail-quiz-page .detail_answer:nth-child(1)::before { background: #6d28d9; color: #fff; }
.detail-quiz-page .detail_answer:nth-child(2)::before { background: #0369a1; color: #fff; }
.detail-quiz-page .detail_answer:nth-child(3)::before { background: #059669; color: #fff; }
.detail-quiz-page .detail_answer:nth-child(4)::before { background: #d97706; color: #fff; }
.detail-quiz-page .detail_answer:nth-child(5)::before { background: #dc2626; color: #fff; }
.detail-quiz-page .detail_answer:nth-child(6)::before { background: #db2777; color: #fff; }
.detail-quiz-page .detail_answer:nth-child(7)::before { background: #0891b2; color: #fff; }

.detail-quiz-page .detail_answer:nth-child(1) { border-left: 5px solid #6d28d9; }
.detail-quiz-page .detail_answer:nth-child(2) { border-left: 5px solid #0369a1; }
.detail-quiz-page .detail_answer:nth-child(3) { border-left: 5px solid #059669; }
.detail-quiz-page .detail_answer:nth-child(4) { border-left: 5px solid #d97706; }
.detail-quiz-page .detail_answer:nth-child(5) { border-left: 5px solid #dc2626; }
.detail-quiz-page .detail_answer:nth-child(6) { border-left: 5px solid #db2777; }
.detail-quiz-page .detail_answer:nth-child(7) { border-left: 5px solid #0891b2; }

.detail-quiz-page .detail_answer:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 #18203a;
}

/* 前後ナビ */
.detail-quiz-page .btn_grid2 {
  display: flex;
  gap: 10px;
  margin: 20px 18px 0;
}
.detail-quiz-page .next_btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 4px 4px 0 rgba(24,32,58,.3);
  transition: transform .12s, box-shadow .12s;
}
.detail-quiz-page .next_btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 rgba(24,32,58,.3);
}

/* パンくずリスト */
.detail-quiz-page .breadcrumbs {
  margin: 16px 18px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}
.detail-quiz-page .breadcrumbs a {
  color: #6d28d9;
  text-decoration: none;
  font-weight: 700;
}
.detail-quiz-page .breadcrumbs a:hover { text-decoration: underline; }

/* ポイント不足カード */
.detail-quiz-page .quiz-no-point {
  margin: 18px 18px 0;
  padding: 28px 22px;
  border-radius: 24px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  text-align: center;
}
.detail-quiz-page .quiz-no-point::before {
  content: "\1F4B0";
  display: block;
  font-size: 44px;
  margin-bottom: 14px;
}
.detail-quiz-page .quiz-no-point p {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.9;
}
.detail-quiz-page .quiz-no-point .quiz-point-val {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 20px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
}
.detail-quiz-page .quiz-add-point-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.detail-quiz-page .quiz-add-point-btn::before { content: "\2B50"; }
.detail-quiz-page .quiz-add-point-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* === guide-page === */

/* ---- ご利用ガイドページ固有 ---- */

/* ヘッドをインディゴ */
.guide-page .sp-head {
  background: linear-gradient(135deg, #818cf8 0%, #4338ca 100%);
}
.guide-page .sp-head h1 { color: #fff; }
.guide-page .sp-head-kicker { background: #fff; color: #4338ca; }
.guide-page .sp-head::before {
  content: "\1F4D6";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* セクションブロック */
.guide-page .guide-section {
  margin: 14px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 各ブロックカード */
.guide-page .guide-block {
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.guide-page .guide-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  border-bottom: 2px solid #18203a;
}
.guide-page .guide-block-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4338ca;
  color: #fff;
  font-size: 15px;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.guide-page .guide-block-title {
  font-size: 14px;
  font-weight: 900;
  color: #18203a;
}
.guide-page .guide-block-body {
  padding: 16px 18px;
  font-size: 13.5px;
  line-height: 1.9;
  color: #1e2a45;
  font-weight: 500;
}

/* コース料金テーブル */
.guide-page .guide-carrier {
  margin-bottom: 14px;
}
.guide-page .guide-carrier:last-child { margin-bottom: 0; }
.guide-page .guide-carrier-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #4338ca;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.guide-page .guide-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid rgba(24,32,58,.1);
  background: #f8f9ff;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #18203a;
}
.guide-page .guide-plan-row:last-child { margin-bottom: 0; }
.guide-page .guide-plan-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-page .guide-plan-name::before {
  content: "\2605";
  color: #ffd84d;
  font-size: 14px;
}
.guide-page .guide-plan-price {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #4338ca;
}

/* 注意リスト */
.guide-page .guide-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-page .guide-notes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.8;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8f9ff;
  border: 1.5px solid rgba(67,56,202,.15);
}
.guide-page .guide-notes li::before {
  content: "\203B";
  flex-shrink: 0;
  font-weight: 900;
  color: #4338ca;
  margin-top: 1px;
}

/* === kishu-page === */

/* ---- 対応機種ページ固有 ---- */

/* ヘッドをピンク */
.kishu-page .sp-head {
  background: linear-gradient(135deg, #f9a8d4 0%, #db2777 100%);
}
.kishu-page .sp-head h1 { color: #fff; }
.kishu-page .sp-head-kicker { background: #fff; color: #db2777; }
.kishu-page .sp-head::before {
  content: "\1F4F1";
  font-size: 72px;
  color: rgba(255,255,255,.18);
}

/* 対応カード */
.kishu-page .kishu-card {
  margin: 18px 18px 0;
  padding: 28px 22px;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kishu-page .kishu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    #f9a8d4, #fbbf24, #f9a8d4, #db2777, #f9a8d4);
  background-size: 200% 100%;
  animation: spRainbow 3s linear infinite;
}

/* OSバッジ行 */
.kishu-page .kishu-os-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.kishu-page .kishu-os-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-radius: 18px;
  border: 2.5px solid #18203a;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  box-shadow: 3px 3px 0 #18203a;
  min-width: 90px;
}
.kishu-page .kishu-os-icon {
  font-size: 32px;
  line-height: 1;
}
.kishu-page .kishu-os-label {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #18203a;
  letter-spacing: .04em;
}
.kishu-page .kishu-slash {
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(24,32,58,.25);
}

/* 説明テキスト */
.kishu-page .kishu-desc {
  font-size: 14px;
  font-weight: 600;
  color: #1e2a45;
  line-height: 1.9;
}
.kishu-page .kishu-note {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 10px;
  background: #fdf2f8;
  border: 2px solid #fbcfe8;
  font-size: 12px;
  font-weight: 700;
  color: #9d174d;
}
.kishu-page .kishu-note::before {
  content: "\26A0\0020";
}

/* テスト端末情報（管理者のみ） */
.kishu-page .kishu-test-box {
  margin: 14px 18px 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 2px dashed rgba(24,32,58,.3);
  background: #f8fafc;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(24,32,58,.6);
  font-weight: 600;
}
.kishu-page .kishu-test-box::before {
  content: "TEST INFO";
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

/* === kiyaku-page === */

/* ---- 利用規約ページ固有 ---- */

/* ヘッドをブルー */
.kiyaku-page .sp-head {
  background: linear-gradient(135deg, #60a5fa 0%, #1d4ed8 100%);
}
.kiyaku-page .sp-head h1 { color: #fff; }
.kiyaku-page .sp-head-kicker { background: #fff; color: #1d4ed8; }
.kiyaku-page .sp-head::before {
  content: "\1F4DC";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* 前文 */
.kiyaku-page .kiyaku-intro {
  margin: 18px 18px 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 2.5px solid #18203a;
  background: #eff6ff;
  box-shadow: 4px 4px 0 #18203a;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.8;
  text-align: center;
}
.kiyaku-page .kiyaku-intro::before {
  content: "\26A0";
  margin-right: 6px;
  color: #2563eb;
}

/* 条文リスト */
.kiyaku-page .kiyaku-list {
  margin: 14px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 各条文カード */
.kiyaku-page .kiyaku-item {
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.kiyaku-page .kiyaku-item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-bottom: 2px solid #18203a;
}
.kiyaku-page .kiyaku-item-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0 8px;
  height: 26px;
  border-radius: 8px;
  background: #1d4ed8;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(24,32,58,.3);
  white-space: nowrap;
}
.kiyaku-page .kiyaku-item-title {
  font-size: 14px;
  font-weight: 900;
  color: #18203a;
  line-height: 1.4;
}
.kiyaku-page .kiyaku-item-body {
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.9;
  color: #1e2a45;
  font-weight: 500;
}
.kiyaku-page .kiyaku-item-body p {
  margin: 0 0 8px;
}
.kiyaku-page .kiyaku-item-body p:last-child { margin-bottom: 0; }

/* 販売価格ボックス（JSが書き込む） */
.kiyaku-page .kiyaku-price-box {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  font-size: 13px;
  font-weight: 700;
  color: #1e3a5f;
}
.kiyaku-page .kiyaku-price-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  color: #1d4ed8;
  letter-spacing: .06em;
}

/* === list-page === */

/* ---- ジャンル一覧ページ固有 ---- */

/* ヘッドをミント */
.list-page .sp-head {
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}
.list-page .sp-head h1 { color: #fff; }
.list-page .sp-head-kicker { background: #fff; color: #059669; }
.list-page .sp-head::before {
  content: "\1F4DA";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* 空状態 */
.list-page .gl-empty {
  margin: 18px 18px 0;
  padding: 30px 20px;
  border-radius: 20px;
  border: 2px dashed rgba(24,32,58,.15);
  background: #f8fafc;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
}
.list-page .gl-empty::before {
  content: "\1F4ED";
  display: block;
  font-size: 36px;
  margin-bottom: 10px;
}

/* ページネーション */
.list-page .gl-pagination {
  margin: 14px 18px 0;
}

/* ジャンルリスト */
.list-page .gl-list {
  margin: 10px 18px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list-page .gl-list li a {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  border: 2.5px solid #18203a;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
  color: #18203a;
  text-decoration: none;
  box-shadow: 4px 4px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
  position: relative;
  overflow: hidden;
}
.list-page .gl-list li a::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #34d399, #059669);
}
.list-page .gl-list li a::after {
  content: "\203A";
  margin-left: auto;
  font-size: 20px;
  font-weight: 900;
  color: rgba(24,32,58,.3);
  flex-shrink: 0;
}
.list-page .gl-list li a:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}

/* === login-id-page === */

@keyframes login-id-page-li-bob { 0%,100%{transform:translateY(0) rotate(-6deg);} 50%{transform:translateY(-7px) rotate(6deg);} }
@keyframes login-id-page-li-pop { 0%{transform:scale(.7);opacity:0;} 70%{transform:scale(1.08);opacity:1;} 100%{transform:scale(1);opacity:1;} }
@keyframes login-id-page-li-rainbow { 0%{background-position:0% 50%;} 100%{background-position:200% 50%;} }

.sp-page.login-id-page {
  background:
    radial-gradient(circle at 14px 14px, rgba(99,102,241,.10) 3px, transparent 3px) 0 0/30px 30px,
    radial-gradient(circle at 50% 0%, #faf5ff 0%, #eef2ff 50%, #e0f2fe 100%);
}

.login-id-page .sp-head {
  background: linear-gradient(115deg, #818cf8 0%, #6366f1 50%, #4338ca 100%);
  background-size: 200% 200%;
  animation: login-id-page-li-rainbow 9s linear infinite alternate;
  position: relative;
  overflow: hidden;
}
.login-id-page .sp-head h1 { color: #fff; position: relative; z-index: 2; text-shadow: 0 2px 0 rgba(0,0,0,.18); }
.login-id-page .sp-head-kicker { background: #ffd84d; color: #4338ca; position: relative; z-index: 2; }
.login-id-page .sp-head::before {
  content: "\1F511";
  font-size: 60px;
  position: absolute;
  right: 16px; top: 50%;
  margin-top: -30px;
  z-index: 1;
  animation: login-id-page-li-bob 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.22));
}

/* ---- リード文 ---- */
.login-id-page .li-lead {
  position: relative;
  margin: 22px 18px 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.8;
  text-align: center;
}
.login-id-page .li-lead b { color: #4338ca; }

/* ---- フォームカード ---- */
.login-id-page .li-form-card {
  margin: 18px 18px 0;
  border-radius: 22px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  animation: login-id-page-li-pop .5s cubic-bezier(.22,1,.36,1) both;
}
.login-id-page .li-form-card-head {
  padding: 12px 18px;
  background: linear-gradient(135deg, #1e3a5f 0%, #18203a 100%);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #ffd84d;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.login-id-page .li-form-card-head::before { content: "\1F4CB"; }
.login-id-page .li-form-card form { margin: 0; padding: 18px; }

.login-id-page .li-field { margin-bottom: 14px; text-align: left; }
.login-id-page .li-field label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  color: #6366f1;
  letter-spacing: .03em;
  margin-bottom: 6px;
}
.login-id-page .li-field--id label::before { content: "\1F464"; }
.login-id-page .li-field--pw label::before { content: "\1F511"; }
.login-id-page .li-field input[type="text"],
.login-id-page .li-field input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 12px;
  border: 2.5px solid #cbd5e1;
  background: #f8fafc;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #18203a;
  transition: border-color .15s, background .15s;
}
.login-id-page .li-field input[type="text"]:focus,
.login-id-page .li-field input[type="password"]:focus {
  outline: none;
  border-color: #6366f1;
  background: #fff;
}

.login-id-page .li-submit {
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 2.5px solid #18203a;
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 50%, #4f46e5 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-shadow: 0 1px 1px rgba(49,46,129,.4);
  box-shadow: 4px 4px 0 #18203a;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
}
.login-id-page .li-submit:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #18203a; }
.login-id-page .li-submit:active { transform: translate(0,0); box-shadow: 2px 2px 0 #18203a; }

/* === login-info-page === */

@keyframes login-info-page-li-bob { 0%,100%{transform:translateY(0) rotate(-6deg);} 50%{transform:translateY(-7px) rotate(6deg);} }
@keyframes login-info-page-li-pop { 0%{transform:scale(.7);opacity:0;} 70%{transform:scale(1.08);opacity:1;} 100%{transform:scale(1);opacity:1;} }
@keyframes login-info-page-li-rainbow { 0%{background-position:0% 50%;} 100%{background-position:200% 50%;} }

.sp-page.login-info-page {
  background:
    radial-gradient(circle at 14px 14px, rgba(99,102,241,.10) 3px, transparent 3px) 0 0/30px 30px,
    radial-gradient(circle at 50% 0%, #faf5ff 0%, #eef2ff 50%, #e0f2fe 100%);
}

.login-info-page .sp-head {
  background: linear-gradient(115deg, #818cf8 0%, #6366f1 50%, #4338ca 100%);
  background-size: 200% 200%;
  animation: login-info-page-li-rainbow 9s linear infinite alternate;
  position: relative;
  overflow: hidden;
}
.login-info-page .sp-head h1 { color: #fff; position: relative; z-index: 2; text-shadow: 0 2px 0 rgba(0,0,0,.18); }
.login-info-page .sp-head-kicker { background: #ffd84d; color: #4338ca; position: relative; z-index: 2; }
.login-info-page .sp-head::before {
  content: "\1F510";
  font-size: 60px;
  position: absolute;
  right: 16px; top: 50%;
  margin-top: -30px;
  z-index: 1;
  animation: login-info-page-li-bob 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.22));
}

/* ---- 保管注意リード ---- */
.login-info-page .li-lead {
  position: relative;
  margin: 22px 18px 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fffbeb;
  border: 2px solid #fcd34d;
  box-shadow: 4px 4px 0 rgba(251,191,36,.35);
  font-size: 13.5px;
  font-weight: 800;
  color: #92400e;
  line-height: 1.8;
  text-align: center;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.login-info-page .li-lead::before { content: "\1F4E2"; font-size: 18px; }

/* ---- 認証情報カード ---- */
.login-info-page .li-card {
  margin: 18px 18px 0;
  border-radius: 22px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  animation: login-info-page-li-pop .5s cubic-bezier(.22,1,.36,1) both;
}
.login-info-page .li-card-head {
  padding: 12px 18px;
  background: linear-gradient(135deg, #1e3a5f 0%, #18203a 100%);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #ffd84d;
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-info-page .li-card-head::before { content: "\1F4CB"; }

.login-info-page .li-row {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-info-page .li-row + .li-row { border-top: 2px dashed #e2e8f0; }
.login-info-page .li-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  color: #6366f1;
  letter-spacing: .04em;
}
.login-info-page .li-label--id::before { content: "\1F464"; }
.login-info-page .li-label--pw::before { content: "\1F511"; }
.login-info-page .li-value {
  font-family: "Rubik", "Courier New", monospace;
  font-size: 20px;
  font-weight: 900;
  color: #18203a;
  word-break: break-all;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
}

/* === login-menu-page === */

@keyframes login-menu-page-lg-bob { 0%,100%{transform:translateY(0) rotate(-6deg);} 50%{transform:translateY(-8px) rotate(6deg);} }
@keyframes login-menu-page-lg-pop { 0%{transform:scale(.7);opacity:0;} 70%{transform:scale(1.08);opacity:1;} 100%{transform:scale(1);opacity:1;} }
@keyframes login-menu-page-lg-twinkle { 0%,100%{transform:scale(1);opacity:.9;} 50%{transform:scale(1.4);opacity:.4;} }
@keyframes login-menu-page-lg-nudge { 0%,100%{transform:translateX(0);} 50%{transform:translateX(5px);} }
@keyframes login-menu-page-lg-rainbow { 0%{background-position:0% 50%;} 100%{background-position:200% 50%;} }

.sp-page.login-menu-page {
  background:
    radial-gradient(circle at 14px 14px, rgba(99,102,241,.10) 3px, transparent 3px) 0 0/30px 30px,
    radial-gradient(circle at 50% 0%, #fff7ed 0%, #faf5ff 45%, #eef2ff 100%);
}

.login-menu-page .sp-head {
  background: linear-gradient(115deg, #f472b6 0%, #818cf8 45%, #6366f1 75%, #4338ca 100%);
  background-size: 200% 200%;
  animation: login-menu-page-lg-rainbow 8s linear infinite alternate;
  position: relative;
  overflow: hidden;
}
.login-menu-page .sp-head h1 { color: #fff; position: relative; z-index: 2; text-shadow: 0 2px 0 rgba(0,0,0,.18); }
.login-menu-page .sp-head-kicker { background: #ffd84d; color: #4338ca; position: relative; z-index: 2; }
.login-menu-page .sp-head::before {
  content: "\1F511";
  font-size: 64px;
  position: absolute;
  right: 16px; top: 50%;
  margin-top: -32px;
  z-index: 1;
  animation: login-menu-page-lg-bob 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.25));
}
.login-menu-page .sp-head::after {
  content: "\2728";
  font-size: 22px;
  position: absolute;
  left: 18px; bottom: 12px;
  z-index: 1;
  animation: login-menu-page-lg-twinkle 2s ease-in-out infinite;
}

/* ---- リード文 ---- */
.login-menu-page .lg-lead {
  position: relative;
  margin: 22px 18px 0;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.8;
  text-align: center;
}
.login-menu-page .lg-lead b {
  color: #4338ca;
  background: linear-gradient(transparent 60%, #fde047 60%);
  padding: 0 2px;
}

/* ---- キャリアカード一覧 ---- */
.login-menu-page .lg-carrier-list {
  margin: 22px 18px 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login-menu-page .lg-carrier-card {
  position: relative;
  border-radius: 22px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  transition: transform .14s, box-shadow .14s;
  animation: login-menu-page-lg-pop .5s cubic-bezier(.22,1,.36,1) both;
}
.login-menu-page .lg-carrier-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 #18203a; }

.login-menu-page .lg-carrier-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
  overflow: hidden;
}
.login-menu-page .lg-carrier-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(125deg, rgba(255,255,255,.14) 0 10px, transparent 10px 22px);
  pointer-events: none;
}
.login-menu-page .lg-carrier-head .lg-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 2px solid rgba(0,0,0,.12);
  font-size: 16px;
  position: relative; z-index: 1;
}
.login-menu-page .lg-carrier-head .lg-brand {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  border: 1.5px solid rgba(255,255,255,.5);
  position: relative; z-index: 1;
}
.login-menu-page .lg-carrier-head .lg-headtext { position: relative; z-index: 1; }
.login-menu-page .lg-carrier-card--docomo .lg-carrier-head { background: linear-gradient(135deg, #ff4d5e 0%, #e60012 55%, #a30000 100%); }
.login-menu-page .lg-carrier-card--docomo .lg-icon { color: #e60012; }
.login-menu-page .lg-carrier-card--au .lg-carrier-head { background: linear-gradient(135deg, #ffb84d 0%, #f97316 55%, #c2410c 100%); }
.login-menu-page .lg-carrier-card--au .lg-icon { color: #f97316; }
.login-menu-page .lg-carrier-card--sb .lg-carrier-head { background: linear-gradient(135deg, #38bdf8 0%, #6366f1 60%, #334155 100%); }
.login-menu-page .lg-carrier-card--sb .lg-icon { color: #6366f1; }

/* ---- カード内ログインボタンエリア ---- */
.login-menu-page .lg-carrier-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.login-menu-page .lg-carrier-card--docomo .lg-carrier-body { background: #fff5f6; }
.login-menu-page .lg-carrier-card--au .lg-carrier-body { background: #fff7ed; }
.login-menu-page .lg-carrier-card--sb .lg-carrier-body { background: #eef4ff; }

.login-menu-page .lg-carrier-body form { margin: 0; }
.login-menu-page .lg-carrier-body img,
.login-menu-page .lg-carrier-body input[type="image"] {
  max-width: 180px;
  height: auto;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 3px 0 rgba(24,32,58,.18);
  transition: transform .12s, box-shadow .12s;
  cursor: pointer;
}
.login-menu-page .lg-carrier-body img:hover,
.login-menu-page .lg-carrier-body input[type="image"]:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 6px 0 rgba(24,32,58,.18); }

.login-menu-page .lg-tap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.login-menu-page .lg-tap::before { content: "\1F446"; animation: login-menu-page-lg-nudge 1.1s ease-in-out infinite; }

/* === login-ng-id-page === */

@keyframes login-ng-id-page-ln-bob { 0%,100%{transform:translateY(0) rotate(-6deg);} 50%{transform:translateY(-7px) rotate(6deg);} }
@keyframes login-ng-id-page-ln-pop { 0%{transform:scale(.7);opacity:0;} 70%{transform:scale(1.08);opacity:1;} 100%{transform:scale(1);opacity:1;} }

.sp-page.login-ng-id-page {
  background:
    radial-gradient(circle at 14px 14px, rgba(245,158,11,.10) 3px, transparent 3px) 0 0/30px 30px,
    radial-gradient(circle at 50% 0%, #fff7ed 0%, #fffbeb 50%, #fef3f2 100%);
}

.login-ng-id-page .sp-head {
  background: linear-gradient(120deg, #ffd76b 0%, #ffb02e 50%, #ff9233 100%);
  position: relative;
  overflow: hidden;
}
.login-ng-id-page .sp-head h1 { color: #fff; position: relative; z-index: 2; text-shadow: 0 2px 0 rgba(0,0,0,.18); }
.login-ng-id-page .sp-head-kicker { background: #18203a; color: #ffd84d; position: relative; z-index: 2; }
.login-ng-id-page .sp-head::before {
  content: "\1F44B";
  font-size: 64px;
  position: absolute;
  right: 16px; top: 50%;
  margin-top: -32px;
  z-index: 1;
  animation: login-ng-id-page-ln-bob 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.2));
}

/* ---- リードカード ---- */
.login-ng-id-page .ln-lead {
  margin: 22px 18px 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  font-size: 15px;
  font-weight: 800;
  color: #1e2a45;
  line-height: 1.8;
  text-align: center;
}

/* ---- 注意カード ---- */
.login-ng-id-page .ln-caution {
  margin: 14px 18px 0;
  padding: 13px 16px;
  border-radius: 16px;
  background: #fef2f2;
  border: 2px solid #fca5a5;
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.8;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.login-ng-id-page .ln-caution::before { content: "\26A0\FE0F"; font-size: 18px; flex-shrink: 0; }

/* ---- ログイン誘導カード ---- */
.login-ng-id-page .ln-login-card {
  margin: 18px 18px 0;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
}
.login-ng-id-page .ln-login-note {
  font-size: 12.5px;
  font-weight: 700;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 12px;
}
.login-ng-id-page .ln-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffc24b 0%, #ff9e2c 50%, #fb8a3c 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  text-shadow: 0 1px 1px rgba(180,83,9,.4);
  transition: transform .12s, box-shadow .12s;
}
.login-ng-id-page .ln-btn::before { content: "\1F511\00A0"; }
.login-ng-id-page .ln-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #18203a; }

/* ---- IDヒントカード ---- */
.login-ng-id-page .ln-hint {
  margin: 16px 18px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  font-size: 12.5px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.85;
}
.login-ng-id-page .ln-hint b {
  color: #1d4ed8;
  background: linear-gradient(transparent 60%, #bfdbfe 60%);
  padding: 0 2px;
}
.login-ng-id-page .ln-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 20px;
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid #1d4ed8;
  box-shadow: 3px 3px 0 rgba(29,78,216,.25);
  transition: transform .12s, box-shadow .12s;
}
.login-ng-id-page .ln-contact-btn::before { content: "\1F4AC"; }
.login-ng-id-page .ln-contact-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(29,78,216,.25); }

/* ---- 広告枠 ---- */
.login-ng-id-page .ln-ad {
  margin: 22px 18px 0;
  text-align: center;
}

/* === maintenance-page === */

/* ---- メンテナンスページ固有 ---- */

/* ヘッドをオレンジ */
.maintenance-page .sp-head {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
}
.maintenance-page .sp-head h1 { color: #fff; }
.maintenance-page .sp-head-kicker { background: #fff; color: #ea580c; }
.maintenance-page .sp-head::before {
  content: "\1F6E0";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* メッセージカード */
.maintenance-page .maint-card {
  margin: 22px 18px 0;
  padding: 30px 22px;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.maintenance-page .maint-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    #fb923c, #fbbf24, #fb923c, #ea580c, #fb923c);
  background-size: 200% 100%;
  animation: spRainbow 3s linear infinite;
}
.maintenance-page .maint-icon {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.maintenance-page .maint-thanks {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 16px;
  border-radius: 999px;
  background: #fff7ed;
  border: 2px solid #fed7aa;
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}
.maintenance-page .maint-msg {
  font-size: 15px;
  line-height: 2;
  color: #1e2a45;
  font-weight: 600;
}
.maintenance-page .maint-msg strong {
  display: inline-block;
  margin-top: 4px;
  color: #dc2626;
  font-weight: 900;
}

/* === mypage-list-page === */

/* ---- マイページ固有 ---- */

/* ヘッドをブルー */
.mypage-list-page .sp-head {
  background: linear-gradient(135deg, #38bdf8 0%, #0369a1 100%);
}
.mypage-list-page .sp-head h1 { color: #fff; }
.mypage-list-page .sp-head-kicker { background: #fff; color: #0369a1; }
.mypage-list-page .sp-head::before {
  content: "\1F464";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* ポイントカード */
.mypage-list-page .myp-point-card {
  margin: 18px 18px 0;
  padding: 22px 20px;
  border-radius: 24px;
  border: 3px solid #18203a;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  box-shadow: 6px 6px 0 #18203a;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.mypage-list-page .myp-point-card::before {
  content: "\2B50";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  opacity: .12;
  line-height: 1;
  pointer-events: none;
}
.mypage-list-page .myp-point-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffd84d;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 rgba(24,32,58,.4);
  font-size: 24px;
}
.mypage-list-page .myp-point-label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.mypage-list-page .myp-point-value {
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #ffd84d;
  line-height: 1;
}
.mypage-list-page .myp-point-unit {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  margin-left: 4px;
}

/* セクションヘッダー */
.mypage-list-page .myp-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 18px 10px;
  padding: 11px 16px;
  border-radius: 14px;
  background: #18203a;
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}

/* 履歴リスト */
.mypage-list-page .myp-history-list {
  margin: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mypage-list-page .myp-history-item {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 2px solid rgba(24,32,58,.1);
  background: #fff;
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
  text-decoration: none;
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.mypage-list-page .myp-history-item:hover {
  border-color: #38bdf8;
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 rgba(24,32,58,.1);
}
.mypage-list-page .myp-history-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 4px;
}
.mypage-list-page .myp-history-path span { color: rgba(24,32,58,.3); }
.mypage-list-page .myp-history-title {
  font-size: 14px;
  font-weight: 900;
  color: #18203a;
  line-height: 1.5;
  word-break: break-all;
}
.mypage-list-page .myp-history-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 4px;
}
.mypage-list-page .myp-history-arrow::after {
  content: "\203A";
  font-size: 18px;
  color: rgba(24,32,58,.3);
  font-weight: 900;
}

/* 空状態 */
.mypage-list-page .myp-empty {
  margin: 0 18px;
  padding: 30px 20px;
  border-radius: 20px;
  border: 2px dashed rgba(24,32,58,.15);
  background: #f8fafc;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
}
.mypage-list-page .myp-empty::before {
  content: "\1F4ED";
  display: block;
  font-size: 36px;
  margin-bottom: 10px;
}

/* 会員情報カード */
.mypage-list-page .myp-member-card {
  margin: 0 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 2px solid rgba(24,32,58,.1);
  background: #fff;
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
}
.mypage-list-page .myp-member-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1.5px solid rgba(24,32,58,.08);
}
.mypage-list-page .myp-member-row:last-child { border-bottom: none; }
.mypage-list-page .myp-member-label {
  font-size: 11px;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: .06em;
}
.mypage-list-page .myp-member-val {
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  word-break: break-all;
}

/* ログアウトボタン */
.mypage-list-page .myp-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 18px;
  padding: 15px 18px;
  border-radius: 999px;
  background: #64748b;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.mypage-list-page .myp-logout-btn::before { content: "\1F6AA"; font-size: 16px; }
.mypage-list-page .myp-logout-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* ページネーション */
.mypage-list-page .myp-pagination { margin: 0 18px 8px; }

/* === no-login-page === */

@keyframes no-login-page-lg-bob { 0%,100%{transform:translateY(0) rotate(-6deg);} 50%{transform:translateY(-8px) rotate(6deg);} }
@keyframes no-login-page-lg-pop { 0%{transform:scale(.7);opacity:0;} 70%{transform:scale(1.08);opacity:1;} 100%{transform:scale(1);opacity:1;} }
@keyframes no-login-page-lg-twinkle { 0%,100%{transform:scale(1);opacity:.9;} 50%{transform:scale(1.4);opacity:.4;} }
@keyframes no-login-page-lg-nudge { 0%,100%{transform:translateX(0);} 50%{transform:translateX(5px);} }
@keyframes no-login-page-lg-rainbow { 0%{background-position:0% 50%;} 100%{background-position:200% 50%;} }

/* ドット背景でポップに */
.sp-page.no-login-page {
  background:
    radial-gradient(circle at 14px 14px, rgba(99,102,241,.10) 3px, transparent 3px) 0 0/30px 30px,
    radial-gradient(circle at 50% 0%, #fff7ed 0%, #faf5ff 45%, #eef2ff 100%);
}

.no-login-page .sp-head {
  background: linear-gradient(115deg, #f472b6 0%, #818cf8 45%, #6366f1 75%, #4338ca 100%);
  background-size: 200% 200%;
  animation: no-login-page-lg-rainbow 8s linear infinite alternate;
  position: relative;
  overflow: hidden;
}
.no-login-page .sp-head h1 { color: #fff; position: relative; z-index: 2; text-shadow: 0 2px 0 rgba(0,0,0,.18); }
.no-login-page .sp-head-kicker { background: #ffd84d; color: #4338ca; position: relative; z-index: 2; }
.no-login-page .sp-head::before {
  content: "\1F511";
  font-size: 64px;
  position: absolute;
  right: 16px; top: 50%;
  margin-top: -32px;
  z-index: 1;
  animation: no-login-page-lg-bob 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.25));
}
.no-login-page .sp-head::after {
  content: "\2728";
  font-size: 22px;
  position: absolute;
  left: 18px; bottom: 12px;
  z-index: 1;
  animation: no-login-page-lg-twinkle 2s ease-in-out infinite;
}

/* ---- リード文 ---- */
.no-login-page .lg-lead {
  position: relative;
  margin: 22px 18px 0;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.8;
  text-align: center;
}
.no-login-page .lg-lead::before {
  content: "\1F44B";
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #ffd84d;
  border: 3px solid #18203a;
  font-size: 20px;
  animation: no-login-page-lg-bob 3.5s ease-in-out infinite;
}
.no-login-page .lg-lead b {
  color: #4338ca;
  background: linear-gradient(transparent 60%, #fde047 60%);
  padding: 0 2px;
}

/* ---- キャリアカード一覧 ---- */
.no-login-page .lg-carrier-list {
  margin: 22px 18px 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.no-login-page .lg-carrier-card {
  position: relative;
  border-radius: 22px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  transition: transform .14s, box-shadow .14s;
  animation: no-login-page-lg-pop .5s cubic-bezier(.22,1,.36,1) both;
}
.no-login-page .lg-carrier-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 #18203a; }
.no-login-page .lg-carrier-card:nth-child(2) { animation-delay: .08s; }
.no-login-page .lg-carrier-card:nth-child(3) { animation-delay: .16s; }

.no-login-page .lg-carrier-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
  overflow: hidden;
}
/* キラッと光るストライプ装飾 */
.no-login-page .lg-carrier-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(125deg, rgba(255,255,255,.14) 0 10px, transparent 10px 22px);
  pointer-events: none;
}
.no-login-page .lg-carrier-head .lg-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 2px solid rgba(0,0,0,.12);
  font-size: 16px;
  position: relative; z-index: 1;
}
.no-login-page .lg-carrier-head .lg-brand {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  border: 1.5px solid rgba(255,255,255,.5);
  position: relative; z-index: 1;
}
.no-login-page .lg-carrier-head .lg-headtext { position: relative; z-index: 1; }
.no-login-page .lg-carrier-card--docomo .lg-carrier-head { background: linear-gradient(135deg, #ff4d5e 0%, #e60012 55%, #a30000 100%); }
.no-login-page .lg-carrier-card--docomo .lg-icon { color: #e60012; }
.no-login-page .lg-carrier-card--au .lg-carrier-head { background: linear-gradient(135deg, #ffb84d 0%, #f97316 55%, #c2410c 100%); }
.no-login-page .lg-carrier-card--au .lg-icon { color: #f97316; }
.no-login-page .lg-carrier-card--sb .lg-carrier-head { background: linear-gradient(135deg, #38bdf8 0%, #6366f1 60%, #334155 100%); }
.no-login-page .lg-carrier-card--sb .lg-icon { color: #6366f1; }

/* ---- カード内ログインボタンエリア ---- */
.no-login-page .lg-carrier-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.no-login-page .lg-carrier-card--docomo .lg-carrier-body { background: #fff5f6; }
.no-login-page .lg-carrier-card--au .lg-carrier-body { background: #fff7ed; }
.no-login-page .lg-carrier-card--sb .lg-carrier-body { background: #eef4ff; }

.no-login-page .lg-carrier-body form { margin: 0; }
.no-login-page .lg-carrier-body img,
.no-login-page .lg-carrier-body input[type="image"] {
  max-width: 180px;
  height: auto;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 3px 0 rgba(24,32,58,.18);
  transition: transform .12s, box-shadow .12s;
  cursor: pointer;
}
.no-login-page .lg-carrier-body img:hover,
.no-login-page .lg-carrier-body input[type="image"]:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 6px 0 rgba(24,32,58,.18); }

/* タップ誘導チップ */
.no-login-page .lg-tap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.no-login-page .lg-tap::before { content: "\1F446"; animation: no-login-page-lg-nudge 1.1s ease-in-out infinite; }

/* === no-member-page === */

/* ヘッドをオレンジ */
.no-member-page .sp-head {
  background: linear-gradient(135deg, #fb923c 0%, #ff8a2a 100%);
}
.no-member-page .sp-head::before {
  content: "\1F511";
  font-size: 64px;
  color: rgba(255,255,255,.18);
}

/* 説明カード */
.no-member-page .nomember-lead {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 18px 18px 0;
  padding: 18px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
}
.no-member-page .nomember-lead-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff8a2a;
  color: #fff;
  font-size: 18px;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.no-member-page .nomember-lead-text {
  font-size: 13.5px;
  line-height: 1.82;
  color: #2d3a5e;
  font-weight: 500;
  padding-top: 2px;
}
.no-member-page .nomember-lead-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #18203a;
  margin-bottom: 4px;
}

/* 登録ボタン */
.no-member-page .nomember-regist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 18px 0;
  padding: 18px 20px;
  border-radius: 999px;
  border: 3.5px solid #18203a;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
}
.no-member-page .nomember-regist-btn::before { content: "\2192"; font-size: 18px; }
.no-member-page .nomember-regist-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}
.no-member-page .nomember-regist-btn:active {
  transform: translate(3px,3px);
  box-shadow: 2px 2px 0 #18203a;
}

/* 規約リンク */
.no-member-page .nomember-links {
  margin: 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.no-member-page .nomember-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 2px solid rgba(24,32,58,.1);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #18203a;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
  transition: border-color .12s, transform .12s, box-shadow .12s;
}
.no-member-page .nomember-links a::before {
  content: "\25A0";
  color: #ffd84d;
  font-size: 10px;
  flex-shrink: 0;
}
.no-member-page .nomember-links a::after {
  content: "\203A";
  margin-left: auto;
  font-size: 18px;
  color: rgba(24,32,58,.3);
}
.no-member-page .nomember-links a:hover {
  border-color: #ffd84d;
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 rgba(24,32,58,.1);
}

/* === privacy-page === */

/* ---- プライバシーポリシーページ固有 ---- */

/* ヘッドをネイビー */
.privacy-page .sp-head {
  background: linear-gradient(135deg, #334155 0%, #18203a 100%);
}
.privacy-page .sp-head h1 { color: #fff; }
.privacy-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.privacy-page .sp-head::before {
  content: "\1F512";
  font-size: 68px;
  color: rgba(255,255,255,.15);
}

/* 前文カード */
.privacy-page .priv-intro {
  margin: 18px 18px 0;
  padding: 20px 18px;
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  font-size: 13.5px;
  line-height: 1.9;
  color: #1e2a45;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.privacy-page .priv-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    #334155, #475569, #64748b, #334155);
  background-size: 200% 100%;
  animation: spRainbow 4s linear infinite;
}

/* 条文リスト */
.privacy-page .priv-list {
  margin: 14px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 各条文アイテム */
.privacy-page .priv-item {
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.privacy-page .priv-item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-bottom: 2px solid #18203a;
}
.privacy-page .priv-item-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 8px;
  background: #18203a;
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(24,32,58,.3);
}
.privacy-page .priv-item-title {
  font-size: 14px;
  font-weight: 900;
  color: #18203a;
  line-height: 1.4;
}
.privacy-page .priv-item-body {
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.9;
  color: #1e2a45;
  font-weight: 500;
}
.privacy-page .priv-item-body ul {
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.privacy-page .priv-item-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  line-height: 1.8;
  padding: 2px 0;
}
.privacy-page .priv-item-body ul li::before {
  content: "\30FB";
  flex-shrink: 0;
  color: #64748b;
  font-weight: 700;
  margin-top: 1px;
}
.privacy-page .priv-sub-title {
  margin: 12px 0 4px;
  font-size: 13px;
  font-weight: 900;
  color: #334155;
  border-left: 3px solid #ffd84d;
  padding-left: 8px;
}

/* 問合せ窓口カード */
.privacy-page .priv-contact {
  margin: 14px 18px 0;
  padding: 20px 18px;
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff8df;
  box-shadow: 4px 4px 0 #18203a;
}
.privacy-page .priv-contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 900;
  color: #18203a;
}
.privacy-page .priv-contact-title::before {
  content: "\1F4EC";
  font-size: 18px;
}
.privacy-page .priv-contact dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.privacy-page .priv-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.8;
}
.privacy-page .priv-contact-label {
  flex-shrink: 0;
  width: 54px;
  font-weight: 900;
  color: #64748b;
  font-size: 12px;
}
.privacy-page .priv-contact-val {
  color: #1e2a45;
  font-weight: 600;
  word-break: break-all;
}

/* === qa-page === */

/* ---- よくある質問ページ固有 ---- */

/* ヘッドをティール */
.qa-page .sp-head {
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
}
.qa-page .sp-head h1 { color: #fff; }
.qa-page .sp-head-kicker { background: #fff; color: #0d9488; }
.qa-page .sp-head::before {
  content: "?";
  font-family: "Rubik", sans-serif;
  font-size: 90px;
  color: rgba(255,255,255,.2);
}

/* QAラッパー */
.qa-page .qa {
  margin: 14px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 各QAアイテム */
.qa-page .qa-item {
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}

/* Q部分 */
.qa-page .qa-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  border-bottom: 2px solid #18203a;
}
.qa-page .qa-q-badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0d9488;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
  margin-top: 1px;
  flex-shrink: 0;
}
.qa-page .qa-q-text {
  font-size: 14.5px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.55;
  padding-top: 5px;
}

/* A部分 */
.qa-page .qa-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
}
.qa-page .qa-a-badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
  margin-top: 1px;
  flex-shrink: 0;
}
.qa-page .qa-a-body {
  font-size: 13.5px;
  font-weight: 500;
  color: #1e2a45;
  line-height: 1.9;
  flex: 1;
}
.qa-page .qa-a-note {
  display: block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1.5px solid rgba(24,32,58,.1);
  font-size: 12px;
  color: rgba(24,32,58,.6);
  font-weight: 600;
  line-height: 1.8;
}

/* === qr-page === */

/* ---- QRコードページ固有 ---- */

/* ヘッドをパープル */
.qr-page .sp-head {
  background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
}
.qr-page .sp-head h1 { color: #fff; }
.qr-page .sp-head-kicker { background: #fff; color: #7c3aed; }
.qr-page .sp-head::before {
  content: "\1F4F1";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* QRカード */
.qr-page .qr-card {
  position: relative;
  margin: 18px 18px 0;
  padding: 30px 20px 26px;
  border-radius: 28px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  text-align: center;
  overflow: hidden;
}
.qr-page .qr-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    #c084fc, #818cf8, #60a5fa, #34d399, #fbbf24, #f87171, #c084fc);
  background-size: 200% 100%;
  animation: spRainbow 3s linear infinite;
}

/* サイト名バッジ */
.qr-page .qr-site-name {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
}

/* QR画像 */
.qr-page .qr-image-wrap {
  display: inline-block;
  padding: 12px;
  border-radius: 18px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  margin-bottom: 18px;
}
.qr-page .qr-image-wrap img {
  display: block;
  width: 180px;
  height: 180px;
}

/* URL表示 */
.qr-page .qr-url {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 2px solid rgba(24,32,58,.12);
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  word-break: break-all;
  letter-spacing: .02em;
}

/* 説明テキスト */
.qr-page .qr-desc {
  margin: 14px 18px 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #faf5ff;
  border: 2px solid #e9d5ff;
  font-size: 13px;
  line-height: 1.8;
  color: #5b21b6;
  font-weight: 600;
  text-align: center;
}
.qr-page .qr-desc::before {
  content: "\1F4A1";
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

/* === reason-page === */

/* ---- 退会理由入力ページ固有 ---- */

/* ヘッドをネイビー */
.reason-page .sp-head {
  background: linear-gradient(135deg, #334155 0%, #18203a 100%);
}
.reason-page .sp-head h1 { color: #fff; }
.reason-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.reason-page .sp-head::before {
  content: "\1F4DD";
  font-size: 60px;
  color: rgba(255,255,255,.12);
}

/* メッセージ */
.reason-page .reason-lead {
  margin: 18px 18px 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(24,32,58,.65);
  font-weight: 500;
  padding: 0 2px;
}

/* フォームカード */
.reason-page .reason-form-card {
  margin: 14px 18px 0;
  padding: 22px 18px;
  border-radius: 24px;
  background: #fff;
  border: 2.5px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
}

/* localize で出力される要素をまとめてスタイリング */
.reason-page .reason-form-card textarea,
.reason-page .reason-form-card input[type="text"],
.reason-page .reason-form-card select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 14px;
  border: 2px solid rgba(24,32,58,.2);
  background: #f8fafc;
  font-size: 14px;
  color: #18203a;
  font-family: inherit;
  margin-bottom: 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.reason-page .reason-form-card textarea:focus,
.reason-page .reason-form-card input[type="text"]:focus,
.reason-page .reason-form-card select:focus {
  border-color: #ffd84d;
  box-shadow: 0 0 0 3px rgba(255,216,77,.25);
}
.reason-page .reason-form-card input[type="radio"],
.reason-page .reason-form-card input[type="checkbox"] {
  accent-color: #18203a;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}
.reason-page .reason-form-card label {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #18203a;
  margin-bottom: 10px;
  cursor: pointer;
}
.reason-page .reason-form-card br { display: none; }

/* 送信ボタン */
.reason-page .reason-form-card input[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 3px solid #18203a;
  background: #dc2626;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: 5px 5px 0 #18203a;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  font-family: inherit;
}
.reason-page .reason-form-card input[type="submit"]:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}
.reason-page .reason-form-card input[type="submit"]:active {
  transform: translate(3px,3px);
  box-shadow: 2px 2px 0 #18203a;
}

/* === regist-auone-page === */
/* ======================================
   auかんたん決済 登録ページ固有スタイル
   ====================================== */

.regist-auone-page .sp-head {
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
  position: relative;
  overflow: hidden;
}
.regist-auone-page .sp-head h1 { color: #fff; position: relative; z-index: 1; }
.regist-auone-page .sp-head-kicker { background: #ffd84d; color: #c2410c; position: relative; z-index: 1; }
.regist-auone-page .sp-head::before {
  content: "\2B50";
  font-size: 120px;
  color: rgba(255,255,255,.07);
  position: absolute;
  right: -10px; top: -10px;
  z-index: 0;
}

/* ---- キャリアロゴ ---- */
.regist-auone-page .rg-carrier-wrap {
  margin: 16px 18px 0;
  padding: 14px;
  border-radius: 16px;
  border: 2px solid rgba(24,32,58,.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.regist-auone-page .rg-carrier-wrap img { max-width: 130px; height: auto; display: block; }

/* ---- シングル：キャンペーンバナー ---- */
@keyframes regist-auone-page-rg-burst-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes regist-auone-page-rg-pop {
  0% { transform: scale(.7); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.regist-auone-page .rg-free-hero {
  position: relative;
  margin: 16px 18px 0;
  padding: 26px 20px 24px;
  border-radius: 22px;
  border: 3px solid #18203a;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  text-align: center;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.1) 0 14px, transparent 14px 28px),
    radial-gradient(circle at 50% 0%, #ffb84d 0%, #fb923c 50%, #f97316 100%);
}
.regist-auone-page .rg-free-hero::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  transform-origin: 50% 50%;
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(255,255,255,.08) 0deg 9deg, transparent 9deg 18deg);
  animation: regist-auone-page-rg-burst-spin 40s linear infinite;
  pointer-events: none;
}
.regist-auone-page .rg-free-hero > * { position: relative; }

.regist-auone-page .rg-free-hero__ribbon {
  position: absolute;
  top: 13px; right: -34px;
  width: 130px;
  transform: rotate(45deg);
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  padding: 4px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  z-index: 2;
}
.regist-auone-page .rg-free-hero__kind {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  border: 2px solid rgba(255,255,255,.25);
  margin-bottom: 12px;
  animation: regist-auone-page-rg-pop .5s cubic-bezier(.22,1,.36,1) both;
}
.regist-auone-page .rg-free-hero__free {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow:
    0 2px 0 #9a3412,
    0 4px 10px rgba(0,0,0,.3);
  animation: regist-auone-page-rg-pop .6s cubic-bezier(.22,1,.36,1) both;
}
.regist-auone-page .rg-free-hero__free em {
  font-style: normal;
  color: #18203a;
  background: #ffd84d;
  padding: 0 7px;
  border-radius: 6px;
  box-shadow: 0 2px 0 rgba(0,0,0,.2);
}
.regist-auone-page .rg-free-hero__note {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1.5px solid rgba(255,255,255,.25);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}
.regist-auone-page .rg-free-hero__note s {
  color: rgba(255,255,255,.7);
  text-decoration-thickness: 2px;
  margin-right: 2px;
}
.regist-auone-page .rg-free-hero__note b { color: #ffd84d; font-weight: 900; }

/* ---- シングル：登録ボタン ---- */
.regist-auone-page .rg-single-btn-wrap { margin: 14px 18px 0; }
.regist-auone-page .rg-btn-regist {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.regist-auone-page .rg-btn-regist:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #18203a; }
.regist-auone-page .rg-btn-regist--registered {
  background: #e2e8f0;
  color: #94a3b8;
  box-shadow: 2px 2px 0 rgba(24,32,58,.15);
  border-color: rgba(24,32,58,.2);
  pointer-events: none;
}

/* ---- シングル：サイト説明・注記 ---- */
.regist-auone-page .rg-single-desc-text {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 13px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.8;
}

/* ---- 情報フレーム（課金日・確認方法） ---- */
.regist-auone-page .rg-info-frame {
  margin: 14px 18px 0;
  padding: 13px 16px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.regist-auone-page .rg-info-frame a { color: #c2410c; text-decoration: underline; text-underline-offset: 2px; }
.regist-auone-page .rg-info-frame__notice {
  padding: 8px 12px;
  border-radius: 10px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  font-size: 11.5px;
  color: #991b1b;
  line-height: 1.8;
}
.regist-auone-page .rg-trial-note {
  font-size: 11px;
  color: #64748b;
  line-height: 1.8;
}

/* メタ情報 */
.regist-auone-page .rg-meta {
  margin: 10px 18px 0;
  font-size: 10px;
  color: #cbd5e1;
  text-align: right;
}

/* ---- マルチコース：注意バナー ---- */
.regist-auone-page .rg-notice-bar {
  margin: 18px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.regist-auone-page .rg-kiyaku { font-size: 13px; font-weight: 700; color: #1e2a45; line-height: 1.7; }
.regist-auone-page .rg-kiyaku a { color: #c2410c; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.regist-auone-page .rg-billing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1.5px solid #fdba74;
  font-size: 12px;
  font-weight: 900;
  color: #c2410c;
  width: fit-content;
}
.regist-auone-page .rg-billing-badge::before { content: "\1F4C5"; font-size: 13px; }

/* ---- マルチコース：セクションタイトル ---- */
.regist-auone-page .rg-section-title {
  margin: 22px 18px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.regist-auone-page .rg-section-title-text {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 900;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(249,115,22,.3);
}
.regist-auone-page .rg-section-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(249,115,22,.3) 0%, transparent 100%);
  border-radius: 2px;
}

/* ---- マルチコース：コースリスト ---- */
.regist-auone-page .rg-course-list {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.regist-auone-page .rg-course-card {
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
  position: relative;
}
.regist-auone-page .rg-course-card:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 #18203a; }
.regist-auone-page .rg-course-card--available .rg-course-card-head {
  background: linear-gradient(135deg, #ffedd5 0%, #fff7ed 100%);
  border-bottom: 2px solid rgba(249,115,22,.2);
}
.regist-auone-page .rg-course-card--registered { opacity: .65; }
.regist-auone-page .rg-course-card--registered .rg-course-card-head {
  background: #f1f5f9;
  border-bottom: 2px solid #e2e8f0;
}
.regist-auone-page .rg-registered-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #94a3b8;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border: 1.5px solid #18203a;
}
.regist-auone-page .rg-course-card-head {
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.regist-auone-page .rg-course-point-wrap { flex: 1; min-width: 0; }
.regist-auone-page .rg-course-point-label { font-size: 10px; font-weight: 900; color: #c2410c; margin-bottom: 2px; }
.regist-auone-page .rg-course-point-label--registered { color: #94a3b8; }
.regist-auone-page .rg-course-point {
  font-family: "Rubik", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #18203a;
  line-height: 1;
}
.regist-auone-page .rg-course-point span { font-size: 14px; font-weight: 700; color: #64748b; margin-left: 2px; }
.regist-auone-page .rg-course-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(249,115,22,.4);
}
.regist-auone-page .rg-course-arrow--registered { background: #e2e8f0; box-shadow: none; color: #94a3b8; }
.regist-auone-page .rg-course-card-body {
  padding: 10px 18px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  line-height: 1.7;
}
.regist-auone-page .rg-price-main { font-size: 15px; font-weight: 900; color: #1e2a45; }
.regist-auone-page .rg-price-sub { font-size: 12px; color: #64748b; }
.regist-auone-page .rg-price-free {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fef9c3;
  border: 1.5px solid #fde047;
  color: #713f12;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}
.regist-auone-page .rg-price-free::before { content: "\1F381"; }

/* ---- サービス紹介 ---- */
.regist-auone-page .rg-service-card {
  margin: 22px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.regist-auone-page .rg-service-card-head {
  padding: 13px 18px;
  background: linear-gradient(135deg, #1e3a5f 0%, #18203a 100%);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #fdba74;
}
.regist-auone-page .rg-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  transition: background .12s;
}
.regist-auone-page .rg-service-link:hover { background: #f8fafc; }
.regist-auone-page .rg-service-link::after { content: "\203A"; font-size: 20px; color: #c2410c; font-weight: 900; }

/* === regist-docomo-page === */
/* ======================================
   d払い登録ページ固有スタイル
   ====================================== */

.regist-docomo-page .sp-head {
  background: linear-gradient(135deg, #e60012 0%, #7f1d1d 100%);
  position: relative;
  overflow: hidden;
}
.regist-docomo-page .sp-head h1 { color: #fff; position: relative; z-index: 1; }
.regist-docomo-page .sp-head-kicker { background: #ffd84d; color: #7f1d1d; position: relative; z-index: 1; }
.regist-docomo-page .sp-head::before {
  content: "\2B50";
  font-size: 120px;
  color: rgba(255,255,255,.07);
  position: absolute;
  right: -10px; top: -10px;
  z-index: 0;
}

/* ---- キャリアロゴ ---- */
.regist-docomo-page .rg-carrier-wrap {
  margin: 16px 18px 0;
  padding: 14px;
  border-radius: 16px;
  border: 2px solid rgba(24,32,58,.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.regist-docomo-page .rg-carrier-wrap img { max-width: 130px; height: auto; display: block; }

/* ---- シングル：キャンペーンバナー ---- */
@keyframes regist-docomo-page-rg-burst-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes regist-docomo-page-rg-pop {
  0% { transform: scale(.7); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.regist-docomo-page .rg-free-hero {
  position: relative;
  margin: 16px 18px 0;
  padding: 26px 20px 24px;
  border-radius: 22px;
  border: 3px solid #18203a;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  text-align: center;
  /* 斜めストライプ＋ビビッドな赤地 */
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.06) 0 14px, transparent 14px 28px),
    radial-gradient(circle at 50% 0%, #e11d2a 0%, #b3000f 55%, #7f0008 100%);
}
/* 背景の放射バースト（フレーム中央で回転） */
.regist-docomo-page .rg-free-hero::before {
  content: "";
  position: absolute;
  /* 200%サイズ＋上下左右-50%でフレーム中央に正方形を配置 */
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  transform-origin: 50% 50%;
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(255,255,255,.07) 0deg 9deg, transparent 9deg 18deg);
  animation: regist-docomo-page-rg-burst-spin 40s linear infinite;
  pointer-events: none;
}
.regist-docomo-page .rg-free-hero > * { position: relative; }

/* コーナーリボン「CAMPAIGN」 */
.regist-docomo-page .rg-free-hero__ribbon {
  position: absolute;
  top: 13px; right: -34px;
  width: 130px;
  transform: rotate(45deg);
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  padding: 4px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  z-index: 2;
}

/* 種別バッジ */
.regist-docomo-page .rg-free-hero__kind {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 999px;
  background: #18203a;
  color: #ffd84d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  border: 2px solid rgba(255,255,255,.25);
  margin-bottom: 12px;
  animation: regist-docomo-page-rg-pop .5s cubic-bezier(.22,1,.36,1) both;
}

/* メイン見出し「初月お試し無料！」をフレーズ全体で */
.regist-docomo-page .rg-free-hero__free {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow:
    0 2px 0 #7f0008,
    0 4px 10px rgba(0,0,0,.3);
  animation: regist-docomo-page-rg-pop .6s cubic-bezier(.22,1,.36,1) both;
}
/* 「無料」を黄色マーカーで強調（サイズは揃える） */
.regist-docomo-page .rg-free-hero__free em {
  font-style: normal;
  color: #18203a;
  background: #ffd84d;
  padding: 0 7px;
  border-radius: 6px;
  box-shadow: 0 2px 0 rgba(0,0,0,.2);
}

/* 通常料金 */
.regist-docomo-page .rg-free-hero__note {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1.5px solid rgba(255,255,255,.25);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}
.regist-docomo-page .rg-free-hero__note s {
  color: rgba(255,255,255,.7);
  text-decoration-thickness: 2px;
  margin-right: 2px;
}
.regist-docomo-page .rg-free-hero__note b { color: #ffd84d; font-weight: 900; }

/* ---- シングル：登録ボタン ---- */
.regist-docomo-page .rg-single-btn-wrap {
  margin: 14px 18px 0;
}
.regist-docomo-page .rg-btn-regist {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e60012 0%, #7f1d1d 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.regist-docomo-page .rg-btn-regist:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #18203a; }
.regist-docomo-page .rg-btn-regist--registered {
  background: #e2e8f0;
  color: #94a3b8;
  box-shadow: 2px 2px 0 rgba(24,32,58,.15);
  border-color: rgba(24,32,58,.2);
  pointer-events: none;
}

/* ---- シングル：サイト説明・注記 ---- */
.regist-docomo-page .rg-single-desc-text {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 13px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.8;
}
.regist-docomo-page .rg-single-desc-note {
  margin: 10px 18px 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  line-height: 1.8;
}

/* ---- 情報フレーム（課金日・確認方法） ---- */
.regist-docomo-page .rg-info-frame {
  margin: 14px 18px 0;
  padding: 13px 16px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.regist-docomo-page .rg-info-frame a { color: #7f1d1d; text-decoration: underline; text-underline-offset: 2px; }
.regist-docomo-page .rg-info-frame__notice {
  padding: 8px 12px;
  border-radius: 10px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  font-size: 11.5px;
  color: #991b1b;
  line-height: 1.8;
}
.regist-docomo-page .rg-trial-note {
  font-size: 11px;
  color: #64748b;
  line-height: 1.8;
}

/* メタ情報 */
.regist-docomo-page .rg-meta {
  margin: 10px 18px 0;
  font-size: 10px;
  color: #cbd5e1;
  text-align: right;
}

/* ---- マルチコース：注意バナー ---- */
.regist-docomo-page .rg-notice-bar {
  margin: 18px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.regist-docomo-page .rg-kiyaku { font-size: 13px; font-weight: 700; color: #1e2a45; line-height: 1.7; }
.regist-docomo-page .rg-kiyaku a { color: #e60012; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.regist-docomo-page .rg-billing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  font-size: 12px;
  font-weight: 900;
  color: #dc2626;
  width: fit-content;
}
.regist-docomo-page .rg-billing-badge::before { content: "\1F4C5"; font-size: 13px; }

/* ---- マルチコース：セクションタイトル ---- */
.regist-docomo-page .rg-section-title {
  margin: 22px 18px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.regist-docomo-page .rg-section-title-text {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 900;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e60012 0%, #7f1d1d 100%);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(230,0,18,.3);
}
.regist-docomo-page .rg-section-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(230,0,18,.3) 0%, transparent 100%);
  border-radius: 2px;
}

/* ---- マルチコース：コースリスト ---- */
.regist-docomo-page .rg-course-list {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.regist-docomo-page .rg-course-card {
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
  position: relative;
}
.regist-docomo-page .rg-course-card:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 #18203a; }
.regist-docomo-page .rg-course-card--available .rg-course-card-head {
  background: linear-gradient(135deg, #fee2e2 0%, #fff1f2 100%);
  border-bottom: 2px solid rgba(230,0,18,.2);
}
.regist-docomo-page .rg-course-card--registered { opacity: .65; }
.regist-docomo-page .rg-course-card--registered .rg-course-card-head {
  background: #f1f5f9;
  border-bottom: 2px solid #e2e8f0;
}
.regist-docomo-page .rg-registered-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #94a3b8;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border: 1.5px solid #18203a;
}
.regist-docomo-page .rg-course-card-head {
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.regist-docomo-page .rg-course-point-wrap { flex: 1; min-width: 0; }
.regist-docomo-page .rg-course-point-label { font-size: 10px; font-weight: 900; color: #e60012; margin-bottom: 2px; }
.regist-docomo-page .rg-course-point-label--registered { color: #94a3b8; }
.regist-docomo-page .rg-course-point {
  font-family: "Rubik", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #18203a;
  line-height: 1;
}
.regist-docomo-page .rg-course-point span { font-size: 14px; font-weight: 700; color: #64748b; margin-left: 2px; }
.regist-docomo-page .rg-course-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e60012 0%, #7f1d1d 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(230,0,18,.4);
}
.regist-docomo-page .rg-course-arrow--registered { background: #e2e8f0; box-shadow: none; color: #94a3b8; }
.regist-docomo-page .rg-course-card-body {
  padding: 10px 18px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  line-height: 1.7;
}
.regist-docomo-page .rg-price-main { font-size: 15px; font-weight: 900; color: #1e2a45; }
.regist-docomo-page .rg-price-sub { font-size: 12px; color: #64748b; }
.regist-docomo-page .rg-price-free {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fef9c3;
  border: 1.5px solid #fde047;
  color: #713f12;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}
.regist-docomo-page .rg-price-free::before { content: "\1F381"; }

/* ---- サービス紹介 ---- */
.regist-docomo-page .rg-service-card {
  margin: 22px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.regist-docomo-page .rg-service-card-head {
  padding: 13px 18px;
  background: linear-gradient(135deg, #1e3a5f 0%, #18203a 100%);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #7dd3fc;
}
.regist-docomo-page .rg-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  transition: background .12s;
}
.regist-docomo-page .rg-service-link:hover { background: #f8fafc; }
.regist-docomo-page .rg-service-link::after { content: "\203A"; font-size: 20px; color: #e60012; font-weight: 900; }

/* === regist-mysoftbank-page === */
/* ======================================
   SoftBank登録ページ固有スタイル
   ====================================== */

.regist-mysoftbank-page .sp-head {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}
.regist-mysoftbank-page .sp-head::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 28px;
  background: #f8fafc;
  border-radius: 28px 28px 0 0;
}
.regist-mysoftbank-page .sp-head h1 { color: #fff; position: relative; z-index: 1; }
.regist-mysoftbank-page .sp-head-kicker { background: #ffd84d; color: #1e3a8a; position: relative; z-index: 1; }
.regist-mysoftbank-page .sp-head::before {
  content: "\2B50";
  font-size: 120px;
  color: rgba(255,255,255,.07);
  position: absolute;
  right: -10px; top: -10px;
  z-index: 0;
}

.regist-mysoftbank-page .rg-notice-bar {
  margin: 18px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.regist-mysoftbank-page .rg-kiyaku {
  font-size: 13px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.7;
}
.regist-mysoftbank-page .rg-kiyaku a {
  color: #1d4ed8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.regist-mysoftbank-page .rg-billing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  font-size: 12px;
  font-weight: 900;
  color: #dc2626;
  letter-spacing: .02em;
  width: fit-content;
}
.regist-mysoftbank-page .rg-billing-badge::before { content: "\1F4C5"; font-size: 13px; }

.regist-mysoftbank-page .rg-section-title {
  margin: 22px 18px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.regist-mysoftbank-page .rg-section-title-text {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(29,78,216,.3);
}
.regist-mysoftbank-page .rg-section-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(29,78,216,.3) 0%, transparent 100%);
  border-radius: 2px;
}

.regist-mysoftbank-page .rg-course-list {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.regist-mysoftbank-page .rg-course-card {
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
  position: relative;
}
.regist-mysoftbank-page .rg-course-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

.regist-mysoftbank-page .rg-course-card--available .rg-course-card-head {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border-bottom: 2px solid rgba(29,78,216,.2);
}
.regist-mysoftbank-page .rg-course-card--registered {
  opacity: .65;
}
.regist-mysoftbank-page .rg-course-card--registered .rg-course-card-head {
  background: #f1f5f9;
  border-bottom: 2px solid #e2e8f0;
}
.regist-mysoftbank-page .rg-registered-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #94a3b8;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  border: 1.5px solid #18203a;
}
.regist-mysoftbank-page .rg-course-card-head {
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.regist-mysoftbank-page .rg-course-point-wrap { flex: 1; min-width: 0; }
.regist-mysoftbank-page .rg-course-point-label {
  font-size: 10px;
  font-weight: 900;
  color: #1d4ed8;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.regist-mysoftbank-page .rg-course-point-label--registered { color: #94a3b8; }
.regist-mysoftbank-page .rg-course-point {
  font-family: "Rubik", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #18203a;
  line-height: 1;
}
.regist-mysoftbank-page .rg-course-point span {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  margin-left: 2px;
}
.regist-mysoftbank-page .rg-course-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(29,78,216,.4);
}
.regist-mysoftbank-page .rg-course-arrow--registered {
  background: #e2e8f0;
  box-shadow: none;
  color: #94a3b8;
}
.regist-mysoftbank-page .rg-course-card-body {
  padding: 10px 18px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  line-height: 1.7;
}
.regist-mysoftbank-page .rg-price-main {
  font-size: 15px;
  font-weight: 900;
  color: #1e2a45;
}
.regist-mysoftbank-page .rg-price-sub { font-size: 12px; color: #64748b; }
.regist-mysoftbank-page .rg-price-free {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fef9c3;
  border: 1.5px solid #fde047;
  color: #713f12;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}
.regist-mysoftbank-page .rg-price-free::before { content: "\1F381"; }
.regist-mysoftbank-page .rg-course-cta {
  padding: 9px 18px;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.regist-mysoftbank-page .rg-course-cta::after { content: "\00BB"; }

.regist-mysoftbank-page .rg-service-card {
  margin: 22px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.regist-mysoftbank-page .rg-service-card-head {
  padding: 13px 18px;
  background: linear-gradient(135deg, #1e3a5f 0%, #18203a 100%);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #7dd3fc;
  letter-spacing: .05em;
}
.regist-mysoftbank-page .rg-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  transition: background .12s;
}
.regist-mysoftbank-page .rg-service-link:hover { background: #f8fafc; }
.regist-mysoftbank-page .rg-service-link::after {
  content: "\203A";
  font-size: 20px;
  color: #1d4ed8;
  font-weight: 900;
}

/* === regist-ok-page === */

/* ---- ヘッド ---- */
.regist-ok-page .sp-head {
  background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
  position: relative;
  overflow: hidden;
}
.regist-ok-page .sp-head h1 { color: #fff; position: relative; z-index: 1; }
.regist-ok-page .sp-head-kicker { background: #ffd84d; color: #065f46; position: relative; z-index: 1; }
.regist-ok-page .sp-head::before {
  content: "\1F389";
  font-size: 110px;
  color: rgba(255,255,255,.1);
  position: absolute;
  right: -8px; top: -6px;
  z-index: 0;
}

/* ---- お祝いバナー ---- */
@keyframes regist-ok-page-rok-bounce {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}
.regist-ok-page .rok-celebrate {
  margin: 20px 18px 0;
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  box-shadow: 5px 5px 0 #18203a;
  padding: 22px 20px;
  text-align: center;
  animation: regist-ok-page-rok-bounce 2.4s ease-in-out infinite;
}
.regist-ok-page .rok-celebrate-icon {
  font-size: 52px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.regist-ok-page .rok-celebrate-title {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #065f46;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.regist-ok-page .rok-celebrate-text {
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.9;
}

/* ---- ログイン情報カード ---- */
.regist-ok-page .rok-login-card {
  margin: 18px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.regist-ok-page .rok-login-card-head {
  padding: 12px 18px;
  background: linear-gradient(135deg, #1e3a5f 0%, #18203a 100%);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #7dd3fc;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.regist-ok-page .rok-login-card-head::before { content: "\1F511"; }
.regist-ok-page .rok-login-card-notice {
  padding: 10px 18px;
  background: #fff7ed;
  border-bottom: 1.5px solid #fed7aa;
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
  line-height: 1.7;
}
.regist-ok-page .rok-login-card-notice::before { content: "\203B\0020"; }
.regist-ok-page .rok-login-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid #f1f5f9;
}
.regist-ok-page .rok-login-row:last-child { border-bottom: none; }
.regist-ok-page .rok-login-label {
  flex-shrink: 0;
  width: 130px;
  padding: 13px 14px;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 900;
  color: #64748b;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  border-right: 1.5px solid #e2e8f0;
}
.regist-ok-page .rok-login-value {
  flex: 1;
  padding: 13px 16px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #18203a;
  word-break: break-all;
  display: flex;
  align-items: center;
}

/* ---- ホームボタン ---- */
.regist-ok-page .rok-home-btn {
  display: block;
  margin: 22px 18px 0;
  padding: 16px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  letter-spacing: .06em;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.regist-ok-page .rok-home-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}
.regist-ok-page .rok-home-btn::before { content: "\1F3E0\0020"; }

/* ---- アフィリエイト ---- */
.regist-ok-page .rok-aff-wrap {
  margin: 20px 18px 0;
}

/* === regist-stop-page === */

.regist-stop-page .sp-head {
  background: linear-gradient(135deg, #f59e0b 0%, #92400e 100%);
}
.regist-stop-page .sp-head h1 { color: #fff; }
.regist-stop-page .sp-head-kicker { background: #fff; color: #92400e; }
.regist-stop-page .sp-head::before {
  content: "\1F6AB";
  font-size: 68px;
  color: rgba(255,255,255,.14);
}

/* メッセージカード */
.regist-stop-page .rs-card {
  margin: 28px 18px 0;
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
  text-align: center;
}
.regist-stop-page .rs-card-head {
  padding: 16px 18px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-bottom: 2px solid rgba(24,32,58,.1);
}
.regist-stop-page .rs-card-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 6px;
}
.regist-stop-page .rs-card-title {
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #92400e;
  letter-spacing: .06em;
}
.regist-stop-page .rs-card-body {
  padding: 20px 20px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 2;
}
.regist-stop-page .rs-card-body .rs-thanks {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}
.regist-stop-page .rs-card-body .rs-notice {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  background: #fff7ed;
  border: 2px solid #fed7aa;
  color: #9a3412;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}

/* ホームボタン */
.regist-stop-page .rs-home-btn {
  display: block;
  margin: 20px 18px 0;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18203a 0%, #2d3f6b 100%);
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  letter-spacing: .06em;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 rgba(24,32,58,.25);
  transition: transform .12s, box-shadow .12s;
}
.regist-stop-page .rs-home-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 rgba(24,32,58,.25);
}
.regist-stop-page .rs-home-btn::before { content: "\1F3E0\0020"; }

/* === registered-page === */

.registered-page .sp-head {
  background: linear-gradient(135deg, #ef4444 0%, #7f1d1d 100%);
}
.registered-page .sp-head h1 { color: #fff; }
.registered-page .sp-head-kicker { background: #ffd84d; color: #7f1d1d; }
.registered-page .sp-head::before {
  content: "\26A0\FE0F";
  font-size: 64px;
  color: rgba(255,255,255,.14);
}

/* エラーカード */
.registered-page .reg-fail-card {
  margin: 20px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.registered-page .reg-fail-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-bottom: 2px solid rgba(24,32,58,.1);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #991b1b;
  letter-spacing: .04em;
}
.registered-page .reg-fail-card-head::before {
  content: "\26A0\FE0F";
  font-size: 20px;
  flex-shrink: 0;
}
.registered-page .reg-fail-card-body {
  padding: 18px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.9;
}

/* ヒントノート */
.registered-page .reg-fail-hint {
  margin: 14px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff7ed;
  border: 2px solid #fed7aa;
  box-shadow: 2px 2px 0 rgba(24,32,58,.08);
  font-size: 13px;
  font-weight: 700;
  color: #9a3412;
  line-height: 1.8;
}
.registered-page .reg-fail-hint::before {
  content: "\1F4A1\0020";
  font-size: 15px;
}

/* トップへボタン */
.registered-page .reg-top-btn {
  display: block;
  margin: 22px 18px 0;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18203a 0%, #2d3f6b 100%);
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  letter-spacing: .06em;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 rgba(24,32,58,.25);
  transition: transform .12s, box-shadow .12s;
}
.registered-page .reg-top-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 rgba(24,32,58,.25);
}
.registered-page .reg-top-btn::before { content: "\1F3E0\0020"; }

/* === retire-account-page === */
/* ---- 退会コース選択ページ固有 ---- */

/* ヘッドをネイビー */
.retire-account-page .sp-head {
  background: linear-gradient(135deg, #475569 0%, #18203a 100%);
}
.retire-account-page .sp-head h1 { color: #fff; }
.retire-account-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.retire-account-page .sp-head::before {
  content: "\1F6AA";
  font-size: 68px;
  color: rgba(255,255,255,.14);
}

/* リード文 */
.retire-account-page .ra-lead {
  margin: 16px 18px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e2a45;
  line-height: 1.9;
}
.retire-account-page .ra-lead-note {
  display: block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
}
.retire-account-page .ra-lead-note::before { content: "\203B\0020"; }

/* コースリスト */
.retire-account-page .ra-course-list {
  margin: 14px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 処理中カード */
.retire-account-page .ra-course-card {
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .12s, box-shadow .12s;
}
.retire-account-page .ra-course-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}
.retire-account-page .ra-course-card--processing {
  border-color: rgba(24,32,58,.2);
  box-shadow: 3px 3px 0 rgba(24,32,58,.15);
  pointer-events: none;
  opacity: .75;
}
.retire-account-page .ra-course-card--processing:hover {
  transform: none;
  box-shadow: 3px 3px 0 rgba(24,32,58,.15);
}

.retire-account-page .ra-course-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-bottom: 2px solid rgba(24,32,58,.1);
  gap: 10px;
}
.retire-account-page .ra-course-head--processing {
  background: #f8fafc;
}
.retire-account-page .ra-course-price {
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #18203a;
  line-height: 1.3;
}
.retire-account-page .ra-course-price small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
}
.retire-account-page .ra-course-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}

.retire-account-page .ra-course-body {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 900;
  color: #dc2626;
}
.retire-account-page .ra-course-body--processing {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

/* 処理中バッジ */
.retire-account-page .ra-processing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #fcd34d;
  margin-bottom: 4px;
}
.retire-account-page .ra-processing-badge::before { content: "\23F3"; }

/* コースなし */
.retire-account-page .ra-empty {
  margin: 14px 18px 0;
  padding: 28px 20px;
  border-radius: 20px;
  border: 2px dashed rgba(24,32,58,.15);
  background: #f8fafc;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
}
.retire-account-page .ra-empty::before {
  content: "\2705";
  display: block;
  font-size: 34px;
  margin-bottom: 10px;
}

/* === retire-auone-page === */
/* ---- au退会ページ固有 ---- */

/* ヘッドをauオレンジ */
.retire-auone-page .sp-head {
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
}
.retire-auone-page .sp-head h1 { color: #fff; }
.retire-auone-page .sp-head-kicker { background: #fff; color: #c2410c; }
.retire-auone-page .sp-head::before {
  content: "\1F6AA";
  font-size: 68px;
  color: rgba(255,255,255,.14);
}

/* リード文 */
.retire-auone-page .rau-lead {
  margin: 16px 18px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.8;
}
.retire-auone-page .rau-lead-note {
  display: block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
}
.retire-auone-page .rau-lead-note::before { content: "\203B\0020"; }

/* キャリアバッジ */
.retire-auone-page .rau-carrier-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 14px;
  font-weight: 900;
  color: #c2410c;
  letter-spacing: .04em;
}
.retire-auone-page .rau-carrier-badge::before { content: "\1F4F1"; font-size: 18px; }

/* セクションタイトル */
.retire-auone-page .rau-section-title {
  margin: 18px 18px 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #18203a;
  color: #fb923c;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}

/* コースリスト */
.retire-auone-page .rau-course-list {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* カード共通 */
.retire-auone-page .rau-course-card {
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
}
.retire-auone-page .rau-course-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}
.retire-auone-page .rau-course-card--processing {
  opacity: .7;
  pointer-events: none;
  box-shadow: 3px 3px 0 rgba(24,32,58,.15);
  border-color: rgba(24,32,58,.2);
}
.retire-auone-page .rau-course-card--empty {
  padding: 20px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  pointer-events: none;
  cursor: default;
}
.retire-auone-page .rau-course-card--empty::before {
  content: "\2705";
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.retire-auone-page .rau-course-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  border-bottom: 2px solid rgba(24,32,58,.1);
  gap: 10px;
}
.retire-auone-page .rau-course-head--processing { background: #f8fafc; }
.retire-auone-page .rau-course-carrier {
  font-size: 11px;
  font-weight: 900;
  color: #c2410c;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.retire-auone-page .rau-course-price {
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #18203a;
  line-height: 1.4;
}
.retire-auone-page .rau-course-price small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.6;
}
.retire-auone-page .rau-course-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.retire-auone-page .rau-course-body {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 900;
  color: #f97316;
}
.retire-auone-page .rau-course-body--processing {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.retire-auone-page .rau-processing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #fcd34d;
  margin-bottom: 4px;
}
.retire-auone-page .rau-processing-badge::before { content: "\23F3"; }

/* 入会処理中リンク */
.retire-auone-page .rau-shori-wrap {
  margin: 10px 18px 0;
  text-align: right;
  overflow: hidden;
}
.retire-auone-page .rau-shori-link {
  font-size: 12px;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px dotted #94a3b8;
}

/* === retire-docomo-page === */
/* ---- docomo退会ページ固有 ---- */

/* ヘッドをネイビー */
.retire-docomo-page .sp-head {
  background: linear-gradient(135deg, #475569 0%, #18203a 100%);
}
.retire-docomo-page .sp-head h1 { color: #fff; }
.retire-docomo-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.retire-docomo-page .sp-head::before {
  content: "\1F6AA";
  font-size: 68px;
  color: rgba(255,255,255,.14);
}

/* リード文 */
.retire-docomo-page .rdc-lead {
  margin: 16px 18px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.8;
}
.retire-docomo-page .rdc-lead-note {
  display: block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
}
.retire-docomo-page .rdc-lead-note::before { content: "\203B\0020"; }

/* ログインエラー */
.retire-docomo-page .rdc-login-error {
  margin: 12px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fef2f2;
  border: 2px dashed #fca5a5;
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
}

/* キャリアバッジ */
.retire-docomo-page .rdc-carrier-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 14px;
  font-weight: 900;
  color: #e60012;
  letter-spacing: .04em;
}
.retire-docomo-page .rdc-carrier-badge::before { content: "\1F4F1"; font-size: 18px; }

/* セクションタイトル */
.retire-docomo-page .rdc-section-title {
  margin: 18px 18px 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #18203a;
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}

/* コースリスト */
.retire-docomo-page .rdc-course-list {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* カード共通 */
.retire-docomo-page .rdc-course-card {
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
}
.retire-docomo-page .rdc-course-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}
.retire-docomo-page .rdc-course-card--processing {
  opacity: .7;
  pointer-events: none;
  box-shadow: 3px 3px 0 rgba(24,32,58,.15);
  border-color: rgba(24,32,58,.2);
}
.retire-docomo-page .rdc-course-card--empty {
  padding: 20px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  pointer-events: none;
  cursor: default;
}
.retire-docomo-page .rdc-course-card--empty::before {
  content: "\2705";
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.retire-docomo-page .rdc-course-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-bottom: 2px solid rgba(24,32,58,.1);
  gap: 10px;
}
.retire-docomo-page .rdc-course-head--processing { background: #f8fafc; }
.retire-docomo-page .rdc-course-carrier {
  font-size: 11px;
  font-weight: 900;
  color: #e60012;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.retire-docomo-page .rdc-course-price {
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #18203a;
  line-height: 1.4;
}
.retire-docomo-page .rdc-course-price small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.6;
}
.retire-docomo-page .rdc-course-price .free-note {
  color: #dc2626;
  font-weight: 900;
  font-size: 11px;
  display: block;
  margin-top: 3px;
}
.retire-docomo-page .rdc-course-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.retire-docomo-page .rdc-course-body {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 900;
  color: #dc2626;
}
.retire-docomo-page .rdc-course-body--processing {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.retire-docomo-page .rdc-processing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #fcd34d;
  margin-bottom: 4px;
}
.retire-docomo-page .rdc-processing-badge::before { content: "\23F3"; }

/* 入会処理中リンク */
.retire-docomo-page .rdc-shori-link {
  display: block;
  text-align: right;
  margin: 12px 18px 0;
  font-size: 12px;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px dotted #94a3b8;
  display: inline-block;
  float: right;
}
.retire-docomo-page .rdc-shori-wrap {
  margin: 10px 18px 0;
  text-align: right;
  overflow: hidden;
}

/* === retire-mysoftbank-page === */
/* ---- SoftBank退会ページ固有 ---- */

/* ヘッドをネイビー */
.retire-mysoftbank-page .sp-head {
  background: linear-gradient(135deg, #475569 0%, #18203a 100%);
}
.retire-mysoftbank-page .sp-head h1 { color: #fff; }
.retire-mysoftbank-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.retire-mysoftbank-page .sp-head::before {
  content: "\1F6AA";
  font-size: 68px;
  color: rgba(255,255,255,.14);
}

/* リード文 */
.retire-mysoftbank-page .rmb-lead {
  margin: 16px 18px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.8;
}

/* SoftBankバッジ */
.retire-mysoftbank-page .rmb-carrier-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2.5px solid #18203a;
  box-shadow: 3px 3px 0 #18203a;
  font-size: 14px;
  font-weight: 900;
  color: #0062cc;
  letter-spacing: .04em;
}
.retire-mysoftbank-page .rmb-carrier-badge::before {
  content: "\1F4F1";
  font-size: 18px;
}

/* セクションタイトル */
.retire-mysoftbank-page .rmb-section-title {
  margin: 18px 18px 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #18203a;
  color: #ffd84d;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}

/* コースリスト */
.retire-mysoftbank-page .rmb-course-list {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 処理中カード */
.retire-mysoftbank-page .rmb-course-card {
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .12s, box-shadow .12s;
}
.retire-mysoftbank-page .rmb-course-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}
.retire-mysoftbank-page .rmb-course-card--processing {
  opacity: .7;
  pointer-events: none;
  box-shadow: 3px 3px 0 rgba(24,32,58,.15);
  border-color: rgba(24,32,58,.2);
}
.retire-mysoftbank-page .rmb-course-card--processing:hover {
  transform: none;
  box-shadow: 3px 3px 0 rgba(24,32,58,.15);
}
.retire-mysoftbank-page .rmb-course-card--empty {
  padding: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  pointer-events: none;
}
.retire-mysoftbank-page .rmb-course-card--empty::before {
  content: "\2705";
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.retire-mysoftbank-page .rmb-course-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: linear-gradient(135deg, #e3f2fd 0%, #dbeafe 100%);
  border-bottom: 2px solid rgba(24,32,58,.1);
  gap: 10px;
}
.retire-mysoftbank-page .rmb-course-head--processing {
  background: #f8fafc;
}
.retire-mysoftbank-page .rmb-course-carrier {
  font-size: 11px;
  font-weight: 900;
  color: #0062cc;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.retire-mysoftbank-page .rmb-course-price {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #18203a;
}
.retire-mysoftbank-page .rmb-course-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.retire-mysoftbank-page .rmb-course-body {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 900;
  color: #dc2626;
}
.retire-mysoftbank-page .rmb-course-body--processing {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.retire-mysoftbank-page .rmb-processing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #fcd34d;
  margin-bottom: 4px;
}
.retire-mysoftbank-page .rmb-processing-badge::before { content: "\23F3"; }

/* === retire-ng-page === */
/* ---- 退会キャンセルページ固有 ---- */

/* ヘッドをグリーン */
.retire-ng-page .sp-head {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}
.retire-ng-page .sp-head h1 { color: #fff; }
.retire-ng-page .sp-head-kicker { background: #fff; color: #16a34a; }
.retire-ng-page .sp-head::before {
  content: "\1F44D";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* キャンセル完了カード */
.retire-ng-page .rng-card {
  margin: 22px 18px 0;
  border-radius: 28px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  text-align: center;
}
.retire-ng-page .rng-card-top {
  padding: 28px 20px 22px;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  position: relative;
  overflow: hidden;
}
.retire-ng-page .rng-card-top::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    #4ade80, #22c55e, #16a34a, #4ade80);
  background-size: 200% 100%;
  animation: spRainbow 3s linear infinite;
}
.retire-ng-page .rng-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 30px;
  border: 3px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  margin-bottom: 14px;
}
.retire-ng-page .rng-title {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #18203a;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.retire-ng-page .rng-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: rgba(24,32,58,.45);
  letter-spacing: .12em;
}
.retire-ng-page .rng-card-body {
  padding: 20px 22px 22px;
}
.retire-ng-page .rng-msg {
  font-size: 15px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* トップへ戻るボタン */
.retire-ng-page .rng-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.retire-ng-page .rng-top-btn::before { content: "\1F3E0"; font-size: 16px; }
.retire-ng-page .rng-top-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* === regist-ng-page === */
/* ---- 決済中止ページ固有 ---- */

/* ヘッドをアンバー */
.regist-ng-page .sp-head {
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
}
.regist-ng-page .sp-head h1 { color: #fff; }
.regist-ng-page .sp-head-kicker { background: #fff; color: #ea580c; }
.regist-ng-page .sp-head::before {
  content: "\1F6AB";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* 中止カード */
.regist-ng-page .rgng-card {
  margin: 22px 18px 0;
  border-radius: 28px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  text-align: center;
}
.regist-ng-page .rgng-card-top {
  padding: 28px 20px 22px;
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  position: relative;
  overflow: hidden;
}
.regist-ng-page .rgng-card-top::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    #fbbf24, #fb923c, #f97316, #fbbf24);
  background-size: 200% 100%;
  animation: spRainbow 3s linear infinite;
}
.regist-ng-page .rgng-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  border: 3px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  margin-bottom: 14px;
}
.regist-ng-page .rgng-title {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #18203a;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.regist-ng-page .rgng-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: rgba(24,32,58,.45);
  letter-spacing: .12em;
}
.regist-ng-page .rgng-card-body {
  padding: 20px 22px 22px;
}
.regist-ng-page .rgng-msg {
  font-size: 15px;
  font-weight: 700;
  color: #1e2a45;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* トップへ戻るボタン */
.regist-ng-page .rgng-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.regist-ng-page .rgng-top-btn::before { content: "\1F3E0"; font-size: 16px; }
.regist-ng-page .rgng-top-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* === retire-ok-page === */
/* ---- 退会完了ページ固有 ---- */

/* ヘッドをスレート */
.retire-ok-page .sp-head {
  background: linear-gradient(135deg, #64748b 0%, #18203a 100%);
}
.retire-ok-page .sp-head h1 { color: #fff; }
.retire-ok-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.retire-ok-page .sp-head::before {
  content: "\1F44B";
  font-size: 68px;
  color: rgba(255,255,255,.15);
}

/* 完了カード */
.retire-ok-page .rok-card {
  margin: 22px 18px 0;
  border-radius: 28px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
  text-align: center;
}
.retire-ok-page .rok-card-top {
  padding: 28px 20px 22px;
  background: linear-gradient(135deg, #334155 0%, #18203a 100%);
  position: relative;
  overflow: hidden;
}
.retire-ok-page .rok-card-top::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    #ffd84d, #ff8a2a, #ffd84d);
  background-size: 200% 100%;
  animation: spRainbow 3s linear infinite;
}
.retire-ok-page .rok-check {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffd84d;
  color: #18203a;
  font-size: 30px;
  border: 3px solid rgba(255,255,255,.3);
  box-shadow: 0 0 0 6px rgba(255,216,77,.2);
  margin-bottom: 14px;
}
.retire-ok-page .rok-title {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.retire-ok-page .rok-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .12em;
}
.retire-ok-page .rok-card-body {
  padding: 20px 22px 22px;
}
.retire-ok-page .rok-msg {
  font-size: 14.5px;
  font-weight: 600;
  color: #1e2a45;
  line-height: 2;
}
.retire-ok-page .rok-msg strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #18203a;
  margin-bottom: 6px;
}

/* 広告エリア */
.retire-ok-page .rok-ad {
  margin: 22px 18px 0;
  text-align: center;
}

/* === subgenre-detail-page === */

/* ---- 難易度別ページ固有 ---- */

/* ヘッドをオレンジ */
.subgenre-detail-page .sp-head {
  background: linear-gradient(135deg, #fb923c 0%, #c2410c 100%);
}
.subgenre-detail-page .sp-head h1 { color: #fff; }
.subgenre-detail-page .sp-head h2 {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
}
.subgenre-detail-page .sp-head-kicker { background: #fff; color: #c2410c; }
.subgenre-detail-page .sp-head::before {
  content: "\1F3AF";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* メッセージ */
.subgenre-detail-page .sg-msg {
  margin: 14px 18px 0;
  padding: 14px 16px 16px;
  border-radius: 18px;
  background: #fff7ed;
  border: 2px dashed #fb923c;
  position: relative;
}
.subgenre-detail-page .sg-msg:empty { display: none; }
.subgenre-detail-page .sg-msg::before {
  content: "\1F4E3\0020 NOTICE";
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 3px 12px;
  border-radius: 999px;
  background: #fb923c;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.subgenre-detail-page .sg-msg font,
.subgenre-detail-page .sg-msg > * {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #7c2d12;
  line-height: 1.9;
}

/* 難易度リスト */
.subgenre-detail-page .sg-list {
  margin: 18px 18px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 難易度ごとのカラー設定 */
.subgenre-detail-page .sg-list li:nth-child(1) .sg-item { --c: #22c55e; --ct: #fff; }  /* 初級 */
.subgenre-detail-page .sg-list li:nth-child(2) .sg-item { --c: #3b82f6; --ct: #fff; }  /* 中級 */
.subgenre-detail-page .sg-list li:nth-child(3) .sg-item { --c: #f59e0b; --ct: #fff; }  /* 上級 */
.subgenre-detail-page .sg-list li:nth-child(4) .sg-item { --c: #ef4444; --ct: #fff; }  /* 難問 */
.subgenre-detail-page .sg-list li:nth-child(n+5) .sg-item { --c: #8b5cf6; --ct: #fff; }

.subgenre-detail-page .sg-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 20px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
  position: relative;
  overflow: hidden;
}
.subgenre-detail-page .sg-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--c, #fb923c);
}
.subgenre-detail-page .sg-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #18203a;
}
.subgenre-detail-page .sg-badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--c, #fb923c);
  color: var(--ct, #fff);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 rgba(24,32,58,.25);
}
.subgenre-detail-page .sg-name {
  font-size: 16px;
  font-weight: 900;
  color: #18203a;
  letter-spacing: -.02em;
  flex: 1;
}
.subgenre-detail-page .sg-arrow {
  flex-shrink: 0;
  font-size: 20px;
  color: rgba(24,32,58,.3);
  font-weight: 900;
  font-family: "Rubik", sans-serif;
}

/* 広告 */
.subgenre-detail-page .sg-ad {
  margin: 24px 18px 0;
  text-align: center;
}

/* === tai01-page === */

.tai01-page #box { width: 100%; }

/* ---- 退会フロー step1 固有 ---- */

/* ヘッドをローズ */
.tai01-page .sp-head {
  background: linear-gradient(135deg, #fb7185 0%, #be123c 100%);
}
.tai01-page .sp-head h1 { color: #fff; }
.tai01-page .sp-head-kicker { background: #fff; color: #be123c; }
.tai01-page .sp-head::before {
  content: "\1F6AA";
  font-size: 68px;
  color: rgba(255,255,255,.16);
}

/* ステップバー */
.tai01-page .tai01-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 18px 18px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid rgba(24,32,58,.1);
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
}
.tai01-page .tai01-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.tai01-page .tai01-step-circle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  border: 2.5px solid #18203a;
}
.tai01-page .tai01-step-circle--active {
  background: #be123c;
  color: #fff;
  box-shadow: 2px 2px 0 #18203a;
}
.tai01-page .tai01-step-circle--inactive {
  background: #f1f5f9;
  color: #94a3b8;
}
.tai01-page .tai01-step-label {
  font-size: 9px;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: .04em;
  white-space: nowrap;
}
.tai01-page .tai01-step-label--active { color: #be123c; }
.tai01-page .tai01-step-divider {
  flex: 0 0 20px;
  height: 2px;
  background: rgba(24,32,58,.12);
  margin-bottom: 14px;
}

/* セクションカード */
.tai01-page .tai01-section {
  margin: 14px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.tai01-page .tai01-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%);
  border-bottom: 2px solid #18203a;
}
.tai01-page .tai01-section-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #be123c;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.tai01-page .tai01-section-title {
  font-size: 14px;
  font-weight: 900;
  color: #18203a;
}
.tai01-page .tai01-section-body { padding: 16px 18px; }

/* セレクト */
.tai01-page .tai01-select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 36px 13px 14px;
  border-radius: 14px;
  border: 2.5px solid #18203a;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  font-family: inherit;
  box-shadow: 3px 3px 0 rgba(24,32,58,.12);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2318203a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.tai01-page .tai01-select:focus {
  border-color: #be123c;
  box-shadow: 3px 3px 0 rgba(190,18,60,.2);
}

/* ラジオリスト */
.tai01-page .tai01-radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tai01-page .tai01-radio-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 2px solid rgba(24,32,58,.12);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  cursor: pointer;
  transition: border-color .12s, background .12s;
}
.tai01-page .tai01-radio-list label:hover {
  background: #fff1f2;
  border-color: #fda4af;
}
.tai01-page .tai01-radio-list input[type="radio"] {
  accent-color: #be123c;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

/* 次へボタン */
.tai01-page .tai01-next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 18px 0;
  padding: 17px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb7185 0%, #be123c 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 6px 6px 0 #18203a;
  letter-spacing: .02em;
  transition: transform .12s, box-shadow .12s;
}
.tai01-page .tai01-next-btn::after {
  content: "\203A";
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.tai01-page .tai01-next-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 #18203a;
}

/* 広告 */
.tai01-page .tai01-ad {
  margin: 22px 18px 0;
  text-align: center;
}

/* === tai02-page === */

/* ---- 退会アンケートページ固有 ---- */

/* ヘッドをローズ */
.tai02-page .sp-head {
  background: linear-gradient(135deg, #fb7185 0%, #be123c 100%);
}
.tai02-page .sp-head h1 { color: #fff; }
.tai02-page .sp-head-kicker { background: #fff; color: #be123c; }
.tai02-page .sp-head::before {
  content: "\1F4DD";
  font-size: 68px;
  color: rgba(255,255,255,.18);
}

/* リード文 */
.tai02-page .tai02-lead {
  margin: 16px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff1f2;
  border: 2px solid #fecdd3;
  font-size: 13px;
  font-weight: 700;
  color: #9f1239;
  line-height: 1.8;
}
.tai02-page .tai02-lead::before {
  content: "\1F4AC\0020";
  font-size: 15px;
}

/* セクションブロック */
.tai02-page .tai02-section {
  margin: 16px 18px 0;
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.tai02-page .tai02-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%);
  border-bottom: 2px solid #18203a;
}
.tai02-page .tai02-section-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #be123c;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.tai02-page .tai02-section-title {
  font-size: 14px;
  font-weight: 900;
  color: #18203a;
}
.tai02-page .tai02-section-body {
  padding: 16px 18px;
}

/* セレクト */
.tai02-page .tai02-select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 36px 13px 14px;
  border-radius: 14px;
  border: 2.5px solid #18203a;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  font-family: inherit;
  box-shadow: 3px 3px 0 rgba(24,32,58,.12);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2318203a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.tai02-page .tai02-select:focus {
  border-color: #be123c;
  box-shadow: 3px 3px 0 rgba(190,18,60,.2);
}

/* ラジオリスト */
.tai02-page .tai02-radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tai02-page .tai02-radio-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 2px solid rgba(24,32,58,.12);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #18203a;
  cursor: pointer;
  transition: border-color .12s, background .12s;
}
.tai02-page .tai02-radio-list label:hover {
  background: #fff1f2;
  border-color: #fda4af;
}
.tai02-page .tai02-radio-list input[type="radio"] {
  accent-color: #be123c;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

/* テキストエリア */
.tai02-page .tai02-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 14px;
  border: 2.5px solid #18203a;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 600;
  color: #18203a;
  font-family: inherit;
  line-height: 1.8;
  resize: vertical;
  box-shadow: 3px 3px 0 rgba(24,32,58,.12);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.tai02-page .tai02-textarea:focus {
  border-color: #be123c;
  box-shadow: 3px 3px 0 rgba(190,18,60,.2);
}

/* 次へボタン */
.tai02-page .tai02-next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 18px 0;
  padding: 17px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb7185 0%, #be123c 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 6px 6px 0 #18203a;
  letter-spacing: .02em;
  transition: transform .12s, box-shadow .12s;
}
.tai02-page .tai02-next-btn::after {
  content: "\203A";
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.tai02-page .tai02-next-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 #18203a;
}

/* 広告 */
.tai02-page .tai02-ad {
  margin: 22px 18px 0;
  text-align: center;
}

/* === tai03-page === */

/* ---- 退会確認ページ固有 ---- */

/* ヘッドをアンバー */
.tai03-page .sp-head {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}
.tai03-page .sp-head h1 { color: #fff; }
.tai03-page .sp-head-kicker { background: #fff; color: #b45309; }
.tai03-page .sp-head::before {
  content: "\2714";
  font-family: "Rubik", sans-serif;
  font-size: 80px;
  color: rgba(255,255,255,.2);
}

/* リード文 */
.tai03-page .tai03-lead {
  margin: 16px 18px 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fffbeb;
  border: 2px solid #fde68a;
  font-size: 13px;
  font-weight: 700;
  color: #92400e;
  line-height: 1.8;
}
.tai03-page .tai03-lead::before {
  content: "\2139\0020";
  font-size: 15px;
  color: #d97706;
  font-weight: 900;
}

/* 解約内容カード */
.tai03-page .tai03-order-card {
  margin: 14px 18px 0;
  border-radius: 22px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 5px 5px 0 #18203a;
  overflow: hidden;
}
.tai03-page .tai03-order-head {
  padding: 12px 20px;
  background: linear-gradient(135deg, #18203a 0%, #334155 100%);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tai03-page .tai03-order-head-icon {
  font-size: 16px;
  color: #ffd84d;
}
.tai03-page .tai03-order-head-title {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .08em;
}
.tai03-page .tai03-order-body {
  padding: 4px 0 8px;
}
.tai03-page .tai03-order-row {
  display: flex;
  flex-direction: column;
  padding: 13px 18px;
  border-bottom: 1.5px solid rgba(24,32,58,.08);
  gap: 4px;
}
.tai03-page .tai03-order-row:last-child { border-bottom: none; }
.tai03-page .tai03-order-dt {
  font-size: 11px;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: .06em;
}
.tai03-page .tai03-order-dd {
  font-size: 15px;
  font-weight: 900;
  color: #18203a;
  word-break: break-all;
}
.tai03-page .tai03-order-dd--agree { color: #16a34a; }
.tai03-page .tai03-order-dd--no    { color: #dc2626; }

/* 決定ボタン */
.tai03-page .tai03-btn-wrap {
  margin: 20px 18px 0;
}
.tai03-page .tai03-btn-wrap a,
.tai03-page .tai03-btn-wrap .btn-flat-border {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 18px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 6px 6px 0 #18203a;
  letter-spacing: .02em;
  transition: transform .12s, box-shadow .12s;
}
.tai03-page .tai03-btn-wrap a::before,
.tai03-page .tai03-btn-wrap .btn-flat-border::before {
  content: "\00D7";
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.tai03-page .tai03-btn-wrap a:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 #18203a;
}

/* 広告 */
.tai03-page .tai03-ad {
  margin: 22px 18px 0;
  text-align: center;
}

/* === tai04day-page === */

/* ---- 退会ページ（day）固有 ---- */

/* ヘッドをネイビー */
.tai04day-page .sp-head {
  background: linear-gradient(135deg, #475569 0%, #18203a 100%);
}
.tai04day-page .sp-head h1 { color: #fff; }
.tai04day-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.tai04day-page .sp-head::before {
  content: "\1F6AA";
  font-size: 68px;
  color: rgba(255,255,255,.15);
}

/* メッセージ＋注意 統合カード */
.tai04day-page .tai-combined-card {
  margin: 18px 18px 0;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
}
.tai04day-page .tai-combined-top {
  background: linear-gradient(135deg, #334155 0%, #18203a 100%);
  padding: 20px 22px 18px;
  text-align: center;
}
.tai04day-page .tai-combined-top-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 12px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.tai04day-page .tai-combined-top p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.9;
}
.tai04day-page .tai-combined-top p strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.tai04day-page .tai-combined-top p u {
  color: #ffd84d;
  text-decoration: none;
  font-weight: 800;
}
.tai04day-page .tai-combined-warn {
  padding: 16px 22px 18px;
  background: #fff5f5;
  text-align: center;
  border-top: 3px solid #18203a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tai04day-page .tai-combined-warn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.tai04day-page .tai-combined-warn p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.8;
}
.tai04day-page .tai-combined-warn p strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-top: 4px;
}

/* キャリアセクションタイトル */
.tai04day-page .tai-carrier-title {
  margin: 24px 18px 10px;
  font-size: 15px;
  font-weight: 900;
  color: #18203a;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.02em;
}
.tai04day-page .tai-carrier-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 20px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ffd84d, #ff8a2a);
  flex-shrink: 0;
}

/* キャリアカード */
.tai04day-page .tai-carrier-list {
  margin: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tai04day-page .tai-carrier-card {
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.tai04day-page .tai-carrier-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 2px solid #18203a;
}
.tai04day-page .tai-carrier-head--au  { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); }
.tai04day-page .tai-carrier-head--dcm { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); }
.tai04day-page .tai-carrier-head--sb  { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.tai04day-page .tai-carrier-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
  letter-spacing: .04em;
}
.tai04day-page .tai-carrier-badge--au  { background: #ff6600; color: #fff; }
.tai04day-page .tai-carrier-badge--dcm { background: #e60012; color: #fff; }
.tai04day-page .tai-carrier-badge--sb  { background: #0062cc; color: #fff; }
.tai04day-page .tai-carrier-label {
  font-size: 13px;
  font-weight: 900;
  color: #18203a;
}
.tai04day-page .tai-carrier-body {
  padding: 14px 16px;
  font-size: 12.5px;
  line-height: 1.9;
  color: #1e2a45;
  font-weight: 500;
}
.tai04day-page .tai-carrier-step {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}
.tai04day-page .tai-carrier-arrow {
  color: rgba(24,32,58,.35);
  font-weight: 900;
  flex-shrink: 0;
}

/* 退会ボタン */
.tai04day-page .tai-retire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 18px 0;
  padding: 17px 18px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 6px 6px 0 #18203a;
  letter-spacing: -.01em;
  transition: transform .12s, box-shadow .12s;
}
.tai04day-page .tai-retire-btn::before {
  content: "\00D7";
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.tai04day-page .tai-retire-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 #18203a;
}

/* 広告 */
.tai04day-page .tai-ad {
  margin: 22px 18px 0;
  text-align: center;
}

/* カスタムフッター */
.tai04day-page .tai-footer {
  margin: 32px 18px 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f1f5f9;
  border: 2px solid rgba(24,32,58,.1);
  font-size: 11px;
  color: rgba(24,32,58,.5);
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
}

/* === tai04eas-page === */

/* ---- 退会ページ固有 ---- */

/* ヘッドをネイビー */
.tai04eas-page .sp-head {
  background: linear-gradient(135deg, #475569 0%, #18203a 100%);
}
.tai04eas-page .sp-head h1 { color: #fff; }
.tai04eas-page .sp-head-kicker { background: #ffd84d; color: #18203a; }
.tai04eas-page .sp-head::before {
  content: "\1F6AA";
  font-size: 68px;
  color: rgba(255,255,255,.15);
}

/* メッセージ＋注意 統合カード */
.tai04eas-page .tai-combined-card {
  margin: 18px 18px 0;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  overflow: hidden;
}

/* 上部：感謝帯 */
.tai04eas-page .tai-combined-top {
  background: linear-gradient(135deg, #334155 0%, #18203a 100%);
  padding: 20px 22px 18px;
  text-align: center;
}
.tai04eas-page .tai-combined-top-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 12px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.tai04eas-page .tai-combined-top p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.9;
}
.tai04eas-page .tai-combined-top p strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.tai04eas-page .tai-combined-top p u {
  color: #ffd84d;
  text-decoration: none;
  font-weight: 800;
}

/* 下部：注意帯 */
.tai04eas-page .tai-combined-warn {
  padding: 16px 22px 18px;
  background: #fff5f5;
  text-align: center;
  border-top: 3px solid #18203a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tai04eas-page .tai-combined-warn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.tai04eas-page .tai-combined-warn p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: #991b1b;
  line-height: 1.8;
}
.tai04eas-page .tai-combined-warn p strong {
  display: block;
  font-size: 14.5px;
  font-weight: 900;
  margin-top: 6px;
}

/* キャリアセクションタイトル */
.tai04eas-page .tai-carrier-title {
  margin: 24px 18px 10px;
  font-size: 15px;
  font-weight: 900;
  color: #18203a;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.02em;
}
.tai04eas-page .tai-carrier-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 20px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ffd84d, #ff8a2a);
  flex-shrink: 0;
}

/* キャリアカード */
.tai04eas-page .tai-carrier-list {
  margin: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tai04eas-page .tai-carrier-card {
  border-radius: 20px;
  border: 2.5px solid #18203a;
  background: #fff;
  box-shadow: 4px 4px 0 #18203a;
  overflow: hidden;
}
.tai04eas-page .tai-carrier-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 2px solid #18203a;
}
.tai04eas-page .tai-carrier-head--au   { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); }
.tai04eas-page .tai-carrier-head--dcm  { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); }
.tai04eas-page .tai-carrier-head--sb   { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.tai04eas-page .tai-carrier-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
  letter-spacing: .04em;
}
.tai04eas-page .tai-carrier-badge--au  { background: #ff6600; color: #fff; }
.tai04eas-page .tai-carrier-badge--dcm { background: #e60012; color: #fff; }
.tai04eas-page .tai-carrier-badge--sb  { background: #0062cc; color: #fff; }
.tai04eas-page .tai-carrier-label {
  font-size: 13px;
  font-weight: 900;
  color: #18203a;
}
.tai04eas-page .tai-carrier-body {
  padding: 14px 16px;
  font-size: 12.5px;
  line-height: 1.9;
  color: #1e2a45;
  font-weight: 500;
}
.tai04eas-page .tai-carrier-step {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}
.tai04eas-page .tai-carrier-arrow {
  color: rgba(24,32,58,.35);
  font-weight: 900;
  flex-shrink: 0;
}

/* 退会ボタン */
.tai04eas-page .tai-retire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 18px 0;
  padding: 17px 18px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 6px 6px 0 #18203a;
  letter-spacing: -.01em;
  transition: transform .12s, box-shadow .12s;
}
.tai04eas-page .tai-retire-btn::before {
  content: "\00D7";
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.tai04eas-page .tai-retire-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 #18203a;
}

/* 広告 */
.tai04eas-page .tai-ad {
  margin: 22px 18px 0;
  text-align: center;
}

/* === tai04nig-page === */

/* ---- 退会完了ページ固有 ---- */

/* ヘッドをアンバー */
.tai04nig-page .sp-head {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}
.tai04nig-page .sp-head h1 { color: #fff; }
.tai04nig-page .sp-head-kicker { background: #fff; color: #d97706; }
.tai04nig-page .sp-head::before {
  content: "\1F64F";
  font-size: 68px;
  color: rgba(255,255,255,.2);
}

/* ありがとうカード */
.tai04nig-page .retire-thanks-card {
  margin: 18px 18px 0;
  padding: 30px 22px;
  border-radius: 26px;
  border: 3px solid #18203a;
  background: #fff;
  box-shadow: 6px 6px 0 #18203a;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tai04nig-page .retire-thanks-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    #fbbf24, #f59e0b, #fcd34d, #fbbf24);
  background-size: 200% 100%;
  animation: spRainbow 3s linear infinite;
}
.tai04nig-page .retire-thanks-icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.tai04nig-page .retire-thanks-main {
  font-size: 15px;
  font-weight: 900;
  color: #18203a;
  line-height: 1.9;
  margin-bottom: 14px;
}
.tai04nig-page .retire-thanks-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(24,32,58,.65);
  line-height: 1.9;
}

/* TOPへ戻るボタン */
.tai04nig-page .retire-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 18px 0;
  padding: 15px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #18203a;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.tai04nig-page .retire-top-btn::before { content: "\1F3E0"; font-size: 16px; }
.tai04nig-page .retire-top-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* 広告ブロック */
.tai04nig-page .retire-ad {
  margin: 20px 18px 0;
  text-align: center;
}

/* ご確認くださいセクション */
.tai04nig-page .retire-faq-title {
  margin: 28px 18px 8px;
  font-size: 17px;
  font-weight: 950;
  color: #18203a;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.03em;
}
.tai04nig-page .retire-faq-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(180deg, #fbbf24, #d97706);
  flex-shrink: 0;
}

/* FAQアイテム */
.tai04nig-page .retire-faq-list {
  margin: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tai04nig-page .retire-faq-item {
  border-radius: 18px;
  border: 2px solid rgba(24,32,58,.12);
  background: #fff;
  box-shadow: 3px 3px 0 rgba(24,32,58,.1);
  overflow: hidden;
}
.tai04nig-page .retire-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: #fffbeb;
  border-bottom: 1.5px solid rgba(24,32,58,.1);
}
.tai04nig-page .retire-faq-q-badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #d97706;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
}
.tai04nig-page .retire-faq-q-text {
  font-size: 13.5px;
  font-weight: 900;
  color: #18203a;
  line-height: 1.5;
  padding-top: 3px;
}
.tai04nig-page .retire-faq-a {
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.85;
  color: #1e2a45;
  font-weight: 500;
}

/* 退会リンクカード */
.tai04nig-page .retire-action-card {
  margin: 14px 18px 0;
  padding: 20px 18px;
  border-radius: 22px;
  border: 2.5px solid #18203a;
  background: #fff8df;
  box-shadow: 4px 4px 0 #18203a;
  text-align: center;
}
.tai04nig-page .retire-action-card p {
  margin: 0 0 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e2a45;
  line-height: 1.8;
}
.tai04nig-page .retire-action-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
}
.tai04nig-page .retire-action-card a::before { content: "\00D7"; font-size: 18px; font-weight: 900; color: #fff; }
.tai04nig-page .retire-action-card a:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 #18203a;
}

/* === toiawase-page === */

/* ---- お問い合わせページ固有 ---- */

/* 元クラス維持（JSが参照する可能性あり） */
.toiawase-page iframe { border: none; }
.toiawase-page .info_tell {
  background: linear-gradient(transparent 60%, #ffd84d 60%);
  color: #dc2626;
  font-weight: 800;
}

/* ヘッドをブルー */
.toiawase-page .sp-head {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}
.toiawase-page .sp-head h1 { color: #fff; }
.toiawase-page .sp-head-kicker { background: #fff; color: #2563eb; }
.toiawase-page .sp-head::before {
  content: "\2709";
  font-size: 74px;
  color: rgba(255,255,255,.18);
}

/* 選択カード */
.toiawase-page .toiawase-select-card {
  margin: 18px 18px 0;
  padding: 20px 18px;
  border-radius: 22px;
  background: #fff;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
}
.toiawase-page .toiawase-select-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  color: #18203a;
  letter-spacing: .04em;
}
.toiawase-page #main_product {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 14px;
  border: 2.5px solid #18203a;
  background: #f8fafc;
  font-size: 14px;
  color: #18203a;
  font-family: inherit;
  font-weight: 600;
  box-shadow: 3px 3px 0 rgba(24,32,58,.12);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2318203a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.toiawase-page #main_product:focus {
  border-color: #ffd84d;
  box-shadow: 3px 3px 0 rgba(255,216,77,.45);
}

/* iframeラッパー */
.toiawase-page #review {
  display: none;
  width: 100%;
  margin-top: 4px;
}

/* 電話問い合わせセクション */
.toiawase-page #tell-frame {
  display: none;
  margin: 14px 0 0;
}
.toiawase-page .tell-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 22px;
  background: #fff;
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  font-size: 14.5px;
  line-height: 1.9;
  color: #1e2a45;
  font-weight: 500;
  margin-bottom: 14px;
}
.toiawase-page .tell-notice::before {
  content: "!";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffd84d;
  color: #18203a;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 900;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
  margin-top: 1px;
}
.toiawase-page .tell-time {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(24,32,58,.5);
}

/* チェックボックスリスト */
.toiawase-page .tellch {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toiawase-page .tellch input[type="checkbox"] {
  accent-color: #18203a;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
.toiawase-page .tellch label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: #18203a;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 14px;
  border: 2px solid rgba(24,32,58,.12);
  background: #fff;
  transition: border-color .15s, background .15s;
}
.toiawase-page .tellch label:hover { background: #fffbee; border-color: #ffd84d; }

/* 電話ボタン（JSでdisplay:noneが外れる） */
.toiawase-page .icon_arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 3px solid #18203a;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 5px 5px 0 #18203a;
  transition: transform .12s, box-shadow .12s;
  margin-top: 4px;
}
.toiawase-page .icon_arrow a .icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.toiawase-page .icon_arrow a:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #18203a;
}

/* === toiawase-thanks-page === */

/* ---- お問い合わせ送信完了ページ固有 ---- */

/* 元の .thanks クラスをデザインに統合 */
.toiawase-thanks-page .thanks {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 6px;
  background: linear-gradient(transparent 60%, #ffd84d 60%);
  color: #dc2626;
  font-weight: 800;
}

/* ヘッドをグリーン */
.toiawase-thanks-page .sp-head {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}
.toiawase-thanks-page .sp-head h1 { color: #fff; }
.toiawase-thanks-page .sp-head-kicker { background: #fff; color: #16a34a; }
.toiawase-thanks-page .sp-head::before {
  content: "\2713";
  font-family: "Rubik", sans-serif;
  font-size: 96px;
  color: rgba(255,255,255,.22);
  right: 14px;
}

/* グリーン確認バナー */
.toiawase-thanks-page .thanks-banner {
  margin: 18px 18px 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border: 2.5px solid #18203a;
  box-shadow: 4px 4px 0 #18203a;
  display: flex;
  align-items: center;
  gap: 14px;
}
.toiawase-thanks-page .thanks-banner-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 20px;
  border: 2px solid #18203a;
  box-shadow: 2px 2px 0 #18203a;
}
.toiawase-thanks-page .thanks-banner-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: #166534;
  font-weight: 700;
}
.toiawase-thanks-page .thanks-banner-text strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #14532d;
  margin-bottom: 2px;
}

/* 返信期日カード */
.toiawase-thanks-page .thanks-date-card {
  margin: 14px 18px 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff;
  border: 2.5px solid #ffd84d;
  box-shadow: 4px 4px 0 rgba(24,32,58,.15);
  font-size: 13.5px;
  line-height: 1.75;
  color: #2d3a5e;
  font-weight: 500;
}
.toiawase-thanks-page .thanks-date-label {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ffd84d;
  color: #18203a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.toiawase-thanks-page #datebox {
  color: #2563eb;
  font-weight: 900;
}

/* 確認事項カード */
.toiawase-thanks-page .thanks-check-card {
  margin: 14px 18px 0;
  padding: 18px 18px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid rgba(24,32,58,.12);
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
}
.toiawase-thanks-page .thanks-check-title {
  font-size: 12px;
  font-weight: 900;
  color: rgba(24,32,58,.5);
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.toiawase-thanks-page .thanks-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toiawase-thanks-page .thanks-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #2d3a5e;
  font-weight: 500;
}
.toiawase-thanks-page .thanks-check-list li::before {
  content: "\2713";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #18203a;
  color: #ffd84d;
  font-size: 10px;
  font-weight: 900;
  margin-top: 1px;
}
.toiawase-thanks-page .thanks-check-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(24,32,58,.08);
  font-size: 12px;
  color: rgba(24,32,58,.55);
  line-height: 1.72;
}

/* === tokutei-page === */

/* ---- 特定商取引ページ固有 ---- */

/* ヘッドをブルー */
.tokutei-page .sp-head {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}
.tokutei-page .sp-head h1 { color: #fff; }
.tokutei-page .sp-head-kicker { background: #fff; color: #2563eb; }
.tokutei-page .sp-head::before {
  content: "\2750";
  font-size: 80px;
  color: rgba(255,255,255,.15);
}

/* 前文 */
.tokutei-page .tokutei-intro {
  margin: 18px 18px 0;
  font-size: 12.5px;
  color: rgba(24,32,58,.55);
  font-weight: 500;
  line-height: 1.7;
  padding: 0 2px;
}

/* 各項目カード */
.tokutei-page .tokutei-list {
  margin: 14px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.tokutei-page .tokutei-item {
  border-radius: 20px;
  border: 2px solid rgba(24,32,58,.1);
  background: #fff;
  box-shadow: 3px 3px 0 rgba(24,32,58,.08);
  overflow: hidden;
}
.tokutei-page .tokutei-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: #18203a;
  color: #ffd84d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}
.tokutei-page .tokutei-item-head::before {
  content: "\25CF";
  font-size: 7px;
  color: #ffd84d;
}
.tokutei-page .tokutei-item-body {
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.82;
  color: #2d3a5e;
  font-weight: 500;
}
.tokutei-page .tokutei-item-body a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
}

/* JSで値が入るboxのスタイル */
.tokutei-page #box1, .tokutei-page #box2 {
  margin: 4px 0 0;
  font-size: 13px;
  color: #18203a;
  font-weight: 600;
}
