.swiper {
    width: 100%;
    height: 100dvh; /* 画面いっぱいの高さ */
    overflow: hidden;
    position: relative;
}

/* ページネーション（右側に配置） */
.swiper-pagination {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    cursor:pointer;
}

.swiper-pagination-bullet {
    background-color:#a7a7a7;
    width: 10px;
    height: 10px;
    margin: 5px 0;
    opacity: 0.5;
    border-radius: 50%; /*丸に*/
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #ff3399;
    border-radius: 50%; /*丸に*/
}

