/* カレンダースライダー */
#jj_dateSlider {
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 40px;
    padding: 8px 30px 10px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#jj_dateSlider>.jj_cursor {
    height: 24px;
}

.jj_dateBox {
    min-width: 70px;
    display: inline-block;
    text-align: center;
    width: 90%;
    padding: 4px 0;
    background-color: white;
    z-index: 10;
    position: relative;
}

.jj_dateBox>.jj_dateText {
    font-size: 1em;
    padding: 0 2px;
}

.jj_dateBox>.jj_dayText {
    font-size: 0.6em;
}

.slider {
    width: 80%;
}

.dam>.jj_dateBox {
    display: none;
}

.slide-arrow {
    bottom: 0;
    height: 15px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 15px;
}

.prev-arrow {
    left: -25px;
}

.next-arrow {
    right: -25px;
}

#jj_dateSlider:before {
    content: "";
    margin: 0 auto;
    position: absolute;
    width: 20px;
    height: 5px;
    border-radius: 10px;
    top: 48px;
    background-color: var(--SLIDER_CENTER_COLOR);
}

.prev {
    left: 5px;
    background-image: url('data:image/svg+xml,%3Csvg version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" xml:space="preserve"%3E%3Cg%3E%3Cpolygon class="st0" points="419.916,71.821 348.084,0 92.084,256.005 348.084,512 419.916,440.178 235.742,256.005" style="fill:rgb(85,121,250);"%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E');
    position: absolute;
    margin: auto 0;
    top: 0;
    bottom: 0;
}

.next {
    right: 5px;
    background-image: url('data:image/svg+xml,%3Csvg version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" xml:space="preserve"%3E%3Cg%3E%3Cpolygon class="st0" points="163.916,0 92.084,71.822 276.258,255.996 92.084,440.178 163.916,512 419.916,255.996" style="fill: rgb(85, 121, 250);"%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E');
    position: absolute;
    margin: auto 0;
    top: 0;
    bottom: 0;
}

.splide_jj>.jj_dateBox {
    border: 2px solid var(--CALENDAR_SLIDER_COLOR);
    transform: scale(0.9);
}

.splide__slide.is-active>.jj_dateBox {
    border: 2px solid var(--SLIDER_CENTER_COLOR);
    transform: scale(1);
}

.splide__slide {
    text-align: center;
}