

.blue-container{
    width:84.17vw;
    margin:0 auto;
}


.top-text{
    color: white;
    font-size:1.1vw;
    line-height: 2.5vw;
    text-align: center;
    margin-top:7.24vw;
    padding-bottom:7.24vw;
}



.bg-gray{
    background-color: #E8E8E8;
}

.service-content{
    width:70.42vw;
    margin: 0 auto;
}
.service-content section a{
    display: flex;
    justify-content: space-between;
    margin-top:9.17vw;
    text-decoration: none;
    color: black;
}
.service-content section:nth-child(1) a{
    margin-top:0;
    padding-top:9.17vw;
}
.service-content section:nth-child(2) a{
    flex-direction: row-reverse;
}
.service-content section:nth-child(3) a{
    padding-bottom:9.17vw;
}

.service-img{
    width:35.21vw;
    height:20.26vw;
    overflow: hidden;
}
.service-img img{
    width: 100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    transition: 1s;
}


.service-text h4{
    font-size: 1.3vw;
}
.service-text p{
    width:26.98vw;
    font-size: 1.1vw;
    line-height:2.5vw;
    margin-top:2.76vw;
}


.service-content section a:hover img{
    transform: scale(1.1);
}


/*-----------------------
詳しく見るボタン
-------------------------*/

.moreview-btn{
    text-align: right;
    display: flex;
}


.btn-icon{
    width:3.65vw;
    height:3.65vw;
    border:solid 0.1vw black;
    border-radius: 50%;
    position: relative;
    top:2.1vw;
    left:5%;
    transition: .5s;
}
.btn-icon i{
    transform:rotate(-90deg)translateY(-50%);
    font-size:1.1vw;
    position: absolute;
    top:35%;
    left:50%;
}

.service-content section a:hover .btn-icon{
    background-color: white;
    border: solid 0.1vw transparent;
}








/*-----------------------------------------------------------------------------
レスポンシブ
-------------------------------------------------------------------------------*/

@media(max-width:599px){

    .top-text{
        font-size:3.5vw;
        line-height: 6.5vw;
        margin-top:10vw;
        padding-bottom:10vw;
    }
    

    .service-content{
        width:90%;
    }
    .service-content section a{
        justify-content: center;
        flex-flow: column;
        margin-top:9.17vw;
    }
    .service-content section:nth-child(1) a{
        margin-top:0;
        padding-top:9.17vw;
    }
    .service-content section:nth-child(2) a{
        flex-direction: column;
    }
    .service-content section:nth-child(3) a{
        padding-bottom:9.17vw;
    }
    
    .service-img{
        width:100%;
        height:51.79vw;
    }
    
    
    .service-text h4{
        font-size: 4vw;
        text-align: center;
        margin-top:6.41vw;
    }
    .service-text p{
        width:100%;
        font-size: 3.5vw;
        line-height:6.5vw;
        text-align: center;
    }
    
    
    
    /*-----------------------
    詳しく見るボタン
    -------------------------*/
        
    .btn-icon{
        width:8.72vw;
        height:8.72vw;
        top:1.5vw;
        left:-33%;
    }
    .btn-icon i{
        font-size:3vw;
        left:55%;
    }
    



}