#recruit-link-sp{
    display: none;
}
@media only screen and (max-width: 850px) {
    #recruit-link-sp{
        display: block;
        margin-bottom: 25px;
    }
    #recruit-link-sp a{
        display: inline-block;
        border-radius: 100px;
        overflow: hidden;
        position: relative;
        background:none;
        padding-right:0;
    }
    #recruit-link-sp a::after{
        content: "";
        position: absolute;
        top: calc(50% + 10px);
        right: 43px;
        transform: translateY(-50%);
        width: 80px;
        height: 20px;
        background: #fff;
        clip-path: polygon(0 40%, 90% 40%, 78% 0, 82% 0, 100% 54%, 0 54%);
    }
}

/* サービスリンク */
.featureY{
    display: block;
    box-sizing: border-box;
    max-width: 1840px;
    min-height: 300px;
    padding:80px 0 100px;
    margin: 0 auto 50px;
    position: relative;
    text-align: left;
    font-size: 1.2em;
}
.featureY::before{
    content:"";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image: linear-gradient(to bottom, #2082b6, #204f8b);
    background-position: right bottom;
    background-repeat: no-repeat;
    clip-path: polygon(
        90px 0,
        100% 0,
        100% calc(100% - 90px),
        calc(100% - 90px) 100%,
        0 100%,
        0 90px
    );
}
.featureY::after{
    content:"";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:url(../images/top/bg_feature.webp);
    background-position: calc(100% + 20px) calc(100% + 20px);
    background-size:58% auto;
    background-repeat: no-repeat;
    overflow: hidden;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 90px),
        calc(100% - 90px) 100%,
        0 100%,
        0 90px
    );
}

.featureY-content{
    color:#fff;
    margin: 0 auto 45px;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap:40px;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 1;
}
.featureY-content:last-child{
    margin-bottom: 0;
}
.featureY-content.contribution{
    flex-direction: row-reverse;
}
.featureY-content > div{
    width: calc(50% - 20px);
    min-height: 480px;
}
.featureY-content-image{
    width: 940px!important;
    position: absolute;
    aspect-ratio: 940 / 480;
}
.featureY-content.service .featureY-content-image{
    left: calc(50% + 40px);
}
.featureY-content.contribution .featureY-content-image{
    left: auto;
    right: calc(50% + 40px);
}
.featureY-content-text{
}
.featureY-content-title{
    font-size:36px;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 20px;
    line-height: 1.6;
}
.featureY-content.contribution .featureY-content-title{
    margin-bottom:15px;
}
.featureY-content-subtitle{
    font-size:15px;
}
.featureY-content-contribution-list{
    margin-bottom: 20px;
}
.featureY-content-contribution-item{
    margin-bottom: 20px;
    padding-left:70px;
    position:relative;
    display:flex;
    gap:1.4em;
    align-items: flex-start;
}
.featureY-content-contribution-item:last-child{
    margin-bottom: 0;
}
.featureY-content-contribution-item:before{
    position: absolute;
    content: "";
    display: block;
    left:0;
    /*top:calc(50% - 4px);*/
    top:19px;
    width:50px;
    height:1px;
    background:#fff;
}
.featureY-content-contribution-item-title{
    font-size:20px;
    font-weight: bold;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
}
.featureY-content-contribution-item-title span{
    display:inline-block;
    font-size:15px;
    font-weight: normal;
    margin-right:10px;
}
.featureY-content-contribution-item-text{
    flex:1;
    /*padding-top: 8px;*/
}

.featureY-content-link{
    margin-top: 30px;
    margin-bottom:20px;
    margin-right: 40px;
    width: calc(100% - 40px);
}
.featureY-content-link a,
.btn-arrow{
    color:#fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap:8px;
    border: 1px solid #fff;
    border-radius: 200px;
    padding: 0 20px 0 30px;
}
.featureY-content-link a:hover,
.btn-arrow:hover{
    background:rgba(255,255,255,0.26);
    color:#fff;
}
.featureY-content-link a svg,
.btn-arrow svg{
    width:60px;
    height:60px;
    margin-left: 11px;
}

.ico_arrow-1 { fill: #fff; stroke: #fff; }
.ico_arrow-2 { fill:#204f8b; stroke:#204f8b; }
.arrow-move {
    transition: transform 0.3s ease;
}
.featureY-content-link a:hover .arrow-move,
.btn-arrow:hover .arrow-move {
    transform: translateX(10px);
}

@media only screen and (max-width: 1240px) {
    .featureY{
        padding: 6vw 2vw 4vw;
    }
    .featureY::before{
        clip-path: polygon(
            5vw 0,
            100% 0,
            100% calc(100% - 5vw),
            calc(100% - 5vw) 100%,
            0 100%,
            0 5vw
        );
    }
    .featureY::after{
        clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 5vw),
            calc(100% - 5vw) 100%,
            0 100%,
            0 5vw
        );
    }

    .featureY-content > div{
        min-height:auto;
    }
    .featureY-content-image{
        width: 50vw!important;
        height: auto;
    }
}
@media only screen and (max-width: 1000px) {
    .featureY{
        padding: 6vw 2vw 0;
    }
    .featureY::after{
        background-position: calc(100% + 1vw) calc(100% + 1vw);
    }
    .featureY-content{
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }
    .featureY-content > div{
        width: 100%;
        min-height:auto;
        margin-bottom: 1.5vw;
    }
    .featureY-content > div:last-child{
        margin-bottom: 0;
    }
    .featureY-content.contribution{
        flex-direction: column-reverse;
        top: -25vw;
    }
    .featureY-content-title{
        font-size: 2.3em;
    }
    .featureY-content-text{
        margin-bottom:10px;
    }
    .featureY-content-image{
        position:relative;
    }
    .featureY-content.service .featureY-content-image{
        left: calc(50% + 2vw);
    }
    .featureY-content.contribution .featureY-content-image{
        right: auto;
        left: calc(-40px - 4vw);
    }
    .featureY-content-link{
        margin-bottom:0;
        width:calc(100% - 180px);
    }
    .featureY-content-link a svg{
        width: 48px;
        height: 48px;
    }
}
@media only screen and (max-width: 550px) {
    .featureY{
        padding: 6vw 2vw 4vw;
    }
    .featureY-content{
        margin: 0 auto 2vw;
    }
    .featureY-content.contribution{
        top:0;
    }
    .featureY-content.service .featureY-content-image{
        left: calc(10% + 10vw);
        width: 90% !important;
    }
    .featureY-content.contribution .featureY-content-image{
        width: 90% !important;
    }
    .featureY-content-contribution-item{
        flex-direction: column;
        gap: 2px;
        padding-left: 25px;
    }
    .featureY-content-contribution-item::before{
        top: 18px;
        width: 18px;
    }
    .featureY-content-contribution-item-title{
        margin-bottom:0;
    }
    .featureY-content-contribution-item-text{
        padding-top: 0;
    }
    .featureY-content-link{
        width:100%;
        margin-right:0;
    }
    .featureY-content-link a{
        padding: 0 5px 0 15px;
    }
    .featureY-content-link a svg{
        width: 40px;
        height: 40px;
        margin-left: 0;
    }
}


/* 会社所在地 */
section.news .title h2 span,
.location h2 span{
    color:#e60021;
    font-weight: 700;
}
.area{
    margin-bottom: 30px;
}
.area-name{
    font-size:19.2px;
    font-weight: 700;
    position: relative;
}
.area-name::before{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e60021 0%, #e60021 100px, #929292 100px, #929292 100%);
}
.eol{
    display: flex;
    gap:40px;
    align-items: flex-start;
}
.eol dt{
    display: flex;
    align-items: center;
    gap:10px;
    font-weight: 700;
    font-size:18px;
}
.eol dt span{
    color:#e60021;
    font-size:13px;
}
.eol dd{
    border-left:2px solid #929292;
    padding-left: 40px;
}
.mapicon{
    display: inline-block;
    background:none!important;
    margin-left: 18px;
    position:relative;
}
.mapicon::after{
    position:absolute;
    content:"";
    display: block;
    width: 14px;
    height: 11px;
    background: url(../images/top/ico_map.png) no-repeat center center;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}
.location .access{
    margin-bottom:60px;
}
@media only screen and (max-width: 750px) {
    .eol{
        flex-direction: column;
        gap:0;
    }
    .eol dd{
        border-left: none;
        padding-left: 0;
    }
    .eol dd div.address{
        display: flex;
        flex-direction: column;
    }
}
