* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  background: #d7f6e6;
}

.schedule-container {
  width: 100%;
  overflow-x: auto;
  padding: 8px 0;
}

.schedule-wrapper {
  width: 1600px;
  height: 900px;
  margin: 0 auto;
  padding: 24px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, #b6f3d1 0%, transparent 45%),
    radial-gradient(circle at bottom left, #9ee8c3 0%, transparent 50%),
    linear-gradient(135deg, #c9f5df, #a8e9c8);
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.schedule-header h1 {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 0;
  padding: 14px 20px;
  border-radius: 18px;
  border: 3px solid #d9fff0;
  background: linear-gradient(180deg, #39bf96 0%, #2fae88 100%);
  color: #ffffff;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.schedule-header span {
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
}

.schedule-main {
  height: calc(100% - 112px);
  display: flex;
  gap: 20px;
}

.schedule-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-day {
  flex: 1;
  min-height: 0;
  background: #ffffff;
  border: 2px solid #d8f3e6;
  border-radius: 26px;
  padding: 8px 12px;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.schedule-date {
  width: 140px;
  min-width: 140px;
  border-radius: 999px;
  background: linear-gradient(180deg, #37c39a 0%, #26ae88 100%);
  color: #ffffff;
  padding: 10px 8px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.schedule-date-main {
  font-size: 38px;
  font-weight: 900;
  line-height: 0.95;
  color: #ffffff;
}

.schedule-date-dow {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.schedule-item,
.schedule-off {
  flex: 1;
  width: 100%;
  margin-left: 0;
  border-radius: 999px;
}

.schedule-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  min-height: 84px;
  padding: 10px 14px;
  background: #ffffff;
  border: 2px solid #8edfc1;
  box-shadow: inset 0 0 0 1px #e9fff4;
  color: #0b5d43;
  text-align: left;
}

.schedule-game-art {
  width: 44px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  flex: 0 0 auto;
}

.schedule-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.schedule-time {
  font-size: 14px;
  font-weight: 800;
  color: #0b6a4d;
  text-align: left;
}

.schedule-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  color: #0f7658;
  text-shadow: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.schedule-off {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 84px;
  background: #ffffff;
  border: 2px solid #ffd5d9;
  color: #ff4c58;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.schedule-right {
  width: 360px;
  min-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-right img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.schedule-download-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(19, 132, 104, 0.82);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.schedule-download-btn:hover {
  background: rgba(25, 150, 118, 0.9);
}

.schedule-download-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

@media (max-width: 1024px) {
  .schedule-wrapper {
    margin: 0;
  }
}