/* ============================================================
   HIT MELODY サブページ共通スタイル (subpage.css)
   ============================================================ */



/* ---------- 変数 ---------- */
:root {
  --sp-brand:       #ff4d7d;
  --sp-brand-deep:  #08080d;
  --sp-brand-tint:  rgba(255,77,125,.12);
  --sp-brand-tint1: rgba(255,77,125,.18);
  --sp-brand-line:  rgba(255,77,125,.35);
  --sp-bg:          #08080d;
  --sp-surface:     #13131b;
  --sp-text:        #f7f7f3;
  --sp-text-sub:    #a0a0b0;
  --sp-text-muted:  rgba(255,255,255,.35);
  --sp-dark:        #08080d;
  --sp-dark-mid:    #13131b;
  --sp-radius:      0px;
  --sp-radius-sm:   0px;
  --sp-font: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

/* ---------- ベースリセット ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sp-font);
  background: var(--sp-bg);
  color: var(--sp-text);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}



 .sp-retire-shori-link {
    text-align: right;
    margin-top: 10px;
    padding-right: 2px;
}
.sp-retire-shori-link__anchor {
    font-size: 12px;
    color: #78efff;
    text-decoration: none;
    border-bottom: 1px dotted rgba(120,239,255,.4);
}


/* ---------- ページラッパー ---------- */
.sp-page {
  min-height: 100vh;
  background: var(--sp-bg);
}

.sp-container {
  max-width: 420px;
  margin: 0 auto;
  padding: 70px 16px 64px;
}

/* ---------- ホームへ戻るボタン (.btn-left) ---------- */
.btn-left {
  margin-bottom: 28px;
}

.btn-left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sp-text-sub);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .15s;
}

.btn-left a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 1px 4px rgba(0,0,0,.3), 0 0 8px rgba(255,77,125,.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='6,2 3,5 6,8' stroke='%23ff4d7d' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.btn-left a:hover {
  color: var(--sp-brand);
}

/* ---------- ページヘッダー ---------- */
.sp-page-header {
  margin-bottom: 28px;
  position: relative;
}

.sp-page-header::after {
  content: "";
  display: block;
  margin-top: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--sp-brand) 0%, rgba(255,77,125,.15) 60%, transparent 100%);
}

.sp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--sp-brand);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sp-section-label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--sp-brand);
  flex-shrink: 0;
}

.sp-page-header h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--sp-text);
  margin: 0;
  padding: 0;
  background: none;
  height: auto;
  text-align: left;
}

/* ---------- ノーティスフレーム (.radius) ---------- */
ul.radius {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

ul.radius li {
  position: relative;
  overflow: hidden;
  border-radius: var(--sp-radius);
  padding: 26px 22px 24px;
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  box-shadow:
    0 16px 48px rgba(0,0,0,.5),
    0 2px 8px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.06);
  isolation: isolate;
  color: rgba(255,255,255,.9);
  line-height: 2;
}

ul.radius li a {
  color: #78efff;
  text-decoration: underline;
  text-decoration-color: rgba(120,239,255,.4);
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color .2s ease;
}

ul.radius li a:hover {
  color: #b8f8ff;
}

/* 上辺グラデーションライン */
ul.radius li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--sp-radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--sp-brand) 0%, rgba(255,77,125,.25) 50%, transparent 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* 右上グロー */
ul.radius li::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,125,.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- アイコン行 ---------- */
.sp-notice-icon-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.sp-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,77,125,.12);
  border: 1px solid rgba(255,77,125,.3);
  color: var(--sp-brand);
  font-size: 14px;
  flex-shrink: 0;
}

.sp-notice-icon-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}

/* ---------- ノーティス本文 ---------- */
.sp-notice-body {
  position: relative;
  z-index: 1;
  font-size: 12.5px;
  line-height: 2;
  color: rgba(255,255,255,.68);
}

.sp-notice-body strong {
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

/* ---------- リードテキスト ---------- */
.sp-lead-text {
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--sp-text-sub);
}

/* ---------- フォームボックス ---------- */
.sp-form-box {
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  padding: 28px 20px;
  box-shadow:
    0 8px 24px rgba(0,0,0,.5),
    0 2px 8px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}

.sp-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sp-brand) 0%, #78efff 50%, var(--sp-brand) 100%);
}

.sp-form-box form {
  margin: 0;
}

.sp-form-field {
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,.55);
}

/* localize()が生成するtextareaにも強制適用 */
.sp-form-field textarea,
.sp-form-field input[type="text"] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 160px;
  padding: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: 2px solid rgba(255,77,125,.4);
  color: #fff;
  font-size: 15px;
  font-family: var(--sp-font);
  line-height: 1.7;
  resize: vertical;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s ease, background .2s ease;
}

.sp-form-field textarea:focus,
.sp-form-field input[type="text"]:focus {
  background: rgba(255,77,125,.07);
  border-bottom-color: var(--sp-brand);
  box-shadow: 0 4px 16px rgba(255,77,125,.15);
}

.sp-form-field textarea::placeholder,
.sp-form-field input[type="text"]::placeholder {
  color: rgba(255,255,255,.25);
}

.sp-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: var(--sp-text);
  font-size: 14px;
  font-family: var(--sp-font);
  line-height: 1.7;
  resize: vertical;
  transition: border-color .2s ease;
  -webkit-appearance: none;
}

.sp-textarea::placeholder {
  color: rgba(255,255,255,.25);
}

.sp-textarea:focus {
  outline: none;
  border-color: var(--sp-brand);
}

.sp-form-actions {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* ---------- サブミットボタン ---------- */
@keyframes sp-btn-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(255,77,125,.1),
      0 2px 12px rgba(0,0,0,.3);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(255,77,125,.18),
      0 4px 20px rgba(255,77,125,.25);
  }
}

@keyframes sp-btn-glow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sp-btn-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  padding: 0 32px;
  border: 1px solid rgba(255,77,125,.5);
  background: rgba(255,77,125,.1);
  color: var(--sp-brand);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sp-font);
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  animation: sp-btn-pulse 3s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}

/* 回転グロー */
.sp-btn-submit::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255,77,125,.12) 60deg,
    transparent 120deg
  );
  animation: sp-btn-glow-rotate 4s linear infinite;
  pointer-events: none;
  z-index: -1;
}

/* リップルエフェクト用 */
.sp-btn-submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,77,125,.25);
  transform: translate(-50%, -50%);
  transition: width .6s ease, height .6s ease, opacity .6s ease;
  opacity: 0;
  pointer-events: none;
}

.sp-btn-submit:active {
  transform: scale(0.96);
}

.sp-btn-submit:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
  transition: width .4s ease, height .4s ease, opacity .4s ease;
}

/* ---------- CTAボックス ---------- */
.sp-cta-box {
  margin-bottom: 32px;
  text-align: center;
}

/* ---------- プライマリーボタン ---------- */
@keyframes sp-primary-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.sp-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 36px;
  background: linear-gradient(135deg, var(--sp-brand) 0%, #d91b5c 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--sp-font);
  letter-spacing: .1em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 4px 20px rgba(255,77,125,.4),
    0 0 40px rgba(255,77,125,.15),
    0 1px 3px rgba(0,0,0,.3);
  overflow: hidden;
  isolation: isolate;
}

/* シマーエフェクト */
.sp-btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: sp-primary-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.sp-btn-primary:active {
  transform: scale(0.97);
  box-shadow:
    0 2px 12px rgba(255,77,125,.35),
    0 1px 2px rgba(0,0,0,.3);
}

/* ---------- リンクボックス ---------- */
.sp-links-box {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.sp-links-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-links-list li {
  margin: 0; padding: 0;
}

.sp-links-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sp-text-sub);
  text-decoration: none;
  transition: color .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.sp-links-list a::before {
  content: "\25A0";
  font-size: 8px;
  color: var(--sp-brand);
  flex-shrink: 0;
}

.sp-links-list a:active {
  color: var(--sp-brand);
}

/* ---------- 退会確認アクション ---------- */
.sp-retire-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* キャンセルボタン（しない） */
.taikai_no {
  text-align: center;
}

.taikai_no a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 54px;
  padding: 0 32px;
  background: linear-gradient(135deg, var(--sp-brand) 0%, #d91b5c 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--sp-font);
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 4px 18px rgba(255,77,125,.4),
    0 1px 3px rgba(0,0,0,.3);
  overflow: hidden;
}

.taikai_no a::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: sp-primary-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.taikai_no a:active {
  transform: scale(0.97);
}

/* 確認ボタン（する） */
.taikai_yes {
  text-align: center;
}

.taikai_yes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 54px;
  padding: 0 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sp-font);
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.taikai_yes a:active {
  background: rgba(255,255,255,.04);
  color: var(--sp-text-sub);
  border-color: rgba(255,255,255,.2);
}

/* ---------- 特定商取引法表示 ---------- */
ul.radius.sp-tokutei-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-tokutei-item {
  position: relative;
  overflow: hidden;
  padding: 20px 18px;
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  box-shadow:
    0 4px 16px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.05);
  isolation: isolate;
}

.sp-tokutei-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, var(--sp-brand) 0%, rgba(255,77,125,.2) 50%, transparent 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sp-tokutei-title {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  margin: 0 0 10px 0;
  padding: 0 0 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: none;
  height: auto;
  text-align: left;
}

.sp-tokutei-subtitle {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
}

.sp-tokutei-content {
  position: relative;
  z-index: 1;
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(255,255,255,.65);
}

.sp-tokutei-content p {
  margin: 0 0 8px 0;
  padding: 0;
  background: none;
  height: auto;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.sp-tokutei-content p:last-child {
  margin-bottom: 0;
}

/* ---------- お問い合わせセクション ---------- */
.sp-contact-section {
  margin-top: 32px;
}

.sp-contact-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sp-text);
  margin: 0 0 16px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: none;
  height: auto;
  text-align: left;
}

.sp-contact-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-contact-list li {
  margin: 0; padding: 0;
}

.sp-contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--sp-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.sp-contact-list a::after {
  content: "\203A";
  font-size: 22px;
  color: var(--sp-brand);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
}

.sp-contact-list a:active {
  background: rgba(255,77,125,.08);
  border-color: rgba(255,77,125,.25);
  box-shadow: 0 2px 12px rgba(255,77,125,.15);
}

/* ---------- サンクスページ ---------- */
.sp-thanks-body {
  font-size: 13px;
}

.sp-thanks-body p {
  margin: 0 0 12px 0;
  padding: 0;
  background: none;
  height: auto;
  font-size: inherit;
  color: inherit;
  line-height: 1.9;
}

.sp-thanks-body p:last-child {
  margin-bottom: 0;
}

.sp-thanks-highlight {
  background: linear-gradient(transparent 60%, rgba(255,77,125,.25) 60%);
  color: var(--sp-brand);
  font-weight: bold;
  padding: 0 4px;
}

/* ---------- お問い合わせ方法選択 ---------- */
.sp-contact-method-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  margin: 16px 0 14px 0;
  padding: 0;
  background: none;
  height: auto;
  text-align: left;
}

.sp-select-box {
  margin-top: 14px;
}

.sp-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-family: var(--sp-font);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,77,125,0.8)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  cursor: pointer;
  transition: border-color .2s ease;
}

.sp-select:focus {
  outline: none;
  border-color: var(--sp-brand);
}

.sp-contact-iframe {
  border: none;
  margin-top: 24px;
}

/* ---------- 電話問い合わせボックス ---------- */
.sp-tell-box {
  margin-top: 24px;
}

.sp-tell-checks {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-tell-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sp-tell-check-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--sp-brand);
}

.sp-tell-check-item span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.sp-tell-button {
  margin-top: 24px;
  text-align: center;
}

.sp-btn-tell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  height: 54px;
  padding: 0 32px;
  background: linear-gradient(135deg, #3dffa0 0%, #00c97a 100%);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 4px 18px rgba(61,255,160,.3),
    0 0 30px rgba(61,255,160,.1);
  transition: transform .15s ease, box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
}

.sp-btn-tell-icon {
  font-size: 20px;
}

.sp-btn-tell:active {
  transform: scale(0.97);
}

/* ---------- QRコードセクション ---------- */
.sp-qr-section {
  margin-top: 0;
}

.sp-qr-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sp-text);
  margin: 0 0 20px 0;
  padding: 0;
  background: none;
  height: auto;
  text-align: center;
}

.sp-qr-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10px 0;
}

.sp-qr-site-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}

.sp-qr-image {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-qr-image img {
  display: block;
  max-width: 100%;
  height: auto;
  background: #fff;
  padding: 12px;
  box-shadow:
    0 4px 16px rgba(0,0,0,.4),
    0 0 20px rgba(255,77,125,.1);
}

.sp-qr-url {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  word-break: break-all;
  line-height: 1.6;
  margin-top: 20px;
}

/* ---------- Q&Aリスト ---------- */
.sp-qa-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-qa-item {
  position: relative;
  background: linear-gradient(135deg, #1c1626 0%, #13131b 100%);
  border: 1px solid rgba(255,77,125,.2);
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0,0,0,.4),
    0 0 30px rgba(255,77,125,.06);
  isolation: isolate;
}

.sp-qa-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--sp-brand) 0%, rgba(255,77,125,.4) 100%);
  z-index: 1;
}

.sp-qa-item::after {
  content: "\266A";
  position: absolute;
  top: 16px; right: 16px;
  font-size: 32px;
  color: rgba(255,77,125,.08);
  opacity: .6;
  z-index: 0;
  pointer-events: none;
}

.sp-qa-question {
  position: relative;
  z-index: 2;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sp-text);
  margin: 0;
  padding: 18px 50px 14px 24px;
  background: rgba(255,77,125,.06);
  height: auto;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sp-qa-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--sp-brand) 0%, #d91b5c 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(255,77,125,.4);
}

.sp-qa-answer {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 2;
  color: var(--sp-text-sub);
  padding: 18px 24px 20px 24px;
}

.sp-qa-answer::before {
  content: "A";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,77,125,.1);
  color: var(--sp-brand);
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.sp-qa-answer p {
  margin: 0 0 10px 30px;
  padding: 0;
  background: none;
  height: auto;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.sp-qa-answer p:first-child { margin-top: 4px; }
.sp-qa-answer p:last-child  { margin-bottom: 0; }

/* ---------- プライバシーポリシー ---------- */
.sp-privacy-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.sp-privacy-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px 18px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.sp-privacy-section--large {
  background: rgba(255,77,125,.04);
  border-color: rgba(255,77,125,.15);
}

.sp-privacy-section-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sp-brand);
  margin: 0 0 12px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255,77,125,.2);
  background: none;
  height: auto;
  text-align: left;
}

.sp-privacy-section-content {
  font-size: 13px;
  line-height: 1.95;
  color: var(--sp-text-sub);
}

.sp-privacy-section-content strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sp-text);
  margin: 16px 0 8px 0;
}

.sp-privacy-section-content strong:first-child {
  margin-top: 0;
}

/* ---------- メンテナンスページ ---------- */
.sp-maintenance-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-bg);
}

.sp-maintenance-page .sp-container {
  padding: 40px 16px;
}

.sp-maintenance-content {
  text-align: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,77,125,.25);
  padding: 48px 24px;
  box-shadow:
    0 8px 40px rgba(0,0,0,.5),
    0 0 60px rgba(255,77,125,.1);
  max-width: 360px;
  margin: 0 auto;
}

.sp-maintenance-icon {
  font-size: 64px;
  margin-bottom: 24px;
  animation: maintenance-rotate 3s linear infinite;
}

@keyframes maintenance-rotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}

.sp-maintenance-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.3;
  color: var(--sp-brand);
  margin: 0 0 20px 0;
  padding: 0;
  background: none;
  height: auto;
  text-align: center;
  text-shadow: 0 0 30px rgba(255,77,125,.4);
}

.sp-maintenance-message {
  font-size: 14px;
  line-height: 2;
  color: var(--sp-text-sub);
}

/* ---------- 利用規約 ---------- */
.sp-kiyaku-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.sp-kiyaku-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px 18px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.sp-kiyaku-section--highlight {
  background: rgba(255,230,100,.04);
  border-color: rgba(255,233,107,.2);
  box-shadow: 0 2px 8px rgba(255,233,107,.06);
}

.sp-kiyaku-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sp-brand);
  margin: 0 0 12px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255,77,125,.2);
  background: none;
  height: auto;
  text-align: left;
}

.sp-kiyaku-content {
  font-size: 13px;
  line-height: 1.95;
  color: var(--sp-text-sub);
}

.sp-kiyaku-content p {
  margin: 8px 0;
  padding: 0;
  background: none;
  height: auto;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

/* ---------- テスト情報ボックス ---------- */
.sp-test-info {
  margin-top: 24px;
  background: rgba(255,233,107,.05);
  border: 1px solid rgba(255,233,107,.25);
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(255,233,107,.08);
}

.sp-test-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #ffe96b;
  margin-bottom: 10px;
}

.sp-test-info-content {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,233,107,.7);
}

/* ---------- ご利用ガイド ---------- */
.sp-guide-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-guide-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px 18px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.sp-guide-section--highlight {
  background: rgba(255,77,125,.04);
  border-color: rgba(255,77,125,.15);
  box-shadow: 0 2px 10px rgba(255,77,125,.06);
}

.sp-guide-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sp-brand);
  margin: 0 0 12px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255,77,125,.2);
  background: none;
  height: auto;
  text-align: left;
}

.sp-guide-content {
  font-size: 13px;
  line-height: 1.95;
  color: var(--sp-text-sub);
}

.sp-guide-content p {
  margin: 8px 0;
  padding: 0;
  background: none;
  height: auto;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

/* ---------- 退会完了ページ ---------- */
.sp-thanks-message {
  margin-bottom: 32px;
  text-align: center;
}

.sp-thanks-message-main {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--sp-text);
  margin-bottom: 24px;
  padding: 20px 16px;
  background: rgba(255,77,125,.06);
  border: 1px solid rgba(255,77,125,.25);
  box-shadow:
    0 2px 12px rgba(0,0,0,.3),
    0 0 30px rgba(255,77,125,.08);
}

.sp-thanks-message-sub {
  font-size: 13px;
  line-height: 2;
  color: var(--sp-text-sub);
  padding: 0 8px;
}

.sp-section-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sp-text);
  text-align: center;
  margin: 32px 0 20px 0;
  padding: 0;
  background: none;
  height: auto;
}

/* キャリア別セクション */
.sp-carrier-sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
  position: relative;
}

.sp-carrier-section {
  position: relative;
  padding: 22px 20px 20px 64px;
  background: transparent;
  overflow: hidden;
}

.sp-carrier-section::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 48px; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-carrier-section--au::before      { background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%); }
.sp-carrier-section--docomo::before  { background: linear-gradient(135deg, #e60012 0%, #ff3344 100%); }
.sp-carrier-section--softbank::before{ background: linear-gradient(135deg, #0078be 0%, #0099dd 100%); }

.sp-carrier-section::after {
  content: "";
  position: absolute;
  left: 48px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.04) 100%);
}

.sp-carrier-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sp-text);
  margin: 0 0 12px 0;
  padding: 0;
  background: none;
  height: auto;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-carrier-title::before {
  content: "\1F4F1";
  font-size: 18px;
}

.sp-carrier-title span {
  background: linear-gradient(135deg, var(--sp-brand) 0%, #ff8cb3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.sp-carrier-content {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--sp-text-sub);
  padding-left: 8px;
  border-left: 2px solid rgba(255,255,255,.08);
}

/* 楽曲リスト */
.sp-track-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-track-item { margin: 0; padding: 0; }

.sp-track-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.sp-track-link:active {
  background: rgba(255,77,125,.08);
  border-color: rgba(255,77,125,.25);
}

.sp-track-thumb {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: #1c1626;
  overflow: hidden;
}

.sp-track-thumb img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}

.sp-track-info { flex: 1; min-width: 0; }

.sp-track-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sp-text);
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-track-artist {
  font-size: 12px;
  color: var(--sp-text-sub);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-track-tieup {
  font-size: 11px;
  color: var(--sp-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-list-more {
  margin-bottom: 24px;
  text-align: center;
}

.sp-btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--sp-text-sub);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.sp-btn-more:active {
  background: rgba(255,77,125,.1);
  border-color: rgba(255,77,125,.3);
}

/* 退会注意事項 */
.sp-retire-notice {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 20px 18px;
  margin-bottom: 24px;
  box-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.sp-retire-notice-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sp-text);
  margin: 0 0 12px 0;
  padding: 0;
  background: none;
  height: auto;
  text-align: left;
}

.sp-retire-notice-content {
  font-size: 11px;
  line-height: 1.9;
  color: var(--sp-text-sub);
}

.sp-retire-link {
  color: var(--sp-brand);
  text-decoration: underline;
  font-weight: 600;
}

/* 広告ボックス */
.sp-ad-box {
  margin: 24px 0;
  text-align: center;
  min-height: 50px;
}

/* ---------- 退会メッセージ ---------- */
.sp-retire-message {
  font-size: 14px;
  line-height: 2;
  color: var(--sp-text-sub);
  margin-bottom: 32px;
  padding: 20px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.sp-retire-message strong {
  color: var(--sp-brand);
  font-weight: 700;
}

/* 最終退会ボタン */
.sp-btn-retire-final {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--sp-font);
  letter-spacing: .1em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}

.sp-btn-retire-final:active {
  transform: scale(0.97);
  opacity: 0.7;
}

/* シンプルフッター */
.sp-simple-footer {
  padding: 24px 16px;
  text-align: center;
  font-size: 11px;
  color: var(--sp-text-muted);
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ---------- 注意ヘッダー ---------- */
.sp-notice-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 20px 0;
  padding: 0;
}

.sp-notice-header-icon {
  font-size: 12px;
  color: var(--sp-brand);
  letter-spacing: .1em;
}

.sp-notice-header-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--sp-text);
  letter-spacing: .08em;
}

/* ---------- ポイント警告 ---------- */
.sp-point-alert {
  margin-bottom: 32px;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  border-top: 3px solid var(--sp-brand);
  border-bottom: 3px solid var(--sp-brand);
  box-shadow:
    0 8px 40px rgba(255,77,125,.2),
    inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.sp-point-alert::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,77,125,.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: point-glow-breathe 3s ease-in-out infinite;
}

@keyframes point-glow-breathe {
  0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%, -50%) scale(1.15); }
}

.sp-point-alert::after {
  content: "\266A";
  position: absolute;
  top: 12px; right: 16px;
  font-size: 48px;
  color: rgba(255,77,125,.12);
  pointer-events: none;
  animation: point-note-float 4s ease-in-out infinite;
}

@keyframes point-note-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .5; }
  50%       { transform: translateY(-8px) rotate(5deg); opacity: .9; }
}

.sp-point-alert-icon {
  position: relative;
  z-index: 1;
  font-size: 28px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 10px rgba(255,77,125,.6));
}

.sp-point-alert-text {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}

.sp-point-alert-number {
  display: inline-block;
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--sp-brand) 0%, #ff8cb3 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px;
  filter: drop-shadow(0 0 14px rgba(255,77,125,.7));
  animation: point-number-shine 2s ease-in-out infinite;
}

@keyframes point-number-shine {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255,77,125,.6)); }
  50%       { filter: drop-shadow(0 0 22px rgba(255,77,125,1)); }
}

.sp-point-alert-unit {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}

/* 退会注意リスト */
.sp-retire-caution {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 20px 18px;
  margin-bottom: 32px;
  box-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.sp-retire-caution-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-retire-caution-list li {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--sp-text-sub);
  padding-left: 20px;
  position: relative;
}

.sp-retire-caution-list li::before {
  content: "\25A0";
  position: absolute;
  left: 0; top: 0;
  font-size: 10px;
  color: var(--sp-brand);
}

/* 解約ボタン */
.blue02-full {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 56px;
  padding: 0 36px;
  background: linear-gradient(135deg, #78efff 0%, #00b8d9 100%);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--sp-font);
  letter-spacing: .1em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 4px 20px rgba(120,239,255,.35),
    0 0 40px rgba(120,239,255,.1),
    0 1px 3px rgba(0,0,0,.3);
  overflow: hidden;
}

.blue02-full::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: sp-primary-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.blue02-full:active {
  transform: scale(0.97);
  box-shadow:
    0 2px 12px rgba(120,239,255,.3),
    0 1px 2px rgba(0,0,0,.3);
}

/* ---------- コースリスト ---------- */
.sp-course-list {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-course-list li { margin: 0; padding: 0; }

.sp-course-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--sp-text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.sp-course-list a::after {
  content: "\203A";
  font-size: 24px;
  color: var(--sp-brand);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
}

.sp-course-list a:active {
  background: rgba(255,77,125,.08);
  border-color: rgba(255,77,125,.25);
  box-shadow: 0 2px 10px rgba(255,77,125,.12);
}

/* ---------- リストメッセージ ---------- */
.sp-list-message {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--sp-text-sub);
}

/* ---------- 楽曲リスト ---------- */
.sp-music-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-music-item { margin: 0; padding: 0; }

.sp-music-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.sp-music-link:active {
  background: rgba(255,77,125,.08);
  border-color: rgba(255,77,125,.25);
  box-shadow: 0 2px 12px rgba(255,77,125,.15);
}

.sp-music-thumb {
  width: 70px; height: 70px;
  flex-shrink: 0;
  background: #1c1626;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sp-music-thumb::before {
  content: "\266A";
  position: absolute;
  font-size: 32px;
  color: rgba(255,255,255,.06);
  pointer-events: none;
}

.sp-music-thumb img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.sp-music-info { flex: 1; min-width: 0; }

.sp-music-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sp-text);
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sp-music-artist {
  font-size: 13px;
  color: var(--sp-text-sub);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-music-tieup {
  font-size: 11px;
  color: var(--sp-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-music-arrow {
  font-size: 18px;
  color: var(--sp-brand);
  flex-shrink: 0;
  line-height: 1;
}

/* ---------- サブヘッダー ---------- */
.sp-subheader {
  margin-bottom: 20px;
}

.sp-subheader-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--sp-text);
  margin: 0; padding: 0;
  background: none;
  height: auto;
  text-align: left;
}

/* ---------- ポイント表示 ---------- */
.sp-point-display {
  display: block;
  text-align: center;
  padding: 16px 20px;
  margin-bottom: 24px;
  background: rgba(255,77,125,.07);
  border: 1px solid rgba(255,77,125,.25);
  box-shadow:
    0 2px 12px rgba(0,0,0,.3),
    0 0 30px rgba(255,77,125,.08);
}

.sp-point-display font {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  vertical-align: inherit;
}

.sp-point-display-label {
  display: inline;
  font-size: 13px;
  font-weight: 500;
  color: var(--sp-text-sub);
  margin-right: 8px;
}

.sp-point-display-value {
  display: inline;
  font-size: 28px;
  font-weight: 800;
  color: var(--sp-brand);
  letter-spacing: -.02em;
  margin: 0 6px;
  text-shadow: 0 0 20px rgba(255,77,125,.5);
}

.sp-point-display-unit {
  display: inline;
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-brand);
}

/* ---------- ヘッダーアクション ---------- */
.sp-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.btn-right a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 16px 7px 12px;
  color: var(--sp-text-sub);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .15s;
}

.btn-right a::after {
  content: "\203A";
  font-size: 17px;
  line-height: 1;
  color: var(--sp-brand);
  margin-left: 1px;
}

.btn-right a:hover { color: var(--sp-brand); }

/* ---------- 詳細テーブル ---------- */
.sp-detail-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--sp-brand);
  margin: 24px 0 12px 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,77,125,.2);
}

.sp-detail-table-wrap {
  margin-bottom: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  overflow: hidden;
}

.sp-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.sp-detail-table tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sp-detail-table tr:last-child { border-bottom: none; }

.sp-detail-table th {
  width: 100px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 600;
  color: var(--sp-text-sub);
  text-align: left;
  vertical-align: top;
}

.sp-detail-table td {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--sp-text);
}

/* ---------- 詳細アクション ---------- */
.sp-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
}

.sp-btn-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 50px;
  padding: 0 28px;
  border: 1px solid rgba(255,77,125,.5);
  background: rgba(255,77,125,.08);
  color: var(--sp-brand);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sp-font);
  letter-spacing: .08em;
  cursor: pointer;
  transition: opacity .2s ease;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 0 0 4px rgba(255,77,125,.06),
    0 2px 12px rgba(0,0,0,.3);
}

.sp-btn-edit:active { opacity: 0.7; }

.sp-btn-destroy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 50px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: var(--sp-text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sp-font);
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s ease;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.sp-btn-destroy:active {
  background: rgba(255,255,255,.04);
  color: var(--sp-text-sub);
  border-color: rgba(255,255,255,.2);
}

/* ---------- 詳細リンク ---------- */
.sp-detail-links {
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-detail-links li { margin: 0; padding: 0; }

.sp-detail-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--sp-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.sp-detail-links a::after {
  content: "\203A";
  font-size: 22px;
  color: var(--sp-brand);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
}

.sp-detail-links a:active {
  background: rgba(255,77,125,.08);
  border-color: rgba(255,77,125,.25);
  box-shadow: 0 2px 10px rgba(255,77,125,.12);
}

/* ---------- ダウンロードカード ---------- */
.sp-download-card {
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  border: 1px solid rgba(255,77,125,.25);
  padding: 28px 20px;
  text-align: center;
  box-shadow:
    0 4px 24px rgba(0,0,0,.5),
    0 0 50px rgba(255,77,125,.08);
  position: relative;
  overflow: hidden;
}

.sp-download-card::before {
  content: "\266A";
  position: absolute;
  top: 20px; right: 20px;
  font-size: 64px;
  color: rgba(255,77,125,.06);
  pointer-events: none;
}

.sp-download-title {
  position: relative;
  z-index: 1;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--sp-text);
  margin: 0 0 12px 0;
  padding: 0;
  background: none;
  height: auto;
  text-align: center;
}

.sp-download-kana {
  font-size: 13px;
  font-weight: 400;
  color: var(--sp-text-sub);
}

.sp-download-artist {
  font-size: 15px;
  font-weight: 600;
  color: var(--sp-brand);
  margin-bottom: 20px;
  line-height: 1.6;
  text-shadow: 0 0 20px rgba(255,77,125,.3);
}

.sp-download-artist-kana {
  font-size: 12px;
  font-weight: 400;
  color: var(--sp-text-sub);
}

.sp-download-jacket {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.sp-download-jacket img {
  display: block;
  box-shadow:
    0 8px 40px rgba(0,0,0,.6),
    0 0 40px rgba(255,77,125,.15),
    0 2px 8px rgba(0,0,0,.4);
  border: 1px solid rgba(255,77,125,.15);
}

.sp-download-meta {
  font-size: 13px;
  line-height: 1.8;
  color: var(--sp-text-sub);
  margin: 20px 0;
}

.sp-download-point {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  margin: 20px 0;
  background: rgba(255,77,125,.08);
  border: 1px solid rgba(255,77,125,.3);
  box-shadow:
    0 2px 16px rgba(0,0,0,.3),
    0 0 30px rgba(255,77,125,.1);
  z-index: 1;
}

.sp-download-point::before {
  content: "P";
  position: absolute;
  top: -8px; right: -8px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-brand);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(255,77,125,.5);
}

.sp-download-point-label {
  display: inline;
  font-size: 13px;
  font-weight: 600;
  color: var(--sp-text-sub);
  margin-right: 8px;
}

.sp-download-point-value {
  display: inline;
  font-size: 26px;
  font-weight: 800;
  color: var(--sp-brand);
  letter-spacing: -.02em;
  text-shadow: 0 0 20px rgba(255,77,125,.5);
}

.sp-download-action {
  margin: 24px 0;
}

/* ダウンロードボタン */
.sp-btn-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 58px;
  padding: 0 36px;
  background: linear-gradient(135deg, var(--sp-brand) 0%, #d91b5c 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--sp-font);
  letter-spacing: .12em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 6px 24px rgba(255,77,125,.45),
    0 0 50px rgba(255,77,125,.2),
    0 2px 6px rgba(0,0,0,.3);
  overflow: hidden;
}

.sp-btn-download::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: sp-primary-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.sp-btn-download:active { transform: scale(0.97); }

.sp-btn-download--redownload {
  background: linear-gradient(135deg, #ff8cb3 0%, #ff4d7d 100%);
  box-shadow:
    0 6px 24px rgba(255,77,125,.35),
    0 2px 6px rgba(0,0,0,.3);
}

.sp-btn-download--add-point {
  background: linear-gradient(135deg, #78efff 0%, #00b8d9 100%);
  color: #000;
  box-shadow:
    0 6px 24px rgba(120,239,255,.4),
    0 2px 6px rgba(0,0,0,.3);
}

/* ポイント不足表示 */
.sp-point-shortage {
  padding: 24px 20px;
  margin: 20px 0;
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  border: 1px solid rgba(255,77,125,.3);
  text-align: center;
  box-shadow:
    0 6px 28px rgba(0,0,0,.5),
    0 0 40px rgba(255,77,125,.12);
  position: relative;
  overflow: hidden;
}

.sp-point-shortage::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,77,125,.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sp-point-shortage-icon {
  position: relative;
  z-index: 1;
  font-size: 36px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 10px rgba(255,77,125,.6));
}

.sp-point-shortage-text {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}

.sp-point-shortage-value {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--sp-brand) 0%, #ff8cb3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0;
  filter: drop-shadow(0 0 14px rgba(255,77,125,.7));
}

.sp-point-shortage-message {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

/* 確認メッセージ */
.sp-download-confirm {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,77,125,.15);
  font-size: 12px;
  line-height: 1.8;
  color: var(--sp-text-sub);
}

.sp-download-confirm-icon {
  font-size: 11px;
  color: var(--sp-brand);
  margin: 0 6px;
}

.sp-download-confirm-text {
  font-weight: 700;
  color: var(--sp-brand);
  margin: 0 8px;
  letter-spacing: .06em;
}

/* ---------- ダウンロード詳細行 ---------- */
.sp-download-details {
  margin: 24px -20px;
  padding: 20px 0;
  background: rgba(255,77,125,.04);
  border-top: 1px solid rgba(255,77,125,.12);
  border-bottom: 1px solid rgba(255,77,125,.12);
}

.sp-download-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.sp-download-detail-row:last-child { border-bottom: none; }

.sp-download-detail-row font {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  vertical-align: inherit;
}

.sp-download-detail-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--sp-text-sub);
  letter-spacing: .04em;
}

.sp-download-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-brand);
  text-align: right;
  text-shadow: 0 0 12px rgba(255,77,125,.3);
}

/* ---------- ダウンロードプレビュー ---------- */
.sp-download-preview {
  margin: 20px 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,77,125,.12);
}

.sp-download-preview img {
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow:
    0 4px 20px rgba(0,0,0,.5),
    0 0 30px rgba(255,77,125,.1);
}

/* ---------- 退会完了メッセージ ---------- */
.sp-retire-complete {
  padding: 40px 24px;
  margin: 32px 0;
  text-align: center;
  background: rgba(255,77,125,.05);
  border: 1px solid rgba(255,77,125,.2);
  box-shadow:
    0 4px 20px rgba(0,0,0,.4),
    0 0 40px rgba(255,77,125,.08);
  position: relative;
  overflow: hidden;
}

.sp-retire-complete::before {
  content: "\266A";
  position: absolute;
  top: -10px; right: -10px;
  font-size: 100px;
  color: rgba(255,77,125,.06);
  pointer-events: none;
  animation: retire-note-drift 4s ease-in-out infinite;
}

@keyframes retire-note-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%       { transform: translate(-10px, 5px) rotate(-5deg); }
}

.sp-retire-complete-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border: 2px solid var(--sp-brand);
  border-radius: 50%;
  background: rgba(255,77,125,.1);
  box-shadow:
    0 4px 24px rgba(255,77,125,.3),
    0 0 50px rgba(255,77,125,.15);
}

.sp-retire-complete-icon::before {
  content: "\266A";
  font-size: 42px;
  color: var(--sp-brand);
  text-shadow: 0 0 20px rgba(255,77,125,.6);
  animation: retire-icon-bounce 2s ease-in-out infinite;
}

@keyframes retire-icon-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.sp-retire-complete-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  color: var(--sp-text);
}

/* ---------- キャンセルメッセージ ---------- */
.sp-cancel-message {
  padding: 32px 24px;
  margin: 32px 0;
  text-align: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.sp-cancel-message-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.sp-cancel-message-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--sp-text);
}

/* ---------- キャリアヘッダー ---------- */
.sp-carrier-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  margin: 24px 0 20px 0;
  position: relative;
  overflow: hidden;
}

.sp-carrier-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  z-index: 0;
}

.sp-carrier-header--softbank {
  background: linear-gradient(135deg, #0078be 0%, #0099dd 100%);
  border-top: 2px solid #005a8e;
  border-bottom: 2px solid #005a8e;
  box-shadow:
    0 4px 24px rgba(0,120,190,.3),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.sp-carrier-header--au {
  background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
  border-top: 2px solid #cc5200;
  border-bottom: 2px solid #cc5200;
  box-shadow:
    0 4px 24px rgba(255,102,0,.3),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.sp-carrier-header--docomo {
  background: linear-gradient(135deg, #e60012 0%, #ff3344 100%);
  border-top: 2px solid #b30010;
  border-bottom: 2px solid #b30010;
  box-shadow:
    0 4px 24px rgba(230,0,18,.3),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.sp-carrier-header-icon {
  position: relative;
  z-index: 1;
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

.sp-carrier-header-text {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* ---------- 退会コースリスト ---------- */
.sp-retire-course-list {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-retire-course-item { margin: 0; padding: 0; }

.sp-retire-course-item--disabled {
  padding: 20px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  opacity: 0.5;
}

.sp-retire-course-link {
  display: block;
  padding: 20px 18px;
  background: rgba(0,120,190,.08);
  border: 1px solid rgba(0,120,190,.4);
  text-decoration: none;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 3px 16px rgba(0,120,190,.15),
    inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}

.sp-retire-course-link::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent rgba(0,120,190,.6) transparent transparent;
}

.sp-retire-course-link::before {
  content: "\203A";
  position: absolute;
  top: 6px; right: 8px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  z-index: 1;
  transform: rotate(45deg);
}

.sp-retire-course-link:active {
  background: rgba(0,120,190,.14);
  box-shadow: 0 2px 10px rgba(0,120,190,.25);
}

.sp-retire-course-carrier {
  font-size: 12px;
  font-weight: 600;
  color: #78efff;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.sp-retire-course-item--disabled .sp-retire-course-carrier {
  color: var(--sp-text-muted);
}

.sp-retire-course-price {
  font-size: 26px;
  font-weight: 800;
  color: #78efff;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  text-shadow: 0 0 20px rgba(120,239,255,.4);
}

.sp-retire-course-item--disabled .sp-retire-course-price {
  color: var(--sp-text-muted);
  text-shadow: none;
}

.sp-retire-course-unit {
  font-size: 14px;
  font-weight: 600;
  margin-left: 4px;
}

.sp-retire-course-status--processing {
  display: inline-block;
  padding: 4px 12px;
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(231,76,60,.4);
}

.sp-retire-course-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--sp-text-sub);
}

.sp-retire-course-action {
  font-size: 15px;
  font-weight: 700;
  color: #78efff;
  margin-top: 10px;
  letter-spacing: .08em;
}

/* ---------- docomo用コースリスト ---------- */
.sp-retire-course-list--docomo .sp-retire-course-link {
  background: rgba(230,0,18,.08);
  border-color: rgba(230,0,18,.4);
  box-shadow: 0 3px 16px rgba(230,0,18,.12);
}

.sp-retire-course-list--docomo .sp-retire-course-link::after {
  border-color: transparent rgba(230,0,18,.6) transparent transparent;
}

.sp-retire-course-list--docomo .sp-retire-course-link:active {
  background: rgba(230,0,18,.14);
}

.sp-retire-course-list--docomo .sp-retire-course-carrier {
  color: #ff6b6b;
}

.sp-retire-course-list--docomo .sp-retire-course-price-docomo {
  color: #ff6b6b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  margin: 8px 0;
}

.sp-retire-course-free {
  font-size: 14px;
  font-weight: 700;
  color: #3dffa0;
  margin-bottom: 4px;
  text-shadow: 0 0 16px rgba(61,255,160,.4);
}

.sp-retire-course-next      { font-size: 13px; font-weight: 600; }
.sp-retire-course-cancel-note { font-size: 11px; line-height: 1.6; margin-top: 6px; }

.sp-retire-course-list--docomo .sp-retire-course-action { color: #ff6b6b; }

.sp-retire-no-course {
  padding: 24px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 14px;
  color: var(--sp-text-sub);
}

/* ---------- au用コースリスト ---------- */
.sp-retire-course-list--au .sp-retire-course-link {
  background: rgba(255,102,0,.08);
  border-color: rgba(255,102,0,.4);
  box-shadow: 0 3px 16px rgba(255,102,0,.12);
}

.sp-retire-course-list--au .sp-retire-course-link::after {
  border-color: transparent rgba(255,102,0,.6) transparent transparent;
}

.sp-retire-course-list--au .sp-retire-course-link:active {
  background: rgba(255,102,0,.14);
}

.sp-retire-course-list--au .sp-retire-course-carrier { color: #ff9055; }

.sp-retire-course-price-au {
  color: #ff9055;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin: 8px 0;
}

.sp-retire-course-initial {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.sp-retire-course-list--au .sp-retire-course-action { color: #ff9055; }

/* フッターリンク */
.sp-footer-link {
  text-align: right;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.sp-footer-link a {
  font-size: 12px;
  color: var(--sp-text-sub);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all .2s ease;
}

.sp-footer-link a:active {
  color: var(--sp-brand);
  border-bottom-color: var(--sp-brand);
}

/* ---------- 登録制限ページ ---------- */
.sp-regist-stop-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-bg);
}

.sp-regist-stop-page .sp-container {
  padding: 40px 16px;
}

.sp-regist-stop-content {
  text-align: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,77,125,.2);
  padding: 48px 24px;
  box-shadow:
    0 8px 40px rgba(0,0,0,.5),
    0 0 60px rgba(255,77,125,.08);
  max-width: 360px;
  margin: 0 auto;
}

.sp-regist-stop-icon {
  font-size: 56px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.sp-regist-stop-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.3;
  color: var(--sp-text);
  margin: 0 0 20px 0;
  padding: 0;
  background: none;
  height: auto;
  text-align: center;
}

.sp-regist-stop-message {
  font-size: 14px;
  line-height: 2;
  color: var(--sp-text-sub);
}

/* ---------- フォント要素の無効化 ---------- */
font { font-size: inherit; }

/* ================================
   サブページ共通ヘッダー
   ================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,13,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.site-header.is-search-open {
  border-bottom-color: transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}

.site-header-inner {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 16px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.site-logo img {
  display: block;
  height: 28px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255,77,125,.3));
}

.header-search-trigger {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 34px;
  margin: 0 0 0 auto;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.header-search-trigger-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.site-header.is-search-open .header-search-trigger {
  background: rgba(255,255,255,.14);
}

.header-search-panel {
  position: absolute;
  left: 0; right: 0; top: 100%;
  z-index: 1;
  padding: 10px 16px 14px;
  background: rgba(8,8,13,.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 32px rgba(0,0,0,.5);
  animation: header-search-panel-in 0.22s ease-out;
}

@keyframes header-search-panel-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.header-search-panel[hidden] { display: none; }

.header-search-panel-inner {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  box-sizing: border-box;
}

.header-search-panel-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  opacity: 0.5;
}

.header-search-panel-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #fff;
  outline: none;
}

.header-search-panel-input::placeholder { color: rgba(255,255,255,.3); }

.header-search-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  margin-right: -6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.header-search-close-icon {
  display: block;
  margin-top: -2px;
  font-weight: 500;
}

.header-btn-login {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--sp-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(255,77,125,.4);
}

/* ================================
   サブページ共通フッター
   ================================ */

.sp-site-footer {
  position: relative;
  background: linear-gradient(180deg, #0d0820 0%, #08080d 100%);
  overflow: hidden;
}

.sp-site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff4d7d, #8f72ff, #78efff, transparent);
}

.sp-site-footer-inner {
  padding: 56px 20px 48px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.sp-site-footer-brand {
  margin-bottom: 12px;
  line-height: 0;
}

.sp-site-footer-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.sp-site-footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 36px;
  letter-spacing: .04em;
}

.sp-site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.sp-site-footer-links li {
  display: flex;
}

.sp-site-footer-links a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: .03em;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  transition: background .18s, border-color .18s, box-shadow .18s;
}

.sp-site-footer-links li:nth-child(3n+1) a {
  border-color: rgba(255,77,125,.45);
  background: rgba(255,77,125,.08);
  box-shadow: 0 0 10px rgba(255,77,125,.12);
}
.sp-site-footer-links li:nth-child(3n+2) a {
  border-color: rgba(143,114,255,.45);
  background: rgba(143,114,255,.08);
  box-shadow: 0 0 10px rgba(143,114,255,.12);
}
.sp-site-footer-links li:nth-child(3n+3) a {
  border-color: rgba(120,239,255,.45);
  background: rgba(120,239,255,.07);
  box-shadow: 0 0 10px rgba(120,239,255,.10);
}

.sp-site-footer-links li:nth-child(3n+1) a:active {
  background: rgba(255,77,125,.25);
  box-shadow: 0 0 18px rgba(255,77,125,.35);
}
.sp-site-footer-links li:nth-child(3n+2) a:active {
  background: rgba(143,114,255,.25);
  box-shadow: 0 0 18px rgba(143,114,255,.35);
}
.sp-site-footer-links li:nth-child(3n+3) a:active {
  background: rgba(120,239,255,.22);
  box-shadow: 0 0 18px rgba(120,239,255,.30);
}

.sp-site-footer-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  margin: 0 auto 24px;
}

.sp-site-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.sp-site-footer-copy {
  font-size: 9px;
  color: rgba(255,255,255,.3);
  letter-spacing: .12em;
  margin: 0;
}

.sp-site-footer-licence {
  font-size: 9px;
  line-height: 1.9;
  color: rgba(255,255,255,.25);
  letter-spacing: .06em;
  margin: 0;
}

/* ================================
   IDログインフォーム専用スタイル
   ================================ */

.sp-id-login-form {
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  padding: 32px 24px;
  margin: 32px 0;
  box-shadow:
    0 8px 28px rgba(0,0,0,.5),
    0 2px 8px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}

.sp-id-login-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sp-brand) 0%, #78efff 50%, var(--sp-brand) 100%);
}

.sp-id-login-field { margin-bottom: 24px; }

.sp-id-login-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sp-id-login-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: 2px solid rgba(255,77,125,.4);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.sp-id-login-input:focus {
  background: rgba(255,77,125,.07);
  border-color: rgba(255,255,255,.12);
  border-bottom-color: var(--sp-brand);
  box-shadow: 0 4px 18px rgba(255,77,125,.15);
}

/* ================================
   ログインページ専用スタイル
   ================================ */

.sp-login-lead {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--sp-text-sub);
  margin: 0 0 24px;
}

.sp-login-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 32px;
}

.sp-login-item { position: relative; }

/* ログインボタン共通 */
.sp-login-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 22px 24px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sp-login-btn:active { transform: scale(0.97); }

.sp-login-btn::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}

.sp-login-btn::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}

.sp-login-btn-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.sp-login-btn-carrier {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  line-height: 1;
}

.sp-login-btn-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.75);
}

.sp-login-btn-arrow {
  position: relative;
  z-index: 1;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  flex-shrink: 0;
}

.sp-login-btn--brand {
  background: linear-gradient(135deg, #ff6b9e 0%, var(--sp-brand) 60%, #d91b5c 100%);
  box-shadow:
    0 8px 32px rgba(255,77,125,.45),
    0 0 50px rgba(255,77,125,.2),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.sp-login-btn--sub {
  background: linear-gradient(135deg, #2a2a3a 0%, #1a1a28 60%, #13131b 100%);
  box-shadow:
    0 8px 28px rgba(0,0,0,.4),
    0 2px 8px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.sp-login-btn--docomo {
  background: linear-gradient(135deg, #ff4060 0%, #e60012 60%, #c00010 100%);
  box-shadow:
    0 8px 32px rgba(230,0,18,.45),
    0 2px 8px rgba(230,0,18,.2),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.sp-login-btn--au {
  background: linear-gradient(135deg, #ff8040 0%, #ea5504 60%, #c94800 100%);
  box-shadow:
    0 8px 32px rgba(234,85,4,.45),
    0 2px 8px rgba(234,85,4,.2),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.sp-login-btn--softbank {
  background: linear-gradient(135deg, #40a8ff 0%, #0078d7 60%, #005bb5 100%);
  box-shadow:
    0 8px 32px rgba(0,120,215,.45),
    0 2px 8px rgba(0,120,215,.2),
    inset 0 1px 0 rgba(255,255,255,.15);
}

/* ================================
   登録ページ専用スタイル
   ================================ */

.sp-carrier-simple {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--sp-text);
  margin: 24px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sp-carrier-simple--softbank {
  color: #78efff;
  border-bottom-color: rgba(120,239,255,.2);
}

.sp-carrier-simple--docomo {
  color: #ff6b6b;
  border-bottom-color: rgba(255,107,107,.2);
}

.sp-carrier-simple--au {
  color: #ff9055;
  border-bottom-color: rgba(255,144,85,.2);
}

.sp-section-title {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--sp-text);
  margin: 24px 0 20px;
  padding: 0;
}

/* 登録コースリスト */
.sp-regist-course-list {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.sp-regist-course-item { margin-bottom: 20px; }

.sp-regist-course-link {
  display: block;
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  padding: 0;
  text-decoration: none;
  position: relative;
  box-shadow:
    0 8px 28px rgba(0,0,0,.5),
    0 2px 8px rgba(0,0,0,.3);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}

.sp-regist-course-link::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--sp-brand) 50%, transparent 100%);
}

.sp-regist-course-link--softbank::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0078d7 0%, #00a4ef 50%, #0078d7 100%);
  z-index: 1;
}

.sp-regist-course-link--softbank:active { transform: scale(0.98); }

.sp-regist-course-link--docomo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e60012 0%, #ff3333 50%, #e60012 100%);
  z-index: 1;
}

.sp-regist-course-link--docomo:active { transform: scale(0.98); }

.sp-regist-course-link--au::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ea5504 0%, #ff7a33 50%, #ea5504 100%);
  z-index: 1;
}

.sp-regist-course-link--au:active { transform: scale(0.98); }

.sp-regist-course-link--registered {
  opacity: 0.4;
  cursor: not-allowed;
}

.sp-regist-course-carrier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
  padding: 20px 20px 0;
}

.sp-regist-course-link--softbank .sp-regist-course-carrier { color: #78efff; }
.sp-regist-course-link--docomo  .sp-regist-course-carrier  { color: #ff6b6b; }
.sp-regist-course-link--au      .sp-regist-course-carrier  { color: #ff9055; }

.sp-regist-course-point {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.sp-regist-course-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 12px;
  box-shadow: 0 2px 6px rgba(231,76,60,.3);
}

.sp-regist-course-price {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding: 0 20px;
  line-height: 1.6;
}

.sp-regist-course-free {
  font-size: 13px;
  font-weight: 800;
  color: #3dffa0;
  letter-spacing: .02em;
  text-shadow: 0 0 16px rgba(61,255,160,.4);
}

.sp-regist-course-initial {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}

.sp-regist-course-sub  { font-size: 14px; color: rgba(255,255,255,.8); }
.sp-regist-course-tax  { font-size: 11px; color: rgba(255,255,255,.4); }

.sp-regist-course-action {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(135deg, var(--sp-brand) 0%, #d91b5c 100%);
  padding: 18px 24px;
  margin: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 4px 20px rgba(255,77,125,.4);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,77,125,.3);
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.sp-regist-course-action::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.12) 50%, transparent 70%);
  animation: sp-shimmer 3s infinite;
}

.sp-regist-course-action::after {
  content: '\203A';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: bold;
  opacity: 0.7;
}

/* ================================
   キャンペーンCTAボックス
   ================================ */
.sp-campaign-box {
  position: relative;
  text-align: center;
  margin: 32px -16px 0;
  width: calc(100% + 32px);
  padding: 40px 20px 44px;
  box-sizing: border-box;
  border-top: 3px solid var(--sp-brand);
  background: linear-gradient(
    180deg,
    #1e1228 0%,
    #130d1c 42%,
    #0d0a10 78%,
    #0a0a0d 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 -6px 30px rgba(0,0,0,.2);
  overflow: hidden;
  isolation: isolate;
}

.sp-campaign-box::before {
  content: '';
  position: absolute;
  inset: -25% -10% -15%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 52% at 50% 112%, rgba(255,45,110,.38) 0%, transparent 58%),
    radial-gradient(ellipse 38% 36% at 18% 88%, rgba(143,114,255,.28) 0%, transparent 52%),
    radial-gradient(ellipse 48% 42% at 80% 94%, rgba(255,77,125,.22) 0%, transparent 50%);
  animation: sp-cta-lights 9s ease-in-out infinite alternate;
}

.sp-campaign-box::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.9) 0px, transparent 2px),
    radial-gradient(circle at 22% 62%, rgba(255,255,255,.8) 0px, transparent 1.5px),
    radial-gradient(circle at 55% 12%, rgba(255,255,255,.85) 0px, transparent 1.5px),
    radial-gradient(circle at 75% 44%, rgba(255,180,210,.9) 0px, transparent 2px),
    radial-gradient(circle at 91% 18%, rgba(255,255,255,.8) 0px, transparent 1.5px),
    radial-gradient(circle at 37% 80%, rgba(255,150,200,.9) 0px, transparent 2px),
    radial-gradient(circle at 64% 72%, rgba(255,255,255,.75) 0px, transparent 1.5px);
  animation: sp-cta-sparkle 7s ease-in-out infinite alternate;
}

@keyframes sp-cta-lights {
  0%, 100% { opacity: .88; transform: translate(0,0) scale(1); }
  50% { opacity: 1; transform: translate(2%,-1%) scale(1.03); }
}

@keyframes sp-cta-sparkle {
  0%, 100% { opacity: .5; }
  30% { opacity: .8; }
  60% { opacity: .45; }
}

.sp-campaign-box > * { position: relative; z-index: 1; }

.sp-campaign-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #ff8cb3;
  text-shadow: 0 0 30px rgba(255,77,125,.4);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sp-campaign-title {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 16px;
  background: linear-gradient(
    100deg,
    #f0e8ff 0%, #ffffff 22%, #ffd8eb 36%,
    #ffffff 50%, #eef4ff 64%, #ffffff 80%, #ffe8f3 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sp-cta-headline-shimmer 7s ease-in-out infinite;
}

@keyframes sp-cta-headline-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.sp-campaign-note {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
  margin-bottom: 28px;
}

.sp-campaign-box--au { border-top-color: #ff6600; }
.sp-campaign-box--au .sp-campaign-label {
  color: #ff9055;
  text-shadow: 0 0 30px rgba(234,85,4,.4);
}

/* 単一コース登録ボタン */
.sp-regist-single-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 32px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  margin: 32px 0;
  background: transparent;
  transition: transform 0.2s ease;
  z-index: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.sp-regist-single-btn--docomo,
.sp-regist-single-btn--softbank {
  box-shadow:
    0 8px 34px rgba(255,77,125,.45),
    0 0 0 1px rgba(255,200,235,.4),
    0 0 50px rgba(255,45,140,.3),
    0 0 70px rgba(143,114,255,.18);
}

.sp-regist-single-btn:active { transform: scale(0.98); }

.sp-regist-single-btn--docomo::before,
.sp-regist-single-btn--softbank::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  z-index: -2;
  filter: blur(10px) brightness(1.12) saturate(1.4);
  animation: sp-btn-spin 3s linear infinite;
  background: conic-gradient(
    from 0deg,
    #ff2d95, #ffe600, #ff00c8, #f0abfc,
    #a855f7, #fde047, #9333ea, #c026d3,
    #ff1493, #fef08a, #e879f9, #ff5c93,
    #7c3aed, #facc15, #ff2d95
  );
}

@keyframes sp-btn-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sp-regist-single-btn--docomo::after,
.sp-regist-single-btn--softbank::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  z-index: -1;
  background-color: #d91b5c;
  background-image: linear-gradient(180deg, #ff6b9e 0%, var(--sp-brand) 45%, #d91b5c 100%);
}

.sp-regist-single-btn--au::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  z-index: -2;
  filter: blur(10px) brightness(1.12) saturate(1.4);
  animation: sp-btn-spin 3s linear infinite;
  background: conic-gradient(
    from 0deg,
    #ff8c00, #ffcc00, #ff6600, #ffaa44,
    #ff4500, #ffdd88, #ea5504, #ffbb33,
    #ff6600, #ffee99, #ff8c00, #ffaa44,
    #ff4500, #ffcc00, #ff8c00
  );
}

.sp-regist-single-btn--au::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  z-index: -1;
  background-image: linear-gradient(180deg, #ff9944 0%, #ea5504 45%, #c94800 100%);
}

.sp-regist-single-btn--au {
  box-shadow:
    0 8px 34px rgba(234,85,4,.45),
    0 0 0 1px rgba(255,200,140,.4),
    0 0 50px rgba(234,85,4,.28),
    0 0 70px rgba(255,140,0,.18);
}

.sp-regist-single-btn--registered {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.35);
  cursor: not-allowed;
  opacity: 0.5;
}

.sp-regist-single-btn--registered::before,
.sp-regist-single-btn--registered::after { display: none; }

.sp-regist-single-desc {
  text-align: center;
  font-size: 13px;
  line-height: 2;
  color: var(--sp-text-sub);
  margin: 24px 0;
}

.sp-regist-meta {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.2);
  margin: 32px 0 0;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  text-transform: uppercase;
}

.sp-regist-info {
  background: linear-gradient(150deg, #1c1626 0%, #0f0c12 100%);
  padding: 20px;
  margin: 32px 0;
  box-shadow:
    0 8px 28px rgba(0,0,0,.5),
    0 2px 8px rgba(0,0,0,.3);
  position: relative;
}

.sp-regist-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--sp-brand) 50%, transparent 100%);
}

.sp-regist-info-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.4);
  margin: 0 0 12px 0;
}

.sp-regist-info-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-brand);
  text-decoration: none;
  padding: 16px 20px;
  background: rgba(255,77,125,.06);
  border-left: 3px solid var(--sp-brand);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.sp-regist-info-link--docomo {
  color: #ff6b6b;
  border-left-color: #e60012;
}

.sp-regist-info-link--au {
  color: #ff9055;
  border-left-color: #ea5504;
}

.sp-regist-info-link:active {
  background: rgba(255,77,125,.1);
  transform: translateX(2px);
}

.sp-regist-info-arrow {
  font-size: 20px;
  font-weight: bold;
  opacity: 0.6;
}

.sp-regist-info-link-wrap a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 20px;
  background: rgba(255,77,125,.06);
  border-left: 3px solid var(--sp-brand);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  color: var(--sp-brand);
}

.sp-regist-info-link-wrap--au a {
  color: #ff9055;
  border-left-color: #ea5504;
}

.sp-regist-info-link-wrap a:active {
  background: rgba(255,77,125,.1);
  transform: translateX(2px);
}

/* 注意書きの赤文字 */
.sp-notice-red {
  color: #ff6b6b;
  font-size: 11.5px;
  font-weight: 600;
}

/* インラインリンク */
.sp-link-inline {
  color: var(--sp-brand);
  text-decoration: underline;
  font-weight: 600;
}

ul.radius .sp-link-inline {
  color: #ff8cb3;
}

/* ================================
   決済中止ページ専用スタイル
   ================================ */

.sp-payment-cancel {
  text-align: center;
  margin: 48px 0;
  position: relative;
}

.sp-payment-cancel-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border: 2px solid #ff4444;
  background: rgba(255,68,68,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #ff4444;
  box-shadow:
    0 4px 20px rgba(255,68,68,.2),
    0 0 40px rgba(255,68,68,.1);
  position: relative;
  animation: sp-cancel-shake 0.5s ease-in-out;
}

.sp-payment-cancel-icon::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border: 2px solid #ff4444;
  opacity: 0.25;
  animation: sp-cancel-ripple 2s ease-out infinite;
}

@keyframes sp-cancel-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

@keyframes sp-cancel-ripple {
  0%   { transform: scale(1); opacity: .25; }
  100% { transform: scale(1.6); opacity: 0; }
}

.sp-payment-cancel-message {
  font-size: 15px;
  line-height: 2;
  color: var(--sp-text);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ================================
   登録完了ページ専用スタイル
   ================================ */

.sp-regist-complete {
  text-align: center;
  margin: 32px 0 40px 0;
  position: relative;
}

.sp-regist-complete-icon {
  width: 86px; height: 86px;
  margin: 0 auto 20px;
  border: 2px solid var(--sp-brand);
  border-radius: 50%;
  background: rgba(255,77,125,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: sp-regist-pulse 2s ease-in-out infinite;
}

.sp-regist-complete-icon::before {
  content: '\2714';
  font-size: 44px;
  color: var(--sp-brand);
  font-weight: 900;
  display: inline-block;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,77,125,.6);
}

.sp-regist-complete-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255,77,125,.3);
  border-radius: 50%;
  animation: sp-regist-pulse 2s ease-in-out infinite;
}

@keyframes sp-regist-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 8px 28px rgba(255,77,125,.3),
      0 0 40px rgba(255,77,125,.15);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 12px 36px rgba(255,77,125,.45),
      0 0 60px rgba(255,77,125,.25);
  }
}

.sp-regist-complete-text {
  font-size: 16px;
  line-height: 2;
  color: var(--sp-text);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ログイン情報表示 */
.sp-login-info {
  margin-top: 16px;
  border-left: 2px solid var(--sp-brand);
  padding: 4px 0 4px 16px;
}

.sp-login-info-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.sp-login-info-row:last-child { border-bottom: none; }

.sp-login-info-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
  flex: 0 0 auto;
}

.sp-login-info-value {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: .08em;
  text-align: right;
  flex: 1 1 auto;
  word-break: break-all;
  text-shadow:
    0 0 16px rgba(255,77,125,.7),
    0 1px 3px rgba(0,0,0,.5);
}
