/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 02 2026 | 05:59:24 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 28 2026 | 01:24:04 */
[id^="calendar-"] {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 750px) {
  [id^="calendar-"] {
    flex-direction: column;
  }
}

.month {
  width: 100%;
}

.month-title {
  color: #000;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: var(--c, #999);
  font-weight: bold;
}

.grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.weekday {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.weekday:nth-child(7n+1) {
  color: #ff6666;
}

.day {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.day.sun {
  color: #ff6666;
  background: #ffecec;
}

.day.holiday {
  border: 2px solid red;
}

/* 日曜セル */
.day.sunday {
  color: red !important;
  background: #ffecec !important;
}

/* 祝日 */
.day[style*="border"] {
  border: 1px solid red !important;
}

/* 曜日ヘッダー */
.weekday:first-child {
  color: red;
}

/* 色 */
#calendar-spring .month:nth-child(1){--c:#CCFF90}
#calendar-spring .month:nth-child(2){--c:#B2FF59}
#calendar-spring .month:nth-child(3){--c:#76FF03}

#calendar-summer .month:nth-child(1){--c:#80D8FF}
#calendar-summer .month:nth-child(2){--c:#40C4FF}
#calendar-summer .month:nth-child(3){--c:#00B0FF}

#calendar-autumn .month:nth-child(1){--c:#FFD180}
#calendar-autumn .month:nth-child(2){--c:#FFAB40}
#calendar-autumn .month:nth-child(3){--c:#FF9100}

#calendar-winter .month:nth-child(1){--c:#E2E8F0}
#calendar-winter .month:nth-child(2){--c:#CAD5E2}
#calendar-winter .month:nth-child(3){--c:#B0C4DE}