/* swiper-all-wrapのレイアウト設定 */
.swiper-all-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.swiper,
.swiper-rev {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    list-style: none;
    overflow: hidden;
    padding: 0;
    z-index: 0;
    display: block;
    margin: 0;
}

/* スライドの動き等速 */
.swiper-wrapper {
    transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide {
    line-height: 0;
}

.swiper-slide img {
    height: auto;
    width: 100%;
}