/* ========== 共通バナースライダー ========== */

.banner {
    margin: 0;
    padding: 0 8px;
    background: #fff;
    box-sizing: border-box;
}

.swiper {
    width: 100%;
    padding: 5px 0;
    box-sizing: border-box;
}

.swiper-slide {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    height: clamp(140px, 13vw, 240px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 4px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #1C1987 !important;
    font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.swiper .swiper-pagination-bullet {
    background-color: #adadad !important;
}

.swiper .swiper-pagination-bullet-active {
    background-color: #1C1987 !important;
}