@charset "UTF-8";

.box--slide .slide--main {
    display: none;
}
.box--slide .slide--main.slick-initialized {
    display: block;
}
.box--slide .slide--main .box--slide {
    background: #fff;
}
.box--slide .slide--main .li_main li {
    width: 100%;
    height: 100vw;
}
.box--slide .slide--main .li_main img {
    width: 100%;
    height: 100vw;
    object-fit: cover;
}

@media only screen and (min-width : 769px) {
    .box--slide .slide--main .li_main li {
        width: 100%;
        height: 50vw;
    }
    .box--slide .slide--main .li_main img {
        width: 100%;
        height: 50vw;
        /*HD 画面比率　1920pxの半分ということになるので960px*/
        object-fit: cover;
    }
}

/*arrow*/
.box--slide .slide--main .slide__arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* width: 10%; */
    color: rgb(252, 132, 246);
    text-align: center;
    opacity: .5;
    transition: opacity 0.15s ease;
    will-change: opacity;
    font-size: 3em;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.box--slide .slide--main .slide__arrow:active {
    color: var(--c_white);
}

.box--slide .slide--main .slide__arrow--pre {
    left: 10px;
}

.box--slide .slide--main .slide__arrow--next {
    right: 10px;
}

/*dots*/
.box--slide .slide--main {
    margin-bottom: 0;
}

.box--slide .box--mainVisual .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.box--slide .slide--main .dots__slide--main {
    /* position: absolute;
bottom: 5px; */
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
    padding-top: 0.5em;
    padding-bottom: 0.75em;
}

@media only screen and (min-width : 769px) {
    .box--slide .slide--main .dots__slide--main {
        position: absolute;
        bottom: 5px;
    }
}

.box--slide .slide--main .dots__slide--main li button {
    text-indent: -9999px;
    background: rgb(252, 132, 246);
    height: 10px;
    width: 30px;
    margin-right: 5px;
    opacity: 0.3;
    border: 0;
}

@media only screen and (min-width : 769px) {
    .box--slide .slide--main .dots__slide--main li button {
        height: 5px;
        width: 30px;
    }
}

.box--slide .slide--main .dots__slide--main li.slick-active button {
    opacity: 1;
}

.box--slide .slide--main .dots__slide--main button:focus {
    /* outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color; */
    outline: none;
}