.container-calendar {
    background: #ffffff;
    position: sticky;
    top: 3%;
    width: 100%;
    align-self: baseline;
}

@media screen and (max-width: 1100px) {
    .container-calendar {
        margin: 0 auto;
        padding: 3% 0 1% 0;
        border: 0 solid black;
        width: 94%;
    }
}

.calendar-area {
    background-color: #FFFFFF;
    padding: 0 5px;
}

/* 月表示部 */
.button-container-calendar {
    background: #ffffff;
    clear: both;
    text-align: center;
    padding: 10px 5px 15px;
}

.monthAndYear-area {
    background: #ffffff;
    display: inline-flex;
}

.monthAndYear {
    background: #ffffff;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 0.9;
    padding-top: 5px;
    border-bottom: 2px solid #89C750;
}

@media screen and (max-width: 1100px) {
    .monthAndYear-calendar tr {
        font-size: 16px;
    }
}

.button-container-calendar button {
    background: #ffffff;
    padding: 5px 0;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#previous {
    float: left;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

#next {
    float: right;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.calender-previous,
.calender-next {
    background-color: #ffffff;
}

#previous:hover,
#next:hover {
    background-color: #e7e7e7;
}

#previous:hover .calender-previous,
#next:hover .calender-next {
    background-color: #e7e7e7;
}

@media screen and (max-width: 1100px) {
    .button-container-calendar {
        background: #ffffff;
        clear: both;
        padding-bottom: 10px;
    }

    .monthAndYear-area {
        background: #ffffff;
        display: inline-flex;
        width: 70%;
    }

    .monthAndYear {
        background: #ffffff;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        letter-spacing: 3;
        padding: 5px 5px 5px 5px;
    }

    .button-container-calendar button {
        background: #ffffff;
        padding: 5px 0;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    #previous {
        float: left;
        width: 15%;
        font-weight: bold;
    }

    #next {
        float: right;
        width: 15%;
        font-weight: bold;
    }
}

/* カレンダー本体 */
.table-calendar {
    border-collapse: collapse;
    width: 100%;
    background: #ffffff;
    padding: 0 5px;
    margin-bottom: 10px;
}

.calender-btn {
    cursor: pointer;
}

.table-calendar tr {
    background-color: #ffffff;
}

@media screen and (max-width: 1100px) {
    .table-calendar tr {
        padding: 1% 0;
    }

    .calendar-body {
        height: 100%;
        background: #ffffff;
    }
}

/* 日曜・祝日 */
.sunday,
.is-holiday {
    color: red !important;
}

/* 土曜 */
.saturday {
    color: blue !important;
}

.table-calendar th,
.table-calendar td {
    text-align: center;
    background-color: #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.date-picker {
    max-width: 35px;
    height: 40px;
    max-height: 35px;
}

.cell {
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 13px;
    margin: 0 auto;
    height: 35px;
    width: 35px;
}


@media screen and (max-width: 1100px) {

    .table-calendar th,
    .table-calendar td {
        min-width: 0px;
        max-width: none;
        min-height: 0px;
        max-height: none;
        background-color: #ffffff;
    }
}

.days {
    background-color: #ffffff;
    margin: 0 auto;
    font-size: 14px;
}

.date {
    background-color: #ffffff;
    margin: 0 auto;
}

.date-picker .cell:hover {
    background-color: #e7e7e7;
}

.date-picker.selected {
    font-weight: bold;
    color: #fff;
    background: #cc0000;
}

.date-picker.selected span {
    border-bottom: 2px solid currentColor;
}

/* 日曜 */
.active-date:nth-child(1) {
    color: red;
}

/* 土曜 */
.active-date:nth-child(7) {
    color: blue;
}

.colorchange {
    background-color: #89c750 !important;
    color: #FFFFFF;
}

.colorchange * {
    background-color: #89c750 !important;
    color: #FFFFFF;
}

.active-date {
    cursor: pointer
}

.disabled-date {
    color: #A6A6A6 !important;
}

.disabled-date .cell {
    background-color: #FFFFFF !important;
}