/* Swiper特有のスタイル - style.cssと重複しない部分のみ - モバイルファースト */

/* ナビゲーションボタンのスタイル - モバイルファースト */
.main-banner .swiper-button-next,
.main-banner .swiper-button-prev {
    width: 30px; /* モバイル向けサイズ */
    height: 30px; /* モバイル向けサイズ */
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.main-banner .swiper-button-next:after,
.main-banner .swiper-button-prev:after {
    font-size: 14px; /* モバイル向けサイズ */
    font-weight: bold;
    color: #333;
}

.main-banner .swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: auto;
}

.main-banner .swiper-button-next {
    right: 10px;
}

.main-banner .swiper-button-prev {
    left: 10px;
}

/* ページネーションのスタイル */

.main-banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.5;
}

.main-banner .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* スクロールバーのスタイル */
.main-banner .swiper-scrollbar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.main-banner .swiper-scrollbar-drag {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

/* PC表示時の調整 - モバイルファースト */
@media (min-width: 768px) {
    .main-banner .swiper-button-next,
    .main-banner .swiper-button-prev {
        width: 40px; /* PC向けサイズ */
        height: 40px; /* PC向けサイズ */
    }
    
    .main-banner .swiper-button-next:after,
    .main-banner .swiper-button-prev:after {
        font-size: 18px; /* PC向けサイズ */
    }
}
