@charset "UTF-8";
body {
    min-width: 1390px;
}

.hero_single {
    height: unset;
}

.hero_single_ttl.-en {
    font-size: 60px;
    color: #0097BA;
}

.hero_single_ttl.-ja {
    font-size: 24px;
    color: #000;
    margin-bottom: 40px;
}

.recruit_head_ttl_big {
    font-size: 40px;
    color: #000;
}

.recruit_head_ttl_big span {
    font-size: 105px;
    line-height: 120px;
}

.recruit_intro {
    position: relative;
}



.recruit_intro_img {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 40px;
}

.recruit_intro_img.vis-sp {
    display: none;
}

.recruit_intro_img img {
    width: 30%;
    height: auto;
}

.recruit_intro_img img:nth-child(1),
.recruit_intro_img img:nth-child(3) {
    width: 20%;
}
/* .recruit_intro_img img:nth-child(2),
.recruit_intro_img img:nth-child(4) {
    max-width: 400px;
} */


.recruit_intro_img img:nth-child(2) {
    margin-top: 100px;
}
.recruit_intro_img img:nth-child(4) {
    margin-top: -300px;
}

.recruit_intro p {
    width: fit-content;
    position: absolute;
    right: 10%;
    bottom: -10%;
}

/* challenge */

.challenge {
    padding-top: 130px;
}

.challenge_ttl {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
}

.challenge_list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.challenge_list li:nth-child(3) .challenge_list_item {
    padding-top: 40px;
}

.challenge_list_item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 0px;
    width: 360px;
    height: 360px;
    border-radius: 300px;
    background: rgb(0, 151, 186, 0.09);
    padding-bottom: 40px;
}

.challenge_list_item .number {
    font-size: 60px;
    color: #0097BA;
    margin-bottom: 30px;
    line-height: 50px;
    font-weight: normal;
}

.challenge_list_item .challenge_txt {
    font-size: 24px;
    text-align: center;
    line-height: 35px;
}

/* require */

.require_list {
    margin-bottom: 50px;
}

.require_list dl {
    padding: 45px 15px 15px;
    border-bottom: solid 1px #000;
    display: flex;
}

.require_list dl dt {
    width: 170px;
    color: #0097BA;
}

.require_list dl dd {
    flex: 1;
}

.require .link_btn { 
    margin: 50px auto 0;
    justify-content: space-between;
    gap: 30px;
    width: 490px;
    padding: 35px 30px;
    border-radius: 10px;
    /* background: linear-gradient(to right bottom ,#0097BA 50%, #004C5D); */
    color: #fff;
    transition-duration: 0.5s;
    position: relative;
}

.require .link_btn::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right bottom ,#0097BA 50%, #004C5D);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    z-index: -1;
}

.require .link_btn:hover {
    background: #004C5D;
}

.require .link_btn:hover .cmn_btn.-white::after {
    background: url(/img/cmn/icon-arrow_hover.svg);
    background-size: cover;
    background-repeat: no-repeat;
}


@media screen and (max-width:767px) {

    body {
        min-width: unset;
    }

    /* hero */

    .hero_single {
        height: unset;
        margin: 0;
    }

    .hero_single_ttl.-en {
        font-size: 40px;
        line-height: 40px;
    }

    .hero_single_ttl.-ja {
        font-size: 20px;
        /* margin-bottom: 20px; */
    }

    .recruit_head_ttl_big {
        font-size: 20px;
    }

    .recruit_head_ttl_big span {
        font-size: 46px;
        line-height: 50px;
    }

    .recruit_intro p {
        position: unset;
        margin: 0;
        padding: 0 20px;
        margin: 0 auto;
    }

    .recruit_intro_img {
        margin-bottom: 30px;
    }

    .recruit_intro_img img:nth-child(1) {
        max-width: unset;
        width: 100%;
    }

    .recruit_intro_img.vis-sp {
        display: flex;
    }

    .recruit_intro_img.hide-sp {
        display: none;
    }


    /* challenge */

    .challenge {
        padding-top: 105px;
        margin-top: -60px;
    }

    .challenge_ttl {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .challenge_list {
        flex-flow: column;
        align-items: center;
        gap: 0;
    }

    .challenge_list li {
        width: 85%;
        height: 100%;
        aspect-ratio: 1/1;
    }

    .challenge_list li:nth-child(5),
    .challenge_list li:nth-child(6) {
        margin-top: -20px;
    }

    .challenge_list li:nth-child(3) .challenge_list_item {
        padding-top: 0;
    }

    .challenge_list_item {
        width: 100%;
        height: 100%;
    }

    .challenge_list_item .number {
        font-size: 39px;
        margin-bottom: 0;
    }

    .challenge_txt {
        font-size: 20px;
        line-height: 35px;
    }


    /* require */

    .require {
        padding-top: 95px;
        margin-top: -60px;
    }

    .require .link_btn {
        width: 100%;
        padding: 30px 10px;
    }

    .require_list dl {
        flex-flow: column;
        padding: 20px 10px 10px;
    }

    .require_list dl dt {
        margin-bottom: 5px;
    }
}