/* ============================================================
   全体リセット & モバイルファースト基本設計
   ============================================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #002147;
    --gold: #d4af37;
    --light-bg: #f7f9fa;
    --card-bg: #ffffff;
    --text-main: #222222;
    --accent-red: #e60012;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #eef2f5; 
    color: var(--text-main);
    line-height: 1.7;
    display: flex;
    justify-content: center;
}

.lp-wrapper {
    width: 100%;
    max-width: 700px; /* キリン風縦長スマート枠 */
    background-color: var(--light-bg);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding-bottom: 80px; 
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.block-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.section-sub {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 30px;
}

/* ============================================================
   イントロダクション
   ============================================================ */
.hero-view { width: 100%; background: #fff; }
.intro-section { padding: 40px 24px; text-align: center; background: #fff; }
.status-badge {
    display: inline-block;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 20px;
}
.main-copy { color: var(--navy); font-size: 1.5rem; line-height: 1.4; font-weight: 800; margin-bottom: 24px; }
.lead-text { font-size: 0.95rem; text-align: left; color: #444; background: #fdfdfd; padding: 20px; border-left: 4px solid var(--navy); }

/* ============================================================
   【新設】プレゼント賞品エリア
   ============================================================ */
.prizes-section {
    padding: 50px 24px;
    background: #fff;
    margin-top: 10px;
}

.prize-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prize-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e8ed;
    background: #fafbfc;
}

.team-tag {
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* 各チームのブランドカラーイメージ */
.consadole .team-tag { background-color: #d70014; } /* 赤 */
.fighters .team-tag { background-color: #006788; }  /* ファイターズブルー */
.levanga .team-tag { background-color: #009944; }   /* レバンガグリーン */

.prize-detail {
    padding: 20px;
}

.highlight-text {
    font-size: 0.75rem;
    color: var(--accent-red);
    background: #fff0f0;
    padding: 2px 6px;
    font-weight: bold;
    border-radius: 3px;
}

.prize-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--navy);
    margin: 8px 0 4px;
}

.winner-count {
    font-size: 0.85rem;
    color: #555;
    font-weight: bold;
}

/* ============================================================
   【新設】応募ステップ ＆ 規約テーブル
   ============================================================ */
.info-section {
    padding: 50px 24px;
    background: #fff;
    margin-top: 10px;
}

.flow-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    background: var(--light-bg);
    padding: 16px;
    border-radius: 6px;
}

.step-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    margin-right: 16px;
    line-height: 1;
}

.step-text {
    font-size: 0.9rem;
    color: #333;
}

.detail-docs {
    border-top: 1px dashed #ccc;
    padding-top: 20px;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.detail-table th, .detail-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #edf2f6;
    text-align: left;
    vertical-align: top;
}

.detail-table th {
    width: 25%;
    color: var(--navy);
    font-weight: bold;
}

.detail-table td {
    color: #444;
}
/* ============================================================
   領収書発行の流れ（LPデザイン調整版）
   ============================================================ */
.receipt-flow-container {
  background-color: #fff; /* 背景色を白に変更してカード感を強調 */
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 30px 20px;
  width: 100%;
  max-width: 100%; /* 親要素(700px)の中に収まるよう100%に変更 */
  margin: 10px auto 0; /* 余白を最適化 */
  font-family: inherit; /* 全体のフォント定義を継承 */
}

.receipt-flow-title {
  text-align: center;
  font-size: 1.2rem;
  color: var(--navy); /* テーマカラーの紺色に変更 */
  font-weight: bold;
  margin-bottom: 20px;
}

.receipt-flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.receipt-step {
  background: var(--light-bg); /* 背景を全体のライトグレーに合わせる */
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 10px;
  flex: 1;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.receipt-step .step-num {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--navy); /* テーマカラーに統一 */
  margin-bottom: 4px;
}

.receipt-step .step-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.receipt-step .step-title {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 6px;
}

.receipt-step .step-desc {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

.step-arrow {
  color: var(--gold); /* ゴールドをアクセントカラーに使用 */
  font-size: 1rem;
  font-weight: bold;
}

/* スマホ対応 (縦並び) */
@media (max-width: 600px) {
  .receipt-flow-steps {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 2px 0;
  }
  .receipt-step {
    width: 100%;
  }
}
/* ============================================================
   商品購入・予約一覧
   ============================================================ */
.products-section { padding: 50px 24px; margin-top: 10px; }
.product-list { display: flex; flex-direction: column; gap: 24px; }
.product-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); border: 1px solid #eef2f5; }
.p-img { background: #fff; padding: 20px; display: flex; justify-content: center; }
.p-img img { max-width: 160px; }
.p-detail { padding: 24px; border-top: 1px solid #f0f4f7; }
.p-status { font-size: 0.75rem; color: var(--accent-red); font-weight: bold; border: 1px solid var(--accent-red); padding: 2px 6px; border-radius: 3px; }
.p-status-normal { font-size: 0.75rem; color: #666; font-weight: bold; background: #eee; padding: 2px 6px; border-radius: 3px; }
.p-name { font-size: 1.05rem; margin: 12px 0 4px; color: var(--navy); font-weight: bold; }
.p-info-spec { font-size: 0.75rem; color: #777; margin-bottom: 12px; }
.p-price { font-size: 1.4rem; color: #b30000; font-weight: bold; margin-bottom: 16px; }
.p-price span { font-size: 0.85rem; color: #666; }
.action-btn { display: block; background: var(--navy); color: #fff; text-align: center; text-decoration: none; font-weight: bold; padding: 14px; border-radius: 6px; transition: background 0.2s; }
.action-btn:hover { background: var(--gold); }

/* ============================================================
   フッター・固定ナビ
   ============================================================ */
.lp-footer { padding: 40px 24px; background: #fff; text-align: center; }
.caution-text { font-size: 0.75rem; color: #666; text-align: justify; margin-bottom: 20px; }
.copyright { font-size: 0.8rem; color: #999; }

.bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    padding: 12px 16px;
    gap: 12px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.06);
    z-index: 10000;
}
.nav-btn { flex: 1; text-align: center; text-decoration: none; font-weight: bold; padding: 14px 0; border-radius: 30px; font-size: 0.95rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.2s; }
.btn-blue { background: var(--navy); color: #fff; }
.btn-red { background: var(--accent-red); color: #fff; }
.nav-btn:active { transform: scale(0.97); }
/* ============================================================
   【新設】下部の薄い色の注意事項欄
   ============================================================ */
.notes-section {
    background-color: #eaeef1; /* 枠線やフッターより一段落ち着いた薄いグレー */
    padding: 30px 24px;
    margin-top: 10px;
}

.notes-container {
    max-width: 100%;
}

.notes-section h3 {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: bold;
    margin-bottom: 12px;
}

.notes-section ul {
    padding-left: 18px;
    margin: 0;
}

.notes-section li {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    text-align: justify;
}

.notes-section li:last-child {
    margin-bottom: 0;
}
