/* --------------------------------------------------
  #schedule__date
-------------------------------------------------- */
/* #schedule__date pc */
/* ============================================ */
#schedule__date #event__head{
  border: none;
  margin: 0 auto;
}

#schedule__date #calendar__wrap {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-right: 1px solid #e8eaed;
}

#schedule__date #calendar__wrap ul.calendar__week-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e8eaed;
}

#schedule__date #calendar__wrap ul.calendar__week-head li.calendar__cell--head {
  width: 14.2857%;
  padding: 8px 0;
  color: #5F5F5F;
  text-align: center;
  border-left: 1px solid #e8eaed;
}

#schedule__date #calendar__wrap ul.calendar__week-head li.calendar__cell--head.sat {
  color: #0c6dff;
}

#schedule__date #calendar__wrap ul.calendar__week-head li.calendar__cell--head.sun {
  color: #eb0055;
}

#schedule__date #calendar__wrap ol.calendar__cell-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#schedule__date #calendar__wrap ol.calendar__cell-body li.calendar__cell--day-none {
  width: 14.2857%;
  min-height: 110px;
  text-align: center;
  border-bottom: 1px solid #e8eaed;
  border-left: 1px solid #e8eaed;
}

#schedule__date #calendar__wrap ol.calendar__cell-body li.calendar__cell {
  width: 14.2857%;
  min-height: 110px;
  padding: 4px 0 0;
  text-align: center;
  border-bottom: 1px solid #e8eaed;
  border-left: 1px solid #e8eaed;
}

#schedule__date #calendar__wrap ol.calendar__cell-body li.calendar__cell.sat {
  color: #0c6dff;
}

#schedule__date #calendar__wrap ol.calendar__cell-body li.calendar__cell.sun {
  color: #eb0055;
}

#schedule__date #calendar__wrap ol.calendar__cell-body li.calendar__cell.holiday {
  color: #eb0055;
}

#schedule__date #calendar__wrap ol.calendar__cell-body li.calendar__cell.today {
  border: 1px solid #eb0055;
}

#schedule__date #calendar__wrap .calendar__week {
  display: none;
}

#schedule__date #calendar__wrap dl.calendar__item {
  height: 100%;
}

#schedule__date #calendar__wrap .calendar__link___ {
  height: 100%;
}

#schedule__date #calendar__wrap dl.calendar__item dt.calendar__day {
  height: 15%;
  font-weight: 300;
}

#schedule__date #calendar__wrap dl.calendar__item dd.calendar__event {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 85%;
  padding: 0 0 5px;
  margin: 0 auto;
}

#schedule__date #calendar__wrap dl.calendar__item dd.calendar__event img {
  width: 22px;
}

#schedule__date #calendar__wrap dl.calendar__item dd.calendar__event a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin: 5px 0 0;
  transition: all 0.3s;
}
/* hover */
#schedule__date #calendar__wrap dl.calendar__item dd.calendar__event a:hover {
  background-color: #E8EAFF;
}


/* #schedule__date sp */
/* ============================================ */
@media screen and (max-width: 767px) {
  #schedule__date #calendar__wrap dl.calendar__item dd.calendar__event a p.calendar__tag {
    padding: 5px 2px;
    font-size: 10px;
  }

  #schedule__date #calendar__wrap dl.calendar__item dd.calendar__event img {
    width: 16px;
  }
}