/*広告セクション*/

.top-slide-section {
    /*　余白設定　*/
    overflow: hidden;
}

.topSwiper {
    width: 100%;
    height: 120%;
}

.topSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 20px;
    /* 画像とスライダーの間のスペース */
    /**角を丸くする */
    border-radius: 10px;
}

.topSwiper {
    overflow: visible;
}

.topSwiper .swiper-scrollbar {
    background-color: transparent;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.topSwiper-container {
    /*左右に余白を持たせる*/
    padding: 0 20px;
    /*上下に余白を持たせる*/
    margin: 20px 0;
    /* 最大幅を持たせる */
    max-width: 1200px;
    /* 中央寄せ */
    margin-left: auto;
    margin-right: auto;
}

.topSwiper .swiper-scrollbar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: grey;
    transform: translateY(-50%);
}

.topSwiper .swiper-scrollbar-drag {
    background-color: red;
    height: 5px;
}

.topSwiper-slide {
    width: 300px;
}