/* Plan一覧に使う */
.card-wrap {
  max-width: 1200px;   /* 最大幅1200px */
  margin: 0 auto;      /* 中央寄せ */
  display: flex;
  gap: 24px;
  padding: 5px;
  box-sizing: border-box;
}

/* カード */
.card {
  flex: 1;                        /* 3等分 */
  border: 1px solid #ccc;         /* 枠のみ */
  background: #fff;
}

/* 中身 */
.card-body {
  padding: 20px;
  text-align: left;               /* 左揃え */
}

.card-title {
  font-size: 20px;
  margin: 0 0 8px 0;
  font-weight: bold;
}

.card-price {
  font-size: 18px;
  margin: 0 0 16px 0;
  font-weight: bold;
  color: #000;
}

.card-text {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .card-wrap {
    flex-direction: column;   /* 縦並び */
  }
}
.plan-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.section-title {
  font-size: 20px;
  margin-bottom: 1px;
  text-align: left;
  font-weight: bold;
  color: #666;
}



/* 全体レイアウト */
.campaign-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}


/* 共通カードデザイン */
.plan {
  width: 280px;
  padding: 25px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー効果 */
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* 松（ゴールド系） */
.plan-matsu {
  background: linear-gradient(135deg, #d4af37, #b8860b);
}

/* 竹（グリーン系） */
.plan-take {
  background: linear-gradient(135deg, #2e8b57, #3cb371);
}

/* 梅（レッド系） */
.plan-ume {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

/* 見出し */
.plan h2 {
  font-size: 20px;
  margin-bottom: 2px;
}

/* 説明文 */
.plan p {
  font-size: 16px;
  line-height: 1.6;
}  /* 上部画像 */
  .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: 5px;
    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: 170px;
    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: 0px;

  }

  /* モバイル対応 */
  @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;      /* スマホで左右余白 */
}






