/* =================================================================
   革命競馬会 / ログインページ
   スタイリッシュ×格式 (赤×金)
================================================================= */

/* ===== カラートークン ===== */
:root {
  --c-bg-deep: #1a0608;
  --c-bg-crimson: #4a0818;
  --c-bg-wine: #2a050c;
  --c-accent-red: #8b1414;
  --c-accent-red-bright: #b32323;
  --c-gold: #d4af37;
  --c-gold-bright: #f5d77a;
  --c-gold-soft: #e8c668;
  --c-ivory: #fffbe6;
  --c-text-white: #ffffff;
  --c-text-mute: rgba(255, 251, 230, 0.7);
  --c-line-gold: rgba(212, 175, 55, 0.45);

  /* 新規登録用: 青緑系でCTAと区別 */
  --c-accent-teal: #3d9aa0;
  --c-accent-teal-bright: #7dd3da;
  --c-accent-teal-deep: #1a4f52;
}

/* ===========================
   body / 全体背景
=========================== */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url("../../images/sign_in_up/login_bg.jpeg") no-repeat center
    center;
  background-size: cover;
  background-attachment: fixed;
  font-family:
    "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho",
    "Hiragino Kaku Gothic ProN", "Meiryo", serif;
  color: var(--c-text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h2,
h3 {
  font-family: inherit;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

/* ===========================
   wrapper
=========================== */
#wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.club-login-form {
  padding: 20px 0 40px;
}

/* ===========================
   ロゴ (PC: 左上小さめ / SP: 中央)
=========================== */
.login-logo {
  text-align: center;
  padding: 20px 0 0;
}

.login-logo img {
  max-width: 240px;
  width: 60%;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.7))
    drop-shadow(0 0 14px rgba(212, 175, 55, 0.5))
    drop-shadow(0 0 28px rgba(139, 30, 63, 0.5));
}

/* =================================================================
   フォーム枠
================================================================= */
.form-bg {
  width: 90%;
  max-width: 560px;
  margin: 20px auto 0;
  padding: 40px 36px;
  background: linear-gradient(
    180deg,
    rgba(80, 12, 20, 0.95),
    rgba(40, 6, 12, 0.95)
  );
  border: 1px solid var(--c-gold);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(139, 30, 63, 0.3);
  position: relative;
}

.login-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--c-ivory);
  margin: 0 0 28px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-shadow: 0 0 10px rgba(255, 200, 100, 0.5);
}

/* =================================================================
   パスワード設定ブロック
================================================================= */
.password-reset-box {
  width: 100%;
  margin: 0 auto 28px;
  padding: 18px 16px;
  border: 1px solid rgba(245, 215, 122, 0.35);
  background: rgba(255, 251, 230, 0.04);
  text-align: center;
}

.password-reset-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-text-mute);
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}

.password-reset-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-gold-bright) !important;
  text-decoration: none;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-gold);
  transition:
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

.password-reset-link:hover {
  color: var(--c-ivory) !important;
  letter-spacing: 0.08em;
}

.password-reset-note {
  font-size: 11px;
  color: var(--c-text-mute);
  margin: 10px 0 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* =================================================================
   入力欄 (入力文字は白で統一)
================================================================= */
.form-row {
  margin-bottom: 14px;
}

.form-row input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  background: rgba(20, 4, 8, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  color: var(--c-ivory) !important;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: inherit;
  box-sizing: border-box;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  -webkit-text-fill-color: var(--c-ivory);
  caret-color: var(--c-gold-bright);
}

.form-row input::placeholder {
  color: rgba(255, 251, 230, 0.35);
  font-size: 13px;
}

.form-row input:focus {
  outline: none;
  border-color: var(--c-gold-bright);
  box-shadow:
    0 0 0 1px var(--c-gold),
    0 0 16px rgba(245, 215, 122, 0.3);
  background: rgba(30, 6, 12, 0.95);
  color: var(--c-ivory) !important;
  -webkit-text-fill-color: var(--c-ivory);
}

/* オートフィル時も白文字 */
.form-row input:-webkit-autofill,
.form-row input:-webkit-autofill:hover,
.form-row input:-webkit-autofill:focus,
.form-row input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--c-ivory) !important;
  -webkit-box-shadow: 0 0 0 30px rgba(20, 4, 8, 0.95) inset !important;
  caret-color: var(--c-gold-bright);
  transition: background-color 5000s ease-in-out 0s;
}

/* =================================================================
   ログインボタン
================================================================= */
.btn-login {
  display: block;
  margin: 28px auto 0;
  width: 100%;
  max-width: 420px;
  padding: 18px 0;
  position: relative;

  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--c-ivory);

  background: linear-gradient(
    180deg,
    #6d0a0a 0%,
    #8b1414 30%,
    #a02020 55%,
    #7a1010 80%,
    #4a0606 100%
  );

  border: 1px solid var(--c-gold);
  border-radius: 2px;

  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.6);

  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 120, 0.25),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-login:hover::before {
  left: 150%;
}

.btn-login:hover {
  background: linear-gradient(
    180deg,
    #7a0f0f 0%,
    #9e1a1a 30%,
    #b82828 55%,
    #8b1414 80%,
    #5a0808 100%
  );
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -2px 4px rgba(0, 0, 0, 0.6),
    0 10px 24px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

.btn-login:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 3px 6px rgba(0, 0, 0, 0.7),
    0 3px 8px rgba(0, 0, 0, 0.5);
}

.btn-login-text {
  position: relative;
  z-index: 2;
}

.btn-click-mark {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 42px;
  height: auto;
  pointer-events: none;
  opacity: 0.85;
  animation: clickPulse 1.6s ease-in-out infinite;
  z-index: 3;
}

@keyframes clickPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.error {
  display: block;
  margin-top: 10px;
  color: #ff9999;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* =================================================================
   的中実績ティッカー
   セクション内部構造:
     ① セクション見出し (RECENT RESULTS / 無料情報の的中実績)
     ② 今週の解放レース ラベル帯
     ③ 流れるカード群
================================================================= */
.hit-ticker {
  width: 100%;
  margin: 40px 0 30px;
  padding: 36px 0 40px;
  background: linear-gradient(
    180deg,
    rgba(10, 2, 4, 0.85) 0%,
    rgba(30, 6, 12, 0.7) 50%,
    rgba(10, 2, 4, 0.85) 100%
  );
  border-top: 1px solid var(--c-line-gold);
  border-bottom: 1px solid var(--c-line-gold);
  overflow: hidden;
  position: relative;
}

/* ===== ① セクション見出し ===== */
.hit-ticker-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 0 20px;
}

.hit-ticker-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.hit-ticker-title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ivory);
  margin: 0;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.hit-ticker-eyebrow {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  color: var(--c-gold-bright);
  letter-spacing: 0.45em;
  margin-bottom: 4px;
  font-weight: 500;
}

/* ===== ② 今週の解放レース ラベル帯 (ティッカー内部) ===== */
.weekly-release-band {
  width: 92%;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 14px 20px;
  background: linear-gradient(
    180deg,
    rgba(80, 12, 22, 0.85) 0%,
    rgba(55, 8, 16, 0.9) 100%
  );
  border: 1px solid var(--c-line-gold);
  position: relative;
}

/* 下辺の金アクセントライン */
.weekly-release-band::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-gold-bright),
    transparent
  );
}

.weekly-release-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.weekly-release-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--c-bg-deep);
  background: linear-gradient(180deg, #e8c668 0%, #d4af37 50%, #a08530 100%);
  letter-spacing: 0.35em;
  padding: 4px 12px 3px;
  border-radius: 1px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.weekly-release-text {
  font-size: 13px;
  color: var(--c-text-mute);
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.weekly-release-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ivory);
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgba(255, 200, 100, 0.5);
}

.weekly-release-sub {
  font-size: 15px;
  color: var(--c-gold-bright);
  margin-left: 2px;
  font-weight: 500;
}

/* ===== ③ カード群 トラックラッパ ===== */
.hit-ticker-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hit-ticker-track-wrap::before,
.hit-ticker-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hit-ticker-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 2, 4, 1), rgba(10, 2, 4, 0));
}

.hit-ticker-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 2, 4, 1), rgba(10, 2, 4, 0));
}

.hit-ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px 0;
  animation: hitTickerScroll 40s linear infinite;
}

.hit-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes hitTickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== 実績カード ===== */
.hit-card {
  flex: 0 0 auto;
  width: 180px;
  padding: 22px 16px 18px;
  background: linear-gradient(
    180deg,
    rgba(30, 6, 12, 0.95) 0%,
    rgba(15, 3, 6, 0.98) 100%
  );
  border: 1px solid var(--c-gold);
  border-radius: 2px;
  position: relative;
  text-align: center;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.6),
    inset 0 0 20px rgba(139, 30, 63, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hit-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(139, 30, 63, 0.3),
    0 0 16px rgba(212, 175, 55, 0.2);
}

.hit-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 14px;
  background: linear-gradient(180deg, #c4a050 0%, #d4af37 50%, #a08530 100%);
  color: var(--c-bg-deep);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.hit-card-date {
  margin: 16px 0 10px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  color: var(--c-gold-bright);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hit-card-place {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ivory);
  margin: 4px 0 10px;
  letter-spacing: 0.05em;
}

.hit-card-place span {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 15px;
  color: var(--c-gold-bright);
  margin-left: 2px;
  font-weight: 500;
}

.hit-card-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-gold-bright);
  background: transparent;
  padding: 3px 12px;
  border: 1px solid var(--c-line-gold);
  margin: 0 0 14px;
  letter-spacing: 0.15em;
}

.hit-card-type + .hit-card-amount::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--c-line-gold);
  margin: 0 auto 10px;
}

.hit-card-amount {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--c-gold-bright);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(245, 215, 122, 0.4);
}

.hit-card-amount span {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  margin-left: 3px;
  color: var(--c-ivory);
  text-shadow: none;
}

/* =================================================================
   ログイン手順
================================================================= */
.login-guide-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

.login-guide-box {
  width: 100%;
  max-width: 720px;
  padding: 32px 28px;
  background: linear-gradient(
    180deg,
    rgba(40, 6, 14, 0.92),
    rgba(20, 4, 8, 0.95)
  );
  border: 1px solid var(--c-line-gold);
  color: var(--c-ivory);
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.login-guide-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-gold-bright);
  margin: 0 0 22px;
  letter-spacing: 0.12em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line-gold);
}

.login-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto 20px;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.login-steps li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--c-ivory);
  position: relative;
  padding-left: 32px;
}

.login-steps li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-gold-bright);
  width: 24px;
  text-align: center;
  border-right: 1px solid var(--c-line-gold);
  padding-right: 4px;
}

.login-steps li:nth-child(1)::before {
  content: "01";
}
.login-steps li:nth-child(2)::before {
  content: "02";
}
.login-steps li:nth-child(3)::before {
  content: "03";
}
.login-steps li:nth-child(4)::before {
  content: "04";
}

.login-steps-link {
  color: var(--c-gold-bright) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.login-steps-link:hover {
  color: var(--c-ivory);
}

/* サポート枠 */
.login-support-box {
  border-top: 1px solid var(--c-line-gold);
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
}

.login-support-text {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 10px;
  color: var(--c-text-mute);
  letter-spacing: 0.05em;
}

.login-support-mail {
  font-size: 13px;
  word-break: break-all;
  text-align: center;
  color: var(--c-gold-bright);
  letter-spacing: 0.03em;
  margin: 0;
}

/* =================================================================
   新規会員登録ブロック (青緑系で明確に区別)
================================================================= */
.new-register-block {
  margin-top: 28px;
  padding: 22px 20px;
  border: 1px solid rgba(125, 211, 218, 0.45);
  background: linear-gradient(
    180deg,
    rgba(26, 79, 82, 0.35) 0%,
    rgba(15, 45, 48, 0.45) 100%
  );
  text-align: center;
  position: relative;
  box-shadow:
    inset 0 0 20px rgba(61, 154, 160, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.new-register-eyebrow {
  display: inline-block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  color: var(--c-accent-teal-bright);
  letter-spacing: 0.4em;
  margin: 0 0 8px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(125, 211, 218, 0.35);
}

.new-register-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 14px;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-align: center;
}

.new-register-link {
  display: inline-block;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(180deg, #4fb0b8 0%, #3d9aa0 50%, #2a7a82 100%);
  border: 1px solid var(--c-accent-teal-bright);
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.12em;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.new-register-link:hover {
  background: linear-gradient(180deg, #5ec2ca 0%, #4aabb1 50%, #338b93 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    0 6px 16px rgba(0, 0, 0, 0.5),
    0 0 14px rgba(125, 211, 218, 0.35);
  transform: translateY(-1px);
}

/* =================================================================
   PC最適化 (769px以上)
================================================================= */
@media (min-width: 769px) {
  .login-logo {
    text-align: center;
    padding: 20px 0 0;
  }

  .login-logo img {
    max-width: 200px;
    width: auto;
  }

  .club-login-form {
    padding: 10px 0 40px;
  }
  /* フォーム */
  .form-bg {
    padding: 48px 56px;
  }

  .login-title {
    font-size: 22px;
  }

  .form-row input {
    height: 56px;
    font-size: 16px;
  }

  .btn-login {
    font-size: 17px;
    padding: 20px 0;
  }

  /* ティッカー */
  .hit-ticker {
    padding: 50px 0 54px;
  }

  .hit-ticker-head {
    margin-bottom: 24px;
  }

  .hit-ticker-title {
    font-size: 22px;
  }

  .hit-ticker-eyebrow {
    font-size: 12px;
  }

  /* 解放レースラベル帯 */
  .weekly-release-band {
    padding: 18px 24px;
    margin-bottom: 34px;
  }

  .weekly-release-tag {
    font-size: 11px;
    padding: 5px 14px 4px;
  }

  .weekly-release-text {
    font-size: 14px;
    gap: 14px;
  }

  .weekly-release-name {
    font-size: 24px;
  }

  .weekly-release-sub {
    font-size: 17px;
  }

  /* カード */
  .hit-card {
    width: 210px;
    padding: 26px 18px 20px;
  }

  .hit-card-date {
    font-size: 14px;
  }
  .hit-card-place {
    font-size: 19px;
  }
  .hit-card-place span {
    font-size: 16px;
  }
  .hit-card-amount {
    font-size: 32px;
  }
  .hit-card-amount span {
    font-size: 14px;
  }

  /* ログイン手順 */
  .login-guide-box {
    padding: 40px 44px;
  }

  .login-guide-title {
    font-size: 22px;
  }

  .login-steps li {
    font-size: 16px;
  }

  .new-register-block {
    padding: 26px 24px;
  }

  .new-register-link {
    font-size: 16px;
    padding: 14px 40px;
  }
}

/* =================================================================
   SP最適化 (768px以下)
================================================================= */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .login-logo {
    padding: 16px 0 0;
  }

  .login-logo img {
    max-width: 220px;
    width: 58%;
  }

  .club-login-form {
    padding: 12px 0 24px;
  }

  /* フォーム */
  .form-bg {
    width: 92%;
    padding: 28px 20px 32px;
  }

  .login-title {
    font-size: 16px;
    margin-bottom: 22px;
    line-height: 1.7;
  }

  .password-reset-box {
    padding: 14px 10px;
    margin-bottom: 22px;
  }

  .password-reset-title {
    font-size: 12px;
  }
  .password-reset-link {
    font-size: 15px;
  }
  .password-reset-note {
    font-size: 10px;
  }

  .form-row input {
    height: 48px;
    font-size: 14px;
    padding: 0 14px;
  }

  .form-row input::placeholder {
    font-size: 11px;
  }

  .btn-login {
    font-size: 14px;
    padding: 16px 0;
    letter-spacing: 0.22em;
    max-width: none;
  }

  .btn-click-mark {
    width: 34px;
    right: 8px;
    bottom: 4px;
  }

  .error {
    font-size: 12px;
  }

  /* ティッカー */
  .hit-ticker {
    margin: 32px 0 22px;
    padding: 26px 0 30px;
  }

  .hit-ticker-head {
    gap: 12px;
    margin-bottom: 16px;
  }

  .hit-ticker-line {
    max-width: 50px;
  }

  .hit-ticker-title {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .hit-ticker-eyebrow {
    font-size: 10px;
    letter-spacing: 0.4em;
  }

  /* 解放レースラベル帯 */
  .weekly-release-band {
    width: 92%;
    padding: 12px 14px;
    margin-bottom: 20px;
  }

  .weekly-release-band-inner {
    gap: 8px;
    flex-direction: column;
  }

  .weekly-release-tag {
    font-size: 9px;
    letter-spacing: 0.3em;
    padding: 3px 10px 2px;
  }

  .weekly-release-text {
    font-size: 12px;
    gap: 6px;
    flex-direction: column;
    line-height: 1.4;
  }

  .weekly-release-name {
    font-size: 19px;
  }

  .weekly-release-sub {
    font-size: 14px;
  }

  /* カード */
  .hit-ticker-track-wrap::before,
  .hit-ticker-track-wrap::after {
    width: 40px;
  }

  .hit-ticker-track {
    gap: 12px;
    animation-duration: 32s;
  }

  .hit-card {
    width: 150px;
    padding: 18px 12px 14px;
  }

  .hit-card-badge {
    font-size: 10px;
    padding: 2px 10px;
    letter-spacing: 0.22em;
  }

  .hit-card-date {
    margin: 14px 0 8px;
    font-size: 12px;
  }

  .hit-card-place {
    font-size: 15px;
    margin: 3px 0 8px;
  }

  .hit-card-place span {
    font-size: 13px;
  }

  .hit-card-type {
    font-size: 10px;
    padding: 2px 10px;
    margin-bottom: 10px;
  }

  .hit-card-type + .hit-card-amount::before {
    width: 24px;
    margin-bottom: 8px;
  }

  .hit-card-amount {
    font-size: 22px;
  }

  .hit-card-amount span {
    font-size: 11px;
  }

  /* ログイン手順 */
  .login-guide-wrapper {
    padding: 0 14px;
  }

  .login-guide-box {
    padding: 24px 18px;
    margin-bottom: 40px;
  }

  .login-guide-title {
    font-size: 16px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .login-steps {
    gap: 10px;
  }

  .login-steps li {
    font-size: 13px;
    padding-left: 28px;
  }

  .login-steps li::before {
    font-size: 14px;
  }

  .login-support-text {
    font-size: 12px;
  }
  .login-support-mail {
    font-size: 11px;
  }

  /* 新規登録ブロック */
  .new-register-block {
    margin-top: 22px;
    padding: 18px 14px;
  }

  .new-register-eyebrow {
    font-size: 10px;
    letter-spacing: 0.35em;
  }

  .new-register-label {
    font-size: 12px;
  }

  .new-register-link {
    font-size: 13px;
    padding: 11px 24px;
    letter-spacing: 0.08em;
  }

  .btn-login {
    font-size: 14px;
    padding: 16px 15px !important;
    letter-spacing: 0.22em;
    max-width: none;
    gap: 12px;
  }

  .btn-login:hover {
    letter-spacing: 0.26em;
  }

  .btn-login-arrow span {
    width: 6px;
    height: 6px;
  }
}

/* ===========================
   ロゴ (中央配置)
=========================== */
.login-logo {
  width: 100%;
  text-align: center;
  padding: 20px 0 0;
  box-sizing: border-box;
}

.login-logo img {
  display: block;
  max-width: 240px;
  width: 60%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.7))
    drop-shadow(0 0 14px rgba(212, 175, 55, 0.5))
    drop-shadow(0 0 28px rgba(139, 30, 63, 0.5));
}

/* =================================================================
   ログインボタン (洗練版・画像なし)
================================================================= */
.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto 0;
  width: 100%;
  max-width: 440px;
  padding: 20px 28px;
  position: relative;

  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--c-ivory);

  background: linear-gradient(
    180deg,
    #6d0a0a 0%,
    #8b1414 30%,
    #a02020 55%,
    #7a1010 80%,
    #4a0606 100%
  );

  border: 1px solid var(--c-gold);
  border-radius: 2px;

  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.6);

  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* 金色の内側ライン(二重枠) */
.btn-login::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 1px;
  pointer-events: none;
}

/* 光沢スイープ */
.btn-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 120, 0.3),
    transparent
  );
  animation: btnShine 3.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }
  60%,
  100% {
    left: 150%;
  }
}

.btn-login:hover {
  background: linear-gradient(
    180deg,
    #7a0f0f 0%,
    #9e1a1a 30%,
    #b82828 55%,
    #8b1414 80%,
    #5a0808 100%
  );
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -2px 4px rgba(0, 0, 0, 0.6),
    0 10px 24px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
  letter-spacing: 0.32em;
}

.btn-login:hover .btn-login-arrow {
  transform: translateX(4px);
}

.btn-login:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 3px 6px rgba(0, 0, 0, 0.7),
    0 3px 8px rgba(0, 0, 0, 0.5);
}

.btn-login-text {
  position: relative;
  z-index: 2;
}

/* 右側のシェブロン矢印(3本線で厳格な雰囲気) */
.btn-login-arrow {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn-login-arrow span {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--c-gold-bright);
  border-right: 1.5px solid var(--c-gold-bright);
  transform: rotate(45deg);
  opacity: 0.5;
  animation: arrowChevron 1.8s ease-in-out infinite;
}

.btn-login-arrow span:nth-child(1) {
  animation-delay: 0s;
}
.btn-login-arrow span:nth-child(2) {
  animation-delay: 0.15s;
}
.btn-login-arrow span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes arrowChevron {
  0%,
  100% {
    opacity: 0.3;
    transform: rotate(45deg) translate(-2px, 0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(2px, 0);
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--c-bg-deep); /* 画像が届かない部分を同系色で埋める */
  }
}

@media (max-width: 768px) {
  .weekly-release-band {
    width: 92%;
    padding: 16px 14px;
    margin-bottom: 20px;
  }

  .weekly-release-band-inner {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .weekly-release-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    padding: 4px 14px 3px;
  }

  .weekly-release-text {
    font-size: 12px;
    gap: 4px;
    flex-direction: column;
    line-height: 1.5;
    width: 100%;
    text-align: center;
  }

  .weekly-release-name {
    font-size: 22px;
    display: block;
    width: 100%;
    margin: 2px 0;
    line-height: 1.3;
  }

  .weekly-release-sub {
    font-size: 15px;
    color: var(--c-gold-bright);
  }
}

@media (max-width: 768px) {
  .weekly-release-name + .weekly-release-name {
    padding-top: 6px;
    margin-top: 4px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
}
