/* 20221011 カレンダー */
.calendar-area {
    background: #fff;
    width: 280px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    position: fixed;
    right: 74px;
    bottom: -100%;
    z-index: 10;
}

@media (max-width: 767px) {
    .calendar-area {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 10px;
    }
}

@media (min-width: 768px) {
    .calendar-area {
        width: 320px;
        bottom: 10px;
    }
}

.calendar-area.close-item {
    width: auto;
    border-radius: 50px;
    bottom: 10px;
}

.calendar-area .calendar-title svg {
    display: none;
    width: 24px;
    height: 24px;
    fill: #fff;
}

.calendar-area.close-item .calendar-title svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: #fff;
}

.calendar-area .calendar-title {
    background: #00aa83;
    padding: 5px;
    border-radius: 5px 5px 0 0;
}

.calendar-area.close-item .calendar-title {
    padding: 15px;
    border-radius: 50px;
}

.calendar-area .calendar-title .ttl {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    display: block;
}

.calendar-area.close-item .calendar-title .ttl {
    display: none;
    border-radius: 5px;
}

.calendar-area .calendar-cont {
    height: auto;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    transition: .5s ease all;
}

.calendar-area #popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    z-index: 1;
}

.calendar-area.active #popup-close {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.calendar-area #popup-close svg {
    display: block;
    bottom: inherit;
    left: inherit;
    fill: #fff;
    z-index: 1;
    width: 16px;
    height: 16px;
    transform: rotate(0deg);
}

.calendar-area.active.close-item #popup-close {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.calendar-area.active #popup-close svg {
    margin-top: 6px;
    margin-right: 8px;
    margin-bottom: 5px;
    margin-left: auto;
}

.calendar-area #popup-close .icon-up svg {
    display: none;
    opacity: 0;
}

.calendar-area #popup-close .icon-down svg {
    display: block;
    opacity: 1;
}

.calendar-area.close-item #popup-close .icon-up svg {
    display: block;
    opacity: 1;
}

.calendar-area.close-item #popup-close .icon-down svg {
    display: none;
    opacity: 0;
}

@media (max-width: 767px) {
    .calendar-area.active.close-item .calendar-cont {
        width: 0;
        height: 0;
        transition: .5s ease all;
    }
}

@media (min-width: 768px) {
    .calendar-area.active.close-item .calendar-cont {
        width: 0;
        height: 0;
        transition: .5s ease all;
    }
}

/* booking */
#booking-package_calendarPage {
    font-size: 13px;
    min-height: 223px;
}

#booking-package_calendarPage .calendar {
    padding: 10px;
    padding-top: 0;
    margin-bottom: 0;
}

#booking-package_calendarPage .dayPanel {
    background: #fff;
    padding: 6px 0;
    border-color: #d6d6d6;
}

#booking-package_calendarPage .dayPanel.sun:nth-of-type(1) {
    background: #ffd9d9;
}

#booking-package_calendarPage .dayPanel.sat:nth-of-type(7) {
    background: #d5ecff;
}

#booking-package_calendarPage .dayPanel.holidayPanel {
    background: none !important;
    border-color: #c6c6c6;
    position: relative;
}

#booking-package_calendarPage .dayPanel.holidayPanel::before {
    content: '';
    background: #eb8d8d;
    width: 21px;
    height: 21px;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

#booking-package_calendarPage .dayPanel.holidayPanel .dayPostion {
    color: #fff;
}

#booking-package_calendarPage .dayPanelHeight {
    height: auto;
}

#booking-package_calendarPage .dayPostion {
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.calendarData {
    font-size: 16px;
    padding-bottom: 2px;
}

#booking-package_calendarPage .calendarPanel {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

#booking-package_calendarPage label {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 0;
}

#booking-package_calendarPage .arrowFont {
    font-size: 1.5em !important;
}

#booking-package_calendarPage .arrowLeft {}

#booking-package_calendarPage .arrowLeft span, #booking-package_calendarPage .arrowRight span {
    position: relative;
}

#booking-package_calendarPage .arrowLeft span::after, #booking-package_calendarPage .arrowRight span::after {
    content: '月';
    position: relative;
}
