/*--------------------------------------------------------------------------*
 *  
 *  service.css
 *  
 *  事業内容ページ用
 *
 *--------------------------------------------------------------------------*/
.service {
    padding: 40px 0 40px 0;
}
.card {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 10px 10px 15px -10px #707070;
    position: relative;
}
.service .container {
    padding: 0;
    max-width: 100%;
}
.service_img {
    display: flex;
    justify-content: center;
}

/* 768px以下 */
@media (max-width: 767.98px) {
    .service {
        padding: 40px 0 0 0;
    }    
}

/* 幅が 768px以上 992px以下 */
@media (min-width: 768px) and (max-width:991.98px) {
    .service {
        padding: 40px 0 20px 0;
    }    
}