/* カレンダー部分
---------------------------------------------------*/
#calendar {
  text-align: center;
  padding-top: 56px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  background: #F6F8F9;
  border-radius: 5px;
  box-sizing: border-box;
}

.calendar-header .calendar-header__prev {
  width: 20px;
  height: 20px;
  margin-right: 40px;
  background: url("/request/img/calendar_prev_bt.png")no-repeat center center/20px ;
  border: none;
  cursor: pointer;
}

.calendar-header .calendar-header__title {
  font-size: 2.2em;
  font-weight: bold;
  margin-right: 40px;
}

.calendar-header .calendar-header__next {
  width: 20px;
  height: 20px;
  background: url("/request/img/calendar_next_bt.png")no-repeat center center/20px ;
  border: none;
  cursor: pointer;
}

.item-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}

.item-list li {
  font-size: 1.6em;
  padding-left: 26px;
}
.item-list li:nth-child(1) {
  background: url("/request/img/item_list_ico01.png")no-repeat center left/16px;
}
.item-list li:nth-child(2) {
  background: url("/request/img/item_list_ico02.png")no-repeat center left/19px 16px;
}
.item-list li:nth-child(3) {
  background: url("/request/img/item_list_ico03.png")no-repeat center left/16px;
}
.item-list li + li {
  margin-left: 24px;
}

table {
  width: 100%;
  margin-top: 12px;
  border-spacing: 0;
  border-collapse: collapse;
  border: #B7C8D2 solid 1px;
}

table thead tr {
  height: 40px;
  background: #23ADED;
}

table thead tr th {
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  padding: 12px;
}
table thead tr th + th {
  border-left: #fff solid 1px;
}

table tbody tr {
  height: 64px;
}

table tbody td {
  height: 90px;
  font-size: 1.4em;
  text-align: left;
  padding: 10px;
  border: 1px solid #B7C8D2;
  box-sizing: border-box;
  vertical-align: top;
}
table tbody td:nth-child(6) {
  color: #037AB1;
  background: #F0F7FF;
}
table tbody td:nth-child(7) {
  color: #BF2828;
  background: #FFF4F8;
}
table tbody td.other_day {
  background: #f5f5f5;
}
table tbody td.public_holiday {
  color: #BF2828;
  background: #FFF4F8;
}
table tbody td.now_day {
  background: #FFFFDD;
}
table tbody td:nth-child(6) a {
  color: #037AB1;
}
table tbody td:nth-child(7) a,
table tbody td.public_holiday a {
  color: #BF2828;
}


table tbody td.is-disabled {
  color: #ccc;
}

table tbody td .am,
table tbody td .pm {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
table tbody td a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #000;
}

table tbody td .accept {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url("/request/img/ico_accept.png")no-repeat center/16px;
}
table tbody td .just_a_little {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url("/request/img/ico_just_a_little.png")no-repeat center/16px;
}
table tbody td .no_space {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url("/request/img/ico_no_space.png")no-repeat center/16px;
}

@media only screen and (max-width:768px) {
  table tbody tr {
    height: 66px;
  }

  table tbody td {
    padding: 6px;
  }

  table tbody td .accept {
    width: 100%;
    max-width: 16px;
    background: url("/request/img/ico_accept.png")no-repeat center/100% auto;
  }
  table tbody td .just_a_little {
    width: 100%;
    max-width: 16px;
    background: url("/request/img/ico_just_a_little.png")no-repeat center/100% auto;
  }
  table tbody td .no_space {
    width: 100%;
    max-width: 16px;
    background: url("/request/img/ico_no_space.png")no-repeat center/100% auto;
  }
}
