@charset "UTF-8";


/* seciton */

.sec_ttl.-en {
    font-size: 60px;
    line-height: 50px;
    font-weight: normal;
}

.sec_ttl.-ja {
    font-size: 24px;
}

/* hero */

.hero {
    margin-bottom: 120px;
}

.hero_cnt {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
    margin: 0 auto 50px;
    padding: 0 40px;
    max-width: 1390px;
}

.hero_ttl p {
    font-size: 50px;
    color: #000;
    position: relative;
    background-image: linear-gradient(
    70deg,
    #000  45%, 
    #0097BA 50%,
    #000 55% );
    background-size: 500% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 8s;
}

@keyframes shine {
    0% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

.hero_ttl p span {
    font-size: 80px;
    line-height: 60px;
}

.hero_txt {
    font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.hero_slide {
    overflow: hidden;
    width: 90%;
    max-width: 1330px;
    height: 100%;
    border-radius: 20px;
    margin: 0 auto;
    aspect-ratio: 1330 / 730;
}

.splide__slide img {
    transition: 10s ease-out;
}
.splide__slide.is-active img {
    transform: scale(1.15);
    transition-delay: 0s;
}
  /* スライドのサイズ調整 */
.splide__slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.splide,
.splide__track {
    height: 100%;
}

/* .splide__slide {
    text-align: center;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 2s ease, transform 2s ease;
}
  
.splide__slide.is-active {
    opacity: 1;
    transform: scale(1);
}
  
.splide__slide img {
    width: 100%;
    height: auto;
    display: block;
} */

/* .splide__slide {
    transform: none !important;
    transition: none !important;
    backface-visibility: hidden;
} */


/* link */

.link_cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin-bottom: 100px;
}

.link_cnt_row {
    flex: 1;
}

.link_cnt_row_ttl.-en {
    color: #0097BA;
    font-size: 60px;
    line-height: 70px;
    font-weight: normal;
}

.link_cnt_row_ttl.-ja {
    margin-bottom: 40px;
    font-size: 24px;
}

.link_img img {
    width: 100%;
    height: auto;
    max-width: 660px;
}

.link_cnt_row_txt {
    margin-bottom: 60px;
}


/* recruit */

.recruit {
    background: linear-gradient(to bottom right, #0097BA 50%, #004C5D);
    padding: 50px 40px;
    color: #fff;
    border-radius: 20px;
    min-width: 1370px;
}

.recruit_head .inner {
    max-width: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* .recruit_img {
    flex: 1;
} */

.recruit_head_ttl_flex {
    display: flex;
    align-items: end;
    gap: 30px;
    margin-bottom: 30px;
}

.recruit_head_ttl_big {
    color: #fff;
    font-size: 46px;
    font-weight: bold;
    line-height: 70px;
    padding-top: 20px;
}

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

.recruit_head_cnt {
    flex: 1;
    max-width: 415px;
}

.recruit_head_cnt_txt {
    margin-bottom: 30px;
}

.recruit_head_cnt .link_btn {
    font-size: 22px;
}

.recruit_head_cnt .link_btn p {
    transition-duration: 0.5s;
}

.recruit_head_cnt .link_btn:hover p {
    opacity: 0.7;
}

.recruit_ttl.-en {
    font-size: 60px;
    line-height: 70px;
    font-weight: normal;
}

.recruit_ttl.-ja {
    font-size: 24px;
}

.fadeUpTrigger {
    opacity: 0;
}

.recruit_cnt .active {
    animation: fadeUpAnime 1.6s forwards cubic-bezier(.16,.91,.77,1);
    opacity: 0;
}

/* 1番目の要素 */
.recruit_cnt .active:nth-of-type(1) {
    animation-delay: 0s;
}

/* 2番目の要素 */
.recruit_cnt .active:nth-of-type(2) {
    animation-delay: 0.5s;
}

/* 3番目の要素 */
.recruit_cnt .active:nth-of-type(3) {
    animation-delay: 1s;
}

@keyframes fadeUpAnime {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.recruit_link_img {
    display: block;
    transform: skewY(-10deg);
    border-radius: 30px;
    overflow: hidden;
    width: 359px;
    height: 529px;
    margin-bottom: 20px;
}

.recruit_link_img img {
    width: 100%;
    transform: skewY(10deg) scale(1.1);
    transition-duration: 0.3s;
}

.recruit_link_item:hover img {
    transform: skewY(10deg) scale(1.15);
}

.recruit_link_item .link_btn {
    flex-flow: column;
    justify-content: right;
    align-items: end;
    font-size: 22px;
}

.recruit_link_item:hover .cmn_btn::after {
    left: 60px;
}

.recruit_cnt {
    display: flex;
    justify-content: center;
    gap: 30px;
}


/* footer */

.recruit_bnr {
    display: none;
}

@media screen and (max-width:1490px) {
    .recruit_head_ttl_big span {
        font-size: 85px;
    }
}

@media screen and (max-width:1320px) {
    .hero_ttl p {
        font-size: 45px;
    }

    .hero_ttl p span {
        font-size: 70px;
    }
}

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


    /* hero */

    .hero {
        padding: 0 15px;
        margin: 0 auto 30px;
    }

    .hero_cnt {
        flex-flow: column;
        align-items: start;
        gap: 40px;
        margin-bottom: 30px;
        padding: 0;
    }

    .hero_ttl p {
        font-size: 20px;
    }

    .hero_ttl p span {
        font-size: 36px;
        line-height: 40px;
    }

    /* .splide {
        display: none;
    } */

    .splide__slide img {
        height: 100%;
        object-fit: cover;
    }



    .hero_slide {
        width: 100%;
        height: 480px;
        aspect-ratio: unset;
    }


    /* link */

    .link_cnt {
        flex-flow: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .link .inner .link_cnt:nth-child(2) {
        flex-flow: column-reverse;
    }

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

    .link_cnt_row_ttl.-ja {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .link_cnt_row_txt {
        margin-bottom: 20px;
    }
    

    /* recruit */

    .recruit {
        padding: 45px 0;
        min-width: unset;
    }

    .recruit_body {
        overflow: scroll;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;
    }

    .recruit_body::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .recruit_cnt {
        width: fit-content;
        padding: 0 20px;
    }

    .recruit_head {
        flex-flow: column;
    }

    .recruit_head .inner {
        flex-flow: column;
        align-items: center;
        gap: 20px;
        padding: 0;
        width: 100%;
    }

    .recruit_img img {
        width: 100%;
        height: auto;
    }

    .recruit_body {
        padding: 0 20px;
    }

    .recruit_head_ttl_flex {
        flex-flow: column;
        align-items: start;
        gap: 0;
        margin-bottom: 15px;
    }

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

    .recruit_ttl.-ja {
        font-size: 20px;
    }

    .recruit_head_ttl_big {
        font-size: 27px;
        line-height: 40px;
    }

    .recruit_head_ttl_big span {
        font-size: 53px;
    }

    .recruit_link_item {
        padding-top: 20px;
    }

    .recruit_link_img {
        width: 270px;
        height: 400px;
    }




}
