@charset "utf-8";
.swiper {
    padding: 0 20px;
}
.swiper-slide {
    background-color: #fff;
    height: auto;
    /*
    */
}
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 100;
    cursor: pointer;
}
.swiper-button-prev {
    left: 0;
    background-image: url(../images/icon/arrow-left.svg);
}
.swiper-button-next {
    right: 0;
    background-image: url(../images/icon/arrow-right.svg);
}
.swiper-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    /*
    margin-top: 40px;
    */
    height: 30px;
}
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    margin: 0 10px;
    cursor: pointer;
    transition : all 0.25s ease 0s;
}
.swiper-pagination-bullet-active {
    border-radius: 12px;
    transform-origin: center;
    transform: scale(1.5);
}
@media screen and (max-width: 500px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }
    .swiper-slide {
        /*
        height: inherit;
        */
    }
}
