:root {
    --txt_en: "Be Vietnam Pro", sans-serif;
    --main_color: #353B4C;
    --font_color2: #999999;
    --font_color3: #666666;
    --base_color: #10F7C9;
    --font_weight_regular: 300;
    --font_weight_medium: 500;
}

.recruit {
    padding-top: 117px;
    padding-bottom: 117px;
    background-image: url(../img/recruit_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.recruit_box {
    max-width: 1010px;
    margin-left: auto;
    margin-right: auto;
}
.recruit_ttl {
    font-family: var(--txt_en);
    font-size: 30px;
    line-height: 110%;
    letter-spacing: calc(30px * (10 / 100));
    font-weight: 500;
    color: rgba(255,255,255, 0.4);
}

.recruit_txt_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
.recruit_txt {
    font-size: 50px;
    line-height: 160%;
    letter-spacing: calc(50px * (5 / 100));
    color: #fff;
    margin-bottom: 10px;
}
.recruit_txt2 {
    line-height: 180%;
    letter-spacing: calc(16px * (5 / 100));
    color: #fff;
    font-weight: 300;
}

.recruit_link_box {
    width: 45.4%;
    height: auto;
}
.recruit_link_btn {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: auto;
    font-weight: bold;
    letter-spacing: calc(16px * (22 / 100));
    color: var(--main_color);
    padding: 19px 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.recruit_link_btn:hover {
    opacity: 1;
    color: #fff;
}
.recruit_link_btn>svg>path {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.recruit_link_btn:hover>svg>path {
    fill: #fff;
}
.recruit_link_btn>span {
    display: block;
    margin-right: 10px;
}

/* スライド用の背景 */
.recruit_link_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--base_color);
    z-index: 1;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}
.recruit_link_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main_color);
    z-index: 2;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transition: width 0.4s;
    -webkit-transition: width 0.4s;
    -moz-transition: width 0.4s;
    -ms-transition: width 0.4s;
    -o-transition: width 0.4s;
}

/* 文字を最前面に */
.recruit_link_btn>span
,.recruit_link_btn>svg {
    position: relative;
    z-index: 3;
}

.recruit_link_btn:hover::after {
  width: 100%; /* 左から右へスライド */
}

@media only screen and (max-width: 1140px) {
    .recruit_box {
        max-width: 900px;
    }
}
@media only screen and (max-width: 1000px) {
    .recruit_box {
        max-width: 750px;
    }
}
@media only screen and (max-width: 768px) {
    .recruit {
        padding-top: 74px;
        padding-bottom: 74px;
        background-image: url(../img/recruit_bg_sp.webp);
    }
    .recruit_box {
        padding-left: 25px;
        padding-right: 25px;
    }
    .recruit_txt_box {
        margin-bottom: 35px;
    }
    .recruit_ttl {
        font-size: 20px;
        letter-spacing: calc(20px * (3 / 100));
    }
    .recruit_txt {
        font-size: 36px;
        letter-spacing: calc(36px * (5 / 100));
    }
    .recruit_link_box {
        width: 100%;
    }
}

/* footer */
footer {
    position: relative;
    padding-top: 100px;
    padding-bottom: 34px;
    background-image: url(../img/footer_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.footer_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 46.4%;
    height: auto;
}
.footer_box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer_info {
    margin-right: 110px;
}
.footer_logo {
    display: block;
    width: 240px;
    height: auto;
}
.footer_info_txt_box {
    margin-top: 39px;
}
.footer_info_ttl {
    line-height: 100%;
    letter-spacing: calc(16px * (5 / 100));
    color: var(--font_color3);
    margin-bottom: 16px;
}
.footer_info_txt {
    font-size: 14px;
    line-height: 160%;
    letter-spacing: calc(14px * (5 / 100));
    font-weight: var(--font_weight_regular);
}
.footer_link_box {
    display: flex;
    align-items: start;
}
.footer_link_list:first-child {
    margin-right: 49px;
}
.footer_link_item:nth-child(n+2) {
    margin-top: 20px;
}
.footer_link_item>a {
    display: block;
    font-family: var(--txt_en);
    line-height: 110%;
    letter-spacing: calc(16px * (3 / 100));
    font-weight: var(--font_weight_medium);
}

.copyright {
    font-family: var(--txt_en);
    font-size: 12px;
    line-height: 110%;
    letter-spacing: calc(12px * (3 / 100));
    font-weight: var(--font_weight_medium);
    text-align: right;
}

@media only screen and (max-width: 768px) {
    footer {
        padding-top: 40px;
        padding-bottom: 40px;
        background-image: url(../img/footer_bg_sp.webp);
    }
    .footer_info {
        width: 100%;
        margin-right: 0;
        margin-bottom: 51px;
    }
    .footer_logo {
        width: 247px;
        height: auto;
    }
    .footer_info_ttl {
        font-size: 16px;
        letter-spacing: calc(16px * (5 / 100));
    }
}