/* Slider Wrapper */
.campaign-list {
    width: 100%;
    padding: 0 20px; /* ← 左右に余白を作ることで“見切れ”を確保 */
    box-sizing: border-box;
    overflow: visible;
    height: 250px;
}

/* Swiper Slide */
.campaign-list .swiper-slide {
    max-width: 600px;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 画像 */
.campaign-list .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ページネーション */
.campaign-list .swiper-pagination {
    bottom: 10px !important;
}
