/* ================================================
   kurume.css — 久留米市野球連盟
   ================================================ */

body {
  background: #ffffff;
  color: #000000;
}

.page-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ヘッダー */
.site-header {
  background: #009900;
  padding: 0;
}

.site-header img {
  width: 100%;
}

/* レイアウト（サイドバー＋メイン） */
.layout {
  display: flex;
  align-items: stretch;
}

/* サイドバー */
.sidebar {
  width: 150px;
  flex-shrink: 0;
  background: #00cc00;
  padding: 8px 0;
  align-self: stretch;
}

.sidebar a {
  display: block;
  text-align: center;
  padding: 9px 6px;
  font-family: 'ＭＳ 明朝', Meiryo, serif;
  font-size: 0.95em;
  color: #003300;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #009900;
}

.sidebar a:last-child {
  border-bottom: none;
}

.sidebar a:hover {
  background: #99ff99;
  text-decoration: underline;
}

/* メインコンテンツ */
.main-content {
  flex: 1;
  background: #ffff80;
  padding: 20px 16px;
  min-height: 400px;
}

.main-content h2 {
  font-family: 'ＭＳ ゴシック', Meiryo, sans-serif;
  font-size: 1.5em;
  color: #0000cc;
  margin-bottom: 16px;
  border-bottom: 2px solid #009900;
  padding-bottom: 6px;
}

.main-content h3 {
  font-family: Meiryo, 'ＭＳ 明朝', serif;
  font-size: 1.1em;
  color: #cc0000;
  margin: 18px 0 6px;
  border-left: 4px solid #009900;
  padding-left: 8px;
}

.main-content p {
  line-height: 1.8;
  margin-bottom: 10px;
}

/* 大会一覧・ダウンロードリスト */
.match-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.match-list li {
  padding: 10px 4px;
  border-bottom: 1px solid #cccc66;
  line-height: 1.7;
}

.match-list li:last-child {
  border-bottom: none;
}

.match-date {
  font-size: 0.9em;
  color: #555555;
}

.match-winner {
  color: #cc0000;
  font-weight: bold;
}

/* 連絡先・地図 */
.access-info {
  text-align: left;
  line-height: 2;
}

.map-block {
  margin: 12px 0;
}

.map-block iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* フッター */
footer {
  text-align: center;
  padding: 12px;
  font-size: 0.8em;
  color: #333333;
  background: #ffff80;
  border-top: 1px solid #cccc66;
}

/* スケジュール iframe */
.schedule-iframe {
  width: 100%;
  height: 700px;
  border: 1px solid #cccc66;
}

/* ================================================
   レスポンシブ (768px以下)
   ================================================ */
@media screen and (max-width: 768px) {
  /* サイドバーは縦のまま、幅だけ縮小 */
  .sidebar {
    width: clamp(80px, 22vw, 120px);
    padding: 4px 0;
  }

  .sidebar a {
    padding: 7px 3px;
    font-size: clamp(0.6em, 2.5vw, 0.95em);
    white-space: nowrap;
    overflow: hidden;
  }

  .main-content {
    padding: 12px 10px;
  }

  .schedule-iframe {
    height: 500px;
  }

  .map-block iframe {
    height: 250px;
  }
}
