#service {
}
#service section {
    padding: 0;
    max-width: 1300px;
    margin: 0 auto;
    border: 1px solid #dadada;
    background-color: #fff;
    text-align: center;
}
#service section a {
    display: flex;
    text-decoration: none;
}
#service section + section {
    margin-top: 1rem;
}
#service section .service_type {
    padding: 5rem 3rem;
}
#service section .service_type h3 {
    font-size: 24px;
    border: none;
}
#service section .service_img {
    background-blend-mode:lighten;
    background-size: cover;
    flex: 3;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}
#service section .service_img {
    background-color:rgba(255,255,255,0.5);
}
#service section:nth-of-type(1) .service_img {
    background-color:rgba(204,232,242,0.5);
    background-image: url(/img/service_img01.jpg) ;
    background-position: right bottom;
}
#service section:nth-of-type(2) .service_img {
    background-color:rgba(255,141,141,0.5);
    background-image: url(/img/service_img02.jpg) ;
    background-position: right center;
}
#service section:nth-of-type(3) .service_img {
    background-color:rgba(192,163,46,0.5);
    background-image: url(/img/service_img03.jpg) ;
    background-position: right top;
}
#service section:nth-of-type(4) .service_img {
    background-image: url(/img/service_img04.jpg) ;
    background-position: right top;
}
#service section .service_type {
    flex: 2;
}
#service section:last-of-type {
    margin-bottom: 4rem;
}
#service section .service_img div {
    margin-top: auto;
    text-align: right;
    margin-bottom: 1rem;
    margin-right: 1rem;
}
#service section:nth-of-type(2) .service_img div, #service section:nth-of-type(4) .service_img div {
    text-align: left;
    margin-right: 0;
    margin-left: 1rem;
}

/*
  画面幅が 993px 以上
*/
@media screen and (min-width:993px) {
}

/*
  画面幅が 992px 以下
*/
@media screen and (max-width: 992px) {
    #service section a {
        flex-flow: column;
    }
    #service section .service_type {
        padding: 1.5rem;
    }
    #service section .service_img div {
        padding: 14vh 0 2vh;
        margin: 0;
    }
    #service section:nth-of-type(2) a, #service section:nth-of-type(4) a {
        flex-direction: column-reverse;
    }
    #service section:nth-of-type(2) .service_img div ,#service section:nth-of-type(4) .service_img div {
        text-align: right;
    }
    #service section .service_img div p {
        display: none;
    }
}