

/* === ベース === */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "Helvetica Neue", "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #020617;
  color: #e5e7eb;
}

/* === ヘッダ & バナー === */
header {
  background: #020617;
  color: #f9fafb;
  padding: 8px 0 10px;
  border-bottom: 1px solid #1f2937;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}

.banner-link {
  display: block;
  width: 100%;
}

.top-banner {
  display: block;
  width: 100%;
  height: auto;          /* カラム幅に合わせて拡大・縮小しつつ全体表示 */
  border-radius: 6px;
  margin: 0 auto 4px;
}

/* === メイン === */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 10px 18px;
}

/* === テキスト・リンク === */
p {
  font-size: 13px;
  line-height: 1.6;
}

a {
  color: #60a5fa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-title {
  font-size: 15px;
  font-weight: 600;
  margin: 4px 0 8px;
}

/* === チップ === */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 10px;
}

.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #1f2937;
  background: #020617;
  font-size: 12px;
}

.chip:hover {
  background: #0b1120;
}

/* === セクション === */
.section {
  margin-top: 14px;
  padding-top: 6px;
  border-top: 1px solid #1f2937;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* === テーブル（横スクロール対応） === */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 4px;
}

.table-wrap table {
  min-width: 520px;
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}

th, td {
  border: 1px solid #1f2937;
  padding: 4px 3px;
  text-align: center;
}

th {
  background: #020617;
  font-weight: 600;
}

tbody tr:nth-child(odd) {
  background: #020617;
}

tbody tr:nth-child(even) {
  background: #030712;
}

tbody tr:hover {
  background: #0f172a;
}

/* === タイトル系 === */
.date-title {
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0 4px;
}

.venue-title {
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0 2px;
}

/* === フッター === */
.footer {
  margin-top: 18px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
}

/* === スマホ微調整 === */
@media (max-width: 600px) {
  main {
    padding: 10px 10px 18px;
  }
}
