
/* Schedule page extra styles (kept separate to avoid overwriting site styles.css) */
.schedule-page { background: var(--bg, #f8f6ff); color: var(--ink, #333); }
.schedule-hero { max-width:1080px; margin:0 auto; padding:78px 16px; }
.schedule-grid{
  display:grid;
  gap:20px;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  max-width:1080px; margin:0 auto; padding:0 16px 24px;
}
/* サムネイル固定比率 (16:9) */
#scheduleList .card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #e9dcff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

#scheduleList .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#scheduleList .thumb-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 の比率 */
  overflow: hidden;
  border-bottom: 2px solid #e9dcff;
}

#scheduleList .thumb-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-thumb{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.schedule-body{ padding:12px 16px; }
.schedule-name{ margin:0; font-size:1.05em; color:#6a47b8; font-weight:700; }
.schedule-dt{ margin:4px 0; color:#6b6480; font-size:.9em; }
.schedule-title{ margin:6px 0 10px; font-weight:700; color:#3b2c66; }
.schedule-link{
  display:inline-block; margin-top:2px; background:#bfa5ff; color:#fff;
  padding:6px 10px; border-radius:8px; text-decoration:none; font-weight:600;
}
.schedule-link:hover{ background:#a389ff; }


