body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fafafa;
  line-height: 1.7;
}

.inner {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
}

.inb {
  display: inline-block;
}

/* サイト名帯 */
.site-bar {
  background: #004b80;
  color: #fff;
  padding: 10px 0;
  font-size: 0.95rem;
}

.site-bar p {
  text-align: center;
  font-weight: 600;
}

/* イベントタイトル */
.event-title-section {
  background: #007bc7;
  color: white;
  padding: 45px 0 35px;
  text-align: center;
}

.event-title-section h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.event-title-section .date {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}

.event-title-section .sub {
  font-size: 1rem;
  opacity: 0.9;
}

/* Section */
section {
  padding: 50px 0;
}

section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-left: 12px;
  border-left: 4px solid #007bc7;
  color: #222;
}

/* Lead */
.lead-section p {
  font-size: 1.05rem;
}

.apply-wrap {
  margin-top: 40px;
  text-align: center;
}

.apply-btn {
  display: inline-block;
  background: #007bc7;
  color: #fff;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.apply-btn:hover {
  background: #005c96;
}

.apply-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

/* Flyer */
.flyer-single-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 25px;
}

.flyer-img {
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* Movie */
.movie-wrap {
  margin-top: 20px;
  position: relative;
  width: 100%;
  /* padding-top: 56.25%; */
  aspect-ratio: 16 / 9;
}

.movie-wrap iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Detail Table */
.detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: white;
}

.detail-table th,
.detail-table td {
  border: 1px solid #ddd;
  padding: 15px;
  vertical-align: top;
  font-size: 1rem;
}

.detail-table th {
  background: #f5f5f5;
  width: 24%;
  font-weight: 600;
}

.map-wrap {
  margin-top: 40px;
  text-align: center;
}

.map-wrap h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.map-img {
  width: 100%;
  /* max-width: 700px; */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.note-section {
  padding: 40px 0;
  background: #fafafa;
}

.note-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

/* Footer */
.page-footer {
  text-align: center;
  padding: 25px 0;
  background: #222;
  color: #fff;
  margin-top: 40px;
  font-size: 0.85rem;
}

/* ==========================
   モバイル対応
   ========================== */
@media screen and (max-width: 767px) {
  .site-bar {
    font-size: 0.7rem;
  }
  .event-title-section {
    padding: 30px 0 25px;
  }
  /* タイトルを少し縮小 */
  .event-title-section h1 {
    font-size: clamp(0.95rem, 5vw, 1.4rem);
    line-height: 1.45;
  }
  .event-title-section .date {
    font-size: clamp(0.8rem, 4.5vw, 1.2rem);
  }
  .event-title-section .sub {
    font-size: clamp(0.6rem, 3vw, 1rem);
  }

  /* セクション余白をコンパクトに */
  section {
    padding: 35px 0;
  }

  .lead-section p {
    font-size: 0.9rem;
  }

  .apply-btn {
    width: 90%;
    font-size: 1rem;
    padding: 14px 0;
  }

  .lead-section p.apply-note {
    font-size: clamp(0.7rem, 3.5vw, 0.9rem);
  }

  .map-img {
    border-radius: 6px;
  }

  .flyer-single-wrap {
    gap: 20px;
    margin-top: 15px;
  }
  .flyer-img {
    border-radius: 6px;
  }

  /* テーブルの可読性を上げる */
  .detail-table th,
  .detail-table td {
    padding: 12px;
    font-size: 0.85rem;
  }

  .detail-table th {
    width: 100%;
    display: block;
  }

  .detail-table td {
    display: block;
    margin-bottom: 10px;
  }

  /* 最後の枠のみ余白を調整 */
  .detail-table tr {
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }

  .note-section {
    padding: 30px 0;
  }
  .note-text {
    font-size: 0.9rem;
  }

  .page-footer {
    padding: 20px 0;
    font-size: 0.75rem;
  }
}
