@charset "UTF-8";

.internalPageLayout__inner {
    padding-top: 24.5vw;
}
.breadcrumb {
    display: none;
}
.rec_page {
    background-color: #fff;
    font-family: "Noto Sans JP", serif;
}
.pc_only {
    display: none;
}
.sp_only {
    display: block;
}

@media screen and (min-width: 641px) {

    .internalPageLayout__inner {
        padding-top: 120px;
    }
    .breadcrumb {
        display: block;
    }
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none;
    }
    .hover_effect {
        display: block;
        position: relative;
        transition: filter 0.25s ease;
    }
    .hover_effect img {
        display: inline-block;
        position: relative;
        transition: filter 0.25s ease;
    }
    .hover_effect img:after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.12);
        opacity: 0;
        transition: opacity 0.25s ease;
        pointer-events: none;
    }
    .hover_effect:hover {
        filter: brightness(1.06) contrast(0.95);
    }
    .hover_effect:hover::after {
        opacity: 1;
    }

}

.bg_gradient {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-bottom: 20px;
    background: -webkit-gradient(linear, left top, right top, color-stop(.1%, #009FE2), color-stop(99.54%, #019C67));
    background: linear-gradient(90deg, #009FE2 .1%, #019C67 99.54%);
}
.recruit_container {
    padding: 4vw 6.4vw;
}
.recruit_hl {
    color: #fff;
    font-size: 6vw;
    padding-bottom: 10px;
    font-weight: bold;
}
.job_details {
    background-color: rgba(255,255,255,0.8);
    padding: 3vw 4vw;
}
.job_details_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.job_details_hl {
    color: #003686;
    font-weight: bolds;
    font-size: 3.4vw;
}
.entry_btn {
    width: 129px;
}
.entry_btn img {
    vertical-align: middle;
}
.job_details_tbl {
    width: 100%;
    margin: 0 auto;
    border-top: solid 1px #4b92e8;
    line-height: 1.5;
}
.job_details_tbl tr {
    border-bottom: solid 1px #4b92e8;
}
.job_details_tbl tr:last-of-type {
    border-bottom: none;
}
.job_details_tbl th {
    width: 30%;
    padding: 2vw;
    font-size: 2.8vw;
}
.job_details_tbl td {
    padding: 2vw 1vw;
    font-size: 2.6vw;
}
.job_details + .job_details {
    margin-top: 5vw;
}

@media screen and (min-width: 641px) {

    .recruit_container {
        max-width: 1160px;
        margin: 0 auto;
        padding: 20px 80px 50px;
    }
    .recruit_hl {
        font-size: 43px;
    }
    .job_details {
        padding: 40px 60px;
    }
    .job_details_head {
        padding-bottom: 5px;
    }
    .job_details_hl {
        font-size: 24px;
    }
    .entry_btn {
        width: 259px;
    }
    .entry_btn img {
        vertical-align: middle;
    }
    .job_details_tbl {
        line-height: 1.7;
    }
    .job_details_tbl th {
        width: 25%;
        padding: 10px 20px;
        font-size: 18px;
    }
    .job_details_tbl td {
        padding: 10px 20px;
        font-size: 16px;
    }
    .job_details + .job_details {
        margin-top: 5vw;
    }

}


