.slider {
    position: relative;
    z-index: 1;
    height: calc(100vh - 80px);
    border-radius: 0 0 0 16px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .slider {
        height: calc(100svh - 46px);
        border-radius: 8px;
    }
}

.slider__wrap {
    position: relative;
}

/* 背景画像設定 */

.slider-item01 {
    background: url(../images/img_01.webp);
}

.slider-item02 {
    background: url(../images/img_02.webp);
}

.slider-item03 {
    background: url(../images/img_03.webp);
}

.slider-item {
    width: 100%;
    height: calc(100vh - 80px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .slider-item {
        height: calc(100svh - 46px);
    }
}

/* コントロールボタン */

.slick-controls {
    width: 128px;
    height: 24px;
    background: rgba(250, 246, 246, 0.85);
    border-radius: 12px;
    padding: 3px 10px 3px 3px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .slick-controls {
        width: 110px;
        height: 32px;
        border-radius: 20px;
        bottom: 10px;
        left: 10px;
    }
}

.slick-indicators {
    display: flex;
    gap: 10px;
}
