@charset "UTF-8";
/* ----------------------------------------------------------
エントリー
---------------------------------------------------------- */
footer{
    position: sticky;
    padding: 0 0 50px;
    top: 100vh;
}
footer .entry_Area{
    display: none;
}
.entry_Wrap{
    margin-top: 100px;
}
.entry_inner{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: #eee;
}
.entry_inner h2{
    text-align: center;
    font-size: 3rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.form_Box{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}
.form_Box > dl{
    margin-top: 25px;
    font-size: 1.6rem;
    color: #555;
}
.form_Box > dl dt span.required-icon{
    display: inline-block;
    background: #b12a17;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 5px;
    padding: 3px 7px;
    border-radius: 50px;
}
.form_Box > dl dt span.note{
    font-size: 1.2rem;
    margin-left: 5px;
}
.form_Box > dl dd{
    margin-top: 5px;
}
.form_Box > dl dd input,
.form_Box > dl dd textarea{
    width: 90%;
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 12px;
    border-radius: 3px;
    font-size: 1.6rem;
    outline: none;
}
.form_Box > dl dd textarea{
    resize: none;
    width: 100%;
    height: 300px;
}
.form_Box > dl.tel dd input,
.form_Box > dl.email dd input{
    width: 40%;
}
.form_Box > dl.postcode dd input{
    width: 20%;
}
.form_Box > dl dd select{
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
}
.form_Box > dl dd input::placeholder,
.form_Box > dl dd select:invalid{
    color: #ddd;
}
.form_Box > dl dd .select_Box{
    position: relative;
    display: inline-block;
    margin-right: 5px;
}
.form_Box > dl dd .select_Box::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    top: 45%;
    right: 7%;
    transform: translateY(-50%) rotate(45deg);
}
.form_Box > dl dd .select_Box.job::before{
    right: 2%;
}
.form_Box > dl dd > ul.year_List li:not(:first-child) .select_Box::before{
    right: 13%;
}
.form_Box > dl dd > ul.year_List li:not(:first-child) .select_Box::after{
    right: 9%;
}
.form_Box > dl dd > ul.year_List{
    justify-content: flex-start;
}
.form_Box > dl dd > ul.name_List li{
    width: 49%;
}
.form_Box > dl dd > ul.year_List li{
    width: 30%;
}
.form_Box > dl dd > ul.year_List li:not(:first-child){
    width: 20%;
    text-align: right;
}
.form_Box > dl dd .select_Box select{
    margin-right: 5px;
    vertical-align: 2px;
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 8px;
    border-radius: 3px;
    font-size: 1.6rem;
}
.form_Box > dl dd .select_Box.job{
    width: 97.5%;
}
.form_Box > dl dd .select_Box select option:first-child{
    color: #ddd;
}
/* .form_Box > dl dd > ul.year_List li:not(:first-child) select{
    width: 50%;
} */
.form_Box > dl dd > ul.year_List li:nth-child(1) .select_Box{
    width: 90%;
}
.form_Box > dl dd > ul.year_List li:nth-child(2) .select_Box{
    width: 70%;
}
.form_Box > dl dd > ul.year_List li:nth-child(3) .select_Box{
    width: 70%;
}

.privacy_Box{
    margin-top: 50px;
}
.privacy_Box h3{
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 10px;
}
.privacy_Box .txt_Box{
    border: 1px solid #ddd;
    background: #fff;
    padding: 15px;
    border-radius: 3px;
    font-size: 1.4rem;
    line-height: 1.4;
    background: #fff;
    height: 200px;
    overflow-y: scroll;
}
.privacy_Box .txt_Box ul li{
    position: relative;
    margin-bottom: 10px;
    padding-left: 1em;
}
.privacy_Box .txt_Box ul li::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--seablue);
    top: 0.5em;
    left: 0;
}
.privacy_Box .txt_Box ul li:first-child{
    margin-top: 10px;
}
.privacy_Box .txt_Box .material-symbols-sharp{
    color: var(--seablue);
    font-size: 2rem;
    font-family: "material symbols sharp";
    vertical-align: bottom;
    padding-right: 3px;
}
.privacy_Box .txt_Box a{
    color: var(--seablue);
    text-decoration: underline;
}
.privacy_Box .txt_Box a[href*="tel:"]{
    pointer-events: none;
}
.agree_Box{
    margin-top: 20px;
    text-align: center;
}
.agree_Box label{
    font-size: 1.6rem;
}
.submit_Btn{
    position: relative;
    display: block;
    width: 100%;
    max-width: 300px;
    background: #ccc;
    border: none;
    margin: 20px auto 0;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 0;
    transition: 0.3s;
    pointer-events: none;
}
.submit_Btn::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}
.agree_Box input[type=checkbox] {
    display: none;
}
.agree_Box label{
    position: relative;
    cursor: pointer;
}
.agree_Box label::before{
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 3px;
    top: 0.2em;
    left: -1.5em;
}
.agree_Box label::after{
    position: absolute;
    content: "";
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 5px;
    height: 10px;
    top: 50%;
    left: -1.1em;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
}
.agree_Box input:checked ~ label::before{
    background: var(--seablue);
}
.agree_Box input:checked ~ label::after{
    opacity: 1;
}
input:checked ~ .submit_Btn{
    pointer-events: unset;
    cursor: pointer;
}
input:checked ~ .submit_Btn:hover::before{
    opacity: 1;
}
.policy_Wrap{
    margin: 30px auto 80px;
}
.policy_Wrap .link_Btn{
    display: block;
    width: 100%;
    background: #fff;
    text-align: center;
    color: #111;
    font-size: 1.6rem;
    border: 1px solid #fff;
    padding: 20px;
    transition: 0.3s;
}
.policy_Wrap .link_Btn:hover{
    background: #111;
    color: #fff;
}
.policy_Wrap .flex {
    margin-bottom: 20px;
}
.policy_Wrap .flex .link_Btn{
    width: 49%;
}

/* --------------------------------
新卒
----------------------------------- */
#newgrad{
    position: relative;
    width: 100%;
    background: url(../img/navy_bg.jpg) center center repeat-y;
    background-size: cover;
    background-attachment: fixed;
}
#newgrad .agree_Box input:checked ~ .submit_Btn{
    background: var(--blue_g);
}
#newgrad .submit_Btn::before{
    background: linear-gradient(45deg, #1f9af9 0%, #005eae 100%);
}
#newgrad footer{
    position: relative;
    top: auto;
    background: none;
}
#newgrad footer::before{
    position: absolute;
    content: "";
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background: #fff;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* --------------------------------
中途
----------------------------------- */
/* --------------------------------
header
----------------------------------- */
#career header .hdr_inner nav ul li a{
    color: #111;
}
#career header .hdr_inner nav ul li a::after{
    background: #111;
}
#career header .hdr_inner nav ul li.hdr_btn a{
    color: #fff;
}
#career #menu span{
    background: #111;
}
#career #menu.active span{
    background: #fff;
}
#career header.js-header::before{
    background: rgba(255,255,255,1);
}

#career{
    background: #eee;
}
#career .entry_inner{
    background: #fff;
    box-shadow: 0 0 10px #ccc;
}
#career .policy_Wrap{
    margin: 30px auto 80px;
}
#career .policy_Wrap .link_Btn{
    background: #111;
    color: #fff;
    border-color: #111;
}
#career .policy_Wrap .link_Btn:hover{
    background: #fff;
    color: #111;
}
#career .agree_Box input:checked ~ .submit_Btn{
    background: var(--skyblue_g);
}
#career .submit_Btn::before{
    background: linear-gradient(45deg, #3ec6f8 0%, #1e98f6 100%);
}

/* ----------------------------------------------------------
確認画面
---------------------------------------------------------- */
.check_Area{
    margin-top: 20px;
    padding: 0 10px;
}
.check_Area dl{
    margin-bottom: 20px;
}
.check_Area dl dt{
    color: #aaa;
    font-size: 1.6rem;
    margin-bottom: 5px;
}
.check_Area dl dd{
    color: #333;
    font-size: 1.6rem;
}
.btn_flex{
    justify-content: center;
    margin: 80px auto 0;
}
.btn_flex a.return_Btn,
.btn_flex .submit_Btn{
    position: relative;
    display: block;
    width: 49%;
    max-width: 300px;
    text-align: center;
    font-size: 1.6rem;
    padding: 20px;
    transition: 0.3s;
    cursor: pointer;
}
.btn_flex .return_Btn{
    border: 1px solid #111;
    background: #fff;
}
.btn_flex .return_Btn span.material-symbols-sharp{
    position: absolute;
    font-size: 2rem;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}
.btn_flex .submit_Btn{
    border: none;
    color: #fff;
    margin: 0 0 0 10px;
    z-index: 0;
    pointer-events: unset;
}
.btn_flex .submit_Btn:hover::before{
    opacity: 1;
}
.btn_flex .return_Btn:hover{
    background: #111;
    color: #fff;
}
/* --------------------------------
新卒
----------------------------------- */
#newgrad .btn_flex .submit_Btn{
    background: var(--blue_g);
}

/* --------------------------------
中途
----------------------------------- */
#career .btn_flex .submit_Btn{
    background: var(--skyblue_g);
}

/* ----------------------------------------------------------
送信完了
---------------------------------------------------------- */
.complete_txt{
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 30px;
    text-align: center;
}
.entry_Wrap.complete{
    padding-bottom: 50px;
}

/* ==============================================================
PC(1600px~)
============================================================== */
@media screen and (min-width: 1600px) {


}

/* ==============================================================
PC・TAB(~1000px)
============================================================== */
@media screen and (max-width:1000px) {


}

/* ==============================================================
PC・TAB(~820px)
============================================================== */
@media screen and (max-width:820px) {


}

/* ==============================================================
SP(~768px)
============================================================== */
@media screen and (max-width:768px) {

    .entry_Wrap {
        margin-top: 50px;
    }
    .entry_inner {
        padding: 30px 15px;
    }
    .entry_inner h2 {
        text-align: center;
        font-size: 2.4rem;
        padding-bottom: 10px;
    }
    .form_Box {
        padding: 0;
    }
    .form_Box > dl {
        margin-top: 20px;
        font-size: 1.4rem;
    }
    .form_Box > dl dt span.required-icon {
        font-size: 1rem;
        padding: 3px 5px;
    }
    .form_Box > dl dd input, .form_Box > dl dd textarea {
        width: 100%;
        padding: 8px 12px;
    }
    .form_Box > dl dd .select_Box.job {
        width: 100%;
    }
    .form_Box > dl dd > ul.name_List li label{
        display: block;
        margin-bottom: 5px;
    }
    .form_Box > dl dd > ul.year_List li{
        width: 40%;
    }
    .form_Box > dl dd > ul.year_List li:not(:first-child){
        width: 25%;
    }
    .form_Box > dl dd > ul.year_List li:nth-child(1) .select_Box {
        width: 80%;
    }
    .form_Box > dl.tel dd input, .form_Box > dl.email dd input {
        width: 80%;
    }
    .form_Box > dl.postcode dd input {
        width: 40%;
    }
    .form_Box > dl dd textarea {
        height: 150px;
    }
    .policy_Wrap {
        margin: 30px auto 50px;
    }
    .privacy_Box {
        margin-top: 30px;
    }
    .agree_Box .submit_Btn{
        max-width: none;
        padding: 15px;
    }
    .policy_Wrap .flex{
        margin-bottom: 15px;
    }
    .policy_Wrap .flex .link_Btn {
        width: 100%;
    }
    .policy_Wrap .flex .link_Btn:first-child{
        margin-bottom: 15px;
    }
    .policy_Wrap .link_Btn {
        line-height: 1.2;
        padding: 15px;
    }

    /* --------------------------------
    新卒
    ----------------------------------- */
    #career .policy_Wrap {
        margin: 30px auto 50px;
    }

    /* --------------------------------
    中途
    ----------------------------------- */
    .entry_Wrap {
        margin-top: 75px;
    }

    /* ----------------------------------------------------------
    確認画面
    ---------------------------------------------------------- */
    .btn_flex {
        margin: 50px auto 0;
    }
    .btn_flex a.return_Btn, .btn_flex .submit_Btn {
        width: 100%;
        max-width: none;
        padding: 15px;
    }
    .btn_flex .submit_Btn{
        margin: 10px 0 0 0;
    }

    /* ----------------------------------------------------------
    送信完了
    ---------------------------------------------------------- */
    .complete_txt {
        font-size: 1.4rem;
        margin-top: 10px;
        text-align: left;
    }
}