div.calendar-box {
    display: inline-block;
    width: 550px;
}
.calendar-section.hide {
    display: none!important;
}

.calendar-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 10px; */
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #707070;
}
.calendar-section-title {
    color: #707070;
    font-size: 33px;
    line-height: 33px;
    font-weight: normal;
    text-align: center;
    margin: 0 auto;
}
/* next prev button / 初月のprev・最後月のnext → 非表示*/
.calendar-box .calendar-section:first-of-type .prev-month,
.calendar-box .calendar-section:last-of-type .next-month {
    display: none;
}
.prev-month, .next-month {
    color: #707070;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    line-height: 20px;
    font-size: 16px;
}
.prev-month {
    left: 0;
    padding-left: 30px;
    margin-bottom: 10px;
    background: url(../img/prev.png) no-repeat left;
}
.next-month {
    right: 0;
    padding-right: 30px;
    margin-bottom: 10px;
    background: url(../img/next.png) no-repeat right;
}
.calendar-section-select .button {
    height: 36px;
    width: 110px;
    margin-left: 4px;
    font-size: 14px;
}
.calendar-section-select .button.holiday {
    color: #cc887f;
}

.calendar-section-date {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}
.calendar-section-date th,
.calendar-section-date td {
    /* height: 50px; */
    height: 65px;
    width: 78px;
    font-weight: normal;
    text-align: center !important;
    vertical-align: middle;
    /* border: 1px solid #dbdbdb; */
    cursor: pointer;
}
.calendar-section-date thead th,
.calendar-section-date thead tr {
    border: none!important;
    font-size: 11px;
    cursor: default;
}
.calendar-section-date th.sunday,
.calendar-section-date td.sunday,
.calendar-section-date th.holiday,
.calendar-section-date td.holiday,
.calendar-section-date th.sunday a,
.calendar-section-date td.sunday a,
.calendar-section-date th.holiday a,
.calendar-section-date td.holiday a {
    color: #cc887f;
}
.calendar-section-date th.saturday,
.calendar-section-date td.saturday,
.calendar-section-date th.saturday a,
.calendar-section-date td.saturday a {
    color: #2a7fb9;
}
.calendar-section-date th.disable,
.calendar-section-date td.disable,
.calendar-section-date th.disable a,
.calendar-section-date td.disable a {
    color: #eeeeee!important;
}
.calendar-section-date th.disable .calendar-label,
.calendar-section-date td.disable .calendar-label,
.calendar-section-date th.disable .calendar-label a,
.calendar-section-date td.disable .calendar-label a {
    cursor: not-allowed!important;
}

.calendar-label {
    display: block;
    height: 95%;
    width: 95%;
    border: 1px solid #dbdbdb;
}
@media screen and (min-width:769px) {
    .calendar-label:hover {
        cursor: pointer;
        background: #FFFFF3;
        color: #E0CEA3;
        opacity: 0.7;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
}
.calendar-label input[type="checkbox"] {
    display: none;
}
.calendar-label input[type="checkbox"]:checked + span {
    background-color: #FFFFF3;
    color: #C9A966;
}
.calendar-label span,
.calendar-label a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #fff;
}
/* 残席非表示 */
.calendar-label span.stock {
    display: none!important;
}
/* .calendar-label span.stock {
    font-size: 10px
} */

.calendar-section-date thead tr {
    display: table-row;
}

/* ----- カレンダー2つ並びデザイン (＊コンセプト選択無し) ----- */
/* カレンダー2つ表示なので調整 */
div.calendar-box.pc {
    display: inline-block;
    width: 100%;
}
div.calendar-box.pc .calendar-section {
    width: calc(50% - 10px);
    display: inline-block;
    margin: 3px;
}
/* 1,3ヶ月目はnextprevのボタンが不必要 */
div.calendar-box.pc .calendar-section:nth-of-type(1) .next-month,
div.calendar-box.pc .calendar-section:nth-of-type(1) .prev-month,
div.calendar-box.pc .calendar-section:nth-of-type(3) .next-month,
div.calendar-box.pc .calendar-section:nth-of-type(3) .prev-month {
    display: none;
}
.calendar-box.pc .calendar-section .prev-month.hide-pc,
.calendar-box.pc .calendar-section .next-month.hide-pc {
    display: none;
}


/* ----- sp ----- */
@media screen and (max-width: 768px) {
    div.calendar-box {
        width: 100%;
        display: block;
    }
    .calendar-section-title {
        font-size: 25px;
        line-height: 25px;
    }
    .calendar-section-date th, .calendar-section-date td {
        height: 50px;
    }
    /* 1ヶ月目はprevのボタンが不必要 */
    /* 3ヶ月目はnextのボタンが不必要 */
    div.calendar-box.sp .calendar-section:nth-of-type(1) .prev-month,
    div.calendar-box.sp .calendar-section:nth-of-type(3) .next-month {
        display: none;
    }
    .calendar-box.sp .calendar-section .prev-month.hide-sp,
    .calendar-box.sp .calendar-section .next-month.hide-sp {
        display: none;
    }
    .prev-month, .next-month {
        line-height: 18px;
        font-size: 14px;
    }
    .prev-month {
        padding-left: 25px;
    }
    .next-month {
        padding-right: 25px;
    }
}
