@charset "UTF-8";

/* image */
.flex_always{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.service_image{
    width: 30%;
    height: auto;
    object-fit: contain;
}
.content{
    width: 70%;
    height: auto;
    margin: 5% auto 0 auto;
}
/*PCデザイン*/
@media screen and (min-width:845px){
    /* main */
    .item2, .item2_reverse{
        justify-content: space-around;
    }
    .flex_content{
        width: 40%;
        height: auto;
    }
    /* image */
    .flex_image{
        width: 40%;
        height: auto;
        object-fit: contain;
    }
}

/*スマホデザイン*/
@media screen and (max-width:844px){
    /* main */
    .item2{
        width: 80%;
    }
    .item2_reverse{
        width: 80%;
        display: flex;
        flex-direction: column-reverse;
    }
    .flex_content{
        width: 100%;
        height: auto;
        margin-top: 10%;
    }
    /* image */
    .flex_image{
        width: 90%;
        height: auto;
        object-fit: cover;
        margin: auto;
    }
}