/* ==========================================================================
   ベース設定
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #111111;
  color: #ffffff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* 汎用・ユーティリティ */
.mt-10 {
  margin-top: 10px;
}

.blue-link {
  color: #00bfff;
  text-decoration: underline;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.divider {
  border: none;
  border-top: 1px solid #555555;
  margin: 20px 0;
}

/* 全体レイアウト幅（スマホ表示向け） */
.container, .hero-header, .footer {
  max-width: 480px;
  margin: 0 auto;
}

.container {
  padding: 16px 12px;
}

/* ==========================================================================
   共通ヘッダー & フッター
   ========================================================================== */
.hero-header {
  text-align: center;
  background-color: #000000;
}

.header-logo img {
  width: 100%;
}

.footer {
  background-color: #000000;
  text-align: center;
  padding: 12px 10px;
  font-size: 10px;
  color: #888888;
  border-top: 1px solid #222222;
  margin-top: 20px;
}

/* ==========================================================================
   共通セクションタイトル
   ========================================================================== */
.menu-section,
.content-section {
  margin-bottom: 28px;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  border-left: 3px solid #00bfff;
  padding-left: 8px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  font-size: 12px;
  color: #cccccc;
  margin-bottom: 16px;
}

/* ==========================================================================
   TOP ページ用 (FREE MENU & MEMBER'S MENU)
   ========================================================================== */
.btn-list li {
  margin-bottom: 12px;
}

.arrow {
  font-style: normal;
  font-size: 18px;
  font-weight: bold;
}

/* FREE MENU ボタン（枠線タイプ） */
.btn-outline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #00bfff;
  padding: 12px 16px;
  color: #00bfff;
  font-weight: bold;
  font-size: 15px;
  background-color: #000000;
  transition: opacity 0.2s;
}

.btn-outline:hover {
  opacity: 0.8;
}

/* MEMBER'S MENU カード */
.card-btn {
  display: block;
  border: 1px solid #00bfff;
  overflow: hidden;
  transition: opacity 0.2s;
}

.card-btn:hover {
  opacity: 0.9;
}

.card-header {
  background-color: #00bfff;
  color: #000000;
  font-weight: bold;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.card-body {
  background-color: #222222;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 12px;
}

/* ==========================================================================
   SCHEDULE & ACCESS ページ用
   ========================================================================== */
.schedule-block {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.schedule-block .date {
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

.schedule-block .date:first-child {
  margin-top: 0;
}

.schedule-block .time {
  color: #ffffff;
  margin-bottom: 10px;
}

.access-info {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 20px;
}

.access-subblock {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #dddddd;
}

.sub-title {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 6px;
}

.link-block {
  margin-top: 24px;
  margin-bottom: 10px;
}

.text-link {
  color: #ffffff;
  font-size: 14px;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.7;
}

/* ==========================================================================
   GOODS ページ用
   ========================================================================== */
.notice-text {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
}

.notice-text p {
  margin-bottom: 12px;
}

.notice-text p:last-child {
  margin-bottom: 0;
}

.goods-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555555;
}

.goods-item:last-child {
  border-bottom: none;
}

.goods-title {
  font-size: 14px;
  color: #00bfff;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 1.3;
}

.goods-title-member {
  color: #00bfff;
}

.goods-img {
  margin-bottom: 12px;
  text-align: left;
}

.goods-img img {
  max-width: 100%;
  height: auto;
}

.goods-detail {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 4px;
}

.goods-price {
  font-size: 13px;
  color: #ffffff;
}

/* 通販案内 */
.ec-info {
  font-size: 12px;
  line-height: 1.6;
  color: #ffffff;
}

.ec-title {
  color: #00bfff;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 4px;
}

.ec-date {
  margin-bottom: 16px;
}

.section-subhead {
  color: #00bfff;
  font-weight: bold;
  margin-bottom: 4px;
}

.ec-apply {
  margin-bottom: 16px;
}

.ec-notes p {
  color: #cccccc;
  margin-bottom: 6px;
}


/* ==========================================================================
   FIRE (聖火台に火をつけろ！) ページ用
   ========================================================================== */
/* タイトル内の赤文字ハイライト */
.section-title .highlight-red {
  color: #ff3333;
}

/* 説明テキスト */
.fire-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 20px;
}

/* グラフィック画像 */
.fire-graphic {
  margin: 20px 0;
  text-align: center;
}

.fire-graphic img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* THANK YOU テキストエリア（画像化されていない場合の文字スタイル） */
.fire-thanks {
  text-align: center;
  margin: 24px 0 30px;
  font-weight: bold;
}

.thanks-title {
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 1px;
}

.thanks-main {
  font-size: 20px;
  color: #ffffff;
  margin-top: 4px;
}

.thanks-sub {
  font-size: 18px;
  color: #ffffff;
  margin-top: 4px;
}

/* 薄青色ランナーボタン */
.runner-btn-list {
  margin-top: 20px;
}

.runner-btn-list li {
  margin-bottom: 8px;
}

.btn-runner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d1e2f3; /* 画面に合わせたライトブルー */
  color: #1a4a82;            /* 濃い青文字 */
  font-weight: bold;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.btn-runner:hover {
  opacity: 0.85;
}

.arrow-black {
  font-style: normal;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}

/* 薄青色ランナーボタン */
.runner-btn-list {
  margin-top: 20px;
}

.runner-btn-list li {
  margin-bottom: 8px;
}

.btn-runner {
  display: flex;
  align-items: center;
  position: relative; /* 矢印の位置基準 */
  background-color: #d1e2f3;
  color: #1a4a82;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.btn-runner:hover {
  opacity: 0.85;
}

/* CSSで矢印（＞）を描画 */
.btn-runner::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #000000;
  border-right: 3px solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -5px; /* 上下中央揃えの微調整 */
}

/* ==========================================================================
   PHOTO DISPLAY (ランナー完走フォト表示) ページ用
   ========================================================================== */
/* タイトルの改行・フォント調整 */
.photo-title {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* フォト表示領域 */
.photo-display {
  margin-bottom: 16px;
  text-align: center;
}

.photo-display img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* クレジット表記（右寄せ） */
.photo-credit {
  text-align: right;
  font-size: 12px;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 10px;
}

/* ==========================================================================
   LIVE PHOTO GALLERY ページ用
   ========================================================================== */
.gallery-btn-list {
  margin-top: 16px;
  margin-bottom: 24px;
}

.gallery-btn-list li {
  margin-bottom: 2px; /* 枠線が重なるデザイン用に微調整 */
}

.btn-gallery {
  display: flex;
  align-items: center;
  position: relative;
  background-color: #d1e2f3; /* 完走ボタンと同等のライトブルー */
  color: #1a4a82;            /* 濃い青文字 */
  font-weight: bold;
  font-size: 16px;
  padding: 12px 16px;
  transition: opacity 0.2s;
}

.btn-gallery:hover {
  opacity: 0.85;
}

/* CSSで矢印（＞）を描画 */
.btn-gallery::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #000000;
  border-right: 3px solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -5px;
}


/* ==========================================================================
   LIVE REPORT ページ用
   ========================================================================== */
/* 本文テキスト */
.report-text {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 28px;
}

.report-text p {
  margin-bottom: 16px;
}

.report-text p:last-child {
  margin-bottom: 0;
}

/* セットリスト（番号2桁揃え・インデント調整） */
.setlist-block {
  margin-bottom: 32px;
}

.setlist {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
  list-style: none; /* デフォルトの数字をオフにして整形 */
  counter-reset: setlist-counter;
}

.setlist li {
  counter-increment: setlist-counter;
  margin-bottom: 2px;
}

/* 01. 02. のように2桁揃えで表示 */
.setlist li::before {
  content: counter(setlist-counter, decimal-leading-zero) ".";
  display: inline-block;
  width: 24px;
  color: #ffffff;
}

/* 写真一覧 */
.report-photos {
  margin-top: 24px;
  margin-bottom: 20px;
}

.photo-item {
  margin-bottom: 24px;
}

.photo-item:last-child {
  margin-bottom: 0;
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* ==========================================================================
   L'mobile QUIZ ページ用
   ========================================================================== */
.quiz-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 32px;
}

.quiz-closed-msg {
  text-align: center;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 32px;
}

.quiz-footer-banner {
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.quiz-footer-banner img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* ==========================================================================
   EVERLASTING ページ用
   ========================================================================== */
.mt-16 {
  margin-top: 16px;
}

/* EVERLASTING サブタイトル (ピンクテキスト) */
.everlasting-subtitle {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 24px;
}

.everlasting-subtitle .sub-main {
  font-size: 22px;
  color: #ff3388;
  font-weight: bold;
  font-family: "Georgia", "Times New Roman", serif; /* 華やかな明朝・セリフ体 */
  letter-spacing: 1px;
}

.everlasting-subtitle .sub-fire {
  font-size: 16px;
  color: #ff3388;
  font-weight: bold;
  margin-top: 4px;
}

/* 説明文 */
.everlasting-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 24px;
}

.everlasting-desc p {
  margin-bottom: 10px;
}

.everlasting-desc .desc-bold {
  font-weight: bold;
}

.everlasting-desc .desc-notice {
  font-weight: bold;
  font-size: 13px;
}

/* ステージグラフィック */
.everlasting-stage-img {
  margin: 20px 0;
  text-align: center;
}

.everlasting-stage-img img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 終了メッセージ（ネオンピンク） */
.everlasting-closed-msg {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #ff007f;
  margin: 32px 0 20px;
}

/* 2列ボトムナビゲーション (HOME / PAGE TOP) */
.bottom-nav-container {
  max-width: 480px;
  margin: 0 auto;
}

.bottom-nav {
  display: flex;
  border-top: 1px solid #777777;
}

.bottom-nav li {
  width: 50%;
}

.bottom-nav li:first-child {
  border-right: 1px solid #777777;
}

.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #888888 0%, #555555 100%); /* 薄いグレーのグラデーション背景 */
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  padding: 16px 10px;
  text-align: center;
  transition: opacity 0.2s;
  position: relative;
}

.nav-btn:hover {
  opacity: 0.85;
}


/* ==========================================================================
   DOCUMENTARY SUGOROKU ページ用
   ========================================================================== */
.font-bold {
  font-weight: bold;
}

.text-lg {
  font-size: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-32 {
  margin-top: 32px;
}

/* 地図画像 */
.sugoroku-map-img {
  margin-bottom: 20px;
  text-align: center;
}

.sugoroku-map-img img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 赤字テキスト・キャッチコピー */
.sugoroku-catch {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.red-text {
  color: #ff3344;
}

/* 説明本文 */
.sugoroku-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
}

.sugoroku-desc p {
  margin-bottom: 6px;
}

/* ルール箇条書き */
.rule-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* 赤字注意事項ブロック */
.notice-red-block {
  color: #ff3344;
  font-size: 12px;
  line-height: 1.5;
}

.notice-red-block p {
  margin-bottom: 10px;
}

.notice-red-block p:last-child {
  margin-bottom: 0;
}