  /* 上部画像 */
  .header-image {
    display: block;
    width: 100%;
    max-width: 1200px; /* PCでは1200pxまで */
    margin: 0 auto 30px;
    height: auto;
  }

  /* 見出し・コメント */
  .header-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
  }
  .header-text h1 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
  }

.event-info-section h2 {
  text-align: left;        /* 中央揃え */
  font-size: 1.5rem;           /* 見出しサイズ */
  font-weight: 700;          /* 太字 */
  color: #222;               /* 黒系カラー */
  margin-bottom: 10px;       /* 下マージン */
}

  .header-text p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
  }

  /* イベント詳細 */
  table {
    width: 100%;
    border-collapse: collapse;
  }

  th, td {
    padding: 15px 20px;
    text-align: left;
    border: 1px solid #444;
    vertical-align: top;
  }

  th {
    width: 160px;
    font-weight: 700;
    background: #fff;
    color: #222;
  }

  td {
    background: #fff;
    color: #222;
  }

  ul {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
  }

  a {
    color: #222;
    text-decoration: underline;
  }

  a:hover {
    text-decoration: none;
  }

  p.notes {
    font-size: 0.85rem;
    color: #444;
    margin-top: 25px;
    white-space: pre-line;
  }

  /* モバイル対応 */
  @media (max-width: 768px) {
    .header-image {
      width: 90%; /* スマホでは画面幅の90% */
    }
    .header-text h1 {
      font-size: 2rem;
    }
  }

  @media (max-width: 600px) {
    table, thead, tbody, th, td, tr {
      display: block;
      width: 100%;
      border: none;
    }

    tr {
      margin-bottom: 20px;
      border-bottom: 1px solid #444;
    }

    th {
      background: transparent;
      font-weight: 700;
      padding: 0 0 8px 0;
      border: none;
      color: #222;
    }

    td {
      padding: 0 0 8px 15px;
      border: none;
    }
  }

.event-info-section {
  max-width: 1200px; /* 最大幅1200px */
  width: 100%;       /* PCでもスマホでも幅100%をベースに調整 */
  margin: 0 auto 40px; /* 中央寄せ＋下マージン */
  padding: 0 15px;      /* スマホで左右余白 */
}

