@charset "UTF-8";

/* Slider */
/* Icons */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}

.room-section .slick-prev,
.room-section .slick-next {
    z-index: 1;
    top:95%
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    /* top: 50%; */
    bottom: -45px;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    right: 0;
    left: 0;
    margin: auto;

}

.slick-prev {
    right: 50%;
    width: 30%;
    /* background-image: repeating-linear-gradient(90deg, #dc5096, #dc5096 3px, transparent 3px, transparent 6px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px; */
}

.slick-prev::after {
    content: "";
    left: 0;
    bottom: -4px;
    background-color: #dc5096;
    padding: 5px;
    border-radius: 50px;
    position: absolute;
    display: none;
}

.slick-next {
    left: 50%;
    width: 30%;
    /* background-image: repeating-linear-gradient(90deg, #dc5096, #dc5096 3px, transparent 3px, transparent 6px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px; */
}

.slick-next::after {
    content: "";
    right: 0;
    bottom: -4px;
    background-color: #dc5096;
    padding: 5px;
    border-radius: 50px;
    position: absolute;
    display: none;
}

.custom-next-arrow,
.custom-prev-arrow {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    height: 6px;
    width: auto;
    position: relative;
    background-color: transparent;
}

.custom-next-arrow .dot,
.custom-prev-arrow .dot {
    width: 6px;
    height: 6px;
    background-color: #dc5096;
    border-radius: 50%;
    opacity: 0;
    animation: dotFade 3s infinite ease-in-out;
}

.custom-next-arrow .big-dot,
.custom-prev-arrow .big-dot {
    width: 10px;
    height: 10px;
}

/* custom-next-arrow アニメーションディレイ（左→右） */
.custom-next-arrow .dot:nth-child(1) {
    animation-delay: 0s;
}

.custom-next-arrow .dot:nth-child(2) {
    animation-delay: 0.1s;
}

.custom-next-arrow .dot:nth-child(3) {
    animation-delay: 0.3s;
}

.custom-next-arrow .dot:nth-child(4) {
    animation-delay: 0.5s;
}

.custom-next-arrow .dot:nth-child(5) {
    animation-delay: 0.7s;
}

.custom-next-arrow .dot:nth-child(6) {
    animation-delay: 1s;
}

/* custom-prev-arrow アニメーションディレイ（右→左） */
.custom-prev-arrow .dot:nth-child(1) {
    animation-delay: 1s;
}

.custom-prev-arrow .dot:nth-child(2) {
    animation-delay: 0.7s;
}

.custom-prev-arrow .dot:nth-child(3) {
    animation-delay: 0.5s;
}

.custom-prev-arrow .dot:nth-child(4) {
    animation-delay: 0.3s;
}

.custom-prev-arrow .dot:nth-child(5) {
    animation-delay: 0.1s;
}

.custom-prev-arrow .dot:nth-child(6) {
    animation-delay: 0s;
}

/* アニメーション本体 */
@keyframes dotFade {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }

    80% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.6);
    }
}


.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    /* color: transparent;
    outline: none;
    background: transparent; */
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 2rem;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: 0;
}

[dir='rtl'] .slick-prev {
    right: 0;
    left: auto;
}

.slick-prev:before {
    /* content: '←'; */
    /* content: "";
    background: url(../img/service/service_line.png);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding: 32px;
    transform: rotate(90deg); */

}

[dir='rtl'] .slick-prev:before {
    /* content: '→'; */
    /* content: "";
    background: url(../img/service/service_line.png);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding: 32px;
    transform: rotate(90deg); */

}

[dir='rtl'] .slick-next {
    right: auto;
    left: 0;
}

.slick-next:before {
    /* content: '→'; */
    /* content: "";
    background: url(../img/service/service_line.png);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding: 32px;
    transform: rotate(269deg); */
}

[dir='rtl'] .slick-next:before {
    /* content: '←'; */
    /* content: "";
    background: url(../img/service/service_line.png);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding: 32px;
    transform: rotate(269deg); */

}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}

.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 0.6rem;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}