/*parts*/
.m-service{
    margin-right: calc(300/1440 * 100vw);
}
/*nav*/
.nav_wrap{
    position: fixed;
    top: calc(260/1440 * 100vw);
    right: 2vw;
    z-index: 100;
}
.nav_item{
    padding-left: 2em;
}
.nav_item.target::before{
    content: '';
    background-color: white;
    border-radius: 50%;
    width: 0.75em;
    height: 0.75em;
    position: absolute;
    left: 0.5em;
    top: 0.65em;
}
.nav_item.black.target::before {
    background-color: black;
}

/*serviceFV_section*/
.serviceFV_section{
    padding: calc(260 / 1440 * 100vw) calc(380 / 1440 * 100vw) calc(340 / 1440 * 100vw) calc(157 / 1440 * 100vw);
    background-color: #000;
}

/*serviceセクション*/
.service_section{
    margin-left: calc(157/1440 * 100vw);
    margin-top: -14vw;
}
.contentImg_outline{
    width: 100%;
    padding-bottom: 40%;
    position: relative;
}
.contents_wrap{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.title_box{
    width: 45%;
}
.detail{
    padding-bottom: 1.1vw;
    border-bottom: 1px solid black;
    padding-left: 2vw;
    width: 33%;
}
.detail::before {
    content: '';
    background: url(../img/arrow.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 11%;
    right: 11%;
    width: 0.8vw;
    height: 0.8vw;
}
.contents_box{
    width:55%;
}

.service_wrap{
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: calc(150/1440 * 100vw);
    width: 100%;
    overflow: hidden;
}
.service_box{
    width: 21vw;
    margin-right: 2vw;
    margin-bottom: 5vw;
}
.cat{
    background-color: white;
    padding: 0 1em;
    border-radius: 60px;
    width: fit-content;
}
.service_outline{
    width: 100%;
    padding-bottom: 56%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

@media screen  and (max-width: 768px){
    .serviceFV_section {
        padding: 50vw 5vw;
    }
    .nav_wrap {
        transform: scale(0.8);
    }
    .service_section {
        margin-left: 5vw;
        margin-top: -43vw;
    }
    .m-service {
        margin-right: 5vw;
    }
    .contentImg_outline {
        padding-bottom: 100%;
    }
    .contents_wrap {
        flex-flow: column;
    }
    .title_box {
        width: 100%;
    }
    .contents_box {
        width: 100%;
        margin-bottom: 10vw;
    }
    .detail{
        width: 32%;
        margin-bottom: 10vw;
    }
    .detail::before {
        top: 18%;
        width: 2vw;
        height: 2vw;
    }
    .service_box {
        width: 95%;
    }
    .slider-inner{
        width: 100%;
        overflow: hidden;
    }
    .service_wrap {
        width: 80%;
        overflow: visible;
    }
}