@charset "UTF-8";

.page-title-container {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px; 
}

.page-title-container h1 {
  font-family: "Kiwi Maru", serif;
  font-size: 30px;
  font-weight: bold;
  color: #333;
  text-decoration: underline;
  text-decoration-color: rgb(107, 107, 175);
  text-underline-offset: 6px;
}

.overview-section {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.overview-section h2 {
  font-family: "Kiwi Maru", serif;
  font-size: 24px;
  font-weight: bold;
  color: rgb(107, 107, 175);
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid rgb(107, 107, 175);
}

.overview-section p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #444;
}

.overview-section p strong {
  font-weight: bold;
  color: #333;
}

.important-note {
  color: #d9534f;
  font-weight: bold;
}

.schedule-section .venue-note {
  text-align: center;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.event-schedule-list {
  list-style: none;
  padding-left: 0;
}

.event-schedule-list li {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px dotted #ccc;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
}

.event-schedule-list li:last-child {
  border-bottom: none;
}

.event-schedule-list .time {
  flex: 0 0 150px;
  font-weight: bold;
  color: #333;
}

.event-schedule-list .event-name {
  flex: 1;
  color: #444;
}

.ground-events-section h2 {
}

@media screen and (max-width: 768px) {
  .page-title-container h1 {
    font-size: 26px;
  }
  .overview-section h2 {
    font-size: 20px;
  }
  .overview-section p,
  .event-schedule-list li {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .event-schedule-list li {
    flex-direction: column;
  }
  .event-schedule-list .time {
    flex-basis: auto;
    margin-bottom: 5px;
  }
  .overview-section {
    padding: 15px 20px;
  }
}