@charset "utf-8";

/*

recruit.css
Version: 2022.12.04

*/

/* --------------------------------------------------------
/* .page-recruit
/* .recruit
/* .policy-list
/* .guideline-flow
-------------------------------------------------------- */


/* .page-recruit
-------------------------------------------------------- */
.visual-sub-bg {
    position: relative;
    background: #fff url(../../assets/img/recruit/bg_visual-sub-bg_sp.jpg) no-repeat center center;
    background-size: cover !important;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .visual-sub-bg {
        background: #fff url(../../assets/img/recruit/bg_visual-sub-bg_pc.jpg) no-repeat center center;
        background-size: cover !important;
    }
}


/* .recruit
-------------------------------------------------------- */
.recruit .btn-red .ico {
    margin: 0 10px 0 0;
    font-size: 1.6rem;
}

/* .recruit-img */
.recruit-img {
    position: relative;
    margin-bottom: 2em;
}
/* .recruit-img::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: rgba(0, 91, 172, .1);
    content: "";
} */
.recruit-img .ttl {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    display: flex;
    padding: 1vw 1vw 1vw 1vw;
    background: #fff;
    transform: translateY(-50%);

    flex-flow: column wrap;
}
.recruit-img .ttl span {
    display: inline-block;
    margin-bottom: 0;
}
.recruit-img .ttl span:last-child {
    margin-bottom: 0;
}
.recruit-img .ttl span.en {
    margin-bottom: 0;
    color: rgba(1, 92, 172, 1);
    /* text-shadow: 0 0 10px rgba(0, 0, 0, .2); */
    font-weight: 400;
    font-size: 2.6rem;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.4;
}
.recruit-img .ttl span.ja {
    color: #020202;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, .2); */
    font-weight: 400;
    font-size: 1.0rem;
    font-family: "Noto Serif JP", serif;
}

/* tb（768px以上の場合に適用） */
@media (min-width: 768px) {
    .recruit-img .ttl {
        padding: 1vw 3vw 1.8vw 4vw;
    }
    .recruit-img .ttl span.en {
        margin-bottom: .1em;
        font-size: 5.8rem;
    }
    .recruit-img .ttl span.ja {
        font-size: 2.2rem;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .recruit-img .ttl {
        padding: 1vw 3vw 1.8vw 4vw;
    }
    .recruit-img .ttl span.en {
        margin-bottom: .1em;
        font-size: 8rem;
    }
    .recruit-img .ttl span.ja {
        font-size: 2.8rem;
    }
}


/* .policy-list
-------------------------------------------------------- */
.policy-list {
    overflow: hidden;
}
.policy-list-item {
    padding: 0;
}
.policy-list-item .img {
    position: relative;
    margin-bottom: 1em;
}
.policy-list-item .img-catch {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: .2em;
    width: 100%;
    /* border-radius: 2px; */
    background: rgba(0, 0, 0, .5);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.6;
}
.policy-list-item .img-catch span {
    margin-right: .2em;
    font-size: 120%;
}
.policy-list-item .ttl {
    margin-bottom: .5em;
    text-align: left;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.6;
}
.policy-list-item .txt {
    text-align: left;
    font-size: 1.5rem;
}


/* .guideline-flow
-------------------------------------------------------- */
.guideline-flow {
    display: block;
    margin-bottom: 0;
}
.guideline-flow-item {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    max-width: none;
    width: 100%;
}
.guideline-flow-item div {
    display: flex;
    width: 100%;
    height: 70px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.6;

    align-items: center;
    justify-content: center;
}
.guideline-flow-item:last-child div {
    border: 1px solid rgba(223, 0, 58, 1);
    background-color: rgba(223, 0, 58, 1);
    color: rgba(255, 255, 255, 1);
}
.guideline-flow-item::after {
    position: absolute;
    top: auto;
    right: calc(50% - 3px);
    bottom: -25px;
    border: 6px solid transparent;
    border-top: 8px solid rgba(223, 0, 58, 1);
    content: "";
}
.guideline-flow-item:last-child::after {
    display: none;
}

/* tb（768px以上の場合に適用） */
@media (min-width: 768px) {
    .guideline-flow {
        display: flex;

        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
    }
    .guideline-flow-item {
        margin-bottom: 20px;
        max-width: calc((100% - 120px) / 4);

        flex-basis: calc((100% - 120px) / 4);
    }
    .guideline-flow-item div {
        height: 100px;
        font-size: 1.6rem;
    }
    .guideline-flow-item::after {
        top: calc(50% - 3px);
        right: -30px;
        bottom: auto;
        border: 6px solid transparent;
        border-left: 8px solid rgba(223, 0, 58, 1);
    }
    .guideline-flow-item:nth-child(4n)::after {
        display: none;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .guideline-flow-item {
        max-width: calc((100% - 180px) / 4);

        flex-basis: calc((100% - 180px) / 4);
    }
    .guideline-flow-item div {
        height: 120px;
        font-size: 1.6rem;
    }
    .guideline-flow-item::after {
        right: -40px;
    }
}
