@charset "UTF-8";
#page {
    background: #F3F3F3;
}
h1 {
    font-size: 20px;
    margin: 20px 0 0 10px;
}
.error-text {
    color: red;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
    .main {
        margin-bottom: 0;
        width: auto;
    }
}
/* ログイン */
.login_box {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 50px auto;
    padding: 10px;
    width: 800px;
}
.login_box h1 {
    margin-top: 50px;
    text-align: center;
}
.login_box .input_box {
    margin: 50px auto 0;
    text-align: center;
    width: fit-content;
}
.login_box label {
    font-size: 14px;
    margin-top: 10px;
}
.login_box .input {
    margin-top: 5px;
}
.login_box .input_label {
    margin-top: 10px;
}
.login_box .input,
.login_box .input_label {
    text-align: left;
}
.login_box input[type="email"],
.login_box input[type="password"] {
    padding: 5px;
    width: 300px;
}
.login_box .submit_area {
    text-align: center;
}
.login_box .submit {
    background: linear-gradient(150deg, #4f7492 0%, #0c2442 50%);
    border: 1px solid #414141;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    letter-spacing: 2px;
    margin: 30px auto 0;
    padding: 10px;
    text-align: center;
    width: 200px;
}
.login_box .error_text {
    color: red;
    margin-top: 30px;
    text-align: center;
}
.login_box .forgot_password {
    font-size: 14px;
    margin: 30px auto 20px;
    text-align: center;
}
/* マイページTOP */
.mypage_box {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 50px auto;
    padding: 10px;
    width: 800px;
}
.mypage_box .mypage_top_image {
    margin: 10px auto 0;
    text-align: center;
}
.mypage_box p {
    text-align: center;
}
.mypage_box p.user_name {
    font-size: 20px;
    font-weight: bold;
    margin: 20px auto;
}
.mypage_box p.notice {
    border-radius: 5px;
    line-height: 20px;
    padding: 10px;
}
.mypage_box p.notice a {
    color: blue;
    text-decoration: underline;
}
.menu_box {
    margin: 0 auto 40px;
    width: fit-content;
}
.menu_block {
    margin: 0 auto;
}
.menu_block a {
    background: #f3f3f3;
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 1), 1px 1px 1px rgba(0, 0, 0, 0.3);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    display: inline-block;
    margin: 10px;
    padding: 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    width: 200px;
}
.menu_block a p {
    margin-top: 10px;
}
.menu_block span.new_messages_count {
    align-content: center;
    border-radius: 20px;
    background-color: #f44545;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 80px;
}
/* 登録情報変更 */
.profile_form {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 20px auto 50px;
    padding: 20px;
}
.profile_form table.change_profile {
    font-size: 14px;
    width: 100%;
}
.profile_form table.change_profile td {
    border-bottom: 1px solid #cecece;
    line-height: 16px;
    padding: 10px;
}
.profile_form table.change_profile td.item {
    background: #f0f0f0;
    padding: 20px;
    width: 210px;
}
.profile_form table.change_profile table.academic_history td,
.profile_form table.change_profile table.mailmagazine td {
    border: none;
}
.profile_form span.required {
    background-color: #e95464;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 5px;
    float: right;
}
.profile_form input,
.profile_form select {
    padding: 5px;
}
.profile_form input[type="text"],
.profile_form input[type="tel"] {
    width: 200px;
}
.profile_form input[type="email"] {
    width: 350px;
}
.profile_form select {
    min-width: 70px;
}
.profile_form select[name="circumstance"] {
    min-width: 200px;
}
.profile_form input[name="academic_history_name"] {
    width: 400px;
}
.profile_form select[name="academic_history_type"] {
    min-width: 200px;
}
.profile_form input[name="recent_income"] {
    width: 100px;
}
.profile_form div.birth {
    display: inline-block;
}
.profile_form textarea {
    max-width: 800px;
    min-width: 800px;
    max-height: 500px;
    min-height: 200px;
    padding: 10px;
}
.profile_form .carrer2,
.profile_form .carrer3,
.profile_form .carrer4,
.profile_form .carrer5 {
    display: none;
}
.profile_form #show_carrer2,
.profile_form #show_carrer3,
.profile_form #show_carrer4,
.profile_form #show_carrer5 {
    background: #696969;
    border: 1px solid #696969;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px 15px;
    text-align: center;
    width: 80px;
}
.submit_box {
    margin: 30px auto;
    text-align: center;
}
.submit_box input[type="submit"] {
    background: linear-gradient(150deg, #4f7492 0%, #0c2442 50%);
    border: 1px solid #414141;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    margin: 0 10px;
    padding: 10px 30px;
    text-align: center;
}
.submit_box input[type="submit"].back_to_edit {
    background: #999999;
    border: 1px solid #999999;
}
p.error_notice {
    color: red;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}
p.change_profile_confirm {
    font-size: 13px;
    margin-top: 20px;
}
div.submit_box form {
    display: inline-block;
}
.change_profile_complete {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    padding: 20px;
}
.message_text {
    margin: 10px auto 30px;
    text-align: center;
}
.mypage_top_link {
    color: #fff;
    margin: 0 auto;
    text-align: center;
}
a.mypage_top_button {
    background: linear-gradient(150deg, #4f7492 0%, #0c2442 50%);
    border: 1px solid #414141;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    margin: 0 10px;
    padding: 15px 30px;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .profile_form {
        padding: 20px 10px 0;
        width: 90%;
    }
    .profile_form table.change_profile td {
        border: none;
        display: inline-block;
        float: left;
        width: 95%;
    }
    .profile_form table.change_profile td.item {
        border: none;
        padding: 5px 10px;
        width: 95%;
    }
    .profile_form input[type="email"] {
        width: 95%;
    }
    .profile_form textarea {
        width: 95%;
        max-width: 95%;
        min-width: 95%;
        max-height: 500px;
        min-height: 200px;
        padding: 10px;
    }
    .profile_form input[name="academic_history_name"] {
        width: 95%;
    }
}
/* 応募履歴 */
.content {
    float: none;
    margin: 0 auto 50px;
    width: 800px;
}
#order_list {
    margin-top: 20px;
}
#order_content .order_block .apply_date {
    margin-bottom: 20px;
}
#order_content .order_block a.entry_detail {
    background-image: linear-gradient(150deg, rgba(65, 65, 65, 1) 50%, rgba(1, 1, 1, 1) 100%);
    border: 1px solid #414141;
    color: #FFF;
    padding: 10px;
    width: 200px;
}
.no_entry {
    text-align: center;
}
/* 求人詳細・入力内容 */
#entrydetail {
    background: #FFF;
    margin: 0 auto;
    padding: 10px;
}
#entrydetail .headline {
    font-size: 18px;
    margin: 0 auto 20px;
    text-align: center;
}
#entrydetail .entry_value {
    margin-top: 10px;
}
#entrydetail .title h1 {
    margin: 0 0 10px;
}
#entrydetail .title,
#entrydetail .client_logo {
    vertical-align: top;
}
#entrydetail .order_detail,
#entrydetail .entry_value {
    font-size: 12px;
}
#entrydetail .order_detail table,
#entrydetail .entry_value table {
    width: 100%;
}
#entrydetail .order_detail table td,
#entrydetail .entry_value table td {
    border-bottom: 1px solid #cecece;
    line-height: 16px;
    padding: 10px;
}
#entrydetail .order_detail table td.item,
#entrydetail .entry_value table td.item {
    background: #f0f0f0;
    color: #000;
    width: 150px;
}
#entrydetail .order_detail table td.title {
    overflow-wrap: anywhere;
}
#entrydetail .entry_value table.academic_history td {
    border: none;
}
#entrydetail .entry_value table.academic_history td.academic_history_item {
    padding: 0;
    width: 120px;
}
#entrydetail .button_box {
    margin: 50px auto 0;
    text-align: center;
}
#entrydetail .button_box a.back_to_entrylist {
    background: #00afcc;
    border: 1px solid #00afcc;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 40px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    #wrapper #entrydetail table td {
        border: none;
        display: inline-block;
        float: left;
        width: 95%;
    }
}
@media screen and (max-width: 1200px) {
    .content {
        width: 90%;
    }
}
/* メルマガ管理 */
.mailmagazine_form {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
}
.mailmagazine_form table.change_mailmagazine {
    font-size: 14px;
    margin: 20px auto 0;
    width: 70%;
}
.mailmagazine_form table.change_mailmagazine td {
    border-bottom: 1px solid #cecece;
    line-height: 16px;
    padding: 10px;
}
.mailmagazine_form table.change_mailmagazine td.item {
    background: #f0f0f0;
    padding: 20px;
    width: 210px;
}
.mailmagazine_form table.change_mailmagazine label {
    cursor: pointer;
}
.mailmagazine_complete {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    padding: 10px 0 30px;
    width: 90%;
}
@media screen and (max-width: 1200px) {
    .mailmagazine_form {
        width: 90%;
    }
    .mailmagazine_form table.change_mailmagazine td {
        border: none;
        display: inline-block;
        float: left;
        width: 95%;
    }
}
/* ストック求人一覧 */
div#content div#order_content {
    display: block;
    margin: 0 auto;
}
/* メッセージ */
#message_area {
    background: #FFF;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 2px 2px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid #EFEFEF;
    border-radius: 10px;
    margin: 20px auto;
    padding: 20px;
}
#message_input_area {
    margin: 0 auto;
    text-align: center;
}
#message_input_area textarea {
    font-size: 14px;
    margin: 30px auto 0;
    padding: 10px;
    width: 95%;
}
#message_input_area .submit_box {
    margin: 0 auto;
    text-align: center;
}
#message_input_area button.submit_button {
    background: linear-gradient(150deg, #4f7492 0%, #0c2442 50%);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 30px auto 0;
    padding: 10px;
    text-align: center;
    width: 180px;
}
#message_input_area .result_message {
    background: #d6e1eb;
    border-radius: 5px;
    color: #000;
    font-size: 14px;
    margin: 20px 0;
    padding: 10px;
    text-align: left;
}
#message_list {
    margin-top: 30px;
    font-size: 14px;
}
#message_list .message_body {
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0;
    padding: 20px;
    width: 80%;
}
#message_list .admin {
    background: #DEDEDE;
    border-radius: 12px;
    color: #000000;
    display: inline-block;
    float: left;
    font-weight: 400;
    line-height: 1.5;
    margin-right: 16px;
    padding: 16px;
    position: relative;
    text-align: left;
}
#message_list .admin::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 0 16px 16px 0;
    border-color: transparent #DEDEDE transparent transparent;
    translate: -100% calc(-50% - 0.4px);
    transform: skew(0, 5deg);
    transform-origin: right;
}
#message_list .user {
    background: #d6e1eb;
    border-radius: 12px;
    color: #000000;
    display: inline-block;
    float: right;
    font-weight: 400;
    line-height: 1.5;
    margin-right: 16px;
    padding: 16px;
    position: relative;
    text-align: left;
}
#message_list .user::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: 0 0 16px 16px;
    border-color: transparent transparent transparent #d6e1eb;
    translate: 100% calc(-50% - 0.4px);
    transform: skew(0, -10deg);
    transform-origin: left;
}
#message_list p.sent_date {
    font-size: 14px;
    margin-bottom: 10px;
}
#message_list p.sent_date span {
    font-weight: bold;
}
.no_message {
    margin: 100px auto;
    text-align: center;
}

/* パスワード変更 */
.passchange_box {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 50px auto;
    padding: 10px;
    width: 800px;
}
.passchange_box h1 {
    margin-top: 50px;
    text-align: center;
}
.passchange_box .input_box {
    margin: 30px auto 0;
    text-align: center;
    width: fit-content;
}
.passchange_box label {
    font-size: 14px;
    margin-top: 10px;
}
.passchange_box .input {
    margin-top: 5px;
}
.passchange_box .input_label {
    margin-top: 10px;
}
.passchange_box .input,
.passchange_box .input_label {
    text-align: left;
}
.passchange_box input[type="email"],
.passchange_box input[type="password"] {
    padding: 5px;
    width: 300px;
}
.passchange_box .submit_area {
    text-align: center;
}
.passchange_box .submit {
    background: linear-gradient(150deg, #4f7492 0%, #0c2442 50%);
    border: 1px solid #414141;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    letter-spacing: 2px;
    margin: 30px auto 0;
    padding: 10px;
    text-align: center;
    width: 200px;
}
.passchange_box .error_text {
    color: red;
    margin-top: 30px;
    text-align: center;
}
.passchange_box .forgot_password {
    font-size: 14px;
    margin: 30px auto 20px;
    text-align: center;
}
.passchange_box .complete p {
    padding: 40px 0;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .passchange_box {
        width: 90%;
    }
}

/* 退会 */
div.deactivate {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 50px auto;
    padding: 20px;
    width: 800px;
}
div.deactivate ul {
    margin: 30px 0;
}
div.deactivate div.deactivate_form {
    text-align: center;
}
div.deactivate button.submit_button {
    background: linear-gradient(150deg, #4f7492 0%, #0c2442 50%);
    border: 1px solid #414141;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 40px;
    text-align: center;
}
div.deactivate_complete {
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 1), 3px 3px 3px rgba(0, 0, 0, 0.3);
    margin: 30px 0;
    padding: 20px;
}
@media screen and (max-width: 570px) {
    .menu_block a {
        display: block;
    }
}
@media screen and (max-width: 1200px) {
    .login_box,
    .mypage_box {
        width: 90%;
    }
    div.deactivate {
        width: auto;
    }
}