/* HERO */
.schedule-hero {
  position: relative;
  padding: 64px 0 44px;
  overflow: hidden;
  background: linear-gradient(180deg, #e7f4ff 0%, #ffffff 70%);
}

.schedule-hero__bg {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(30, 32, 132, .08);
  filter: blur(0px);
}

.schedule-hero__eyebrow {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(30, 32, 132, .75);
}

.schedule-hero__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: .02em;
}

.schedule-hero__lead {
  margin: 0;
  color: rgba(15, 23, 42, .78);
  line-height: 1.9;
  max-width: 48em;
}

.schedule-section {
  padding: 80px 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.schedule-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.schedule-card:hover {
  transform: translateY(-5px);
}

.schedule-card-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.schedule-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

.schedule-card--kids .schedule-btn {
  background: #007aff;
}

.schedule-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* SP */
@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}