@charset "utf-8";

*,
*::before,
*::after {
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-word;
}


/** recruit **/
.recruit_wrapper {
    max-width: 1700px;
    padding: 0 100px;
}

.recruit_title {
    font-size: 4rem;
    color: #0071bc;
    font-weight: bold;
    margin-bottom: 20px;
}

.recruit_sub_title {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #0071bc;
}


.recruit_flex {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.recruit_catchphrase {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: #00005f;
    flex: 1;
}

.recruit_message {
    line-height: 2.6;
    flex: 1;
}

.recruit_message_p {
    line-height: 2.6;
    margin: 0 0 2em 0;
    color: #00005F;
}


/** 画像 **/
.recruit_image_container {
    position: relative;
    max-height: 400px;
    margin-top: 100px;
    /* 画面幅いっぱい */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.recruit_image_container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 10% 50%;
}

.recruit_overlay_text {
    /** 画像に重ねる文字 **/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 70px;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.recruit_subtext {
    position: absolute;
    top: 60%;
    left: 50%;
    margin-top: 10px;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


/** 新卒採用 **/
.recruit_information_heading {
    font-size: 4rem;
    font-weight: 600;
    color: #00005f;
    padding: 45px 0;
}

.recruit_information_subheading {
    background: linear-gradient(90deg, rgb(84, 82, 181) 0%, rgb(38, 148, 226) 100%);
    color: white;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/** 背景色が付く部分 **/
.recruit_information_content {
    background-color: #e6edff;
    padding: 20px;
    margin-bottom: 150px;
}

.recruit_information_section {
    margin-bottom: 30px;
}

.recruit_information_section_title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0071bc;
    margin-bottom: 15px;
}

.recruit_information_p {
    padding-bottom: 1.5em;
    line-height: 2.6;
}

.recruit_information_address {
    margin: 0 0 10px;
    line-height: 2.6;
}


/** レスポンシブ **/

/** タブレット **/
@media screen and (max-width: 1200px) {

    /** recruit **/
    .recruit_title {
        font-size: 2rem;
    }

    .recruit_catchphrase {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }


    /** キャッチフレーズの改行打ち消し **/
    .recruit_pc_line_break {
        display: none;
    }

    .recruit_overlay_text {
        font-size: 50px;
    }


    .recruit_message_p {
        line-height: 2;
    }


    /** 画像 **/
    .recruit_image_container {
        margin-top: 50px;
    }

    .recruit_information_p {
        line-height: 2;
    }

    .recruit_flex {
        display: block;
    }


    /** 新卒採用 **/
    .recruit_information_heading {
        font-size: 32px;
    }
}

/** スマホレスポンシブ **/
@media screen and (max-width: 768px) {

    /** 画像 **/
    .recruit_overlay_text {
        font-size: 20px;
    }

    .recruit_image_container img {
        object-fit: cover;
        object-position: 5% 50%;
    }

    /** 新卒採用 **/
    .recruit_information_heading {
        padding: 20px 0;
    }

    .recruit_information_subheading {
        font-size: 1rem;
    }

    .recruit_information_content {
        margin-bottom: 40px;
    }
}