.mv {
  width: 100%;
}
.mv h1 {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
}
.mv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.introduction {
  padding: 44px 0 38px;
  text-align: center;
}
.introduction p {
  margin: 0;
}
.introduction p + p {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .introduction {
    padding: 20px 3px;
    text-align: left;
  }
}

.events {
  padding-bottom: 48px;
}

.event {
  position: relative;
  padding: 30px 26px;
  border: 1px solid rgba(32, 59, 77, 0.07);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(24, 52, 71, 0.09);
}

.event h2 {
  margin: 0 0 1.25em;
  padding-bottom: 1em;
  font-size: 1.48em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  border-bottom: 2px solid;
}

.event__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  margin: 0;
  padding: 0 16px;
}

.event__facts > div {
  width: 50%;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.event__facts dt {
  width: 85px;
  padding: 3px 8px 4px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
}
.event__facts dd {
  width: calc(100% - 85px);
  margin: 0;
  padding: 0 0.75em;
  letter-spacing: 0.15em;
}

.event__description {
  padding: 25px 16px;
}
.event__description p {
  margin: 0 0 7px;
}

.parking-section {
  margin: 0 0 16px;
  padding: 0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.event.blue {
  background: linear-gradient(145deg, #f4faff 0%, #e8f5ff 100%);
}
.event.blue h2 {
  border-color: #0e5792;
  color: #0e5792;
}
.blue .event__facts dt {
  background: #0e5792;
}

.event.red {
  background: linear-gradient(145deg, #fff8fa 0%, #ffedf2 100%);
}
.event.red h2 {
  border-color: #b81549;
  color: #b81549;
}
.event.red .event__facts dt {
  background: #b81549;
}

.event.yellow {
  background: linear-gradient(145deg, #fffbef 0%, #fff4d5 100%);
}
.event.yellow h2 {
  border-color: #b68a13;
  color: #b68a13;
}
.event.yellow .event__facts dt {
  background: #b68a13;
}

.event.green {
  background: linear-gradient(145deg, #f0f8ec 0%, #dcefd4 100%);
}
.event.green h2 {
  border-color: #489a22;
  color: #489a22;
}
.event.green .event__facts dt {
  background: #489a22;
}

.event.orenge {
  background: linear-gradient(145deg, #fff7f1 0%, #fbe8da 100%);
}
.event.orenge h2 {
  border-color: #d15b09;
  color: #d15b09;
}
.event.orenge .event__facts dt {
  background: #d15b09;
}

.event.purple {
  background: linear-gradient(145deg, #faf3ff 0%, #f0e0fc 100%);
}
.event.purple h2 {
  border-color: #7021b1;
  color: #7021b1;
}
.event.purple .event__facts dt {
  background: #7021b1;
}

.parking-section:last-child {
  margin-bottom: 0;
}
.parking-section h3 {
  margin: 0;
  padding: 11px 16px;
  color: #263d46;
  font-size: 1.05em;
  line-height: 1.6;
  background: linear-gradient(90deg, #f4f7f8 0%, #fafcfc 100%);
  border-bottom: 1px solid #edf1f2;
}

.parking-list {
  margin: 0;
  padding: 16px 16px 25px;
  list-style: none;
}
.parking-list li + li {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #e2eaed;
}
.parking-list a {
  padding: 2px 6px 2px 18px;
  border-radius: 4px;
  overflow-wrap: anywhere;
  text-decoration: none;
  position: relative;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.parking-list a::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 2px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #0073b5;
}
.parking-list a:hover {
  color: #169870;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .mv h1 {
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(5, 20, 67, 0.16);
  }
  .event__facts {
    gap: 8px 0;
    padding: 0;
  }
  .event__facts > div {
    width: 100%;
  }
  .event {
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(24, 52, 71, 0.08);
  }
  .event h2 {
    font-size: 1.36em;
  }
  .event__description {
    padding: 20px 0;
  }
  .parking-section h3 {
    padding: 10px 12px;
  }
  .parking-list {
    padding: 14px 12px 20px;
  }
}
