@charset "utf-8";

/* ===== お客様の声ページ専用スタイル ===== */

/* お客様の声画像 */
.voice-image {
    width: 100%;
    text-align: center;
    margin: 30px 0 40px;
    padding: 0 5%;
}

/* PC版画像 */
.voice-image-pc {
    width: 70%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* モバイル版画像 */
.voice-image-mobile {
    display: none;
}

/* モバイル版（900px以下） */
@media screen and (max-width: 900px) {
    .voice-image {
        margin: 20px 0 30px;
        padding: 0;
    }

    .voice-image-pc {
        display: none;
    }

    .voice-image-mobile {
        display: block;
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
}
