/* FV */
.swiper-container.fv {
    width: 100%;
    box-sizing: border-box;
}

/* カード内の余白は消す（画像同士をくっつけたいなら） */
.fv .card {
    padding: 0;
    margin: 0;
    border-radius: 0;
    /* 必要なら残す */
    box-shadow: none;
    /* 必要なら残す */
    height: auto;
    display: block;
}

/* 画像はブロック要素＆幅100%でぴったり収める */
.fv .card img {
    display: block;
    /* inline-blockにより空白が入るのを防ぐ */
    width: 100%;
    height: auto;
    object-fit: cover;
    /* coverにすると縦横のはみ出しに注意。比率そのままなら contain でも良い */
    vertical-align: top;
}


/* ご利用者様のお声 親コンテナ（中央寄せ） */
.swiper-container.voice {
    max-width: 1000px;
    margin: 10px auto 100px;
    box-sizing: border-box;
}

.voice .card {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.voice .card img {
    width: 100%;
    height: auto;
    max-width: 310px;
    object-fit: contain;
    display: block;
}

/* スライドの余白 */
.voice .swiper {
    padding: 0 20px !important;
}

.voice .swiper-wrapper {
    align-items: stretch;
}

/* 矢印（丸い背景で中央に配置） */
.voice .swiper-button-next,
.voice .swiper-button-prev {
    height: 50px !important;
    width: 50px !important;
}

.voice .swiper-button-next {
    right: 1px !important;
}

.voice .swiper-button-prev {
    left: 1px !important;
}

.voice .swiper-button-prev::after,
.voice .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "" !important;
    height: 50px;
    margin: auto;
    width: 50px;
}

.voice .swiper-button-prev {
    transform: rotate(180deg);
}

/* 前への矢印カスタマイズ */
.voice .swiper-button-prev::after {
    background-image: url("./images/slider_ arrow.png");
}

/* 次への矢印カスタマイズ */
.voice .swiper-button-next::after {
    background-image: url("./images/slider_ arrow.png");
}

/* ページネーション表示位置 */
.voice .swiper-pagination {
    margin-top: 12px;
    text-align: center;
}

/* レスポンシブ：小さい画面ではカード高さと画像幅を縮める */
@media (max-width: 1023px) {
    .voice .card {
        height: 300px;
    }

    .voice .card img {
        max-width: 260px;
    }
}

@media (max-width: 640px) {
    .voice .swiper {
        padding: 8px 8px;
    }

    .voice .card {
        height: 65vw;
    }

    .voice .card img {
        max-width: 82vw;
    }

    .swiper-container.voice {
        margin: 10px auto 70px;
    }

    .voice .swiper-button-prev::after,
    .voice .swiper-button-next::after {
        height: 30px;
        width: 30px;
    }
}

/* fv_sp（SP用スライダー）専用の余白潰し */
#fv_sp .swiper,
#fv_sp .swiper-container,
#fv_sp .swiper-wrapper,
#fv_sp .swiper-slide {
    line-height: 0;
}




/* 親のラッパー */
.fv-swiper-wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

/* 左右のスライダー */
.fv-swiper-wrapper .swiper {
    flex: 1;
    position: relative;
}

/* スライド全体をswiper-slideで覆う */
.fv-swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* 画像ラッパー */
.fv-swiper-wrapper .swiper-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 画像自体 */
.fv-swiper-wrapper .swiper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* はみ出しをカバー */
    display: block;
}



/* 初期状態で少し拡大 */
.fv-swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    /* 10%拡大 */
    transition: transform 7s linear;
    /* 4秒で元サイズに縮小 */
}

/* スライドが表示されたら元サイズに縮小 */
.fv-swiper-wrapper .swiper-slide-active img {
    transform: scale(1);
    /* 元のサイズに縮小 */
}

@media (max-width: 500px) {
    .fv-swiper-wrapper {
        display: block;
    }
}