@charset "UTF-8";

/*------------------
サービス - 配置
------------------*/
.svcCols {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    width: 1040px;
    margin-top: 32px;
}
.svcCols .contImg {
    position: relative;
    width: 440px;
}
.svcCols .contImg img {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 100%;
    height: 100%;
}
.svcCols .contTxt {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 516px;
}
.svcCols .contTxt h4 {
    letter-spacing: -0.05em;
    font-weight: 500;
    font-size: 3.4rem;
}
.svcCols .contTxt p:not(:first-of-type) {
    margin-top: 1em;
}
.svcCols .contTxt .btnBox {
    margin-top: 24px;
}

/* 偶数番目の配置 */
.contBox:nth-of-type(odd) .svcCols .contImg {
    order: 2;
}
.contBox:nth-of-type(odd) .svcCols .contImg img {
    right: auto;
    left: 0;
}
.contBox:nth-of-type(odd) .svcCols .contTxt {
    order: 1;
}

@media screen and (max-width: 960px) {
    .svcCols {
        width: 100%;
    }
    .svcCols .contImg {
        position: relative;
        width: 44%;
    }
    .svcCols .contImg img {
        min-width: auto;
        width: 100%;
        height: auto;
    }
    .svcCols .contTxt {
        display: block;
        width: 50%;
    }
    .svcCols .contTxt h4 {
        font-size: 2.4rem;
    }

}
@media screen and (max-width: 600px) {
    .svcCols {
        display: block;
    }
    .svcCols .contImg {
        width: 100%;
    }
    .svcCols .contImg img {
        position: static;        
    }
    .svcCols .contTxt {
        width: 100%;
    }
    .svcCols .contTxt h4 {
        font-size: 2rem;
        margin-top: 24px;
    }
}
