@charset "UTF-8";

/*
 * comicmint-sub.css
 * ComicMint 下層ページ共通スタイル
 * ─ comicmint.css（デザイントークン）を前提として読み込む ─
 */

/* ????????????????????????????????????
   Sub Page ? レイアウト
???????????????????????????????????? */
.sub-page {
  padding-bottom: 96px;
  /* 上端に淡いグロー（#puzzle セクションと同じ処理） */
  background: radial-gradient(
    ellipse 90% 22% at 50% 0%,
    rgba(255, 48, 64, .055) 0%,
    transparent 70%
  );
}

.sub-page-inner {
  padding: 0 16px;
}


/* ????????????????????????????????????
   見出し
???????????????????????????????????? */
.sub-head {
  padding-top: 30px;
}

.sub-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sub-accent, var(--red));
  margin-bottom: 7px;
}

.sub-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sub-accent, var(--red));
  flex-shrink: 0;
  box-shadow: 0 0 7px var(--sub-accent, var(--red));
}

.sub-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.14), transparent);
}

/* h1 の inline style="font-size:medium" を上書き */
.sub-head h1 {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  letter-spacing: -.04em;
  line-height: 1.2;
  margin: 0;
}


/* ????????????????????????????????????
   HUD パネル ? 枠線を使わず四隅ブラケットで領域を示す
   （pz-corner のボーダー幅トリックを流用）
???????????????????????????????????? */
.notice-hud {
  position: relative;
  margin-top: 26px;
  padding: 26px 20px;
  background:
    radial-gradient(ellipse 115% 55% at 50% 0%,   rgba(255,48,64,.07)  0%, transparent 62%),
    radial-gradient(ellipse 75%  45% at 50% 100%, rgba(255,48,64,.035) 0%, transparent 70%);
}

/* アクセントカラーが変わるページ向けの上書き */
.notice-hud[data-accent="retire"] {
  background:
    radial-gradient(ellipse 115% 55% at 50% 0%,   rgba(200,40,40,.08)  0%, transparent 62%),
    radial-gradient(ellipse 75%  45% at 50% 100%, rgba(200,40,40,.04) 0%, transparent 70%);
}

.hud-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-color: var(--sub-accent, rgba(255, 48, 64, .5));
  opacity: .65;
  pointer-events: none;
}

.hud-corner--tl { top: 0;    left: 0;  border-width: 1.5px 0 0 1.5px; border-radius: 3px 0 0 0; }
.hud-corner--tr { top: 0;    right: 0; border-width: 1.5px 1.5px 0 0; border-radius: 0 3px 0 0; }
.hud-corner--bl { bottom: 0; left: 0;  border-width: 0 0 1.5px 1.5px; border-radius: 0 0 0 3px; }
.hud-corner--br { bottom: 0; right: 0; border-width: 0 1.5px 1.5px 0; border-radius: 0 0 3px 0; }


/* ????????????????????????????????????
   リード文
???????????????????????????????????? */
.notice-lead {
  margin: 0 0 16px;
}

.notice-lead font,
.notice-lead font[size] {
  display: block;
  font-size: 13.5px !important;
  font-weight: 600;
  line-height: 1.85;
  color: #fff !important;
}


/* ????????????????????????????????????
   ルール行 ? ul.radius
   benefit-item の番号ウォーターマーク方式
???????????????????????????????????? */
ul.radius {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.radius li {
  position: relative;
  overflow: hidden;
  padding: 14px 46px 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

ul.radius li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* 番号ウォーターマーク */
ul.radius li::after {
  content: attr(data-step);
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 48, 64, .11);
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
}

/* font タグ上書き ─ 行頭「・」をぶら下げインデントに */
ul.radius li font,
ul.radius li font[size] {
  display: block;
  font-size: 12px !important;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82) !important;
  padding-left: 1.15em;
  text-indent: -1.15em;
}


/* ????????????????????????????????????
   Sub Nav ? 戻るボタン（btn-left）
???????????????????????????????????? */
.sub-nav {
  padding-top: 20px;
}

.btn-left {
  display: inline-block;
}

.btn-left a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--text-sub) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none !important;
  transition: background .2s, border-color .2s, color .2s;
}

.btn-left a::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-left: 1.5px solid var(--mint);
  border-bottom: 1.5px solid var(--mint);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.btn-left a:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .17);
  color: var(--text) !important;
}


/* ????????????????????????????????????
   Sub Lead ? フォームページのリード文
???????????????????????????????????? */
.sub-lead {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
}


/* ????????????????????????????????????
   フォームエリア（HUD パネル内）
???????????????????????????????????? */
.sub-form-field {
  margin-bottom: 20px;
}

/* select / textarea 共通 */
.notice-hud select,
.notice-hud textarea {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.notice-hud select:focus,
.notice-hud textarea:focus {
  border-color: rgba(220, 60, 60, .55);
  box-shadow: 0 0 0 3px rgba(220, 60, 60, .1);
}

/* textarea */
.notice-hud textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.6;
}

/* select ─ 矢印 */
.notice-hud select {
  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='rgba(255,255,255,.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* ── 送信ボタン ── */
.sub-form-submit {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: filter .2s, transform .1s;
  box-sizing: border-box;
}

.sub-form-submit:active {
  transform: scale(.97);
}

/* 危険アクション（退会など） */
.sub-form-submit--danger {
  background: linear-gradient(135deg, rgba(220,60,60,1) 0%, rgba(175,28,28,1) 100%);
  color: #fff;
  box-shadow: 0 4px 22px rgba(200, 40, 40, .38);
}

.sub-form-submit--danger:hover {
  filter: brightness(1.12);
}


/* ????????????????????????????????????
   #{$design['hr']} が出力する水平線
???????????????????????????????????? */
.sub-page hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin: 28px 0;
}


/* ????????????????????????????????????
   テーマ別 上端グロー（data-theme）
???????????????????????????????????? */
.sub-page[data-theme="mint"] {
  background: radial-gradient(
    ellipse 90% 22% at 50% 0%,
    rgba(110, 226, 194, .055) 0%,
    transparent 70%
  );
}


/* ????????????????????????????????????
   HUD パネル ? アクセント別背景グロー
???????????????????????????????????? */
.notice-hud[data-accent="mint"] {
  background:
    radial-gradient(ellipse 115% 55% at 50% 0%,   rgba(110,226,194,.07)  0%, transparent 62%),
    radial-gradient(ellipse 75%  45% at 50% 100%, rgba(110,226,194,.035) 0%, transparent 70%);
}


/* ????????????????????????????????????
   Sub Head ? <center>/<div style> ラッパーリセット
   #{$design['title_bgcolor/color']} を打ち消す
???????????????????????????????????? */
.sub-head center {
  display: block;
  text-align: left !important;
}

.sub-head center > div {
  background: transparent !important;
  color: inherit !important;
}

.sub-head center > div * {
  color: inherit !important;
}


/* ????????????????????????????????????
   #notice ? エラー・お知らせエリア
???????????????????????????????????? */

/* 子要素が存在するときだけ表示 */
#notice:has(*) {
  padding: 13px 16px;
  margin-bottom: 18px;
  background: rgba(255, 48, 64, .06);
  border: 1px solid rgba(255, 48, 64, .22);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
}


/* ????????????????????????????????????
   会員登録ゲート (.nm-*)
   no_member_sp_1.html
???????????????????????????????????? */
.nm-gate {
  margin: 20px 0;
  padding: 30px 20px 24px;
  border: 1px solid rgba(110, 226, 194, .15);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(110, 226, 194, .07), transparent 65%),
    var(--surface);
  text-align: center;
}

.nm-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.nm-lock-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(110, 226, 194, .12), transparent 65%);
  border: 1.5px solid rgba(110, 226, 194, .3);
  box-shadow:
    0 0 0 8px rgba(110, 226, 194, .05),
    0 0 30px rgba(110, 226, 194, .14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nm-lock-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-style: normal;
  margin-top: 4px;
}

.nm-lock-shackle {
  display: block;
  width: 18px;
  height: 12px;
  border: 2.5px solid var(--sub-accent, var(--mint));
  border-bottom: none;
  border-radius: 9px 9px 0 0;
}

.nm-lock-body {
  display: block;
  width: 26px;
  height: 20px;
  background: rgba(110, 226, 194, .06);
  border: 2.5px solid var(--sub-accent, var(--mint));
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 14px rgba(110, 226, 194, .15);
}

.nm-lock-body::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 10px;
  background: rgba(110, 226, 194, .7);
  /* 鍵穴シェイプ */
  clip-path: polygon(50% 0%, 100% 38%, 72% 38%, 72% 100%, 28% 100%, 28% 38%, 0% 38%);
}

.nm-lead {
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .68);
  margin: 0 0 22px;
  text-align: left;
}

.nm-gate .download_button { margin-bottom: 0; }

.nm-gate .sub-policy-links { text-align: left; }


/* ????????????????????????????????????
   .download_button ? 登録 CTA ボタン
???????????????????????????????????? */
.download_button {
  text-align: left !important;
}

.download_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint) 0%, #3ab89a 100%);
  color: #000 !important;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none !important;
  box-shadow: 0 4px 24px rgba(110, 226, 194, .38);
  transition: filter .2s, transform .1s;
}

.download_button a:hover  { filter: brightness(1.08); }
.download_button a:active { transform: scale(.97); }


/* ????????????????????????????????????
   .sub-policy-links ? 規約・プライバシーリンク
???????????????????????????????????? */
.sub-policy-links {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-policy-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-mute) !important;
  font-size: 12px;
  text-decoration: none;
  transition: color .2s;
}

.sub-policy-links a::before {
  content: '\25A0';
  font-size: 9px;
  opacity: .55;
  flex-shrink: 0;
}

.sub-policy-links a:hover {
  color: var(--text-sub) !important;
}


/* ????????????????????????????????????
   確認ページ ? 2択アクションボタン
   (.taikai_no / .taikai_yes)
???????????????????????????????????? */

/* center / align 属性のリセット（HUD内） */
.notice-hud div[align],
.notice-hud center {
  text-align: left !important;
}

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.taikai_no,
.taikai_yes {
  width: 100%;
}

/* ── やっぱり退会しない ? プライマリ（mint） ── */
.taikai_no a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint) 0%, #3ab89a 100%);
  color: #000 !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none !important;
  box-shadow: 0 4px 24px rgba(110, 226, 194, .38);
  transition: filter .2s, transform .1s;
}

.taikai_no a:hover  { filter: brightness(1.08); }
.taikai_no a:active { transform: scale(.97); }

/* ── 退会する ? セカンダリ（赤・破壊的アクション） ── */
.taikai_yes a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255, 48, 64, .3);
  color: rgba(220, 70, 70, .72) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none !important;
  transition: background .2s, border-color .2s, color .2s;
}

.taikai_yes a:hover {
  background: rgba(255, 48, 64, .07);
  border-color: rgba(255, 48, 64, .5);
  color: rgba(220, 70, 70, 1) !important;
}


/* ????????????????????????????????????
   規約・法令ページ テーマ（data-theme="policy"）
???????????????????????????????????? */
.sub-page[data-theme="policy"] {
  background: radial-gradient(
    ellipse 90% 22% at 50% 0%,
    rgba(125, 211, 168, .05) 0%,
    transparent 70%
  );
}


/* ????????????????????????????????????
   .tokutei-list ? 長文法令コンテンツ
   .radius のステップ方式を上書き
???????????????????????????????????? */
ul.radius.tokutei-list {
  margin-top: 24px;
}

ul.radius.tokutei-list li {
  padding: 28px 22px;
  border-top: none;
  border-bottom: none;
  border: 1px solid rgba(125, 211, 168, .16);
  border-radius: var(--radius-md);
  overflow: visible;
  background:
    radial-gradient(ellipse 80% 30% at 0% 0%, rgba(125,211,168,.05) 0%, transparent 58%),
    var(--surface);
  font-size: 12.5px;
  line-height: 2.1;
  color: rgba(255, 255, 255, .78);
}

/* step カウンターを無効化 */
ul.radius.tokutei-list li::after {
  display: none;
}

/* ── ● セクション見出し ── */
ul.radius.tokutei-list li b {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #7dd3a8;
  letter-spacing: .03em;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* 最初の見出しは上罫線なし */
ul.radius.tokutei-list li b:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* intro 文（法律名の表記など） */
.tokutei-intro {
  margin: 0 0 20px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

/* li 直下の p タグ（プライバシーポリシー等）のマージンリセット */
ul.radius.tokutei-list li > p {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/* JS で動的に挿入されるボックス */
ul.radius.tokutei-list #box1,
ul.radius.tokutei-list #box2 {
  margin: 4px 0 2px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .78);
}


/* ????????????????????????????????????
   送信完了ページ テーマ（data-theme="complete"）
???????????????????????????????????? */
.sub-page[data-theme="complete"] {
  background: radial-gradient(
    ellipse 90% 22% at 50% 0%,
    rgba(125, 211, 168, .08) 0%,
    transparent 70%
  );
}

/* .thanks ハイライト ? インライン style を上書きしてダークテーマに馴染ませる */
body .thanks {
  background: linear-gradient(transparent 48%, rgba(125, 211, 168, .24) 48%) !important;
  color: #7dd3a8 !important;
  font-weight: bold;
}

/* thanks-list ? 送信完了用カード */
ul.radius.thanks-list {
  margin-top: 24px;
  font-size: unset;  /* ul[style="font-size:85%"] をリセット */
}

ul.radius.thanks-list li {
  padding: 28px 22px;
  border-top: none;
  border-bottom: none;
  border: 1px solid rgba(125, 211, 168, .16);
  border-radius: var(--radius-md);
  overflow: visible;
  background:
    radial-gradient(ellipse 80% 30% at 0% 0%, rgba(125,211,168,.05) 0%, transparent 58%),
    var(--surface);
  font-size: 12.5px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
}

ul.radius.thanks-list li::after {
  display: none;
}

/* <p> タグのマージンリセット */
ul.radius.thanks-list li p {
  margin: 2px 0;
  line-height: 1.9;
}

/* ・始まりの確認項目 ? インデント＋ミュートカラー */
ul.radius.thanks-list li p:has(> a:only-child),
ul.radius.thanks-list .check-items p {
  padding-left: 1em;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

/* 3営業日 日付強調 */
#datebox {
  font-weight: 800 !important;
  color: #7dd3a8 !important;
  letter-spacing: .04em;
}


/* ????????????????????????????????????
   お問い合わせページ（data-theme="contact"）
???????????????????????????????????? */
.sub-page[data-theme="contact"] {
  background: radial-gradient(
    ellipse 90% 22% at 50% 0%,
    rgba(125, 211, 168, .07) 0%,
    transparent 70%
  );
}

/* .info_tell ? ダークテーマ用上書き */
body .info_tell {
  background: linear-gradient(transparent 48%, rgba(125, 211, 168, .24) 48%) !important;
  color: #7dd3a8 !important;
  font-weight: bold;
}

/* ??????????????????????????????????????????
   toiawase_sp_1 ? お問い合わせページ
   <ul class="radius contact-list"> ラッパーを廃止し
   フラット構造（.ct-method / .ct-select / .ct-tel-list）へ移行
?????????????????????????????????????????? */

/* ページ全体の文字色・行高 */
.sub-page[data-theme="contact"] .sub-page-inner {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .78);
}

/* .ct-method ? 選択方法エリア */
.ct-method {
  margin: 20px 0 0;
}

/* ct-method-title ? 小見出し */
.ct-method-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .68);
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  border-left: 2px solid var(--sub-accent, var(--mint));
  letter-spacing: .04em;
}

/* .ct-select ? セレクトボックス（ダークテーマ） */
.ct-select {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, .05);
  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='rgba(110,226,194,.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1px solid rgba(110, 226, 194, .2);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 12px 38px 12px 14px;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}

.ct-select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(110, 226, 194, .12);
}

.ct-select option {
  background: #1c1c1e;
  color: var(--text);
}

/* iframe ? フォーム本体 */
#review {
  display: block;
  width: 100%;
  border: none !important;
  margin-top: 8px;
  border-radius: 4px;
}

/* #tell-frame ? 電話問い合わせパネル */
#tell-frame {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* .ct-tel-list ? 電話案内リスト */
.ct-tel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ct-tel-list > li {
  padding: 10px 0;
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  font-size: 13px;
}

.ct-tel-list > li::after {
  display: none !important;
}

/* .title ? 電話案内の導入文 */
.ct-tel-list .title {
  font-size: 12px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.9;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* .tellch ? チェックボックスエリア */
.ct-tel-list .tellch {
  padding: 14px 0 10px;
  line-height: 2.4;
}

/* カスタムチェックボックス */
.tellcheck {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(125, 211, 168, .45);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 8px;
  position: relative;
  transition: background .15s, border-color .15s;
}

.tellcheck:checked {
  background: var(--mint, #7dd3a8);
  border-color: var(--mint, #7dd3a8);
}

.tellcheck:checked::after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: 2px solid #0d1117;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

label[for^="tellchk"] {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .68);
  cursor: pointer;
  vertical-align: middle;
}

/* .icon_arrow ? 電話ボタン（JS で表示切替） */
.ct-tel-list .icon_arrow a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--sub-accent, var(--mint));
  border-radius: 8px;
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  background: rgba(125, 211, 168, .06);
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 0 0 rgba(125, 211, 168, 0);
}

.ct-tel-list .icon_arrow a:hover {
  background: rgba(125, 211, 168, .13);
  box-shadow: 0 0 18px rgba(125, 211, 168, .18);
}

.ct-tel-list .icon_arrow .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: invert(1) opacity(.7);
}

/* ????????????????????????????????????
   grtag 出力コンテンツのダークテーマ上書き
   #{grtag('...')} が出力する白背景・font タグ等を吸収
???????????????????????????????????? */

/* ── grtag お知らせ（フルwidth） ── */
.sub-page[data-theme="contact"] .sub-head {
  margin-bottom: 20px;
}

/* 白背景の dotted ボーダーボックス → ダーク変換 */
.sub-page-inner div[style*="background-color: #ffffff"],
.sub-page-inner div[style*="background-color:#ffffff"],
.sub-page-inner .small[style*="background-color"] {
  background-color: transparent !important;
  color: rgba(255, 255, 255, .78) !important;
}

.sub-page-inner div[style*="border: 2px dotted #979797"],
.sub-page-inner div[style*="border:2px dotted #979797"] {
  border: 1px solid rgba(110, 226, 194, .14) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .03) !important;
  margin: 20px 0 14px !important;
  padding: 4px 0 !important;
}

/* <font color="..."> タグの色指定を全部リセット */
.sub-page-inner font[color] {
  color: inherit !important;
}

/* grtag 内の center は保持しつつ色だけ直す */
.sub-page-inner center {
  color: rgba(255, 255, 255, .85);
}

/* mceEditable テーブル ? サポート休業期間表等 */
.sub-page-inner table.mceEditable {
  width: 100% !important;
  border-collapse: collapse;
  border: 1px solid rgba(110, 226, 194, .15) !important;
  border-radius: 8px;
  overflow: hidden;
  font-size: 12.5px;
}

.sub-page-inner table.mceEditable td {
  padding: 10px 14px !important;
  background-color: transparent !important;
  color: rgba(255, 255, 255, .78) !important;
  border-color: rgba(255, 255, 255, .06) !important;
}

/* ヘッダー行（テールが #00838d 系）→ ミント系に変換 */
.sub-page-inner table.mceEditable td[style*="#00838d"],
.sub-page-inner table.mceEditable td[style*="background-color: #00838d"] {
  background: rgba(110, 226, 194, .12) !important;
  color: var(--mint) !important;
  font-weight: 700;
}

/* データ行（#f7f7f7 系）→ 透明 */
.sub-page-inner table.mceEditable td[style*="#f7f7f7"],
.sub-page-inner table.mceEditable td[style*="background-color: #f7f7f7"] {
  background: transparent !important;
}

/* .content ? アコーディオン（CSS checkbox trick）の上書き */
.sub-page-inner .content label {
  background-color: transparent !important;
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
}

.sub-page-inner .content .detail {
  background-color: rgba(255, 255, 255, .04) !important;
  color: rgba(255, 255, 255, .72);
  padding: 10px 14px !important;
  border-radius: 6px;
  margin-top: 4px;
  line-height: 1.85;
  font-size: 12.5px;
}

/* ※マーク強調（マーカー風）→ ダーク向けに色調整 */
.sub-page-inner span[style*="background: linear-gradient(transparent 60%, #ffff66"] {
  background: linear-gradient(transparent 55%, rgba(255, 200, 30, .35) 55%) !important;
  color: rgba(255, 255, 255, .9) !important;
  font-weight: 700;
}

/* red の <font> / <span> → ミントオレンジ系警告色に */
.sub-page-inner font[color="red"],
.sub-page-inner span[style*="color: red"],
.sub-page-inner b[style*="color: red"] {
  color: #ff8a6e !important;
}


/* ????????????????????????????????????
   QR コード等のユーティリティページに使用
???????????????????????????????????? */
.sub-page[data-theme="info"] {
  background: radial-gradient(
    ellipse 90% 22% at 50% 0%,
    rgba(125, 211, 168, .06) 0%,
    transparent 70%
  );
}

/* qr-list ? QR コードページ用カード */
ul.radius.qr-list li {
  padding: 28px 20px 32px;
  border-top: none;
  border-bottom: none;
  border: 1px solid rgba(125, 211, 168, .16);
  border-radius: var(--radius-md);
  overflow: visible;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(125,211,168,.06) 0%, transparent 65%),
    var(--surface);
  text-align: center;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.8;
}

ul.radius.qr-list li::after {
  display: none;
}

/* QR 画像 ? 白背景コンテナで可読性を確保 */
ul.radius.qr-list li img {
  display: block;
  margin: 16px auto;
  padding: 14px;
  background: #ffffff;
  border-radius: 10px;
  width: 180px;
  height: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

/* サイト名テキスト */
ul.radius.qr-list .qr-site-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .04em;
  margin-bottom: 4px;
}

/* URL テキスト */
ul.radius.qr-list .qr-url {
  display: block;
  font-size: 11px;
  color: rgba(125, 211, 168, .75);
  letter-spacing: .02em;
  word-break: break-all;
  margin-top: 4px;
}


/* ????????????????????????????????????
   サーバー混雑ページ（data-theme="busy"）
???????????????????????????????????? */
.sub-page[data-theme="busy"] {
  background: radial-gradient(
    ellipse 90% 22% at 50% 0%,
    rgba(245, 158, 66, .06) 0%,
    transparent 70%
  );
}

/* .contents ? ダウンロード系汎用ラッパー */
.contents {
  margin-top: 16px;
}


/* ????????????????????????????????????
   音楽 / コンテンツ詳細ページ (detail_fla_utas)
???????????????????????????????????? */

/* コンテンツタイトル */
h2.title_20 {
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, .88);
  text-align: center;
  margin: 14px 0 12px;
  line-height: 1.4;
  letter-spacing: .02em;
}

/* メタ情報エリア（artist / tieup / date 等） */
.contents center,
.contents div[align="center"] {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .58);
  line-height: 2;
  text-align: center !important;
}

/* テストモード表示 */
.contents .test-info {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
}

/* 確認テキスト */
.contents span[style*="font-size:small"],
.contents span[style*="font-size: small"] {
  font-size: 11.5px !important;
  color: rgba(255, 255, 255, .4);
  line-height: 1.8;
  display: block;
  margin-top: 10px;
}

/* 裸アンカー（ポイント追加 等） */
.contents a:not(.download_button):not(.retire_button2):not(.btn) {
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
  font-weight: 600;
}

/* コンテンツ画像（アニメ・画像系ダウンロード詳細） */
.contents img[copyright] {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 8px auto 16px;
  border-radius: 6px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .55);
}


/* ????????????????????????????????????
   ログインページ（input[type="image"] キャリアボタン）
???????????????????????????????????? */

.sub-page input[type="image"] {
  display: block;
  margin: 6px auto 14px;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .45);
}

.sub-page input[type="image"]:hover {
  opacity: .88;
}

/* au ログイン画像リンク */
.sub-page p.au + a img,
.sub-page p.docomo + form + a img {
  display: block;
  margin: 6px auto 14px;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .45);
}


/* ????????????????????????????????????
   IDログインフォーム (form[name="login"])
???????????????????????????????????? */

form[name="login"] table {
  width: 100%;
  max-width: 320px;
  margin: 16px auto;
  border-collapse: collapse;
}

form[name="login"] td {
  padding: 10px 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  vertical-align: middle;
}

form[name="login"] td[align="center"] {
  text-align: center !important;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

form[name="login"] input[type="text"],
form[name="login"] input[type="password"] {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  color: rgba(255, 255, 255, .88);
  padding: 9px 10px;
  font-size: 13px;
  width: 140px;
  -webkit-appearance: none;
  appearance: none;
}

form[name="login"] input[type="text"]:focus,
form[name="login"] input[type="password"]:focus {
  outline: none;
  border-color: var(--sub-accent, var(--mint));
  box-shadow: 0 0 0 3px rgba(110, 226, 194, .12);
}

form[name="login"] input[type="submit"] {
  display: inline-block;
  padding: 11px 32px;
  background: var(--sub-accent, var(--mint));
  color: #0d1117;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: .04em;
  transition: filter .2s;
  -webkit-appearance: none;
  appearance: none;
}

form[name="login"] input[type="submit"]:hover {
  filter: brightness(1.08);
}

/* 混雑メッセージ */
.busy-msg {
  margin: 28px auto 0;
  text-align: center;
  max-width: 320px;
}

.busy-icon {
  display: block;
  font-size: 44px;
  line-height: 1;
  margin: 0 auto 16px;
  color: #f59e42;
  filter: drop-shadow(0 0 12px rgba(245, 158, 66, .4));
  animation: busy-pulse 2s ease-in-out infinite;
  user-select: none;
}

@keyframes busy-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: .65; transform: scale(.94); }
}

.busy-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f59e42;
  opacity: .85;
  margin: 0 0 20px;
}

.busy-msg div[style*="text-align"] {
  font-size: 13.5px !important;
  line-height: 2.3 !important;
  color: rgba(255, 255, 255, .65) !important;
}


/* ????????????????????????????????????
   メンテナンスページ（全画面センタリング）
???????????????????????????????????? */
.maintenance-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  box-sizing: border-box;
  background: radial-gradient(
    ellipse 80% 40% at 50% 30%,
    rgba(245, 200, 66, .06) 0%,
    transparent 65%
  );
}

.maintenance-inner {
  text-align: center;
  max-width: 320px;
  width: 100%;
}

/* ブランドロゴ */
.maintenance-brand {
  margin-bottom: 36px;
}

.maintenance-brand img {
  height: 30px;
  width: auto;
  opacity: .55;
}

/* ギアアイコン */
.maintenance-icon {
  display: block;
  font-size: 52px;
  line-height: 1;
  margin: 0 auto 18px;
  color: #f5c842;
  filter: drop-shadow(0 0 14px rgba(245, 200, 66, .45));
  animation: mc-gear-spin 10s linear infinite;
  user-select: none;
}

@keyframes mc-gear-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* タイトル */
.maintenance-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #f5c842;
  text-transform: uppercase;
  margin: 0 0 24px;
  opacity: .85;
}

/* メッセージ本文（インライン style を継承しつつカラー上書き） */
.maintenance-inner div[style*="text-align"] {
  font-size: 13.5px !important;
  line-height: 2.3 !important;
  color: rgba(255, 255, 255, .65) !important;
}

/* 区切り線 */
.maintenance-rule {
  width: 40px;
  height: 1px;
  background: rgba(245, 200, 66, .3);
  margin: 28px auto;
  border: none;
}


/* ????????????????????????????????????
   FAQ ページ (.qa)
???????????????????????????????????? */
.qa {
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 2;
  color: rgba(255, 255, 255, .72);
}

/* Q 見出し */
.qa h3 {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .88);
  margin: 28px 0 10px;
  padding: 12px 14px 12px 44px;
  background:
    radial-gradient(ellipse 120% 100% at 0% 50%, rgba(125,211,168,.09) 0%, transparent 55%),
    var(--surface);
  border: 1px solid rgba(125, 211, 168, .15);
  border-radius: 8px;
  line-height: 1.5;
}

.qa > h3:first-child {
  margin-top: 0;
}

/* Q バッジ */
.qa h3::before {
  content: 'Q';
  position: absolute;
  left: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--sub-accent, var(--mint));
  border: 1.5px solid var(--sub-accent, var(--mint));
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 0 6px rgba(125,211,168,.2);
}

.qa p {
  margin: 4px 0;
}

/* JS 動的ボックス */
.qa #box3,
.qa #box4 {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .72);
}


/* ????????????????????????????????????
   コンテンツ詳細ページ
???????????????????????????????????? */

/* 右寄せボタン（編集リンクなど） */
.btn-right {
  text-align: right;
  padding: 4px 0 0;
}

.btn-right a {
  display: inline-block;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
}

.btn-right:empty {
  display: none;
}

/* アクションメッセージ */
.msg {
  margin: 10px 0 14px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .03);
  border-left: 2px solid rgba(125,211,168,.35);
  border-radius: 4px;
}

.msg:empty {
  display: none;
}

/* 書籍情報テーブル */
.book_info {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.book_info > tbody > tr > td:first-child,
td.book_image {
  width: 110px;
  vertical-align: top;
  padding: 0 14px 0 0;
}

.book_info > tbody > tr > td:first-child img,
td.book_image img {
  display: block;
  width: 100px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,.55);
}

/* .book_info 内の汎用 table（download_info と共通スタイル） */
.book_info table {
  width: 100%;
  border-collapse: collapse;
}

.book_info table th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  padding: 6px 10px 6px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.book_info table td {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .80);
  padding: 6px 0;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  line-height: 1.5;
}

.book_info table td a {
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
}

/* font-size:small の inline override */
.book_info td div[style*="font-size"] {
  font-size: unset !important;
}

/* メタ情報テーブル */
.download_info {
  width: 100%;
  border-collapse: collapse;
}

.download_info th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  padding: 6px 10px 6px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 58px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.download_info td {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .80);
  padding: 6px 0;
  vertical-align: top;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.download_info td a {
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
}

/* ダウンロードアクションエリア */
.dl-action {
  margin: 20px 0;
  text-align: center;
}

.dl-action .point-info {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 2.2;
  margin-bottom: 12px;
}

.dl-action .point-info strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--sub-accent, var(--mint));
  letter-spacing: .04em;
}

/* 注意書き */
.attention {
  margin: 20px 0;
  padding: 14px 16px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.9;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
}

/* シリーズ詳細へ戻るリンク */
.download_back {
  text-align: center;
  margin: 20px 0 0;
}

.download_back a {
  font-size: 12.5px;
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
  opacity: .75;
  transition: opacity .2s;
}

.download_back a:hover {
  opacity: 1;
}

/* ── シリーズ説明エリア ── */
.series {
  margin: 20px 0;
  padding: 16px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
}

.series_title {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 10px;
  line-height: 1.4;
}

.outline {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.95;
  margin: 0;
  word-break: break-all;
}


/* ????????????????????????????????????
   退会系ページ共通スタイル
???????????????????????????????????? */

/* sub-page 内の center タグ */
.sub-page center {
  display: block;
  text-align: center;
}

/* sub-page-inner の直下 h1（セクション見出し） */
.sub-page-inner > h1 {
  font-size: 13.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, .72);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  letter-spacing: .04em;
}

/* .retire_button2 ? 退会フロー汎用ボタン */
.retire_button2 {
  display: inline-block;
  padding: 13px 32px;
  border: 1.5px solid rgba(220, 60, 60, .55);
  border-radius: 10px;
  background: rgba(220, 60, 60, .08);
  color: rgba(220, 80, 80, .9);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.retire_button2:hover {
  background: rgba(220, 60, 60, .16);
  border-color: rgba(220, 60, 60, .8);
  box-shadow: 0 4px 18px rgba(220, 60, 60, .2);
}

/* キャリアバッジ（au / docomo / softbank） */
p.au, p.docomo, p.softbank {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

p.au span, p.docomo span, p.softbank span {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  flex-shrink: 0;
}

p.au span {
  background: #f5a623;
  color: #000;
}

p.docomo span {
  background: #e3001f;
  color: #fff;
}

p.softbank span {
  background: #777;
  color: #fff;
}

/* 広告ブロック */
.ad-block {
  margin: 20px 0;
  opacity: .85;
}


/* ????????????????????????????????????
   検索フォームページ (.detail / input.btn.big)
???????????????????????????????????? */

/* 検索フォームテーブル */
.detail {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 8px;
}

.detail th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .42);
  padding: 10px 10px 6px 0;
  white-space: nowrap;
  width: 80px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.detail td {
  padding: 8px 0 10px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

/* フォームボタン群 */
input.btn.big {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin: 8px 6px 0 0;
  letter-spacing: .04em;
  transition: background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

/* 検索（プライマリ） */
input.btn.big[name="commit"] {
  background: var(--sub-accent, var(--mint));
  color: #0d1117;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 16px rgba(125, 211, 168, .28);
}

input.btn.big[name="commit"]:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 22px rgba(125, 211, 168, .42);
}

/* 全件表示（セカンダリ） */
input.btn.big[name="cancel"] {
  background: transparent;
  color: var(--sub-accent, var(--mint));
  border: 1.5px solid var(--sub-accent, var(--mint));
}

input.btn.big[name="cancel"]:hover {
  background: rgba(125, 211, 168, .1);
}

/* キャンセル（ゴースト） */
input.btn.big[name="reset"],
input.btn.big[type="reset"] {
  background: transparent;
  color: rgba(255, 255, 255, .38);
  border: 1.5px solid rgba(255, 255, 255, .14);
}

input.btn.big[name="reset"]:hover,
input.btn.big[type="reset"]:hover {
  color: rgba(255, 255, 255, .6);
  border-color: rgba(255, 255, 255, .28);
}


/* ????????????????????????????????????
   ページ内ナビリンク（ul.link ? sub-page 直下）
???????????????????????????????????? */
.sub-page-inner > ul.link {
  list-style: none;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.sub-page-inner > ul.link li {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.sub-page-inner > ul.link li a {
  display: flex;
  align-items: center;
  padding: 13px 4px;
  font-size: 13px;
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
  transition: opacity .2s;
}

.sub-page-inner > ul.link li a::after {
  content: '\203A';
  font-size: 18px;
  line-height: 1;
  margin-left: auto;
  opacity: .45;
}

.sub-page-inner > ul.link li a:hover {
  opacity: .75;
}

/* ????????????????????????????????????
   コミック一覧カード（.ichiran_wrap）
???????????????????????????????????? */
.ichiran_wrap {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.ichiran_wrap a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 14px 2px;
  transition: background .15s;
}

.ichiran_wrap a:hover {
  background: rgba(255, 255, 255, .025);
}

.ichiran_list {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.ichiran_list td {
  padding: 0;
  vertical-align: top;
}

/* サムネイル列 */
.ichiran_list td:first-child {
  width: 80px;
  padding-right: 12px;
}

.ichiran_list td:first-child img {
  display: block;
  width: 72px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

/* タイトル */
.list_title {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .88);
  line-height: 1.5;
  margin: 0 0 6px;
  word-break: break-all;
}

/* 説明文（2行クランプ） */
.description {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}


/* コミック名リスト等の件数バッジ */
.sub-page-inner > ul.link .item-cnt {
  display: inline-block;
  font-size: 10.5px;
  color: rgba(255, 255, 255, .35);
  font-weight: 400;
  margin-left: 4px;
  letter-spacing: 0;
}


/* ????????????????????????????????????
   汎用詳細ページ (.detail テーブル + wide ボタン)
???????????????????????????????????? */

/* セクション区切り見出し */
.content_subtitle {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  padding: 6px 0 6px 10px;
  border-left: 2px solid var(--sub-accent, var(--mint));
  letter-spacing: .04em;
}

/* 全幅アクションボタン */
input.btn.wide {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
}

input.btn.wide.commit {
  background: var(--sub-accent, var(--mint));
  color: #0d1117;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 16px rgba(125, 211, 168, .28);
}

input.btn.wide.commit:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 22px rgba(125, 211, 168, .42);
}

input.btn.wide.gray {
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .1);
}

input.btn.wide.gray:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .18);
}

/* マージン補助 */
.mb10 {
  margin-bottom: 10px !important;
}

/* 詳細ページ下部ナビリンク */
ul.link.info {
  list-style: none;
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

ul.link.info li {
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  padding: 0;
}

ul.link.info li a {
  display: flex;
  align-items: center;
  padding: 13px 4px;
  font-size: 13px;
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
  transition: opacity .2s;
}

ul.link.info li a::after {
  content: '\203A';
  font-size: 18px;
  line-height: 1;
  margin-left: auto;
  opacity: .45;
}

ul.link.info li a:hover {
  opacity: .75;
}


/* ????????????????????????????????????
   docomo / au コース選択リスト
???????????????????????????????????? */

/* h2.cont_title（content_title の別名） */
h2.cont_title {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .06em;
  margin: 22px 0 10px;
  padding-left: 10px;
  border-left: 2px solid var(--sub-accent, var(--mint));
}

/* コース選択リスト */
ul.course_list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

ul.course_list li {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

ul.course_list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .05);
}

ul.course_list li a {
  display: flex;
  align-items: flex-start;
  padding: 13px 4px;
  font-size: 13px;
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
  transition: opacity .2s;
  line-height: 1.75;
}

ul.course_list li a::after {
  content: '\203A';
  font-size: 18px;
  line-height: 1.4;
  margin-left: auto;
  padding-left: 8px;
  flex-shrink: 0;
  opacity: .45;
}

ul.course_list li a:hover {
  opacity: .75;
}

/* コースなし行 */
ul.course_list li[style*="padding"] {
  padding: 13px 4px !important;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

/* 廃止タグ <font color="red"> の可読性確保 */
.sub-page font[color="red"] {
  color: #f87171 !important;
}

/* 右寄せ補足リンク */
.sub-page div[align="right"] {
  text-align: right !important;
  margin-top: 14px;
  font-size: 12px;
}

.sub-page div[align="right"] a {
  color: rgba(255, 255, 255, .38);
  text-decoration: none;
}


/* ????????????????????????????????????
   共通 .btn リンク / ボタン（小）
   list ページ操作ボタン等
???????????????????????????????????? */
a.btn,
input.btn:not(.big) {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .68);
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .15s, border-color .15s;
  -webkit-appearance: none;
  appearance: none;
}

a.btn:hover,
input.btn:not(.big):hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .88);
}


/* ????????????????????????????????????
   リストページ
???????????????????????????????????? */

/* コンテンツタイトル（検索・タグ検索の小見出し） */
.content_title {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 22px 0 10px;
  padding-left: 10px;
  border-left: 2px solid var(--sub-accent, var(--mint));
}

/* ソート・件数・表示コントロール */
.sort_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 14px 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}

.sort_list select {
  font-size: 12px;
  padding: 5px 10px;
  height: auto;
}

/* 検索なし */
.not_found {
  padding: 48px 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .38);
  line-height: 2.4;
}

/* ── データテーブル本体 ── */

/* スクロールコンテナ ? inline <style> を !important で上書き */
#flickable1 {
  border: 1px solid rgba(255, 255, 255, .09) !important;
  border-radius: 8px;
  overflow: auto;
  width: 100% !important;
  height: 320px !important;
  padding-right: 0 !important;
  margin: 12px 0;
  box-sizing: border-box;
}

/* .list テーブル */
table.list {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
}

table.list th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(15, 20, 28, .95);
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  white-space: nowrap;
  letter-spacing: .04em;
}

table.list th a {
  color: inherit;
  text-decoration: none;
}

table.list th a:hover {
  color: rgba(255, 255, 255, .75);
}

table.list td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  vertical-align: middle;
  white-space: nowrap;
}

table.list tr:hover td {
  background: rgba(255, 255, 255, .03);
}

table.list td.manage {
  white-space: nowrap;
  padding: 8px 10px;
}

table.list td.manage a.btn {
  margin: 2px 2px 2px 0;
}

/* 一括操作フォーム padding */
#flickable1 form {
  padding: 0;
}


/* ????????????????????????????????????
   退会完了ページ content_wrap / ランキンググリッド
???????????????????????????????????? */

.content_wrap {
  margin: 22px 0;
}

.content_wrap_border {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, .025);
}

.content_row.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0 0;
}

.content_row_item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.content_row_item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.content_row_title {
  font-size: 11px;
  color: rgba(255, 255, 255, .62);
  margin-top: 6px;
  line-height: 1.45;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ご注意ブロック（dotted インラインスタイル上書き） */
.sub-page div[style*="border: 1px dotted"] {
  border: 1px solid rgba(255, 255, 255, .1) !important;
  background: rgba(255, 255, 255, .02) !important;
  border-radius: 6px;
  padding: 12px !important;
  margin: 16px 0 !important;
  color: rgba(255, 255, 255, .55);
}

.sub-page div[style*="border: 1px dotted"] p {
  font-size: 11px !important;
  color: rgba(255, 255, 255, .48);
  line-height: 1.85;
  margin: 0;
}


/* ????????????????????????????????????
   自動高さ調整 iframe (.auto-height-iframe)
???????????????????????????????????? */

.auto-height-iframe {
  display: block;
  width: 100% !important;
  border: none !important;
  min-height: 200px;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}


/* ????????????????????????????????????
   退会確認ページ (.retire_wrap)
???????????????????????????????????? */

.retire_wrap {
  padding: 4px 0 16px;
}

.retire_wrap .strong {
  display: block;
  text-align: center;
  letter-spacing: .04em;
}

/* 黒文字インラインスタイル上書き */
.sub-page span[style*="color:#000000"],
.sub-page span[style*="color: #000000"] {
  color: rgba(255, 255, 255, .85) !important;
}

/* 黒文字の警告テキストブロック（<span style="color:#000000"> 代替） */
.retire-warn-text {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .82) !important;
  margin: 8px 0 16px;
  padding: 14px 16px;
  background: rgba(220, 60, 60, .06);
  border: 1px solid rgba(220, 60, 60, .15);
  border-radius: 10px;
}

.retire_text > div {
  background: rgba(255, 255, 255, .025) !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, .68) !important;
  line-height: 2;
  padding: 14px 16px !important;
  margin: 0 !important;
}

.retire_wrap > .retire_button2 {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  text-align: center;
}

/* .retire_text テキスト段落 */
.retire_text {
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
  margin: 0 0 14px;
}

/* 黒リンクインラインスタイル上書き */
.sub-page a[style*="color:#000000"],
.sub-page a[style*="color: #000000"] {
  color: rgba(255, 255, 255, .4) !important;
}


/* ????????????????????????????????????
   退会アンケートフォーム (dl.anke)
???????????????????????????????????? */

dl.anke {
  margin: 0 0 16px;
  padding: 0;
}

dl.anke dt {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  margin: 18px 0 8px;
  padding-left: 10px;
  border-left: 2px solid var(--sub-accent, var(--mint));
}

dl.anke dd {
  margin: 0;
  padding: 0 0 0 12px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 2;
}

/* セレクトボックス */
dl.anke select {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 9px 32px 9px 12px;
  background: rgba(255, 255, 255, .05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,.4)'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  cursor: pointer;
}

dl.anke select:focus {
  outline: none;
  border-color: var(--sub-accent, var(--mint));
}

/* テキストエリア */
dl.anke textarea {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  padding: 10px;
  resize: vertical;
  line-height: 1.65;
}

dl.anke textarea:focus {
  outline: none;
  border-color: var(--sub-accent, var(--mint));
}

/* ラジオ・チェックボックス ラベル */
dl.anke label {
  margin-left: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

dl.anke input[type="radio"],
dl.anke input[type="checkbox"] {
  accent-color: var(--sub-accent, var(--mint));
  cursor: pointer;
}

/* スキップリンクエリア */
.retire_wrap div[style*="text-align:right"] {
  text-align: right !important;
  padding: 10px 0 !important;
}

.retire_wrap div[style*="text-align:right"] p {
  font-size: 12px;
  margin: 0;
}

.retire_wrap div[style*="text-align:right"] a {
  color: rgba(255, 255, 255, .3) !important;
  text-decoration: none !important;
  font-size: 11.5px;
}


/* ????????????????????????????????????
   退会コース選択リスト (ul.retire_list)
???????????????????????????????????? */

ul.retire_list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

ul.retire_list li {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  transition: background .15s, border-color .15s;
}

ul.retire_list li:hover {
  background: rgba(220, 60, 60, .07);
  border-color: rgba(220, 60, 60, .3);
}

ul.retire_list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}

ul.retire_list li a::after {
  content: "\203A";
  font-size: 18px;
  color: var(--sub-accent, var(--mint));
  opacity: .7;
  line-height: 1;
}


/* ????????????????????????????????????
   tai01_sp_1 ? コース選択カードUI（.rt-course-list）
   ※ !important で comicmint.css の白背景リセットを確実に上書き
???????????????????????????????????? */

/* 導入文 */
.rt-intro {
  font-size: 13px;
  color: rgba(255, 255, 255, .55) !important;
  margin: 16px 0 14px;
  padding-left: 4px;
}

/* コースリスト */
.rt-course-list {
  list-style: none !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rt-course-item {
  background: linear-gradient(
    135deg,
    rgba(220, 60, 60, .07) 0%,
    rgba(255, 255, 255, .03) 100%
  ) !important;
  border: 1px solid rgba(220, 60, 60, .18) !important;
  border-radius: 10px !important;
  overflow: hidden;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.rt-course-item::before,
.rt-course-item::after {
  display: none !important;
}

.rt-course-item:hover {
  background: linear-gradient(
    135deg,
    rgba(220, 60, 60, .16) 0%,
    rgba(255, 255, 255, .05) 100%
  ) !important;
  border-color: rgba(220, 60, 60, .45) !important;
  box-shadow: 0 0 20px rgba(220, 60, 60, .12);
}

/* リンク本体 */
.rt-course-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 15px 16px !important;
  color: rgba(255, 255, 255, .85) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  background: none !important;
}

/* 左丸アイコン */
.rt-course-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(220, 60, 60, .7);
  flex-shrink: 0;
}

/* コース名 */
.rt-course-name {
  flex: 1;
  color: rgba(255, 255, 255, .88) !important;
}

/* 右矢印 */
.rt-course-arrow {
  font-size: 20px;
  color: rgba(220, 60, 60, .6);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}

.rt-course-item:hover .rt-course-arrow {
  transform: translateX(3px);
  color: rgba(220, 60, 60, .9);
}

/* 注意事項ボックス */
.rt-caution {
  background: rgba(220, 60, 60, .06) !important;
  border: 1px solid rgba(220, 60, 60, .18) !important;
  border-left: 3px solid rgba(220, 60, 60, .55) !important;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 0 0 24px;
}

.rt-caution-head {
  font-size: 12px;
  font-weight: 700;
  color: rgba(220, 120, 120, .9) !important;
  margin: 0 0 8px;
  letter-spacing: .03em;
}

.rt-caution-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rt-caution-list li {
  font-size: 12px;
  color: rgba(255, 255, 255, .55) !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 0 0 14px !important;
  position: relative;
}

.rt-caution-list li::before {
  content: '?';
  position: absolute;
  left: 4px;
  color: rgba(220, 60, 60, .6);
}

.rt-caution-list li::after {
  display: none !important;
}


/* ????????????????????????????????????
   退会完了系 h2.footer_title（ご注意 見出し）
???????????????????????????????????? */

h2.footer_title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  margin: 26px 0 10px;
  padding-left: 10px;
  border-left: 2px solid var(--sub-accent, var(--mint));
  letter-spacing: .04em;
}


/* ????????????????????????????????????
   ダウンロードリストページ (list_sp_1_3)
???????????????????????????????????? */

/* コンテンツラッパー */
#content {
  margin: 0;
}

/* 未ヒット表示 (ul.pageitem) */
ul.pageitem {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

ul.pageitem li.textbox {
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

ul.pageitem li.textbox .header {
  display: none;
}

/* アイコン付きカードリスト (#content ul.link) */
#content ul.link {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#content ul.link li {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

#content ul.link li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .05);
}

#content ul.link li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 6px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}

#content ul.link li a:hover {
  background: rgba(255, 255, 255, .03);
}

/* アイコンエリア */
.button_icon {
  flex-shrink: 0;
  width: 70px;
}

.button_icon img {
  width: 70px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  background: rgba(255, 255, 255, .06);
}

/* テキストエリア */
.button_text {
  flex: 1;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .6);
}

span.b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

span.tieup {
  display: inline-block;
  font-size: 10.5px;
  color: var(--sub-accent, var(--mint));
  opacity: .7;
  letter-spacing: .02em;
}

/* clearfix */
.clear {
  clear: both;
}


/* ????????????????????????????????????
   ポイント表示ブロック（h2 > div[align]）
???????????????????????????????????? */

.sub-page-inner h2:not(.content_title) > div {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
  text-align: center !important;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  line-height: 2;
  margin: 14px 0;
}


/* ????????????????????????????????????
   登録ページ共通スタイル (.rg-*)
   シングルコース & マルチコース両対応
???????????????????????????????????? */

/* ── キャンペーンヒーローバナー ── */
.rg-hero {
  position: relative;
  margin: 18px 0;
  padding: 30px 20px 24px;
  border: 1px solid rgba(110, 226, 194, .35);
  border-radius: 14px;
  background: radial-gradient(ellipse at 50% -10%, rgba(110, 226, 194, .1) 0%, transparent 65%),
              linear-gradient(160deg, rgba(255, 255, 255, .025) 0%, rgba(0, 0, 0, 0) 100%);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(110, 226, 194, .08), inset 0 0 0 1px rgba(110, 226, 194, .06);
}

/* 四隅の L字ブラケット */
.rg-hero::before,
.rg-hero::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--sub-accent, var(--mint));
  border-style: solid;
  opacity: .6;
}
.rg-hero::before {
  top: 8px; left: 8px;
  border-width: 1.5px 0 0 1.5px;
}
.rg-hero::after {
  bottom: 8px; right: 8px;
  border-width: 0 1.5px 1.5px 0;
}

.rg-ribbon {
  display: inline-block;
  background: var(--sub-accent, var(--mint));
  color: #0d1117;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .25em;
  padding: 3px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.rg-hero-kind {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.rg-hero-free {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, .88);
  line-height: 1.3;
  margin-bottom: 8px;
}

.rg-hero-free em {
  font-style: normal;
  color: var(--sub-accent, var(--mint));
  font-size: 32px;
}

.rg-hero-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.rg-hero-note s {
  opacity: .55;
}

.rg-hero-note b {
  color: var(--sub-accent, var(--mint));
  font-size: 16px;
}

/* ── 登録ボタン（シングル） ── */
.rg-btn-wrap {
  margin: 20px 0 14px;
}

.rg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 15px 20px;
  background: var(--sub-accent, var(--mint));
  color: #0d1117;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(110, 226, 194, .3);
  transition: filter .2s, box-shadow .2s;
  letter-spacing: .04em;
}

.rg-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 36px rgba(110, 226, 194, .45);
}

.rg-btn--registered {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .38);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  pointer-events: none;
  letter-spacing: .06em;
}

.rg-btn-logo {
  height: 26px;
  width: auto;
  flex-shrink: 0;
}

/* ── サイト説明・注記 ── */
.rg-desc-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  text-align: center;
  margin: 14px 0 6px;
}

.rg-desc-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.8;
  margin: 8px 0;
}

/* ── 詳細インフォフレーム ── */
.rg-info-frame {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.9;
  margin: 14px 0;
}

.rg-info-frame a {
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
}

.rg-info-notice {
  background: rgba(245, 180, 30, .06);
  border: 1px solid rgba(245, 180, 30, .18);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, .52);
  margin: 10px 0;
  line-height: 1.8;
}

.rg-trial-note {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .38);
  margin-top: 10px;
  line-height: 1.8;
}

/* メタ情報（開発用・本番では非表示） */
.rg-meta {
  display: none;
}

/* ── マルチコース ── */
.rg-carrier-logo-wrap {
  text-align: center;
  margin: 14px 0 10px;
}

.rg-carrier-logo {
  height: 34px;
  width: auto;
}

.rg-notice-bar {
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin: 12px 0;
  line-height: 1.85;
}

.rg-notice-bar a {
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
}

.rg-billing-badge {
  display: inline-block;
  background: rgba(245, 168, 35, .1);
  color: #f5b832;
  border: 1px solid rgba(245, 168, 35, .25);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.rg-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .48);
  letter-spacing: .12em;
  white-space: nowrap;
}

.rg-section-title::before,
.rg-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

/* コースカードリスト */
.rg-course-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rg-course-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
  text-decoration: none;
  overflow: hidden;
  transition: border-color .2s, background .2s, box-shadow .2s;
  position: relative;
}

.rg-course-card:hover {
  border-color: rgba(110, 226, 194, .45);
  background: rgba(110, 226, 194, .04);
  box-shadow: 0 4px 18px rgba(110, 226, 194, .1);
}

.rg-course-card--registered {
  opacity: .5;
  pointer-events: none;
  cursor: default;
}

.rg-registered-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .06em;
}

.rg-course-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.rg-course-point-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .12em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.rg-course-point {
  font-size: 26px;
  font-weight: 900;
  color: var(--sub-accent, var(--mint));
  line-height: 1.1;
}

.rg-course-point span {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-left: 3px;
  font-weight: 600;
}

.rg-course-arrow {
  font-size: 24px;
  color: var(--sub-accent, var(--mint));
  font-weight: 900;
  opacity: .75;
}

.rg-course-card-body {
  padding: 10px 16px 6px;
  line-height: 1.75;
}

.rg-price-free {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--sub-accent, var(--mint));
}

.rg-price-main {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
}

.rg-price-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
}

.rg-course-card-action {
  padding: 9px 16px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--sub-accent, var(--mint));
  background: rgba(110, 226, 194, .04);
  letter-spacing: .03em;
}

.rg-course-card-action--done {
  color: rgba(255, 255, 255, .28);
  background: transparent;
}

/* サービス説明カード */
.rg-service-card {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0;
}

.rg-service-card-head {
  background: rgba(255, 255, 255, .03);
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .1em;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-transform: uppercase;
}

.rg-service-link {
  display: block;
  padding: 12px 14px;
  color: var(--sub-accent, var(--mint));
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: opacity .2s;
}

.rg-service-link:hover {
  opacity: .75;
}


/* ????????????????????????????????????
   ソフトバンクまとめて支払い（data-theme="softbank"）
   コーポレートカラーのシルバーで統一する
???????????????????????????????????? */
.sub-page[data-theme="softbank"] {
  background: radial-gradient(
    ellipse 90% 24% at 50% 0%,
    rgba(207, 214, 220, .07) 0%,
    transparent 70%
  );
}

/* ── ブランドヘッダー ── */
.rg-sb-brand {
  position: relative;
  margin: 18px 0 16px;
  padding: 24px 20px 20px;
  border: 1px solid rgba(207, 214, 220, .18);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(207, 214, 220, .09) 0%, transparent 62%),
    linear-gradient(160deg, rgba(255, 255, 255, .03) 0%, rgba(0, 0, 0, 0) 100%);
  text-align: center;
  overflow: hidden;
}

/* 四隅のシルバーブラケット */
.rg-sb-brand::before,
.rg-sb-brand::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-style: solid;
  border-color: rgba(207, 214, 220, .5);
}

.rg-sb-brand::before {
  top: 8px;
  left: 8px;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 3px 0 0 0;
}

.rg-sb-brand::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 1.5px 1.5px 0;
  border-radius: 0 0 3px 0;
}

/* ソフトバンクの「＝」マーク（画像を使わず CSS で描く） */
.rg-sb-mark {
  position: relative;
  display: block;
  width: 40px;
  height: 25px;
  margin: 0 auto 12px;
}

.rg-sb-mark::before,
.rg-sb-mark::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(100deg, #f2f5f7 0%, #c3ccd3 46%, #8d979f 100%);
  box-shadow: 0 0 12px rgba(215, 228, 238, .3);
}

.rg-sb-mark::before { top: 0; }
.rg-sb-mark::after  { bottom: 0; }

.rg-sb-name {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .02em;
  line-height: 1.5;
}

.rg-sb-sub {
  margin: 5px 0 0;
  font-size: 9px;
  font-weight: 700;
  color: rgba(207, 214, 220, .42);
  letter-spacing: .22em;
}

/* ── コースカード内の長い日本語ラベル対策 ── */
.rg-course-head-main {
  min-width: 0;
  flex: 1;
}

[data-theme="softbank"] .rg-course-point-label {
  letter-spacing: .02em;
  text-transform: none;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.5;
  margin-bottom: 4px;
}

[data-theme="softbank"] .rg-course-point {
  overflow-wrap: anywhere;
}

/* ── シルバーアクセントの上書き（既定のミントを置換） ── */
[data-theme="softbank"] .rg-course-card:hover {
  border-color: rgba(207, 214, 220, .45);
  background: rgba(207, 214, 220, .05);
  box-shadow: 0 4px 18px rgba(207, 214, 220, .1);
}

[data-theme="softbank"] .rg-course-card-action {
  background: rgba(207, 214, 220, .05);
}

[data-theme="softbank"] .rg-billing-badge {
  display: inline-block;
  background: rgba(207, 214, 220, .08);
  color: rgba(230, 238, 244, .8);
  border-color: rgba(207, 214, 220, .22);
  white-space: normal;
  line-height: 1.7;
}

[data-theme="softbank"] .rg-registered-badge {
  letter-spacing: .02em;
}


/* ????????????????????????????????????
   キャリア決済ページ 共通機構（docomo / au）
   ・ロゴは画像を使わず CSS だけで描画する
   ・配色はテーマ側の --cr-* 変数だけを差し替えて切り替える
???????????????????????????????????? */

/* ── キャンペーンヒーローバナー ── */
[data-theme="docomo"] .rg-hero,
[data-theme="au"] .rg-hero {
  padding: 30px 20px 26px;
  border: 2px solid transparent;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 85% 62% at 50% -6%, var(--cr-tint) 0%, transparent 72%) padding-box,
    repeating-linear-gradient(118deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 10px) padding-box,
    var(--cr-base) padding-box,
    var(--cr-frame) border-box;
  background-size: auto, auto, auto, 320% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 10px 40px var(--cr-shadow),
              inset 0 0 0 1px rgba(255, 255, 255, .04);
  animation: rg-carrier-frame 7s linear infinite;
}

@keyframes rg-carrier-frame {
  0%   { background-position: 0 0, 0 0, 0 0, 0% 50%; }
  100% { background-position: 0 0, 0 0, 0 0, 100% 50%; }
}

/* 既定のL字ブラケットはグラデ枠と競合するため無効化 */
[data-theme="docomo"] .rg-hero::before,
[data-theme="docomo"] .rg-hero::after,
[data-theme="au"] .rg-hero::before,
[data-theme="au"] .rg-hero::after {
  display: none;
}

/* バナー上部の脈打つ光 */
.rg-hero-spark {
  position: absolute;
  top: -56px;
  left: 50%;
  width: 240px;
  height: 150px;
  margin-left: -120px;
  background: var(--cr-bloom);
  filter: blur(6px);
  pointer-events: none;
  animation: rg-hero-pulse 3.4s ease-in-out infinite;
}

@keyframes rg-hero-pulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.12); }
}

/* 斜めに走る光沢 */
.rg-hero-shine {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -70%;
  width: 42%;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255, 255, 255, .07) 35%,
    rgba(255, 255, 255, .3) 50%,
    rgba(255, 255, 255, .07) 65%,
    transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: rg-hero-shine 4.2s cubic-bezier(.5, 0, .5, 1) infinite;
}

@keyframes rg-hero-shine {
  0%, 55% { left: -70%; }
  100%    { left: 140%; }
}

/* リボンバッジ（流れるグラデーション） */
[data-theme="docomo"] .rg-ribbon,
[data-theme="au"] .rg-ribbon {
  position: relative;
  padding: 5px 18px;
  margin-bottom: 15px;
  background: var(--cr-ribbon);
  background-size: 220% 100%;
  color: #fff;
  font-size: 10px;
  letter-spacing: .26em;
  text-shadow: 0 1px 3px var(--cr-ribbon-ink);
  box-shadow: 0 4px 16px var(--cr-ribbon-shadow),
              inset 0 1px 0 rgba(255, 255, 255, .38);
  animation: rg-carrier-ribbon 4s linear infinite alternate;
}

@keyframes rg-carrier-ribbon {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

[data-theme="docomo"] .rg-hero-kind,
[data-theme="au"] .rg-hero-kind {
  color: var(--cr-kind);
  font-weight: 700;
  letter-spacing: .16em;
}

[data-theme="docomo"] .rg-hero-free,
[data-theme="au"] .rg-hero-free {
  margin-bottom: 13px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

/* 「無料」はグラデ文字＋二重の発光で最も目立たせる */
[data-theme="docomo"] .rg-hero-free em,
[data-theme="au"] .rg-hero-free em {
  display: inline-block;
  padding: 0 4px;
  font-size: 43px;
  font-weight: 900;
  line-height: 1.05;
  background: var(--cr-free);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 7px var(--cr-free-glow))
          drop-shadow(0 0 24px var(--cr-free-halo));
}

[data-theme="docomo"] .rg-hero-note,
[data-theme="au"] .rg-hero-note {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(0, 0, 0, .42);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

[data-theme="docomo"] .rg-hero-note s,
[data-theme="au"] .rg-hero-note s {
  color: rgba(255, 255, 255, .45);
}

[data-theme="docomo"] .rg-hero-note b,
[data-theme="au"] .rg-hero-note b {
  font-size: 19px;
  font-weight: 900;
  color: var(--cr-num);
  text-shadow: 0 0 14px var(--cr-num-glow);
}

/* ── 登録ボタン ── */
[data-theme="docomo"] .rg-btn,
[data-theme="au"] .rg-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--cr-btn);
  color: #fff;
  text-shadow: 0 1px 3px var(--cr-ribbon-ink);
  box-shadow: 0 8px 28px var(--cr-btn-shadow),
              inset 0 1px 0 rgba(255, 255, 255, .26);
}

[data-theme="docomo"] .rg-btn:hover,
[data-theme="au"] .rg-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 38px var(--cr-btn-shadow-hover),
              inset 0 1px 0 rgba(255, 255, 255, .3);
}

[data-theme="docomo"] .rg-btn::after,
[data-theme="au"] .rg-btn::after {
  content: '';
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -60%;
  width: 38%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .32) 50%, transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: rg-hero-shine 4.2s cubic-bezier(.5, 0, .5, 1) infinite;
}

[data-theme="docomo"] .rg-btn > span,
[data-theme="au"] .rg-btn > span {
  position: relative;
  z-index: 1;
}

[data-theme="docomo"] .rg-btn--registered,
[data-theme="au"] .rg-btn--registered {
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .38);
  text-shadow: none;
  box-shadow: none;
}

[data-theme="docomo"] .rg-btn--registered::after,
[data-theme="au"] .rg-btn--registered::after {
  display: none;
}

/* ── マルチコース用ブランドヘッダー ── */
.rg-carrier-brand {
  position: relative;
  margin: 18px 0 16px;
  padding: 20px 20px 15px;
  border: 1px solid var(--cr-brand-border);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% -20%, var(--cr-brand-tint) 0%, transparent 62%),
    linear-gradient(160deg, rgba(255, 255, 255, .03) 0%, rgba(0, 0, 0, 0) 100%);
  text-align: center;
  overflow: hidden;
}

.rg-carrier-brand::before,
.rg-carrier-brand::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-style: solid;
  border-color: var(--cr-bracket);
}

.rg-carrier-brand::before {
  top: 8px;
  left: 8px;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 3px 0 0 0;
}

.rg-carrier-brand::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 1.5px 1.5px 0;
  border-radius: 0 0 3px 0;
}

.rg-carrier-brand-sub {
  margin: 10px 0 0;
  font-size: 9px;
  font-weight: 700;
  color: var(--cr-brand-sub);
  letter-spacing: .22em;
}

/* ── カード類のアクセント上書き（既定のミントを置換） ── */
[data-theme="docomo"] .rg-course-card:hover,
[data-theme="au"] .rg-course-card:hover {
  border-color: var(--cr-hover-border);
  background: var(--cr-hover-bg);
  box-shadow: 0 4px 18px var(--cr-hover-shadow);
}

[data-theme="docomo"] .rg-course-point-label,
[data-theme="au"] .rg-course-point-label {
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
}

[data-theme="docomo"] .rg-course-card-action,
[data-theme="au"] .rg-course-card-action {
  background: var(--cr-hover-bg);
}

[data-theme="docomo"] .rg-billing-badge,
[data-theme="au"] .rg-billing-badge {
  background: var(--cr-badge-bg);
  color: var(--cr-badge-fg);
  border-color: var(--cr-badge-border);
  white-space: normal;
  line-height: 1.7;
}

[data-theme="docomo"] .rg-info-notice,
[data-theme="au"] .rg-info-notice {
  background: var(--cr-notice-bg);
  border-color: var(--cr-notice-border);
}

/* 動きを控える設定の端末ではアニメーションを止める */
@media (prefers-reduced-motion: reduce) {
  .rg-hero-shine,
  .rg-hero-spark,
  [data-theme="docomo"] .rg-hero,
  [data-theme="au"] .rg-hero,
  [data-theme="docomo"] .rg-ribbon,
  [data-theme="au"] .rg-ribbon,
  [data-theme="docomo"] .rg-btn::after,
  [data-theme="au"] .rg-btn::after {
    animation: none;
  }
}


/* ????????????????????????????????????
   d払い / docomo（data-theme="docomo"）
   ドコモレッド + 「無料」はゴールド
???????????????????????????????????? */
.sub-page[data-theme="docomo"] {
  --cr-tint: rgba(255, 64, 82, .3);
  --cr-base: linear-gradient(168deg, #240a0e 0%, #150609 55%, #0d0507 100%);
  --cr-frame: linear-gradient(120deg, #ff5964 0%, #ffa03d 22%, #ff2d6b 45%, #e60012 68%, #ff5964 100%);
  --cr-shadow: rgba(230, 0, 18, .28);
  --cr-bloom: radial-gradient(ellipse at 50% 50%,
    rgba(255, 92, 108, .5) 0%, rgba(255, 45, 107, .18) 40%, transparent 72%);
  --cr-ribbon: linear-gradient(96deg, #ff2d3d 0%, #ff7a3d 48%, #ff2d6b 100%);
  --cr-ribbon-ink: rgba(90, 0, 6, .5);
  --cr-ribbon-shadow: rgba(255, 45, 61, .45);
  --cr-kind: rgba(255, 205, 210, .72);
  --cr-free: linear-gradient(178deg, #fffdf3 0%, #ffefa0 36%, #ffd24a 62%, #ffab1c 100%);
  --cr-free-glow: rgba(255, 208, 74, .95);
  --cr-free-halo: rgba(255, 148, 26, .55);
  --cr-num: #ffd95e;
  --cr-num-glow: rgba(255, 200, 60, .75);
  --cr-btn: linear-gradient(135deg, #ff4a54 0%, #e60012 55%, #bf000f 100%);
  --cr-btn-shadow: rgba(230, 0, 18, .42);
  --cr-btn-shadow-hover: rgba(230, 0, 18, .6);
  --cr-hover-border: rgba(255, 74, 84, .5);
  --cr-hover-bg: rgba(255, 74, 84, .05);
  --cr-hover-shadow: rgba(255, 45, 61, .14);
  --cr-badge-bg: rgba(255, 74, 84, .1);
  --cr-badge-fg: #ff8e97;
  --cr-badge-border: rgba(255, 74, 84, .28);
  --cr-notice-bg: rgba(255, 74, 84, .06);
  --cr-notice-border: rgba(255, 74, 84, .2);
  --cr-brand-border: rgba(255, 74, 84, .2);
  --cr-brand-tint: rgba(255, 60, 78, .14);
  --cr-brand-sub: rgba(255, 140, 150, .5);
  --cr-bracket: rgba(255, 74, 84, .55);

  background: radial-gradient(
    ellipse 90% 24% at 50% 0%,
    rgba(255, 64, 80, .09) 0%,
    transparent 70%
  );
}

/* ── d払いロゴ（角丸レッドバッジ + 「払い」） ── */
.rg-dpay {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  flex-shrink: 0;
  vertical-align: middle;
}

.rg-dpay-d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding-bottom: 2px;
  border-radius: 7px;
  background: linear-gradient(155deg, #ff4a54 0%, #e60012 52%, #b00010 100%);
  box-shadow: 0 2px 8px rgba(214, 0, 20, .45),
              inset 0 1px 0 rgba(255, 255, 255, .34);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

.rg-dpay-txt {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
  letter-spacing: .04em;
  text-transform: none;
}

/* コースカード内（小） */
.rg-dpay--sm { gap: 4px; }

.rg-dpay--sm .rg-dpay-d {
  width: 18px;
  height: 18px;
  padding-bottom: 1px;
  border-radius: 5px;
  font-size: 13px;
}

.rg-dpay--sm .rg-dpay-txt { font-size: 12px; }

/* ブランドヘッダー内（大） */
.rg-dpay--lg { gap: 9px; }

.rg-dpay--lg .rg-dpay-d {
  width: 41px;
  height: 41px;
  padding-bottom: 3px;
  border-radius: 11px;
  font-size: 30px;
}

.rg-dpay--lg .rg-dpay-txt {
  font-size: 24px;
  color: #fff;
}

/* 赤ボタン内はロゴを白基調に反転 */
[data-theme="docomo"] .rg-btn .rg-dpay-d {
  background: linear-gradient(160deg, #fff 0%, #ffe6e8 100%);
  color: #e60012;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .3),
              inset 0 -1px 0 rgba(190, 0, 15, .18);
}

[data-theme="docomo"] .rg-btn .rg-dpay-txt {
  color: #fff;
  text-shadow: 0 1px 3px rgba(90, 0, 6, .4);
}


/* ????????????????????????????????????
   auかんたん決済（data-theme="au"）
   auオレンジ + 「無料」はホワイト→アンバー
???????????????????????????????????? */
.sub-page[data-theme="au"] {
  --cr-tint: rgba(255, 132, 30, .22);
  --cr-base: linear-gradient(168deg, #1e0f03 0%, #110802 55%, #090401 100%);
  --cr-frame: linear-gradient(120deg, #ffb03d 0%, #ff7a1f 22%, #ffd24a 45%, #eb5505 68%, #ffb03d 100%);
  --cr-shadow: rgba(235, 85, 5, .3);
  --cr-bloom: radial-gradient(ellipse at 50% 50%,
    rgba(255, 150, 50, .42) 0%, rgba(255, 100, 18, .16) 40%, transparent 72%);
  --cr-ribbon: linear-gradient(96deg, #f2600a 0%, #ff9f2a 48%, #ee5a05 100%);
  --cr-ribbon-ink: rgba(80, 26, 0, .55);
  --cr-ribbon-shadow: rgba(255, 120, 25, .45);
  --cr-kind: rgba(255, 216, 186, .75);
  --cr-free: linear-gradient(178deg, #ffffff 0%, #fff9ea 40%, #ffe4a8 70%, #ffc861 100%);
  --cr-free-glow: rgba(255, 168, 56, 1);
  --cr-free-halo: rgba(255, 108, 14, .65);
  --cr-num: #ffc45e;
  --cr-num-glow: rgba(255, 160, 45, .8);
  --cr-btn: linear-gradient(135deg, #ff9a3d 0%, #eb5505 55%, #c44204 100%);
  --cr-btn-shadow: rgba(235, 85, 5, .45);
  --cr-btn-shadow-hover: rgba(235, 85, 5, .65);
  --cr-hover-border: rgba(255, 138, 61, .5);
  --cr-hover-bg: rgba(255, 138, 61, .05);
  --cr-hover-shadow: rgba(255, 110, 20, .14);
  --cr-badge-bg: rgba(255, 138, 61, .1);
  --cr-badge-fg: #ffb173;
  --cr-badge-border: rgba(255, 138, 61, .28);
  --cr-notice-bg: rgba(255, 138, 61, .06);
  --cr-notice-border: rgba(255, 138, 61, .2);
  --cr-brand-border: rgba(255, 138, 61, .2);
  --cr-brand-tint: rgba(255, 120, 30, .14);
  --cr-brand-sub: rgba(255, 175, 120, .5);
  --cr-bracket: rgba(255, 138, 61, .55);

  background: radial-gradient(
    ellipse 90% 24% at 50% 0%,
    rgba(255, 138, 40, .09) 0%,
    transparent 70%
  );
}

/* ── auロゴ（角丸オレンジバッジ「au」 + サービス名） ── */
.rg-au {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  flex-shrink: 0;
  vertical-align: middle;
}

.rg-au-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 25px;
  padding: 0 7px 2px;
  border-radius: 7px;
  background: linear-gradient(155deg, #ffa63d 0%, #eb5505 52%, #b83f03 100%);
  box-shadow: 0 2px 8px rgba(225, 80, 5, .45),
              inset 0 1px 0 rgba(255, 255, 255, .34);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.01em;
  text-transform: lowercase;
}

.rg-au-txt {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
  letter-spacing: .04em;
  text-transform: none;
}

/* コースカード内（小） */
.rg-au--sm { gap: 5px; }

.rg-au--sm .rg-au-mark {
  min-width: 28px;
  height: 18px;
  padding: 0 5px 1px;
  border-radius: 5px;
  font-size: 12px;
}

.rg-au--sm .rg-au-txt { font-size: 12px; }

/* ブランドヘッダー内（大） */
.rg-au--lg { gap: 10px; }

.rg-au--lg .rg-au-mark {
  min-width: 60px;
  height: 41px;
  padding: 0 11px 3px;
  border-radius: 11px;
  font-size: 28px;
}

.rg-au--lg .rg-au-txt {
  font-size: 22px;
  color: #fff;
}

/* オレンジボタン内はロゴを白基調に反転 */
[data-theme="au"] .rg-btn .rg-au-mark {
  background: linear-gradient(160deg, #fff 0%, #ffeedd 100%);
  color: #eb5505;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .3),
              inset 0 -1px 0 rgba(180, 62, 3, .18);
}

[data-theme="au"] .rg-btn .rg-au-txt {
  color: #fff;
  text-shadow: 0 1px 3px rgba(80, 26, 0, .45);
}

/* auページの「■」始まりの注記を読みやすく整える */
[data-theme="au"] .rg-info-frame p {
  margin: 0 0 6px;
}

[data-theme="au"] .rg-info-frame p:last-child {
  margin-bottom: 0;
}

/* URL がそのまま入る箇所は折り返す */
[data-theme="au"] .rg-service-link {
  overflow-wrap: anywhere;
}


/* ????????????????????????????????????
   ログインページ (.nl-*)
   no_login_sp_1.html ? キャリアボタン
???????????????????????????????????? */

.nl-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  margin: 4px 0 26px;
}

.nl-carrier-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nl-carrier-lead {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 8px 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, .42);
  letter-spacing: .03em;
}

/* ── ベースボタン ── */
.nl-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: none;
  color: #fff;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: filter .2s, box-shadow .2s;
}

/* 斜めを走る光沢 */
.nl-btn::after {
  content: '';
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -60%;
  width: 38%;
  background: linear-gradient(100deg,
    transparent,
    rgba(255, 255, 255, .28) 50%,
    transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: rg-hero-shine 5s cubic-bezier(.5, 0, .5, 1) infinite;
}

.nl-btn-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nl-btn-action {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nl-btn-logo .rg-au-txt   { font-size: 14px; }
.nl-btn-logo .rg-dpay-txt { font-size: 14px; }

.nl-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform .2s;
}

.nl-btn:hover .nl-arrow {
  transform: translateX(4px);
}

/* フォーム要素のリセット */
.nl-carrier-item form {
  margin: 0;
  padding: 0;
  border: none;
}

/* ── docomo（赤） ── */
.nl-btn--docomo {
  background: linear-gradient(135deg, #ff4a54 0%, #e60012 55%, #bf000f 100%);
  box-shadow: 0 6px 24px rgba(230, 0, 18, .40),
              inset 0 1px 0 rgba(255, 255, 255, .26);
  text-shadow: 0 1px 3px rgba(90, 0, 6, .4);
}

.nl-btn--docomo:hover {
  filter: brightness(1.07);
  box-shadow: 0 8px 36px rgba(230, 0, 18, .58),
              inset 0 1px 0 rgba(255, 255, 255, .32);
}

/* ボタン内でロゴを白反転 */
.nl-btn--docomo .rg-dpay-d {
  background: linear-gradient(160deg, #fff 0%, #ffe6e8 100%);
  color: #e60012;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .3),
              inset 0 -1px 0 rgba(190, 0, 15, .18);
}

.nl-btn--docomo .rg-dpay-txt {
  color: #fff;
  text-shadow: 0 1px 3px rgba(90, 0, 6, .4);
}

/* ── au（オレンジ） ── */
.nl-btn--au {
  background: linear-gradient(135deg, #ff9a3d 0%, #eb5505 55%, #c44204 100%);
  box-shadow: 0 6px 24px rgba(235, 85, 5, .40),
              inset 0 1px 0 rgba(255, 255, 255, .22);
  text-shadow: 0 1px 3px rgba(80, 30, 0, .45);
}

.nl-btn--au:hover {
  filter: brightness(1.07);
  box-shadow: 0 8px 36px rgba(235, 85, 5, .58),
              inset 0 1px 0 rgba(255, 255, 255, .28);
}

.nl-btn--au .rg-au-mark {
  background: linear-gradient(160deg, #fff 0%, #ffeedd 100%);
  color: #eb5505;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .3),
              inset 0 -1px 0 rgba(180, 62, 3, .18);
}

.nl-btn--au .rg-au-txt {
  color: #fff;
  text-shadow: 0 1px 3px rgba(80, 30, 0, .45);
}

/* ── SoftBank（ダーク + シルバー） ── */
.nl-btn--softbank {
  background: linear-gradient(135deg, #3d4250 0%, #20242e 58%, #16181f 100%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .55),
              inset 0 1px 0 rgba(255, 255, 255, .12),
              inset 0 0 0 1px rgba(207, 214, 220, .12);
}

.nl-btn--softbank:hover {
  filter: brightness(1.14);
  box-shadow: 0 8px 36px rgba(207, 214, 220, .22),
              inset 0 1px 0 rgba(255, 255, 255, .2),
              inset 0 0 0 1px rgba(207, 214, 220, .2);
}

/* ボタン内の「=」マーク（rg-sb-markを大きめに） */
.nl-btn--softbank .rg-sb-mark {
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}

.nl-sb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nl-sb-logotxt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nl-sb-logotxt-main {
  font-size: 19px;
  font-weight: 800;
  color: rgba(235, 242, 248, .96);
  letter-spacing: .04em;
  line-height: 1;
}

.nl-sb-logotxt-sub {
  font-size: 10px;
  font-weight: 600;
  color: rgba(207, 214, 220, .5);
  letter-spacing: .06em;
}

/* キャリアリード内のSBミニバッジ */
.nl-sb-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(207, 214, 220, .75);
  vertical-align: middle;
}

.nl-sb-sm .rg-sb-mark {
  width: 22px;
  height: 14px;
}

/* 動きを控える設定 */
@media (prefers-reduced-motion: reduce) {
  .nl-btn::after { animation: none; }
  .nl-btn:hover .nl-arrow { transform: none; }
}


/* ????????????????????????????????????
   登録完了ページ (.rok-*)
   regist_ok_sp_1.html ? 成功演出
???????????????????????????????????? */

/* 大チェックマーク演出 */
.rok-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 16px 24px;
  margin: 8px 0 22px;
  text-align: center;
}

.rok-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%,
    rgba(110, 226, 194, .18) 0%, rgba(110, 226, 194, .04) 55%, transparent 75%);
  border: 2px solid rgba(110, 226, 194, .45);
  box-shadow: 0 0 0 8px rgba(110, 226, 194, .06),
              0 0 0 16px rgba(110, 226, 194, .03),
              0 0 40px rgba(110, 226, 194, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: rok-pop .5s cubic-bezier(.18, 1.4, .4, 1) both;
}

@keyframes rok-pop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* CSS チェックマーク（回転L字型） */
.rok-check {
  display: block;
  width: 26px;
  height: 14px;
  border-left: 3.5px solid var(--sub-accent, var(--mint));
  border-bottom: 3.5px solid var(--sub-accent, var(--mint));
  border-radius: 1px;
  transform: rotate(-45deg);
  margin-top: -8px;
  box-shadow: -2px 2px 14px var(--sub-accent, var(--mint));
  animation: rok-draw .45s .4s ease both;
}

@keyframes rok-draw {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); }
  100% { opacity: 1; clip-path: inset(0 0% 0 0); }
}

.rok-check::before,
.rok-check::after { display: none; }

.rok-title {
  font-size: 20px;
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.rok-title em {
  font-style: normal;
  color: var(--sub-accent, var(--mint));
  font-size: 24px;
}

.rok-msg {
  font-size: 14px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.8;
}

/* ログイン情報カード（li-card の流用） */
.rok-cred-wrap {
  margin: 6px 0 22px;
}

.rok-cred-notice {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.8;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 180, 30, .2);
  border-radius: 9px;
  background: rgba(245, 180, 30, .04);
}

/* トップへ戻るボタン */
.rok-top-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  background: var(--sub-accent, var(--mint));
  color: #0d1117;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(110, 226, 194, .3);
  transition: filter .2s, box-shadow .2s;
  box-sizing: border-box;
  margin: 8px 0 20px;
}

.rok-top-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 32px rgba(110, 226, 194, .45);
}

/* アフィリエイト・HR */
.rok-hr-wrap {
  margin-top: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .rok-circle { animation: none; }
  .rok-check::before,
  .rok-check::after { animation: none; }
}


/* ????????????????????????????????????
   IDログインフォーム (.lf-*)
   login_id_sp_1.html
???????????????????????????????????? */

.lf-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  margin: 4px 0 22px;
}

/* フォームカード（li-card と同系統） */
.lf-form-card {
  border: 1px solid rgba(110, 226, 194, .18);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .018);
  box-shadow: 0 0 36px rgba(110, 226, 194, .06),
              inset 0 0 0 1px rgba(110, 226, 194, .04);
}

.lf-form-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  background: rgba(110, 226, 194, .045);
  border-bottom: 1px solid rgba(110, 226, 194, .1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(110, 226, 194, .6);
  text-transform: uppercase;
}

.lf-form-header::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sub-accent, var(--mint));
  box-shadow: 0 0 8px var(--sub-accent, var(--mint));
  flex-shrink: 0;
}

.lf-fields {
  padding: 20px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lf-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
}

.lf-input {
  display: block;
  width: 100% !important;
  min-width: 0;
  padding: 12px 14px;
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(110, 226, 194, .16);
  border-radius: 9px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  font-family: 'Menlo', 'Monaco', 'Consolas', 'Courier New', monospace;
  letter-spacing: .04em;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.lf-input::placeholder {
  color: rgba(255, 255, 255, .2);
}

.lf-input:focus {
  border-color: rgba(110, 226, 194, .52);
  box-shadow: 0 0 0 3px rgba(110, 226, 194, .1),
              inset 0 1px 5px rgba(0, 0, 0, .35);
}

/* 送信ボタン */
.lf-submit {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 15px 20px;
  background: var(--sub-accent, var(--mint));
  border: none;
  border-radius: 12px;
  color: #0d1117;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 22px rgba(110, 226, 194, .3);
  transition: filter .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.lf-submit:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 32px rgba(110, 226, 194, .45);
}

.lf-submit:active {
  filter: brightness(.94);
  box-shadow: 0 4px 14px rgba(110, 226, 194, .25);
}


/* ????????????????????????????????????
   ログイン情報ページ (.li-*)
   login_info_sp_1.html ? セキュリティカード風
???????????????????????????????????? */

/* 保管注意バナー */
.li-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin: 8px 0 22px;
  border: 1px solid rgba(245, 180, 30, .22);
  border-radius: 10px;
  background: rgba(245, 180, 30, .05);
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
}

.li-notice-icon {
  flex-shrink: 0;
  font-size: 15px;
  color: #f5b832;
  margin-top: 1px;
}

/* クレデンシャルカード */
.li-card {
  border: 1px solid rgba(110, 226, 194, .18);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .018);
  box-shadow: 0 0 36px rgba(110, 226, 194, .06),
              inset 0 0 0 1px rgba(110, 226, 194, .04);
}

.li-card-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  background: rgba(110, 226, 194, .045);
  border-bottom: 1px solid rgba(110, 226, 194, .1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(110, 226, 194, .6);
  text-transform: uppercase;
}

/* 左端の点灯インジケーター */
.li-card-header::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sub-accent, var(--mint));
  box-shadow: 0 0 8px var(--sub-accent, var(--mint));
  flex-shrink: 0;
  animation: li-blink 2.8s ease-in-out infinite;
}

@keyframes li-blink {
  0%, 80%, 100% { opacity: 1; }
  90%            { opacity: .25; }
}

.li-fields {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.li-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.li-field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .32);
  text-transform: uppercase;
}

/* 値表示（ターミナル風） */
.li-field-value {
  display: block;
  padding: 12px 15px;
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(110, 226, 194, .15);
  border-radius: 8px;
  font-family: 'Menlo', 'Monaco', 'Consolas', 'Courier New', monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--sub-accent, var(--mint));
  letter-spacing: .05em;
  word-break: break-all;
  line-height: 1.5;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, .4),
              0 0 0 1px rgba(110, 226, 194, .03);
  text-shadow: 0 0 18px rgba(110, 226, 194, .4);
}

/* 区切り線 */
.li-divider {
  height: 1px;
  background: rgba(255, 255, 255, .06);
  margin: 2px 0;
}

@media (prefers-reduced-motion: reduce) {
  .li-card-header::before { animation: none; }
}


/* ????????????????????????????????????
   フッターパーシャル (.footer_wrap / .footer_list)
   ※ comicmint.css の .cm-footer-* と同デザイン
???????????????????????????????????? */

.footer_wrap {
  background: #0f0f10;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 40px 16px 32px;
}

.footer_title {
  display: none;
}

.footer_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer_list li {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.footer_list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .2s;
}

.footer_list li a::after {
  content: '\203A';
  font-size: 15px;
  color: rgba(255, 255, 255, .2);
  transition: color .2s, transform .2s;
}

.footer_list li a:hover {
  color: rgba(255, 255, 255, .85);
}

.footer_list li a:hover::after {
  color: var(--mint);
  transform: translateX(3px);
}

.footer .copy {
  max-width: 480px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .06em;
}


/* ????????????????????????????????????
   ヘッダーパーシャル Home ボタン (.header-home)
???????????????????????????????????? */

.header-home {
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .03em;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.header-home::before {
  content: '\2302';
  font-size: 14px;
  line-height: 1;
}

.header-home:hover {
  border-color: var(--mint);
  color: var(--mint);
  background: rgba(110, 226, 194, .06);
}
