@charset "UTF-8";
/* service(事業案内)ページ用cssです。 */


.feature_wrapper{
    /* width:100%; */
    background-color:#fff;
    /* padding-top:6rem;
    padding-bottom:8rem; */
}
.feature_container{
    padding-top: 6rem;
    /* width:70%;
    margin:0 auto; */
}
/*インビリティーの強み*/
.feature_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 1rem;
    padding-bottom: 6rem;
}

.feature{
    display: block;
    width:32%;
    text-align: center;
    padding:2rem 2rem 0 2rem;
    box-sizing:border-box;
}
.feature_img{
    display: block;
    width:100%;
}
.feature_img img{
    width:100%;
    object-fit: contain;
}
.feature dt{
    font-size:2rem;
    padding-bottom:1rem;
}
.feature_explanation{
    text-align:left;
}

/* 事業一覧 */
.service_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
}

/* 開発の流れ */
.flow_wrapper{
    background-color:#fff;
    padding-top: 6rem;
}
.flow{
    padding: 1rem;
    padding-bottom: 6rem;
}
.flow_items{
    display:flex;
    width:80%;
    margin:0 auto;
    padding-bottom:3rem;
    padding-left:1rem;
    align-items:center;
    justify-content:center;
    min-height:138px;
}
.flow_image{
    display:block;
    width:12%;
    max-width:190px;
    position:relative;
}
.flow_image img{
    display:block;
    width:100%;
    object-fit: contain;
}
.flow_text{
    width:83%;
    padding-left:5%;
}
.flow_step{
    /*display:none;*/
    font-size:1.5rem;
    color:#195ca5;
    line-height:1.5rem;
}
.flow_name{
    font-size:2rem;
    letter-spacing:0.2rem;
}

/* 保守 */
.support_title{
    color:#195ca5;
    border-bottom:2px solid #195ca5;
    padding-top:2rem;
    margin-bottom:1rem;
    font-size:1.5rem;
    line-height: 1em;
}
.support_system{
    display:flex;
}
.support_text{
    width:70%;
    padding-left:1rem;
    padding-right:1rem;
    padding-top:1rem;
}
.support_text dl{
    padding-bottom:1rem;
}
.support_text dt{
    font-weight:bold;
}
.system_img{
    display:flex;
    justify-content: center;
    align-items:center;
    width:40%;
}
.system_img img{
    width:100%;
    max-width:380px;
}
.supprot_paddingtop{
    padding-top:1rem;
}

.example p{
    width:fit-content;
    border:1px solid#497358;
    border-radius:1rem;
    padding:0 0.5rem 0 0.5rem;
    color:#497358;
    margin-top:1rem;
    margin-bottom:1rem;
}
.price{
    color:#D94C1A;
    font-size:1.3rem;
}
.support_price_text_ul{
    width:100%;
    min-width:630px;
}
.support_price_text_ul i{
    color:#D94C1A;
    padding-right:0.5rem;
    line-height:1.3rem;
}
.support_price_text_ul li{
    display:flex;
    font-size:1rem;
}
.support_price_text_ul p{
    color:#D94C1A;
    margin-left:auto;
}
/*1365px以下になるとサポートの画像非表示*/
@media screen and (max-width:1365px) {
    .system_img{
        display:none;
    }
    .system_img img{
        display:none;
    }
    .support_system{
        display: block;
        width:100%;
    }
    .support_text{
        width: auto;
    }
    .support_price_text_ul{
        width:70% !important;
    }
    .support_price_text_ul li {
        display: block;
    }
}

@media screen and (min-width:600px) and (max-width:1024px) {
    .feature_container {
        width: 80%;
    }
    .feature {
        width: 48%;
        /* padding: 1rem 1rem 0 1rem; */
    }
    .service_cards {
        padding: 0;
    }
    .service_tile {
        width: 40%;
        margin: 0.5rem;
    }
    .flow_items {
        width: 90%;
    }
}
@media screen and (max-width:599px) {
    /*インビリティーの強み*/
    .feature_container{
        padding-top: 3rem;
    }
    .feature_box{
        padding-bottom: 3rem;
    }
    .feature {
        width: auto;
        padding: 2rem 1rem 0 1rem;
    }
    .feature_img {
        width: 70%;
        margin: 0 auto;
    }
    .feature dt {
        font-size: 1.3rem;
        line-height: 1em;
        text-align: center;
    }
    /*開発の流れ*/
    .flow_wrapper{
        padding-top: 3rem;
    }
    .flow{
        padding-bottom: 3rem;
    }
    .flow_items {
        width: auto;
        padding-left: 0;
        padding-bottom: 0;
    }
    .flow_items + .flow_items {
        padding-top: 3rem;
    }
    .flow_step{
        font-size: 1.3rem;
    }
    .flow_name{
        font-size: 1.6rem;
        font-weight: normal;
        line-height: 1em;
    }

    .support_title{
        display: inline-block;
    }
    .support_text{
        padding: 0 1rem;
    }
    .support_price_text_ul{
        min-width: 0;
        width:100% !important;
    }
    .support_price_text_ul li + li {
        margin-top: 10px;
    }

    /* スマホ版での非表示要素 */
    .flow_wrapper{
        display: none;
    }
    .support_wrapper{
        display: none;
    }


}