/*
header, main, footer {
    -ms-filter: blur(6px);
    filter: blur(6px);
}
*/

.recruit_modal {
    width: 100vw;
    height: 100vh;
    background-color: #000000cc;
    position: fixed;
    z-index: 5000;
    display: none;
    opacity: 0;
    transition: 0.2s;
}

.recruit_modal .inner {
    width: 500px;
    height: 750px;
    background-color: #fff;
    margin: auto;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 15px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.2s;
}

.recruit_modal .inner h2 {
    font-size: 24px;
    line-height: 1em;
    text-align: center;
    letter-spacing: 0.15em;
    font-family: "Krungthep";
    color: rgb(0, 63, 136);
}

.recruit_modal .inner .r_form {
    /*margin-top: -725px;*/
}

.recruit_modal .inner table {
    width: 100%;
    margin-top: 30px;
}

.recruit_modal .inner table tr {
    border-bottom: 1px solid rgb(0, 63, 136);
}

.recruit_modal .inner table tr:nth-child(1) {
    border-top: 1px solid rgb(0, 63, 136);
}

.recruit_modal .inner table tr th {
    width: 150px;
    font-size: 14px;
    line-height: 1em;
    font-weight: bold;
    color: rgb(0, 63, 136);;
    text-align: left;
    vertical-align: middle;
    padding: 20px 10px 20px 10px;
    box-sizing: border-box;
}

.recruit_modal .inner table tr td {
    padding: 20px 10px 20px 10px;
    box-sizing: border-box;
}

.recruit_modal .inner table tr td p {
    width: 100%;
    height: 14px;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #595757;
    overflow-y: scroll;
}

.recruit_modal .inner table tr td.textarea {
    height: 120px;
    line-height: 1.4em;
}


.recruit_modal .inner table tr td.textarea p {
    height: 100%;
    line-height: 1.4em;
}

.recruit_modal .inner .btnwrap {
    width: 360px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.recruit_modal .inner .btnwrap button {
    width: 49%;
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1em;
    padding: 10px 0 10px 0;
    background-color: #fff;
    color: rgb(0, 63, 136);
    box-sizing: border-box;
    border: 2px solid rgb(0, 63, 136);
    border-radius: 5px;
    transition: 0.3s;
}

.hover1 {
    width: 70% !important;
    background-color: rgb(0, 63, 136) !important;
    color: #fff !important;
    transition: 0.3s !important;
}

.hover2 {
    width: 29% !important;
    transition: 0.3s !important;
}

.recruit_modal .complate {
    margin-top: 30px;
}

.recruit_modal .complate h2 {
    margin-bottom: 30px;
}

.recruit_modal .complate p {
    font-size: 14px;
    line-height: 1.5em;
    text-align: center;
    margin-bottom: 30px;
}

.recruit_modal .complate button {
    width: 50%;
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1em;
    padding: 10px 0 10px 0;
    background-color: #fff;
    color: rgb(0, 63, 136);
    box-sizing: border-box;
    border: 2px solid rgb(0, 63, 136);
    border-radius: 5px;
    transition: 0.3s;
    margin-left: auto;
    margin-right: auto;
}

.recruit_modal .complate button:hover {
    background-color: rgb(0, 63, 136);
    color: #fff;
    transition: 0.3s;
}










@media (max-width: 500px) {

    .recruit_modal .inner {
        width: 350px;
        height: 500px;
        padding: 25px;
    }

    .recruit_modal .inner h2 {
        font-size: 18px;
    }

    .recruit_modal .inner .r_form {
        /*margin-top: -525px;*/
    }

    .recruit_modal .inner table {
        margin-top: 20px;
    }

    .recruit_modal .inner table tr th {
        width: 100px;
        font-size: 10px;
        padding: 8px 15px 8px 15px;
    }

    .recruit_modal .inner table tr td {
        padding: 8px 0 8px 0;
    }

    .recruit_modal .inner table tr td p {
        font-size: 10px;
        height: 10px;
    }

    .recruit_modal .inner table tr td.textarea {
        height: 95px;
    }

    .recruit_modal .inner table tr td.textarea p {
        font-size: 10px;
    }

    .recruit_modal .inner .btnwrap {
        width: 100%;
        margin-top: 20px;
    }

    .recruit_modal .complate {
        margin-top: 80px;
    }

    .recruit_modal .complate h2 {
        margin-bottom: 30px;
    }

    .recruit_modal .complate p {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .recruit_modal .complate button {
        width: 50%;
        display: block;
        font-size: 14px;
        font-weight: bold;
        line-height: 1em;
        padding: 10px 0 10px 0;
        background-color: #fff;
        color: rgb(0, 63, 136);
        box-sizing: border-box;
        border: 2px solid rgb(0, 63, 136);
        border-radius: 5px;
        transition: 0.3s;
        margin-left: auto;
        margin-right: auto;
    }

    .recruit_modal .complate button:hover {
        background-color: rgb(0, 63, 136);
        color: #fff;
        transition: 0.3s;
    }
}


/*----------------
モーダル展開時 付加クラス
-----------------*/

.lock {
    overflow: hidden;
}

.back_blur {
    -ms-filter: blur(6px);
    filter: blur(6px);
}

.modal_visible01 {
    display: block;
}

.modal_visible02 {
    opacity: 1;
    transition: 0.2s;
}

.modalinner_visible01 {
    opacity: 1 !important;
    transition: 0.2s;
}