.top_image {
    width: 100%;
    height: 8.625rem;
    background-image: url(/static/img/recruit/back.jpg);
    background-size: cover;
    background-position: top;
    padding-top: 5.5rem;
    display: flex;
    align-items: center;
}
@media screen and (max-width:63.9375rem) {
    .top_image {
        height: 4rem;
        padding-top: 0;
    }
}

.top_image .corner_r {
    background:
        linear-gradient(-45deg, #00BECC 6rem, transparent 0),
        linear-gradient(-135deg, #F29436 5.5rem, transparent 0);
}
@media screen and (max-width:63.9375rem) {
    .top_image .corner_r {
        background:
            linear-gradient(-45deg, #00BECC 2.8125rem, transparent 0),
            linear-gradient(-135deg, #F29436 2.5rem, transparent 0);
    }
}

.top_image .headline {
    display: flex;
    align-items: center;
    font-weight: bold;
    width: 120rem;
    margin: 0 auto;
    padding-left: 1.75rem;
}
@media screen and (max-width:119.9375rem) {
    .top_image .headline {
        width: 100%;
        margin-left: 0.75rem;
        padding-left: 0;
    }
}

.top_image .text_main {
    font-size: 3.75rem;
}
@media screen and (max-width:63.9375rem) {
    .top_image .text_main {
        font-size: 1.25rem;
    }
}

.top_image .text_sub {
    font-size: 1.125rem;
    font-weight: bold;
    margin-left: 1.875rem;
}
@media screen and (max-width:63.9375rem) {
    .top_image .text_sub {
        font-size: 0.75rem;
    }
}

.main_container {
    display: flex;
    width: 53.75rem;
    margin: 6.25rem auto;
    justify-content: space-around;
}
@media screen and (max-width:63.9375rem) {
    .main_container {
        display: block;
        margin: 1.875rem 0.5rem;
        width: calc(100% - 1rem);
    }
}
@media screen and (min-width:120rem) {
    .main_container {
        width: 61.125rem;
        margin: 3.125rem auto;
    }
}

.main_message {
    width: 22.75rem;
    text-align: left;
}
@media screen and (max-width:63.9375rem) {
    .main_message {
        width: 100%;
        margin-bottom: 1.875rem;
    }
}

.main_message .body {
    font-size: 1.5625rem;
    font-weight: bold;
}
@media screen and (max-width:63.9375rem) {
    .main_message .body {
        font-size: 1.125rem;
    }
}

.main_message .body_sub {
    font-size: 1.5625rem;
    margin-top: 1.875rem;
}
@media screen and (max-width:63.9375rem) {
    .main_message .body_sub {
        font-size: 1.125rem;
    }
}

.remark {
    font-size: 0.875rem;
    margin-top: 1.875rem;
    line-height: 2;
}
@media screen and (max-width:63.9375rem) {
    .remark {
        margin-top: 0.625rem;
    }
}


.job_application_form {
    width: 28.5rem;
}
@media screen and (max-width:63.9375rem) {
    .job_application_form {
        width: 100%;
    }
}
@media screen and (min-width:120rem) {
    .job_application_form {
        width: 35.875rem;
    }
}

#job_application_entry_form {
    margin-block-end: 0;
}

.job_application_content {
    text-align: left;
    margin-bottom: 0.625rem;
}

.job_application_header {
    font-size: 1.125rem;
    display: flex;
    margin-bottom: 0.375rem;
}
@media screen and (max-width:63.9375rem) {
    .job_application_header {
        display: block;
    }
}

.spacer {
    margin: 1.25rem 0 9rem;
}
@media screen and (max-width:63.9375rem) {
    .spacer {
        margin-bottom: 1.875rem;
    }
}

.full_input {
    background-color: #ECECEC;
    border: none;
    width: 100%;
    height: 2.25rem;
    padding: 0.375rem 0.625rem;
    font-size: 1rem;
}

input[type="text"].error, textarea.error {
    background-color: #FBEAEA !important;
    border: 1px solid #EBB6B6 !important;
}

#phone {
    background-color: #ECECEC;
    border: none;
    width: 50%;
    height: 2.25rem;
    padding: 0.375rem 0.625rem;
    font-size: 1rem;
}

#job_name {
    padding-inline-start: 0;
    margin-block-start: 0;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width:63.9375rem) {
    #job_name {
        padding-inline-start: 0;
        list-style: none;
        padding-left: 0;
        display: block;
    }
}

#job_name li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 1rem;
}
#job_name li:nth-last-child(n+2) {
    margin-bottom: 0.5rem;
}

#message {
    background-color: #ECECEC;
    border: none;
    width: 100%;
    height: 11rem;
    padding: 0.375rem 0.625rem;
    font-size: 1rem;
}

.button {
    font-size: 1rem;
    color: #FFF;
    width: 100%;
    padding: 0.75rem 0;
    border-radius: 1.5rem;
    transition: .3s;
    border: none;
}

.button.confirm.disable {
    background-color: #FDBA78;
}
.button.confirm.enable {
    background-color: #FDBA78;
}
.button.confirm.enable:hover {
    background-color: #F29436;
}

.button.back {
    background-color: #B5B5B5;
}
.button.back:hover {
    background-color: #D4D4D4;
}

.confirm_container {
    width: 28rem;
    margin: 3.125rem auto;
    text-align: left;
    font-size: 1.125rem;
}
@media screen and (max-width:63.9375rem) {
    .confirm_container {
        width: calc(100% - 1rem);
        margin: 1.875rem 0.5rem;
    }
}

.form_conf_content {
    margin: 2.125rem 0 6.25rem;
}
@media screen and (max-width:63.9375rem) {
    .form_conf_content {
        margin: 1.875rem 0;
    }
}

.confirm_content {
    margin-bottom: 1.25rem;
}

.confirm_header {
    margin-bottom: 0.375rem;
}
@media screen and (max-width:63.9375rem) {
    .confirm_header {
        margin-bottom: 0;
    }
}

.input_confirm {
    margin-left: 1rem;
    min-height: 1em;
    word-break: break-word;
}

.send_entry {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: #FFF;
    background-color: #FDBA78;
    width: 100%;
    padding: 0.75rem 0;
    border-radius: 3rem;
    border: none;
    transition: .3s;
    margin-bottom: 3.125rem;
}
@media screen and (max-width:63.9375rem) {
    .send_entry {
        font-size: 1.125rem;
        padding: 1rem 0;
        width: 100%;
    }
}

.send_entry:hover {
    text-decoration: none;
    background-color: #F29436;
    cursor: pointer;
}

.complete_container {
    width: 28rem;
    margin: 3.125rem auto;
    text-align: left;
    font-size: 1.125rem;
}
@media screen and (max-width:63.9375rem) {
    .complete_container {
        width: calc(100% - 1rem);
        margin: 1.875rem 0.5rem;
    }
}

@media screen and (max-width:63.9375rem) {
    .complete_container .button.send {
        margin-bottom: 0;
    }
}

.complete_text {
    line-height: 2;
    margin-bottom: 5rem;
}

.go_top_page {
    background-color: #00BECC;
}
.go_top_page:hover {
    background-color: #79D3D9;
    transition: .3s;
}

.asta {
    color: #ff0000;
}

.emphasis {
    font-size: 1.125rem;
    color: #ff0000;
    margin-left: 1rem;
}

@media screen and (max-width:63.9375rem) {
    #to_top {
        display: none !important;
    }
}