﻿/* =========================
   繝吶・繧ｹ
========================= */
* {
  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;
}

/* =========================
   蜈ｨ菴難ｼ・280x720・・
========================= */
.schedule-wrapper {
  width: min(100%, 1280px);
  min-height: 720px;
  height: auto;
  margin: 0 auto;
  padding: 24px 32px;
  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-main {
  display: flex;
  gap: 24px;
}

.schedule-right {
  width: 380px;
  background: transparent;
}

/* =========================
   繝倥ャ繝繝ｼ
========================= */
.schedule-header h1 {
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 3px 0 rgba(0,0,0,0.18);
}

.schedule-header span {
  font-size: 18px;
  margin-left: 16px;
  color: #eafff4;
}

/* =========================
   繝｡繧､繝ｳ
========================= */
.schedule-main {
  display: flex;
  height: calc(100% - 80px);
  gap: 24px;
}

/* =========================
   蟾ｦ・夂ｸｦ繧ｹ繧ｱ繧ｸ繝･繝ｼ繝ｫ
========================= */
.schedule-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

/* =========================
   1譌･蛻・ｼ亥ｸｯ・・
========================= */
.schedule-day {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.08);
  min-height: 78px;
  max-height: none;
}

/* ===== 譖懈律繝ｻ譌･莉假ｼ域ｨｪ繝ｩ繝吶Ν縺ｫ謌ｻ縺呻ｼ・==== */
.schedule-date {
  width: 110px;
  height: auto;
  border-radius: 999px;
  background: #2fbf8f;
  padding: 8px 12px;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 3px 0 rgba(0,0,0,0.15);
}


.schedule-date::first-line {
  font-size: 22px;
}

.schedule-date {
  font-size: 12px;
}

/* =========================
   驟堺ｿ｡繧｢繧､繝・Β
========================= */
.schedule-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #7fe0b5;
  border-radius: 999px;
  padding: 6px 12px;
  margin-left: 12px;
  flex: 1;
}

/* 繧ｲ繝ｼ繝逕ｻ蜒・*/
.schedule-game-art {
  width: 44px;
  height: auto;
  border-radius: 6px;
}

/* 諠・ｱ */
.schedule-info {
  display: flex;
  flex-direction: column;
}

.schedule-time {
  font-size: 13px;
  font-weight: 700;
  color: #0b5d43;
}

.schedule-title {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 0 rgba(0,0,0,0.25);
}

/* =========================
   OFF DAY
========================= */
.schedule-off {
  margin-left: 12px;
  flex: 1;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  color: #ff4d4d;
  text-shadow:
    0 2px 0 rgba(255,255,255,0.6),
    0 4px 0 rgba(0,0,0,0.25);
}

/* =========================
   蜿ｳ・壹ン繧ｸ繝･繧｢繝ｫ
========================= */
.schedule-right {
  width: 380px;
  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.3));
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .schedule-wrapper {
    padding: 20px;
    min-height: 0;
    overflow: visible;
  }

  .schedule-main {
    height: auto;
    flex-direction: column;
    gap: 16px;
  }

  .schedule-right {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .schedule-wrapper {
    padding: 14px;
  }

  .schedule-header h1 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .schedule-header span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
    font-size: 14px;
  }

  .schedule-left {
    gap: 8px;
  }

  .schedule-day {
    border-radius: 18px;
    padding: 10px;
    min-height: 0;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .schedule-date {
    width: 100%;
    border-radius: 12px;
    padding: 8px 10px;
  }

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

  .schedule-title {
    font-size: 17px;
  }

  .schedule-off {
    font-size: 18px;
    padding: 8px 10px;
  }
}



