.page_content#top #top_calendar {
  border-top: 3px solid rgb(121, 177, 30);
  background: linear-gradient(to bottom, #f6faed, #fff);
  padding: 60px 0 80px;
}
.page_content#top #top_calendar .ttl_row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}
.page_content#top #top_calendar .ttl_row .sec_ttl {
  flex-shrink: 0;
}
.page_content#top #top_calendar .ttl_row .intro {
  border-left: 1px solid #000;
  padding-left: 30px;
}
.page_content#top #top_calendar .calendar_shell {
  background: #fff;
  border: 1px solid rgba(121, 177, 30, 0.35);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(121, 177, 30, 0.14);
  overflow: hidden;
}
.page_content#top #top_calendar .calendar_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: rgb(121, 177, 30);
  color: #fff;
}
.page_content#top #top_calendar .calendar_title {
  font-family: "Jost", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.page_content#top #top_calendar .calendar_nav {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}
.page_content#top #top_calendar .calendar_nav span {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.page_content#top #top_calendar .calendar_nav:hover {
  background: #fff;
}
.page_content#top #top_calendar .calendar_nav:hover span {
  border-color: rgb(121, 177, 30);
}
.page_content#top #top_calendar .calendar_nav--prev span {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.page_content#top #top_calendar .calendar_nav--next span {
  transform: rotate(45deg);
  margin-right: 4px;
}
.page_content#top #top_calendar .calendar_weekdays,
.page_content#top #top_calendar .calendar_week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.page_content#top #top_calendar .calendar_weekdays {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(124, 190, 50, 0.1);
}
.page_content#top #top_calendar .calendar_weekdays span {
  padding: 12px 8px;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 1;
}
.page_content#top #top_calendar .calendar_weekdays span:first-child {
  color: rgb(191, 70, 78);
}
.page_content#top #top_calendar .calendar_weekdays span:last-child {
  color: rgb(35, 130, 208);
}
.page_content#top #top_calendar .calendar_body {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.page_content#top #top_calendar .calendar_week {
  grid-template-rows: 36px repeat(var(--calendar-event-rows), 26px) minmax(0, 1fr);
  min-height: 132px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
}
.page_content#top #top_calendar .calendar_week:last-child {
  border-bottom: 0;
}
.page_content#top #top_calendar .calendar_day {
  grid-row: 1/-1;
  min-width: 0;
  padding: 9px 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}
.page_content#top #top_calendar .calendar_day:nth-child(1) .calendar_day_number {
  color: rgb(191, 70, 78);
}
.page_content#top #top_calendar .calendar_day:nth-child(7) .calendar_day_number {
  color: rgb(35, 130, 208);
}
.page_content#top #top_calendar .calendar_day_number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.page_content#top #top_calendar .calendar_day.is-outside {
  background: #f8f8f8;
}
.page_content#top #top_calendar .calendar_day.is-outside .calendar_day_number {
  color: #aaa;
}
.page_content#top #top_calendar .calendar_day.is-today .calendar_day_number {
  background: rgb(121, 177, 30);
  color: #fff;
}
.page_content#top #top_calendar .calendar_event,
.page_content#top #top_calendar .calendar_more {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  margin: 2px 4px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page_content#top #top_calendar .calendar_event {
  background: rgb(121, 177, 30);
}
.page_content#top #top_calendar .calendar_event.is-continued-before {
  margin-left: 0;
  border-radius: 0 4px 4px 0;
}
.page_content#top #top_calendar .calendar_event.is-continued-after {
  margin-right: 0;
  border-radius: 4px 0 0 4px;
}
.page_content#top #top_calendar .calendar_event.is-continued-before.is-continued-after {
  border-radius: 0;
}
.page_content#top #top_calendar a.calendar_event {
  color: #fff;
}
.page_content#top #top_calendar .calendar_event--opencampus {
  background: #26b7bc;
}
.page_content#top #top_calendar .calendar_event--closed {
  background: rgb(191, 70, 78);
}
.page_content#top #top_calendar .calendar_more {
  color: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.08);
}
.page_content#top #top_calendar .calendar_message {
  padding: 14px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  color: rgb(191, 70, 78);
  font-weight: 600;
}

@media (max-width: 960px) {
  .page_content#top #top_calendar .ttl_row {
    flex-direction: column;
    gap: 0;
  }
  .page_content#top #top_calendar .ttl_row .intro {
    border-left: 0;
    padding-left: 0;
  }
  .page_content#top #top_calendar .calendar_week {
    min-height: 118px;
  }
}
@media (max-width: 520px) {
  .page_content#top #top_calendar {
    padding: 45px 0 60px;
  }
  .page_content#top #top_calendar .calendar_header {
    padding: 16px;
  }
  .page_content#top #top_calendar .calendar_title {
    font-size: 24px;
  }
  .page_content#top #top_calendar .calendar_nav {
    width: 38px;
    height: 38px;
  }
  .page_content#top #top_calendar .calendar_weekdays span {
    padding: 10px 2px;
    font-size: 12px;
  }
  .page_content#top #top_calendar .calendar_week {
    grid-template-rows: 28px repeat(var(--calendar-event-rows), 30px) minmax(0, 1fr);
    min-height: 104px;
  }
  .page_content#top #top_calendar .calendar_day {
    padding: 7px 4px;
  }
  .page_content#top #top_calendar .calendar_day_number {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .page_content#top #top_calendar .calendar_event,
  .page_content#top #top_calendar .calendar_more {
    box-sizing: border-box;
    margin: 2px;
    padding: 5px;
    max-height: 26px;
    font-size: 8px;
    line-height: 1.25;
    white-space: normal;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/*# sourceMappingURL=index_calendar.css.map */
