/*
 * travel-sp.css
 * 下層ページ共通スタイルシート
 * travel-lp.css と併用すること
 */

/* ══════════════════════════════════════
   キーフレーム
══════════════════════════════════════ */
@keyframes sp-led-blink {
  0%,100% { opacity: 1; box-shadow: 0 0 6px 2px currentColor; }
  50%      { opacity: .3; box-shadow: none; }
}
@keyframes sp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes sp-shine {
  0%      { left: -80%; }
  60%,100%{ left: 130%; }
}
@keyframes sp-spin {
  to { transform: rotate(360deg); }
}
@keyframes sp-pulse-ring {
  0%   { transform: scale(.85); opacity: .7; }
  50%  { transform: scale(1.1);  opacity: .2; }
  100% { transform: scale(.85); opacity: .7; }
}
@keyframes sp-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ══════════════════════════════════════
   ベースレイアウト
══════════════════════════════════════ */
.sp-header-gap  { height: 52px; }

.sp-body {
  background:
    var(--stripe),
    linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
  padding: 0 0 60px;
  min-height: calc(100vh - 52px);
  overflow-x: hidden;
}

/* padding が必要なページは個別に上書き可 */
.sp-body--padded { padding-top: 28px; }

.sp-inner {
  max-width: var(--max-w, 430px);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ══════════════════════════════════════
   マーキー帯
══════════════════════════════════════ */
.sp-marquee {
  overflow: hidden;
  background: var(--accent);
  padding: 7px 0;
  margin-bottom: 24px;
}
.sp-marquee--orange {
  background: linear-gradient(90deg, #b45309 0%, #d97706 50%, #b45309 100%);
}
.sp-marquee__track {
  display: flex;
  width: max-content;
  animation: sp-marquee 18s linear infinite;
}
.sp-marquee__group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.sp-marquee__group span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 0 10px;
}
.sp-marquee__group span:nth-child(even) {
  color: rgba(255,255,255,.4);
  font-size: 8px;
}

/* ══════════════════════════════════════
   チケットフレーム
══════════════════════════════════════ */
.sp-ticket {
  position: relative;
  background: #fff;
  border: 1px solid rgba(26,37,64,.10);
  box-shadow:
    0 2px 0 rgba(255,255,255,.9) inset,
    0 14px 40px rgba(26,37,64,.10);
  margin-bottom: 16px;
}

/* ヘッダー帯 */
.sp-ticket__header {
  position: relative;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 60%, #1e3a6e 100%);
  padding: 20px 20px 18px;
  overflow: hidden;
}
.sp-ticket__header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,.06) 0%, transparent 42%);
  pointer-events: none;
}
.sp-ticket__header::before {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 0 0 28px rgba(255,255,255,.04),
    0 0 0 56px rgba(255,255,255,.025);
  pointer-events: none;
}

/* LED */
.sp-ticket__led-group {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
}
.sp-ticket__led {
  width: 8px; height: 8px;
  border-radius: 50%;
  color: #4ade80;
  background: currentColor;
  animation: sp-led-blink 2s ease-in-out infinite;
}
.sp-ticket__led--b { color: #60a5fa; animation-delay: .7s; }
.sp-ticket__led--y { color: #fbbf24; }
.sp-ticket__led--o { color: #f97316; animation-delay: .5s; }

/* ルート（タイトル） */
.sp-ticket__route {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 10px;
  font-weight: inherit;
  line-height: inherit;
}
.sp-ticket__city {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.2;
  word-break: break-all;
}
.sp-ticket__city--sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-ticket__city--sub::before { content: "✈"; font-size: 12px; }
.sp-ticket__arrow { display: none; }

/* メタ行 */
.sp-ticket__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-ticket__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ステータスバッジ（色バリエーション） */
.sp-ticket__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  background: rgba(37,99,235,.22);
  border: 1px solid rgba(37,99,235,.45);
  border-radius: 2px;
}
/* LED付きステータス */
.sp-ticket__status::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
/* 赤：要確認・回答必須 */
.sp-ticket__status--red {
  background: rgba(239,68,68,.18);
  border-color: rgba(239,68,68,.35);
  color: #fca5a5;
}
.sp-ticket__status--red::before {
  background: #f87171;
  box-shadow: 0 0 6px rgba(248,113,113,.7);
  animation: sp-led-blink 1.4s steps(2,end) infinite;
}
/* 青：未登録・要入力 */
.sp-ticket__status--blue {
  background: rgba(37,99,235,.22);
  border-color: rgba(37,99,235,.45);
  color: #93c5fd;
}
.sp-ticket__status--blue::before {
  background: #60a5fa;
  box-shadow: 0 0 6px rgba(96,165,250,.7);
  animation: sp-led-blink 1.4s steps(2,end) infinite;
}
/* 緑：送信完了・保護宣言 */
.sp-ticket__status--green {
  background: rgba(16,185,129,.2);
  border-color: rgba(16,185,129,.4);
  color: #6ee7b7;
}
.sp-ticket__status--green::before {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,.7);
}
/* 黄：メンテナンス */
.sp-ticket__status--yellow {
  background: rgba(251,191,36,.25);
  border-color: rgba(251,191,36,.6);
}
/* グレー：任意回答 */
.sp-ticket__status--gray {
  background: rgba(107,114,128,.2);
  border-color: rgba(107,114,128,.4);
  color: #d1d5db;
}
.sp-ticket__status--gray::before {
  background: #9ca3af;
}
/* ステータスバッジで LED なしにしたい場合 */
.sp-ticket__status--no-led::before { display: none; }

/* ミシン目 */
.sp-ticket__perforation {
  position: relative;
  height: 20px;
  overflow: hidden;
}
.sp-ticket__perforation::before,
.sp-ticket__perforation::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px; height: 20px;
  background: #f0f4f8;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.sp-ticket__perforation::before { left: -10px; }
.sp-ticket__perforation::after  { right: -10px; }
.sp-ticket__perforation-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(26,37,64,.18) 0px,
    rgba(26,37,64,.18) 5px,
    transparent 5px,
    transparent 10px
  );
  z-index: 1;
}

/* ボディ */
.sp-ticket__body {
  padding: 16px 20px 20px;
}
.sp-ticket__text {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.9;
  color: #3a4460;
  letter-spacing: .02em;
}
.sp-ticket__lead {
  font-size: 12.5px;
  color: #3a4460;
  line-height: 1.8;
  letter-spacing: .01em;
}

/* バーコードフッター */
.sp-ticket__foot {
  padding: 12px 20px 14px;
  border-top: 1px dashed rgba(26,37,64,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sp-ticket__barcode {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
}
.sp-ticket__barcode span {
  display: block;
  width: 2px;
  background: rgba(26,37,64,.18);
  border-radius: 1px;
}
.sp-ticket__foot-note {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
  text-align: right;
  line-height: 1.55;
}

/* ══════════════════════════════════════
   セクションバッジ
══════════════════════════════════════ */
.sp-section-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 10px;
}
.sp-section-badge__label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.sp-section-badge__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,.3), transparent);
}

/* ══════════════════════════════════════
   番号カード（tokutei / privacy 共通）
══════════════════════════════════════ */
.sp-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
  box-shadow: 0 2px 8px rgba(26,37,64,.04);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.sp-item:hover {
  box-shadow: 0 4px 18px rgba(26,37,64,.10);
  transform: translateY(-1px);
}
.sp-item__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 14px;
  background: linear-gradient(180deg, #1a2f5e 0%, #0f1c3f 100%);
  gap: 3px;
}
.sp-item__num-value {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.sp-item__num-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.sp-item__content {
  padding: 12px 14px 14px;
  border-left: 1px solid rgba(26,37,64,.06);
}
.sp-item__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .02em;
  line-height: 1.3;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(26,37,64,.06);
  width: 100%;
}
.sp-item__label::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.sp-item__text {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.85;
  color: #3a4460;
  letter-spacing: .01em;
}
.sp-item__text p { margin: 0; }
.sp-item__text p + p { margin-top: 5px; }

/* ══════════════════════════════════════
   条文カード（kiyaku）
══════════════════════════════════════ */
.ky-articles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ky-article {
  display: grid;
  grid-template-columns: 52px 1fr;
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
  box-shadow: 0 2px 8px rgba(26,37,64,.04);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.ky-article:hover {
  box-shadow: 0 4px 18px rgba(26,37,64,.10);
  transform: translateY(-1px);
}
.ky-article__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 14px;
  background: linear-gradient(180deg, #1a2f5e 0%, #0f1c3f 100%);
  gap: 2px;
}
.ky-article__num-label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  line-height: 1;
}
.ky-article__num-value {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.ky-article__num-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  margin-top: 2px;
}
.ky-article__content {
  padding: 12px 14px 14px;
  border-left: 1px solid rgba(26,37,64,.06);
}
.ky-article__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .02em;
  line-height: 1.3;
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(26,37,64,.06);
  width: 100%;
}
.ky-article__title::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.ky-article__body {
  font-size: 12px;
  line-height: 1.85;
  color: #3a4460;
  letter-spacing: .01em;
}

/* 箇条書きサブリスト（kiyaku） */
.ky-sub {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ky-sub li {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: #3a4460;
  line-height: 1.75;
  padding: 5px 8px;
  background: #f8faff;
  border-left: 3px solid rgba(37,99,235,.18);
}
.ky-sub li::before {
  content: attr(data-n);
  font-weight: 700;
  font-size: 10px;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 1.4em;
  padding-top: 1px;
}

/* 価格ボックス（kiyaku） */
.ky-price-box {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 4px;
  padding: 10px 12px;
  margin-top: 8px;
  font-size: 12px;
  color: #3a4460;
}

/* ══════════════════════════════════════
   番号リスト（privacy 第三者提供）
══════════════════════════════════════ */
.sp-num-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: sp-num;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-num-list li {
  display: flex;
  gap: 8px;
  font-size: 12.5px;
  color: #3a4460;
  line-height: 1.75;
  counter-increment: sp-num;
  padding: 6px 10px;
  background: #f8faff;
  border-left: 3px solid rgba(37,99,235,.2);
}
.sp-num-list li::before {
  content: counter(sp-num);
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* サブリスト（privacy 利用目的） */
.sp-item__sublist {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-item__sublist-group { font-size: 12px; }
.sp-item__sublist-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-item__sublist-title::before {
  content: "";
  display: inline-block;
  width: 10px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}
.sp-item__sublist-items {
  padding-left: 1.2em;
  color: #3a4460;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   会社情報 / 問い合わせ dl
══════════════════════════════════════ */
.sp-company-dl,
.sp-contact-dl {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  gap: 3px 8px;
  font-size: 12px;
  color: #3a4460;
  line-height: 1.75;
  margin: 0;
}
.sp-contact-dl { grid-template-columns: 4.5em 1fr; }
.sp-company-dl dt,
.sp-contact-dl dt {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.sp-company-dl dd,
.sp-contact-dl dd {
  margin: 0;
  word-break: break-all;
}
.sp-company-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(26,37,64,.07);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.7;
}
.sp-contact-box {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 4px;
  padding: 12px 14px;
  margin-top: 8px;
}

/* ══════════════════════════════════════
   アコーディオンQ&A
══════════════════════════════════════ */
.sp-qa-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-qa {
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
  overflow: hidden;
}
.sp-qa__q {
  display: grid;
  grid-template-columns: 36px 1fr 44px;
  align-items: stretch;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #fff;
  transition: background .15s;
}
.sp-qa__q:hover              { background: #f5f8ff; }
.sp-qa.is-open .sp-qa__q    { background: #f0f4ff; }
.sp-qa__q-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a2f5e 0%, #0f1c3f 100%);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.sp-qa__q-text {
  padding: 13px 6px 13px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -.01em;
  align-self: center;
}
.sp-qa__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f97316;
  transition: background .2s;
}
.sp-qa.is-open .sp-qa__toggle { background: var(--accent); }
.sp-qa__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.sp-qa__toggle-icon::before { content: "+"; display: block; margin-top: -1px; }
.sp-qa.is-open .sp-qa__toggle-icon { transform: rotate(45deg); }
.sp-qa__a {
  display: none;
  border-top: 1px solid rgba(26,37,64,.06);
}
.sp-qa.is-open .sp-qa__a { display: block; }
.sp-qa__a-inner {
  display: block;
  padding: 12px 14px 14px;
}
.sp-qa__a-inner:has(.sp-qa__a-badge) {
  display: grid;
  grid-template-columns: 36px 1fr;
  padding: 0;
}
.sp-qa__a-badge {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14px;
  background: rgba(37,99,235,.05);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}
.sp-qa__a-text {
  padding: 14px 14px 16px 10px;
  font-size: 12.5px;
  line-height: 1.85;
  color: #3a4460;
  letter-spacing: .01em;
}
.sp-qa__a-inner:not(:has(.sp-qa__a-badge)) .sp-qa__a-text {
  padding: 0;
}
.sp-qa__a-inner:not(:has(.sp-qa__a-badge)) .sp-guide-note-list {
  margin-top: 8px;
}
.sp-qa__a-text p { margin: 0; }
.sp-qa__a-text p + p { margin-top: 6px; }

/* ══════════════════════════════════════
   アンケート質問カード（retire_anc）
══════════════════════════════════════ */
.sp-q-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-q {
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
  box-shadow: 0 2px 10px rgba(26,37,64,.05);
  overflow: hidden;
}
.sp-q__head {
  display: grid;
  grid-template-columns: 40px 1fr;
  background: linear-gradient(90deg, #f0f4fb 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(26,37,64,.07);
}
.sp-q__num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a2f5e 0%, #0f1c3f 100%);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.sp-q__title-wrap { padding: 10px 12px; }
.sp-q__title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -.01em;
}
.sp-q__required {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  background: #dc2626;
  padding: 1px 5px;
  vertical-align: middle;
}
.sp-q__optional {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  background: #9ca3af;
  padding: 1px 5px;
  vertical-align: middle;
}
.sp-q__body { padding: 14px 14px 16px; }
.sp-q__options {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-q__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(26,37,64,.05);
  cursor: pointer;
}
.sp-q__option:last-child { border-bottom: none; }
.sp-q__option input[type="radio"],
.sp-q__option input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.sp-q__option label {
  font-size: 13.5px;
  color: #3a4460;
  cursor: pointer;
  line-height: 1.4;
}
.sp-q__textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 96px;
  padding: 10px 12px;
  border: 1px solid rgba(26,37,64,.14);
  background: #fafbfc;
  font-size: 13.5px;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  resize: vertical;
  transition: border-color .2s;
}
.sp-q__textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}
.sp-q__hint {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}
.sp-q__select-wrap { position: relative; }
.sp-q__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 46%;
  width: 7px; height: 7px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.sp-q__select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 36px 12px 12px;
  border: 1px solid rgba(26,37,64,.14);
  background: #fafbfc;
  font-size: 13.5px;
  color: var(--text);
  font-family: var(--font);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}
.sp-q__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}

/* 送信ボタン */
.sp-submit-wrap { margin-top: 20px; }
.sp-submit {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  background: linear-gradient(135deg, var(--accent, #2563eb) 0%, #1d4ed8 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  border: none;
  font-family: var(--font);
  box-shadow: 0 6px 20px rgba(37,99,235,.28);
  cursor: pointer;
  transition: filter .2s, transform .15s;
}
.sp-submit:hover  { filter: brightness(1.07); }
.sp-submit:active { transform: scale(.985); }

/* エラー */
.sp-error {
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* フォーム reason */
.sp-form__reasons {
  margin: 12px 0;
  font-size: 13px;
  line-height: 1.8;
  color: #3a4460;
}
.sp-form__reasons select,
.sp-form__reasons textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  border: 1px solid rgba(26,37,64,.14);
  background: #fafbfc;
  font-size: 13.5px;
  color: var(--text);
  font-family: var(--font);
  margin-top: 8px;
  transition: border-color .2s;
}
.sp-form__reasons select:focus,
.sp-form__reasons textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}

/* ══════════════════════════════════════
   会員登録ページ専用
══════════════════════════════════════ */
.sp-notice { margin-bottom: 20px; }
.sp-regist-lead {
  font-size: 13px;
  line-height: 1.85;
  color: #3a4460;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.sp-regist-lead strong { color: var(--accent); font-weight: 700; }
.sp-regist-btn-wrap { display: block; width: 100%; }
.sp-regist-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 17px 14px;
  background: linear-gradient(135deg, var(--accent, #2563eb) 0%, #1d4ed8 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 8px 24px rgba(37,99,235,.32);
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
}
.sp-regist-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  animation: mood-btn-shine 2.4s var(--ease) 0.6s infinite;
}
.sp-regist-btn:hover  { filter: brightness(1.07); }
.sp-regist-btn:active { transform: scale(.985); }
.sp-policy-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 16px 16px 14px;
  background: #f8fafc;
  border: 1px solid rgba(26,37,64,.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-policy-list li { border-bottom: 1px solid rgba(26,37,64,.06); }
.sp-policy-list li:last-child { border-bottom: none; }
.sp-policy-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .01em;
  transition: color .2s;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10'%3E%3Cpath fill='%237a8499' d='M1 1l4 4-4 4'/%3E%3C/svg%3E") no-repeat right 4px center;
  background-size: 5px auto;
}
.sp-policy-list a:hover { color: var(--accent); }
.sp-policy-list__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 8px;
  display: block;
}

/* ══════════════════════════════════════
   お問い合わせページ専用
══════════════════════════════════════ */
.sp-note {
  font-size: 13px;
  color: #3a4460;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.sp-select-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-select-wrap { position: relative; width: 100%; }
.sp-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
#main_product {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 36px 13px 14px;
  border: 1px solid rgba(26,37,64,.14);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}
#main_product:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.sp-iframe-wrap {
  max-width: var(--max-w, 430px);
  margin: 0 auto;
  padding: 0 16px;
}
iframe { border: none; }
#review { display: none; width: 100%; }
#tell-frame { display: none; }
.sp-tell {
  max-width: var(--max-w, 430px);
  margin: 0 auto;
  padding: 0 16px;
}
.sp-tell__card {
  background: #fff;
  border: 1px solid rgba(26,37,64,.10);
  box-shadow: 0 6px 24px rgba(26,37,64,.08);
  overflow: hidden;
}
.sp-tell__notice {
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(249,115,22,.08) 0%, rgba(249,115,22,.03) 100%);
  border-bottom: 1px solid rgba(249,115,22,.18);
  font-size: 12.5px;
  line-height: 1.7;
  color: #3a4460;
}
.sp-tell__notice strong {
  background: linear-gradient(transparent 55%, rgba(255,220,0,.55) 55%);
  color: #c2410c;
  font-weight: 700;
}
.sp-tell__hours {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}
.sp-tell__checks {
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(26,37,64,.07);
}
.sp-tell__check-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sp-tell__check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,37,64,.05);
  cursor: pointer;
}
.sp-tell__check-row:last-child { border-bottom: none; }
.sp-tell__check-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.sp-tell__check-row label {
  font-size: 13px;
  color: #3a4460;
  cursor: pointer;
  line-height: 1.4;
}
.sp-tell__btn-wrap { padding: 16px 16px 18px; }
.icon_arrow { display: none; }
.sp-tell__tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(22,163,74,.28);
  transition: filter .2s, transform .15s;
}
.sp-tell__tel-btn:hover  { filter: brightness(1.07); }
.sp-tell__tel-btn:active { transform: scale(.985); }
.sp-tell__tel-btn img { width: 20px; height: 20px; }

/* ══════════════════════════════════════
   送信完了ページ専用
══════════════════════════════════════ */

/* ══════════════════════════════════════
   QRコードページ専用
══════════════════════════════════════ */
.sp-qr-frame {
  position: relative;
  display: inline-block;
  padding: 14px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(26,37,64,.10);
  margin: 16px 0;
}
.sp-qr-frame::before,
.sp-qr-frame::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--accent);
  border-style: solid;
}
.sp-qr-frame::before {
  top: 4px; left: 4px;
  border-width: 2px 0 0 2px;
}
.sp-qr-frame::after {
  bottom: 4px; right: 4px;
  border-width: 0 2px 2px 0;
}
.sp-qr-frame img {
  display: block;
  width: 160px; height: 160px;
  image-rendering: pixelated;
}
.sp-qr-url {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
  word-break: break-all;
  text-align: center;
  margin-bottom: 8px;
}
.sp-qr-desc {
  font-size: 12.5px;
  color: #3a4460;
  line-height: 1.8;
  text-align: center;
}

/* ══════════════════════════════════════
   メンテナンスページ専用
══════════════════════════════════════ */
.mt-body {
  background:
    var(--stripe),
    linear-gradient(180deg, #f5f7fa 0%, #e8edf5 100%);
  min-height: calc(100vh - 52px);
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
  overflow-x: hidden;
}
.mt-inner {
  max-width: var(--max-w, 430px);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.mt-icon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 28px;
  overflow: hidden;
}
.mt-icon-wrap {
  position: relative;
  width: 88px; height: 88px;
  margin-bottom: 20px;
  margin-top: 24px;
}
.mt-icon-wrap__ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(180,83,9,.22);
  animation: sp-pulse-ring 2.4s ease-in-out infinite;
  pointer-events: none;
}
.mt-icon-wrap__ring--2 {
  inset: -20px;
  border-color: rgba(180,83,9,.10);
  animation-delay: .6s;
}
.mt-icon-plane {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2f5e 0%, #0f1c3f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(26,37,64,.28),
    0 2px 0 rgba(255,255,255,.08) inset;
  animation: sp-float 3.6s ease-in-out infinite;
  font-size: 36px;
  line-height: 1;
  color: #fff;
}
.mt-icon-gear {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(180,83,9,.4);
  animation: sp-spin 4s linear infinite;
}
.mt-status-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #d97706;
  background: rgba(217,119,6,.1);
  border: 1px solid rgba(217,119,6,.3);
  padding: 4px 14px;
  border-radius: 2px;
}
.mt-ticket { background: #fff; border: 1px solid rgba(26,37,64,.10); box-shadow: 0 2px 0 rgba(255,255,255,.9) inset, 0 14px 40px rgba(26,37,64,.10); margin-bottom: 16px; }
.mt-apology {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid rgba(217,119,6,.3);
  border-left: 4px solid #d97706;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 0 4px 4px 0;
}
.mt-apology__icon { font-size: 20px; flex-shrink: 0; line-height: 1; }
.mt-apology__text { font-size: 12px; font-weight: 700; color: #92400e; line-height: 1.5; letter-spacing: .02em; }
.mt-message { text-align: center; padding: 8px 0 4px; }
.mt-message__main { font-size: 14px; font-weight: 700; color: #1a2f5e; line-height: 1.8; letter-spacing: .02em; margin-bottom: 12px; }
.mt-message__sub { font-size: 12px; color: #6b7280; line-height: 1.75; }
.mt-progress { margin: 20px 0 0; display: flex; flex-direction: column; gap: 6px; }
.mt-progress__label { display: flex; align-items: center; justify-content: space-between; font-size: 9px; font-weight: 700; letter-spacing: .14em; color: #d97706; text-transform: uppercase; }
.mt-progress__bar { height: 6px; background: rgba(26,37,64,.08); border-radius: 3px; overflow: hidden; }
.mt-progress__fill { height: 100%; width: 65%; background: linear-gradient(90deg, #d97706 0%, #fbbf24 100%); border-radius: 3px; position: relative; overflow: hidden; }
.mt-progress__fill::after { content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); animation: sp-shine 2.2s ease-in-out infinite; }
.mt-ticket__footer { padding: 10px 20px 14px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(26,37,64,.06); }
.mt-ticket__barcode { display: flex; gap: 2px; align-items: flex-end; }
.mt-ticket__barcode span { display: block; width: 2px; background: rgba(26,37,64,.35); border-radius: 1px; }
.mt-ticket__footer-label { font-size: 8px; letter-spacing: .14em; color: rgba(26,37,64,.3); text-transform: uppercase; font-weight: 700; }

/* ══════════════════════════════════════
   共通：戻るボタン
══════════════════════════════════════ */
.sp-back {
  margin-top: 28px;
  text-align: center;
}
/* テキストリンク版 */
.sp-back__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  border-bottom: 1px solid rgba(37,99,235,.22);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.sp-back__link:hover {
  color: var(--accent);
  border-color: rgba(37,99,235,.5);
}
/* ボタン版（privacy / kiyaku 等） */
.sp-back__link--btn {
  color: #fff !important;
  background: linear-gradient(110deg, #1a2f5e 0%, #2563eb 100%);
  padding: 10px 28px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.sp-back__link--btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  animation: sp-shine 3.5s ease-in-out infinite;
}
.sp-back__link--btn:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,.45);
}

/* ══════════════════════════════════════
   共通：sp-lead テキスト
══════════════════════════════════════ */
.sp-lead {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══════════════════════════════════════
   送信完了ページ（toiawase_thanks）追加分
══════════════════════════════════════ */
.sp-thanks-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.sp-thanks-icon__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  font-size: 24px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(5,150,105,.3);
}
.sp-thanks-icon__label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #059669;
}
.sp-thanks-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(22,163,74,.25);
  padding: 12px 14px;
  margin-bottom: 14px;
  justify-content: center;
}
.sp-thanks-banner__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,.7);
  flex-shrink: 0;
  animation: sp-led-blink 2s ease-in-out infinite;
}
.sp-thanks-banner__text {
  font-size: 13px;
  font-weight: 700;
  color: #15803d;
  letter-spacing: .02em;
  background: linear-gradient(transparent 60%, rgba(255,235,0,.5) 60%);
  display: inline;
}
.sp-date-block {
  position: relative;
  background: linear-gradient(118deg, #0f1c3f 0%, #1a2f5e 60%, #1e3a6e 100%);
  padding: 14px 16px 14px 14px;
  margin-bottom: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-date-block::before {
  content: "REPLY BY";
  position: absolute;
  top: 10px; right: 12px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
}
.sp-date-block::after {
  content: "";
  position: absolute;
  right: -24px; bottom: -24px;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 0 0 22px rgba(255,255,255,.03);
  pointer-events: none;
}
.sp-date-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-date-block-label::before {
  content: "✈";
  font-size: 11px;
  color: rgba(255,255,255,.4);
}
.sp-date-block-body {
  font-size: 11.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.sp-date-block #datebox {
  display: inline-block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  border-bottom: 1px dashed rgba(255,255,255,.35);
  padding-bottom: 1px;
  margin: 0 2px;
}
.sp-checklist {
  border: 1px solid rgba(26,37,64,.08);
  overflow: hidden;
}
.sp-checklist__title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(90deg, #f0f4fb 0%, #f8fafc 100%);
  padding: 8px 14px;
  border-bottom: 1px solid rgba(26,37,64,.07);
  margin: 0;
}
.sp-checklist__items {
  display: flex;
  flex-direction: column;
}
.sp-checklist__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: #3a4460;
  line-height: 1.5;
  border-bottom: 1px solid rgba(26,37,64,.05);
}
.sp-checklist__row:last-child { border-bottom: none; }
.sp-checklist__bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.sp-checklist__note {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.7;
  padding: 10px 14px;
  border-top: 1px solid rgba(26,37,64,.07);
  background: #fafbfc;
  margin: 0;
}

/* ══════════════════════════════════════
   kishu_sp_1 対応機種
══════════════════════════════════════ */
.sp-kishu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0 0;
}
.sp-kishu-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
  overflow: hidden;
}
.sp-kishu-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a2f5e 0%, #0f1c3f 100%);
  font-size: 20px;
  padding: 12px 0;
}
.sp-kishu-row__body {
  padding: 11px 12px;
  border-left: 1px solid rgba(26,37,64,.06);
}
.sp-kishu-row__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.01em;
}
.sp-kishu-row__ver {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
}
.sp-kishu-row__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  background: rgba(74,222,128,.08);
  border-left: 1px solid rgba(74,222,128,.18);
  flex-shrink: 0;
}
.sp-kishu-row__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px rgba(74,222,128,.7);
  animation: sp-led-blink 2s ease-in-out infinite;
}
.sp-kishu-row__badge-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #15803d;
}
.sp-kishu-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(234,88,12,.05);
  border: 1px solid rgba(234,88,12,.16);
  border-left: 3px solid #ea580c;
  padding: 10px 14px;
  margin-top: 14px;
}
.sp-kishu-notice__icon { font-size: 15px; flex-shrink: 0; line-height: 1; }
.sp-kishu-notice__text {
  font-size: 12px;
  font-weight: 600;
  color: #9a3412;
  line-height: 1.5;
}
.sp-test-box {
  margin-top: 14px;
  background: rgba(22,163,74,.06);
  border: 1px solid rgba(22,163,74,.18);
  border-left: 3px solid #16a34a;
  padding: 10px 14px;
  font-size: 12px;
  color: #15803d;
  line-height: 1.8;
}
.sp-test-box__label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════
   reason_sp_1 フォーム追加分
══════════════════════════════════════ */
.sp-form-lead {
  margin-bottom: 16px;
}
.sp-form__submit {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 14px;
  background: linear-gradient(135deg, var(--accent, #2563eb) 0%, #1d4ed8 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  border: none;
  font-family: var(--font);
  box-shadow: 0 6px 20px rgba(37,99,235,.28);
  cursor: pointer;
  margin-top: 16px;
  transition: filter .2s, transform .15s;
}
.sp-form__submit:hover  { filter: brightness(1.07); }
.sp-form__submit:active { transform: scale(.985); }

/* ══════════════════════════════════════
   kiyaku / privacy ページ（ky- プレフィックス）
══════════════════════════════════════ */
.ky-header-gap { height: 52px; }

.ky-body {
  background:
    var(--stripe),
    linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
  padding: 0 0 60px;
  min-height: calc(100vh - 52px);
  overflow-x: hidden;
}

.ky-inner {
  max-width: var(--max-w, 430px);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.ky-marquee {
  overflow: hidden;
  background: var(--accent);
  padding: 7px 0;
  margin-bottom: 24px;
}
.ky-marquee__track {
  display: flex;
  width: max-content;
  animation: sp-marquee 20s linear infinite;
}
.ky-marquee__group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ky-marquee__group span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 0 10px;
}
.ky-marquee__group span:nth-child(even) {
  color: rgba(255,255,255,.4);
  font-size: 8px;
}

.ky-ticket {
  background: #fff;
  border: 1px solid rgba(26,37,64,.10);
  box-shadow:
    0 2px 0 rgba(255,255,255,.9) inset,
    0 14px 40px rgba(26,37,64,.10);
  margin-bottom: 16px;
}
.ky-ticket__header {
  position: relative;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 60%, #1e3a6e 100%);
  padding: 20px 20px 18px;
  overflow: hidden;
}
.ky-ticket__header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,.06) 0%, transparent 42%);
  pointer-events: none;
}
.ky-ticket__header::before {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 0 0 28px rgba(255,255,255,.04),
    0 0 0 56px rgba(255,255,255,.025);
  pointer-events: none;
}
.ky-ticket__led-group {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
}
.ky-ticket__led {
  width: 8px; height: 8px;
  border-radius: 50%;
  color: #4ade80;
  background: currentColor;
  animation: sp-led-blink 2s ease-in-out infinite;
}
.ky-ticket__led--b { color: #60a5fa; animation-delay: .7s; }
.ky-ticket__route {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 10px;
  font-weight: inherit;
  line-height: inherit;
}
.ky-ticket__city {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.2;
  word-break: break-all;
}
.ky-ticket__city--sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ky-ticket__city--sub::before { content: "✈"; font-size: 12px; }
.ky-ticket__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ky-ticket__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.ky-ticket__status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(96,165,250,.25);
  border: 1px solid rgba(96,165,250,.5);
  border-radius: 2px;
  padding: 1px 7px;
}
.ky-ticket__perforation {
  position: relative;
  height: 20px;
  overflow: hidden;
}
.ky-ticket__perforation::before,
.ky-ticket__perforation::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px; height: 20px;
  background: #f0f4f8;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.ky-ticket__perforation::before { left: -10px; }
.ky-ticket__perforation::after  { right: -10px; }
.ky-ticket__perforation-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(26,37,64,.18) 0px,
    rgba(26,37,64,.18) 5px,
    transparent 5px,
    transparent 10px
  );
  z-index: 1;
}
.ky-ticket__body {
  padding: 14px 16px 18px;
}
.ky-ticket__lead {
  font-size: 12.5px;
  color: #3a4460;
  line-height: 1.8;
  letter-spacing: .01em;
}

.ky-section-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 10px;
}
.ky-section-badge__label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.ky-section-badge__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,.3), transparent);
}

.ky-back {
  margin-top: 32px;
  text-align: center;
}
.ky-back__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(110deg, #1a2f5e 0%, #2563eb 100%);
  padding: 10px 28px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
  transition: transform .2s, box-shadow .2s;
}
.ky-back__link::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  animation: sp-shine 3.5s ease-in-out infinite;
}
.ky-back__link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,.45);
}

/* ══════════════════════════════════════
   tai04_x_sp_1 退会完了ページ
══════════════════════════════════════ */

/* 感謝メッセージ */
.sp-tai-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 4px 0 8px;
}
.sp-tai-thanks__icon {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.12));
}
.sp-tai-thanks__msg {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1.6;
  margin: 0;
}
.sp-tai-thanks__sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* 退会ルール注意書き */
.sp-tai-rule {
  margin-top: 14px;
  background: rgba(234,88,12,.04);
  border: 1px solid rgba(234,88,12,.18);
  border-left: 3px solid #ea580c;
  overflow: hidden;
}
.sp-tai-rule__head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9a3412;
  background: rgba(234,88,12,.07);
  padding: 7px 12px;
  margin: 0;
  border-bottom: 1px solid rgba(234,88,12,.1);
}
.sp-tai-rule__list {
  list-style: none;
  margin: 0;
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sp-tai-rule__list li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  color: #7c2d12;
  line-height: 1.75;
}
.sp-tai-rule__list li::before {
  content: "·";
  position: absolute;
  left: 2px;
  top: -1px;
  font-size: 18px;
  color: #ea580c;
  font-weight: 900;
  line-height: 1;
}
.sp-tai-rule__list-em {
  font-weight: 800;
  color: #9a3412 !important;
  background: rgba(234,88,12,.07);
  margin: 2px -12px;
  padding: 6px 12px 6px 26px !important;
}

/* 解約ボタン */
.sp-tai-retire-wrap {
  margin: 4px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sp-tai-retire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  background: linear-gradient(110deg, #b91c1c 0%, #dc2626 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(185,28,28,.3);
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
}
.sp-tai-retire-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-tai-retire-btn__icon { font-size: 18px; line-height: 1; }
.sp-tai-retire-btn:hover  { filter: brightness(1.08); color: #fff; }
.sp-tai-retire-btn:active { transform: scale(.985); }
.sp-tai-retire-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .02em;
  margin: 0;
}
/* 退会しない（グレー） */
.sp-tai-retire-btn--cancel {
  background: linear-gradient(110deg, #475569 0%, #64748b 100%);
  box-shadow: 0 6px 20px rgba(71,85,105,.25);
}

/* tai01 キャリア選択ラジオ */
.sp-carrier-radio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-carrier-radio__item {
  display: contents;
}
.sp-carrier-radio__item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.sp-carrier-radio__label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(26,37,64,.12);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: background .15s, border-color .15s;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
}
.sp-carrier-radio__label::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: rgba(26,37,64,.15);
  transition: background .15s;
}
.sp-carrier-radio__item input[type="radio"]:checked + .sp-carrier-radio__label {
  background: linear-gradient(110deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(37,99,235,.3);
  color: var(--accent);
}
.sp-carrier-radio__item input[type="radio"]:checked + .sp-carrier-radio__label::before {
  background: var(--accent);
}
.sp-carrier-radio__label--docomo::after  { content: "NTT docomo"; }
.sp-carrier-radio__label--au::after      { content: "KDDI au"; }
.sp-carrier-radio__label--softbank::after { content: "SoftBank"; }
.sp-carrier-radio__label--docomo::after,
.sp-carrier-radio__label--au::after,
.sp-carrier-radio__label--softbank::after {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--muted);
  opacity: .7;
}
.sp-carrier-radio__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(26,37,64,.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s;
}
.sp-carrier-radio__dot::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background .15s;
}
.sp-carrier-radio__item input[type="radio"]:checked + .sp-carrier-radio__label .sp-carrier-radio__dot {
  border-color: var(--accent);
}
.sp-carrier-radio__item input[type="radio"]:checked + .sp-carrier-radio__label .sp-carrier-radio__dot::after {
  background: var(--accent);
}

/* 退会ボタン（赤系） */
.sp-tai03-btn--retire {
  background: linear-gradient(110deg, #b91c1c 0%, #dc2626 100%);
  box-shadow: 0 6px 20px rgba(185,28,28,.3);
  gap: 8px;
}

/* tai03 決定ボタン */
.sp-tai03-submit {
  margin-top: 20px;
}
.sp-tai03-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  background: linear-gradient(110deg, #0f1c3f 0%, #2563eb 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
}
.sp-tai03-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-tai03-btn:hover  { filter: brightness(1.08); color: #fff; }
.sp-tai03-btn:active { transform: scale(.985); }

/* 案内強調テキスト（画面下部の窓口へ誘導） */
.sp-tai-cta-text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 14px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(234,88,12,.22);
  border-left: 3px solid #ea580c;
  font-size: 13px;
  font-weight: 800;
  color: #9a3412;
  line-height: 1.5;
  letter-spacing: .02em;
}
.sp-tai-cta-text__icon {
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
}

/* セクションタイトル */
.sp-tai-section-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .04em;
  margin: 0 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--accent);
  line-height: 1.4;
}

/* キャリアカード */
.sp-carrier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.sp-carrier-card {
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
  box-shadow: 0 2px 8px rgba(26,37,64,.05);
  overflow: hidden;
}
.sp-carrier-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(26,37,64,.08);
}
.sp-carrier-card__logo {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}
.sp-carrier-card__body {
  padding: 11px 14px;
}
.sp-carrier-card__flow {
  font-size: 11.5px;
  color: #3a4460;
  line-height: 2;
  margin: 0;
  word-break: break-all;
}
.sp-carrier-card__flow a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.sp-carrier-card__arr {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  margin: 0 2px;
}

/* 広告ラッパー */
.sp-tai-ad {
  text-align: center;
  margin: 20px 0;
}

/* ══════════════════════════════════════
   list_sp_1 MYフォルダ（購入履歴）
══════════════════════════════════════ */

/* ポイント表示 */
.sp-mylist-point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  padding: 12px 16px;
  margin-top: 4px;
}
.sp-mylist-point__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.65);
}
.sp-mylist-point__value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1;
}
.sp-mylist-point__unit {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  margin-left: 3px;
}

/* 件数バッジ */
.sp-mylist-count {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 10px 2px 6px;
}
.sp-mylist-count__num {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
}
.sp-mylist-count__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* 履歴リスト */
.sp-mylist {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,37,64,.08);
  overflow: hidden;
  margin-bottom: 16px;
}
.sp-mylist-row {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,37,64,.06);
  background: #fff;
  transition: background .15s;
  min-height: 54px;
}
.sp-mylist-row:last-child { border-bottom: none; }
.sp-mylist-row:hover { background: #f5f8ff; }

.sp-mylist-row__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-height: 54px;
  background: linear-gradient(180deg, #1a2f5e 0%, #0f1c3f 100%);
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
  letter-spacing: .04em;
}
.sp-mylist-row__body {
  flex: 1;
  padding: 10px 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.sp-mylist-row__genre {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .8;
}
.sp-mylist-row__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  word-break: break-all;
}
.sp-mylist-row__arrow {
  font-size: 20px;
  color: rgba(26,37,64,.2);
  padding: 0 12px 0 6px;
  flex-shrink: 0;
  line-height: 1;
}
.sp-mylist-row:hover .sp-mylist-row__arrow {
  color: var(--accent);
}

/* ══════════════════════════════════════
   detail_sp_1 詳細ページ
══════════════════════════════════════ */
.sp-detail-msg {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
  min-height: 0;
}
.sp-detail-msg:empty { display: none; }

.sp-detail-block {
  margin-bottom: 16px;
  overflow: hidden;
}

.sp-detail-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
}
.sp-detail-table--sep {
  margin-top: 10px;
}
.sp-detail-subtitle {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 2px 6px;
}
.sp-detail-row {
  border-bottom: 1px solid rgba(26,37,64,.06);
}
.sp-detail-row:last-child { border-bottom: none; }
.sp-detail-th {
  width: 36%;
  padding: 11px 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  vertical-align: top;
  letter-spacing: .04em;
  white-space: nowrap;
}
.sp-detail-td {
  padding: 11px 12px;
  font-size: 12.5px;
  color: #3a4460;
  line-height: 1.75;
  vertical-align: top;
  word-break: break-all;
}

/* 操作ボタン */
.sp-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.sp-detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
  box-sizing: border-box;
}
.sp-detail-btn:active { transform: scale(.985); }
.sp-detail-btn--edit {
  background: linear-gradient(110deg, #0f1c3f 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
}
.sp-detail-btn--edit:hover { filter: brightness(1.08); }
.sp-detail-btn--destroy {
  background: #fff;
  color: #b91c1c;
  border: 1px solid rgba(185,28,28,.3);
  box-shadow: 0 2px 8px rgba(185,28,28,.08);
}
.sp-detail-btn--destroy:hover {
  background: #fff5f5;
  filter: none;
}

/* サブモデル・一覧リンク */
.sp-detail-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,37,64,.08);
  overflow: hidden;
  margin-bottom: 24px;
}
.sp-detail-link {
  display: flex;
  align-items: center;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  background: #fff;
  border-bottom: 1px solid rgba(26,37,64,.06);
  transition: background .15s;
  gap: 8px;
}
.sp-detail-link:last-child { border-bottom: none; }
.sp-detail-link:hover { background: #f5f8ff; }
.sp-detail-link__arrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

/* ══════════════════════════════════════
   list_sp_2 ジャンル一覧
══════════════════════════════════════ */
.sp-genre-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(26,37,64,.08);
  overflow: hidden;
  margin-bottom: 16px;
}
.sp-genre-row {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,37,64,.06);
  background: #fff;
  min-height: 52px;
  transition: background .15s;
}
.sp-genre-row:last-child { border-bottom: none; }
.sp-genre-row:hover { background: #f5f8ff; }

.sp-genre-row__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-height: 52px;
  background: linear-gradient(180deg, #1a2f5e 0%, #0f1c3f 100%);
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
  letter-spacing: .04em;
}
.sp-genre-row__body {
  flex: 1;
  padding: 13px 10px 13px 14px;
  overflow: hidden;
}
.sp-genre-row__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  word-break: break-all;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-genre-row__name::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.sp-genre-row__arrow {
  font-size: 20px;
  color: rgba(26,37,64,.2);
  padding: 0 12px 0 6px;
  flex-shrink: 0;
  line-height: 1;
}
.sp-genre-row:hover .sp-genre-row__arrow {
  color: var(--accent);
}

/* ══════════════════════════════════════
   photo_img_sp_1 ダウンロード確認
══════════════════════════════════════ */

/* 消費ポイント */
.sp-dl-point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.sp-dl-point__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.65);
}
.sp-dl-point__value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sp-dl-point__unit {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  margin-left: 3px;
}

/* 確認エリア */
.sp-dl-confirm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-dl-confirm__note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  text-align: center;
  padding: 0 4px;
}

/* ダウンロードボタン共通 */
.sp-dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.sp-dl-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-dl-btn:active { transform: scale(.985); }
.sp-dl-btn--download {
  background: linear-gradient(110deg, #059669 0%, #10b981 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(5,150,105,.3);
}
.sp-dl-btn--download:hover  { filter: brightness(1.07); color: #fff; }
.sp-dl-btn--redownload {
  background: linear-gradient(110deg, #0f1c3f 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,99,235,.28);
}
.sp-dl-btn--redownload:hover { filter: brightness(1.07); color: #fff; }
.sp-dl-btn--add {
  background: linear-gradient(110deg, #b45309 0%, #d97706 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(180,83,9,.28);
}
.sp-dl-btn--add:hover { filter: brightness(1.07); color: #fff; }

/* ポイント不足 */
.sp-dl-shortage {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-dl-shortage__current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,37,64,.04);
  border: 1px solid rgba(26,37,64,.08);
  padding: 11px 14px;
}
.sp-dl-shortage__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
}
.sp-dl-shortage__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.sp-dl-shortage__unit {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 2px;
}
.sp-dl-shortage__msg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(234,88,12,.05);
  border: 1px solid rgba(234,88,12,.18);
  border-left: 3px solid #ea580c;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #9a3412;
  line-height: 1.6;
}
.sp-dl-shortage__msg-icon { font-size: 15px; flex-shrink: 0; }

/* ══════════════════════════════════════
   wallpaper_list_sp_1 待ち受け一覧
══════════════════════════════════════ */

/* コンテンツなし */
.sp-list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 16px;
  text-align: center;
}
.sp-list-empty__icon {
  font-size: 40px;
  line-height: 1;
  opacity: .5;
}
.sp-list-empty__msg {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.sp-list-empty__link {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: .05em;
}

/* ページネーションラッパー */
.sp-pagination-wrap {
  margin: 12px 0 16px;
  display: flex;
  justify-content: center;
}
.sp-pagination-wrap--top {
  margin-top: 0;
}

/* コンテンツグリッド */
.sp-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.sp-content-card {
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
  box-shadow: 0 2px 8px rgba(26,37,64,.06);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.sp-content-card:hover {
  box-shadow: 0 6px 18px rgba(26,37,64,.12);
  transform: translateY(-2px);
}
.sp-content-card__link {
  display: block;
  text-decoration: none;
}

/* サムネイル */
.sp-content-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #e8ecf2;
}
.sp-content-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.sp-content-card:hover .sp-content-card__thumb img {
  transform: scale(1.04);
}

/* オーバーレイ */
.sp-content-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,28,63,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.sp-content-card:hover .sp-content-card__overlay {
  opacity: 1;
}
.sp-content-card__overlay-icon {
  font-size: 28px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

/* カードフッター */
.sp-content-card__foot {
  padding: 8px 10px;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-content-card__dl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sp-content-card__dl::before {
  content: "⬇";
  font-size: 10px;
}

/* ══════════════════════════════════════
   guide_sp_1 ガイドカード
══════════════════════════════════════ */
.sp-guide-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.sp-guide-card {
  background: #fff;
  border: 1px solid rgba(26,37,64,.08);
  box-shadow: 0 2px 8px rgba(26,37,64,.06);
  overflow: hidden;
  transition: box-shadow .2s;
}
.sp-guide-card:hover {
  box-shadow: 0 4px 16px rgba(26,37,64,.1);
}

.sp-guide-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  padding: 11px 14px;
}
.sp-guide-card__icon {
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}
.sp-guide-card__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.3;
}

.sp-guide-card__body {
  padding: 13px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sp-guide-card__body p {
  font-size: 12.5px;
  color: #3a4460;
  line-height: 1.75;
  margin: 0;
}
.sp-guide-card__body--price p {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.sp-guide-note-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sp-guide-note-list li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.sp-guide-note-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

/* ══════════════════════════════════════
   info_text_sp_1  コンテンツ記事本文
══════════════════════════════════════ */

.sp-article {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(15,28,63,.07);
  overflow: hidden;
}

.sp-article__img-wrap {
  width: 100%;
  line-height: 0;
  border-bottom: 1px solid rgba(15,28,63,.06);
}
.sp-article__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sp-article__body {
  padding: 16px 16px 20px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
  border-bottom: 1px solid rgba(15,28,63,.06);
  word-break: break-all;
}
.sp-article__body:last-child {
  border-bottom: none;
}
.sp-article__body p { margin: 0 0 .8em; }
.sp-article__body p:last-child { margin-bottom: 0; }

/* 会員登録案内 */
.sp-regist-lead {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted);
  padding: 14px 16px;
  background: rgba(15,28,63,.03);
  border: 1px solid rgba(15,28,63,.07);
  margin-bottom: 14px;
}

.sp-regist-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sp-regist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 14px;
  background: linear-gradient(110deg, #059669 0%, #10b981 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(5,150,105,.3);
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
}
.sp-regist-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-regist-btn:hover  { filter: brightness(1.07); color: #fff; }
.sp-regist-btn:active { transform: scale(.985); }

/* ══════════════════════════════════════
   detail_text_sp_1  閲覧確認
══════════════════════════════════════ */

/* サムネイル */
.sp-dtxt-thumb {
  width: 70%;
  margin: 0 auto 16px;
  line-height: 0;
}
.sp-dtxt-thumb__img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 18px rgba(15,28,63,.15);
}

/* ポイント表示ブロック */
.sp-dtxt-point-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15,28,63,.08);
}
.sp-dtxt-point-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(15,28,63,.04);
  border: 1px solid rgba(15,28,63,.07);
}
.sp-dtxt-point-row--consume {
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  border-color: transparent;
}
.sp-dtxt-point-row__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  color: rgba(255,255,255,.6);
}
.sp-dtxt-point-row:not(.sp-dtxt-point-row--consume) .sp-dtxt-point-row__label {
  color: var(--muted);
}
.sp-dtxt-point-row__value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sp-dtxt-point-row:not(.sp-dtxt-point-row--consume) .sp-dtxt-point-row__value {
  color: var(--text);
}
.sp-dtxt-point-row__value--accent {
  color: #fbbf24;
}
.sp-dtxt-point-row__unit {
  font-size: 11px;
  font-weight: 700;
  margin-left: 2px;
  opacity: .7;
}

/* 確認エリア */
.sp-dtxt-confirm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-dtxt-confirm__note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  text-align: center;
  padding: 0 4px;
}

/* ══════════════════════════════════════
   list_sp_3  デコメ一覧
══════════════════════════════════════ */

.sp-decome-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-decome-item {
  border-bottom: 1px solid rgba(15,28,63,.07);
}
.sp-decome-item:last-child {
  border-bottom: none;
}

.sp-decome-item__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text);
  transition: background .15s;
}
.sp-decome-item__link:hover,
.sp-decome-item__link:active {
  background: rgba(15,28,63,.04);
}

.sp-decome-item__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: rgba(15,28,63,.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-decome-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-decome-item__name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-all;
}

.sp-decome-item__arrow {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

/* ══════════════════════════════════════
   contents_list_sp_1  コンテンツ一覧
══════════════════════════════════════ */

/* ジャンル説明 */
.sp-clist-desc {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,28,63,.07);
}

/* ポイント表示 */
.sp-clist-point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sp-clist-point__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  color: rgba(255,255,255,.6);
}
.sp-clist-point__value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sp-clist-point__unit {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  margin-left: 2px;
}

/* 非会員：登録バナー */
.sp-clist-regist {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,28,63,.07);
  text-align: center;
}
.sp-clist-regist__link { display: inline-block; }
.sp-clist-regist__img {
  width: 80%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* 一覧リスト */
.sp-clist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-clist-row {
  border-bottom: 1px solid rgba(15,28,63,.07);
}
.sp-clist-row:last-child { border-bottom: none; }

.sp-clist-row__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text);
  transition: background .15s;
}
.sp-clist-row__link:hover,
.sp-clist-row__link:active {
  background: rgba(15,28,63,.04);
}

.sp-clist-row__title {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-all;
}

.sp-clist-row__badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px 7px;
  border-radius: 2px;
}
.sp-clist-row__badge--read {
  background: rgba(15,28,63,.08);
  color: var(--muted);
}
.sp-clist-row__badge--unread {
  background: rgba(234,88,12,.1);
  color: #c2410c;
}

.sp-clist-row__arrow {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

/* ══════════════════════════════════════
   retire_try_docomo_sp_1  退会確認（docomo）
══════════════════════════════════════ */

/* 退会ボタン（docomo 用・横並び） */
.sp-retire-docomo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(110deg, #b91c1c 0%, #e11d48 100%);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(185,28,28,.30);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
  margin-bottom: 10px;
}
.sp-retire-docomo-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-retire-docomo-btn:hover  { filter: brightness(1.08); color: #fff; }
.sp-retire-docomo-btn:active { transform: scale(.985); }
.sp-retire-docomo-btn__course {
  font-size: 12px;
  font-weight: 700;
  opacity: .85;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-retire-docomo-btn__label {
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
}
.sp-retire-docomo-btn__arrow {
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  opacity: .8;
}

/* 注意文 */
.sp-retire-lead {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted);
  padding: 10px 2px;
  margin: 0 0 14px;
}

/* キャリア見出し */
.sp-retire-carrier-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  color: #fff;
  background: linear-gradient(110deg, #b91c1c 0%, #dc2626 100%);
  padding: 10px 14px;
  margin-bottom: 4px;
}
.sp-retire-carrier-head__icon { font-size: 15px; }

/* セクションラベル */
.sp-retire-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  padding: 8px 14px 4px;
  margin: 0;
  text-transform: uppercase;
}

/* コース一覧 */
.sp-retire-course-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-retire-course-item { margin: 0; }

.sp-retire-course-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  background: linear-gradient(110deg, #b91c1c 0%, #ef4444 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(185,28,28,.28);
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
}
.sp-retire-course-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-retire-course-btn:hover  { filter: brightness(1.07); color: #fff; }
.sp-retire-course-btn:active { transform: scale(.985); }

.sp-retire-course-btn__price {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.sp-retire-course-btn__tax {
  font-size: 12px;
  font-weight: 600;
  opacity: .8;
  margin-left: 2px;
}
.sp-retire-course-btn__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .9;
}

/* コース無し */
.sp-retire-empty {
  font-size: 13px;
  color: var(--muted);
  padding: 16px 14px;
  text-align: center;
}

/* エラー */
.sp-retire-error {
  font-size: 12.5px;
  color: #dc2626;
  font-weight: 700;
  padding: 10px 14px;
  margin: 0 0 12px;
  background: rgba(220,38,38,.05);
  border: 1px solid rgba(220,38,38,.15);
}

/* ══════════════════════════════════════
   retire_old_sp_1  旧サイト会員退会
══════════════════════════════════════ */

.sp-retire-old-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0 6px;
}

.sp-retire-old-form__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
}

.sp-retire-old-form__input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1.5px solid rgba(15,28,63,.18);
  outline: none;
  appearance: none;
  transition: border-color .2s;
}
.sp-retire-old-form__input:focus {
  border-color: var(--accent);
}
.sp-retire-old-form__input::placeholder {
  color: rgba(15,28,63,.3);
  font-weight: 400;
}

.sp-retire-old-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 14px;
  background: linear-gradient(110deg, #b91c1c 0%, #ef4444 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(185,28,28,.28);
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
}
.sp-retire-old-form__btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-retire-old-form__btn:hover  { filter: brightness(1.07); }
.sp-retire-old-form__btn:active { transform: scale(.985); }

/* ══════════════════════════════════════
   retire_ng_sp_1  退会キャンセル
══════════════════════════════════════ */

.sp-ticket__status--gray {
  background: rgba(100,116,139,.15);
  color: #64748b;
}

.sp-retire-cancel-icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #64748b;
  background: rgba(100,116,139,.1);
  border: 2px solid rgba(100,116,139,.2);
  border-radius: 50%;
  margin: 8px auto 12px;
}

.sp-retire-cancel-msg {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   retire_mysoftbank_sp_1  退会（SoftBank）
══════════════════════════════════════ */

/* SoftBank LED */
.sp-ticket__led--sb {
  background: #00a0e9;
  box-shadow: 0 0 6px 2px rgba(0,160,233,.7);
  animation: sp-led-blink 1.6s ease-in-out infinite;
}

/* SoftBank タグ */
.sp-ticket__tag--sb {
  background: #00a0e9;
  color: #fff;
  font-weight: 800;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: .06em;
}

/* SoftBank ステータス */
.sp-ticket__status--sb {
  background: rgba(0,160,233,.15);
  color: #0077b6;
  font-weight: 800;
}

/* SoftBank キャリア見出し */
.sp-retire-carrier-head--sb {
  background: linear-gradient(110deg, #0077b6 0%, #00a0e9 100%);
}

/* SoftBank 退会ボタン */
.sp-retire-course-btn--sb {
  background: linear-gradient(110deg, #0077b6 0%, #00a0e9 100%);
  box-shadow: 0 6px 20px rgba(0,160,233,.32);
}
.sp-retire-course-btn--sb:hover { filter: brightness(1.08); color: #fff; }

/* ══════════════════════════════════════
   retire_auone_sp_1  退会（au）
══════════════════════════════════════ */

/* au 退会ボタン */
.sp-retire-au-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(110deg, #c2410c 0%, #f97316 100%);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(249,115,22,.30);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
  margin-bottom: 10px;
}
.sp-retire-au-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-retire-au-btn:hover  { filter: brightness(1.08); color: #fff; }
.sp-retire-au-btn:active { transform: scale(.985); }
.sp-retire-au-btn__course {
  font-size: 12px;
  font-weight: 700;
  opacity: .85;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-retire-au-btn__label {
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
}
.sp-retire-au-btn__arrow {
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  opacity: .8;
}

/* au LED（オレンジ） */
.sp-ticket__led--au {
  background: #f60;
  box-shadow: 0 0 6px 2px rgba(255,102,0,.7);
  animation: sp-led-blink 1.6s ease-in-out infinite;
}

/* au タグ */
.sp-ticket__tag--au {
  background: #f60;
  color: #fff;
  font-weight: 800;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: .06em;
}

/* au ステータス */
.sp-ticket__status--au {
  background: rgba(255,102,0,.12);
  color: #c2410c;
  font-weight: 800;
}

/* au キャリア見出し */
.sp-retire-carrier-head--au {
  background: linear-gradient(110deg, #c2410c 0%, #f60 100%);
}

/* au 退会ボタン */
.sp-retire-course-btn--au {
  background: linear-gradient(110deg, #c2410c 0%, #f97316 100%);
  box-shadow: 0 6px 20px rgba(249,115,22,.32);
}
.sp-retire-course-btn--au:hover { filter: brightness(1.08); color: #fff; }

/* 入会処理中リンク */
.sp-retire-shori-link {
  text-align: right;
  margin-top: 10px;
  padding-right: 2px;
}
.sp-retire-shori-link__anchor {
  font-size: 12px;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px dotted #94a3b8;
}
.sp-retire-shori-link__anchor:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ══════════════════════════════════════
   registered_sp_1  登録失敗
══════════════════════════════════════ */

.sp-registered-icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  margin: 8px auto 12px;
  box-shadow: 0 4px 14px rgba(220,38,38,.3);
}

.sp-registered-msg {
  font-size: 14px;
  font-weight: 700;
  color: #dc2626;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   regist_ok_sp_1  会員登録完了
══════════════════════════════════════ */

.sp-regist-info {
  background: linear-gradient(118deg, #0f1c3f 0%, #1a2f5e 100%);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.sp-regist-info__note {
  font-size: 11.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin: 0 0 12px;
}

.sp-regist-info__dl {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
}

.sp-regist-info__row {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.04);
  overflow: hidden;
}

.sp-regist-info__dt {
  flex-shrink: 0;
  width: 44%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.2);
  padding: 10px 12px;
  display: flex;
  align-items: center;
}

.sp-regist-info__dd {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 10px 12px;
  margin: 0;
  word-break: break-all;
  display: flex;
  align-items: center;
}

/* ══════════════════════════════════════
   regist_mysoftbank_sp_1  会員登録（SoftBank）
══════════════════════════════════════ */

/* 登録ボタン共通 */
.sp-regist-course-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: filter .2s, transform .15s;
}
.sp-regist-course-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-regist-course-btn:active { transform: scale(.985); }

/* SoftBank 登録ボタン */
.sp-regist-course-btn--sb {
  background: linear-gradient(110deg, #0077b6 0%, #00a0e9 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,160,233,.32);
}
.sp-regist-course-btn--sb:hover { filter: brightness(1.08); color: #fff; }

/* 登録済みボタン */
.sp-regist-course-btn--registered {
  background: rgba(100,116,139,.08);
  border: 1.5px solid rgba(100,116,139,.2);
  color: var(--text);
  cursor: default;
}
.sp-regist-course-btn--registered::after { display: none; }
.sp-regist-course-btn--registered .sp-retire-course-btn__carrier { color: var(--muted); }
.sp-regist-course-btn--registered .sp-retire-course-btn__free { color: var(--muted); }
.sp-regist-course-btn--registered .sp-retire-course-btn__sub { color: var(--muted); }

/* ポイント表示 */
.sp-regist-course-btn__point {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .03em;
}
.sp-regist-course-btn--registered .sp-regist-course-btn__point {
  color: var(--text);
}

/* 登録済みバッジ */
.sp-regist-course-btn__registered-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  color: #dc2626;
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.2);
  padding: 1px 7px;
}

/* ソフトバンクまとめて支払いとは？ */
.sp-regist-about {
  margin-top: 16px;
  border-top: 1px solid rgba(15,28,63,.07);
  padding-top: 12px;
}
.sp-regist-about__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--muted);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.sp-regist-about__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: rgba(0,160,233,.06);
  border: 1px solid rgba(0,160,233,.18);
  border-left: 3px solid #00a0e9;
  font-size: 13px;
  font-weight: 600;
  color: #0077b6;
  text-decoration: none;
  transition: background .15s;
}
.sp-regist-about__link:hover { background: rgba(0,160,233,.1); }
.sp-regist-about__arrow {
  font-size: 20px;
  color: #00a0e9;
  line-height: 1;
}

/* ══════════════════════════════════════
   regist_docomo_sp_1  会員登録（d払い）
══════════════════════════════════════ */

/* d払い LED */
.sp-ticket__led--dpay {
  background: #e11d48;
  box-shadow: 0 0 6px 2px rgba(225,29,72,.7);
  animation: sp-led-blink 1.6s ease-in-out infinite;
}

/* d払い タグ */
.sp-ticket__tag--dpay {
  background: #e11d48;
  color: #fff;
  font-weight: 800;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: .06em;
}

/* d払い ステータス */
.sp-ticket__status--dpay {
  background: rgba(225,29,72,.12);
  color: #be123c;
  font-weight: 800;
}

/* d払い 登録ボタン */
.sp-regist-course-btn--dpay {
  background: linear-gradient(110deg, #be123c 0%, #e11d48 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(225,29,72,.3);
}
.sp-regist-course-btn--dpay:hover { filter: brightness(1.08); color: #fff; }

/* d払い リンクカード */
.sp-regist-about__link--dpay {
  color: #be123c;
  background: rgba(225,29,72,.05);
  border: 1px solid rgba(225,29,72,.18);
  border-left: 3px solid #e11d48;
}
.sp-regist-about__link--dpay:hover { background: rgba(225,29,72,.1); }
.sp-regist-about__link--dpay .sp-regist-about__arrow { color: #e11d48; }

/* ══════════════════════════════════════
   regist_auone_sp_1  会員登録（au）
══════════════════════════════════════ */

/* au 登録ボタン */
.sp-regist-course-btn--au {
  background: linear-gradient(110deg, #c2410c 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(249,115,22,.32);
}
.sp-regist-course-btn--au:hover { filter: brightness(1.08); color: #fff; }

/* au ヒーローバッジ ヘッダー */
.sp-regist-free-hero__header--au {
  background: linear-gradient(110deg, #7c2d12 0%, #c2410c 100%);
}

/* au ヒーローバッジ フッター */
.sp-regist-free-hero__foot--au {
  background: linear-gradient(110deg, #7c2d12 0%, #c2410c 100%);
}

/* au ヒーローバッジ サブ */
.sp-regist-free-hero__sub--au { color: #f97316; }

/* au ヒーローバッジ メイン */
.sp-regist-free-hero__main--au {
  color: #ea580c;
  border-color: #ea580c;
  outline-color: rgba(234,88,12,.3);
  background: rgba(234,88,12,.04);
}

/* au リンクカード */
.sp-regist-about__link--au {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  color: #c2410c;
  background: rgba(234,88,12,.05);
  border: 1px solid rgba(234,88,12,.18);
  border-left: 3px solid #ea580c;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.sp-regist-about__link--au:hover { background: rgba(234,88,12,.1); }
.sp-regist-about__link--au .sp-regist-about__arrow { color: #ea580c; font-size: 20px; }

/* ══════════════════════════════════════
   no_login_sp_1  ログイン
══════════════════════════════════════ */

/* ログインリード */
.sp-login-lead {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: .04em;
}

/* ログインボタン外枠 */
.sp-login-btn-wrap {
  margin-bottom: 12px;
}

/* ログインボタン外枠 */
.sp-login-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: transform .12s, box-shadow .15s;
}
.sp-login-btn:hover {
  transform: translateY(-3px);
}
.sp-login-btn:active {
  transform: translateY(2px);
}

/* 上段：白背景ロゴエリア */
.sp-login-btn__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px 24px 16px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.sp-login-btn__logo img {
  max-width: 180px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 上段下端のV字カット（疑似セパレータ） */
.sp-login-btn__logo::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 14px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* 下段：カラー背景テキストエリア */
.sp-login-btn__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 16px 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}
/* シャインアニメ */
.sp-login-btn__text::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}

/* 矢印アイコン */
.sp-login-btn__arrow {
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,.85);
  line-height: 1;
  flex-shrink: 0;
}

/* docomo */
.sp-login-btn--docomo {
  box-shadow: 0 5px 0 #9f0a2e, 0 10px 24px rgba(225,29,72,.35);
}
.sp-login-btn--docomo .sp-login-btn__logo { border-bottom: 3px solid #e11d48; }
.sp-login-btn--docomo .sp-login-btn__logo::after { background: #fff; }
.sp-login-btn--docomo .sp-login-btn__text { background: linear-gradient(135deg, #e11d48 0%, #ff5c7a 100%); }
.sp-login-btn--docomo:hover { box-shadow: 0 8px 0 #9f0a2e, 0 14px 30px rgba(225,29,72,.4); }
.sp-login-btn--docomo:active { box-shadow: 0 2px 0 #9f0a2e, 0 4px 12px rgba(225,29,72,.2); }

/* au */
.sp-login-btn--au {
  box-shadow: 0 5px 0 #b45309, 0 10px 24px rgba(249,115,22,.35);
}
.sp-login-btn--au .sp-login-btn__logo { border-bottom: 3px solid #f97316; }
.sp-login-btn--au .sp-login-btn__logo::after { background: #fff; }
.sp-login-btn--au .sp-login-btn__text { background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%); }
.sp-login-btn--au:hover { box-shadow: 0 8px 0 #b45309, 0 14px 30px rgba(249,115,22,.4); }
.sp-login-btn--au:active { box-shadow: 0 2px 0 #b45309, 0 4px 12px rgba(249,115,22,.2); }

/* SoftBank */
.sp-login-btn--sb {
  box-shadow: 0 5px 0 #0369a1, 0 10px 24px rgba(14,165,233,.35);
}
.sp-login-btn--sb .sp-login-btn__logo { border-bottom: 3px solid #0ea5e9; }
.sp-login-btn--sb .sp-login-btn__logo::after { background: #fff; }
.sp-login-btn--sb .sp-login-btn__text { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); }
.sp-login-btn--sb:hover { box-shadow: 0 8px 0 #0369a1, 0 14px 30px rgba(14,165,233,.4); }
.sp-login-btn--sb:active { box-shadow: 0 2px 0 #0369a1, 0 4px 12px rgba(14,165,233,.2); }

/* ID */
.sp-login-btn--id {
  box-shadow: 0 5px 0 #1d4ed8, 0 10px 24px rgba(59,130,246,.35);
}
.sp-login-btn--id .sp-login-btn__logo { border-bottom: 3px solid #3b82f6; }
.sp-login-btn--id .sp-login-btn__logo::after { background: #fff; }
.sp-login-btn--id .sp-login-btn__text { background: linear-gradient(135deg, #3b82f6 0%, #818cf8 100%); }
.sp-login-btn--id:hover { box-shadow: 0 8px 0 #1d4ed8, 0 14px 30px rgba(59,130,246,.4); }
.sp-login-btn--id:active { box-shadow: 0 2px 0 #1d4ed8, 0 4px 12px rgba(59,130,246,.2); }

/* ══════════════════════════════════════
   login_ng_id_sp_1  IDログイン案内
══════════════════════════════════════ */

.sp-login-ng-note {
  font-size: 11.5px;
  color: var(--muted);
  margin: 4px 0 14px;
  padding: 0 2px;
}

.sp-login-ng-forgot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(15,28,63,.03);
  border: 1px solid rgba(15,28,63,.08);
  margin-bottom: 16px;
}
.sp-login-ng-forgot__text {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.sp-login-ng-forgot__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: filter .18s;
}
.sp-login-ng-forgot__link:hover { filter: brightness(1.1); color: #fff; }
.sp-login-ng-forgot__arrow {
  margin-left: auto;
  font-size: 20px;
  opacity: .7;
}

/* シングルコース説明 */
.sp-regist-single-desc__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.7;
}
.sp-regist-single-desc__note {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin: 8px 0 0;
  padding: 10px 12px;
  background: rgba(15,28,63,.03);
  border: 1px solid rgba(15,28,63,.07);
}

/* 無料ヒーローバッジ（航空券スタンプ風） */
.sp-regist-free-hero {
  position: relative;
  margin: 4px 0 14px;
  padding: 0;
  /* 航空券の切り取り線風：左右に半円ノッチ */
  filter: drop-shadow(0 6px 18px rgba(15,28,63,.18));
}

/* 上段：ダーク紺ヘッダー */
.sp-regist-free-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
}

/* ノッチライン */
.sp-regist-free-hero__ticket {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* ヘッダー部（行き先バー） */
.sp-regist-free-hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  padding: 9px 16px;
  position: relative;
}
.sp-regist-free-hero__header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg, rgba(255,255,255,.25) 0px, rgba(255,255,255,.25) 6px,
    transparent 6px, transparent 12px
  );
}
.sp-regist-free-hero__route {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.sp-regist-free-hero__plane {
  font-size: 18px;
  animation: sp-plane-fly 3s ease-in-out infinite;
}
@keyframes sp-plane-fly {
  0%,100% { transform: translateX(0) rotate(-5deg); }
  50%      { transform: translateX(4px) rotate(0deg); }
}

/* メインエリア（スタンプ風） */
.sp-regist-free-hero__body {
  background: #fff;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

/* スタンプ風円形装飾 */
.sp-regist-free-hero__body::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 3px dashed rgba(220,38,38,.12);
  pointer-events: none;
}

.sp-regist-free-hero__sub {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  color: #dc2626;
  text-transform: uppercase;
  position: relative;
}
.sp-regist-free-hero__main {
  font-size: 26px;
  font-weight: 900;
  color: #dc2626;
  letter-spacing: .03em;
  line-height: 1.15;
  text-align: center;
  position: relative;
  /* スタンプ風：わずかに傾ける */
  transform: rotate(-1.5deg);
  text-shadow: none;
  /* 二重ラインで囲む */
  padding: 6px 14px;
  border: 2.5px solid #dc2626;
  outline: 1px solid rgba(220,38,38,.3);
  outline-offset: 3px;
  background: rgba(220,38,38,.04);
}
.sp-regist-free-hero__note {
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: .06em;
  position: relative;
}

/* フッター（バーコード風ライン） */
.sp-regist-free-hero__foot {
  background: linear-gradient(110deg, #0f1c3f 0%, #1a2f5e 100%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-regist-free-hero__foot-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}
.sp-regist-free-hero__barcode {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}
.sp-regist-free-hero__barcode span {
  display: block;
  width: 2px;
  background: rgba(255,255,255,.4);
}

/* お試し期間の注意書き */
.sp-regist-trial-note {
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
  padding: 10px 12px;
  background: rgba(15,28,63,.03);
  border: 1px solid rgba(15,28,63,.07);
  margin-top: 6px;
}

/* 詳細情報フレーム（グレー枠） */
.sp-regist-info-frame {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(15,28,63,.03);
  border: 1px solid rgba(15,28,63,.08);
  margin-top: 12px;
}
.sp-regist-info-frame__terms {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.sp-regist-info-frame__notice {
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(15,28,63,.07);
}

/* メタ情報（tieup-ac_no）非表示 */
.sp-regist-meta {
  display: none;
}

.sp-retire-course-btn--pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  background: rgba(100,116,139,.08);
  border: 1.5px solid rgba(100,116,139,.2);
  cursor: default;
}

.sp-retire-course-btn__carrier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .7;
}
.sp-retire-course-btn--pending .sp-retire-course-btn__carrier {
  color: var(--muted);
}

.sp-retire-course-btn__pending-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  color: #dc2626;
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.2);
  padding: 2px 10px;
}

.sp-retire-course-btn--pending .sp-retire-course-btn__price {
  font-size: 20px;
  color: var(--text);
}
.sp-retire-course-btn--pending .sp-retire-course-btn__tax {
  font-size: 11px;
  color: var(--muted);
  opacity: 1;
}
.sp-retire-course-btn--pending .sp-retire-course-btn__label {
  font-size: 11.5px;
  color: var(--muted);
  opacity: 1;
  letter-spacing: 0;
}

/* ══════════════════════════════════════
   retire_docomo_sp_1  退会（d払い）
══════════════════════════════════════ */

.sp-retire-carrier-head--dpay {
  background: linear-gradient(110deg, #b91c1c 0%, #e11d48 100%);
}

/* 初月無料・お試し無料 */
.sp-retire-course-btn__free {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fbbf24;
  margin-bottom: 2px;
}

/* サブテキスト（次月以降〜） */
.sp-retire-course-btn__sub {
  display: block;
  font-size: 13px;
  font-weight: 700;
  opacity: .9;
}

/* 注釈（翌々日キャンセル等） */
.sp-retire-course-btn__note {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  margin-top: 2px;
  opacity: .85;
}
.sp-retire-course-btn__note--red {
  color: #fca5a5;
}
.sp-retire-course-btn--pending .sp-retire-course-btn__note--red {
  color: #dc2626;
}

/* ══════════════════════════════════════
   ログアウトページ
══════════════════════════════════════ */
.sp-logout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 0 #111827, 0 8px 20px rgba(31,41,55,.35);
  transition: transform .12s, box-shadow .15s;
}
.sp-logout-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: sp-shine 5s ease-in-out infinite;
}
.sp-logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #111827, 0 12px 28px rgba(31,41,55,.4);
}
.sp-logout-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #111827, 0 4px 10px rgba(31,41,55,.2);
}
.sp-logout-btn__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.sp-logout-btn__text {
  flex: 1;
}
.sp-logout-btn__arrow {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}

.sp-logout-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.sp-logout-link-item {
  font-size: 12.5px;
  color: var(--muted, #64748b);
  text-decoration: none;
  padding: 4px 2px;
}
.sp-logout-link-item:hover {
  color: var(--accent, #2563eb);
  text-decoration: underline;
}

/* ══════════════════════════════════════
   IDログインページ
══════════════════════════════════════ */
.sp-id-login-lead {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 18px;
}

.sp-id-login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

.sp-id-login-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sp-id-login-field__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted, #64748b);
}

.sp-id-login-field__input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
  -webkit-appearance: none;
}
.sp-id-login-field__input:focus {
  border-color: var(--accent, #2563eb);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.sp-id-login-submit {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  margin-top: 6px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 0 #1e3a8a, 0 8px 20px rgba(37,99,235,.3);
  transition: transform .12s, box-shadow .15s;
}
.sp-id-login-submit::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: sp-shine 4s ease-in-out infinite;
}
.sp-id-login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #1e3a8a, 0 12px 28px rgba(37,99,235,.35);
}
.sp-id-login-submit:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1e3a8a, 0 4px 10px rgba(37,99,235,.2);
}

/* ══════════════════════════════════════
   ログイン情報ページ
══════════════════════════════════════ */
.sp-login-info-notice {
  position: relative;
  background: linear-gradient(135deg, #0f1c3f 0%, #1e3a6e 60%, #0f2a5a 100%);
  border-radius: 12px;
  padding: 18px 16px 16px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15,28,63,.35);
}
/* 背景の斜め帯装飾 */
.sp-login-info-notice::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.sp-login-info-notice::after {
  content: "";
  position: absolute;
  bottom: -20px; left: -20px;
  width: 90px; height: 90px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.sp-login-info-notice__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.sp-login-info-notice__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 8px;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245,158,11,.5);
}
.sp-login-info-notice__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #fbbf24;
  text-transform: uppercase;
}
.sp-login-info-notice__text {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
  padding-left: 4px;
  border-left: 3px solid #fbbf24;
  padding-left: 10px;
}
