a.r_color, .breadcrumb a {
    color: #008089;
}

@media screen and (max-width: 63.9375rem) {
    #to_top div {
        background-color: #00BECC;
    }
}

.top_image {
    background-image: url(/static/img/recruit/back.jpg);
    background-size: cover;
    background-position: top;
    padding-top: 5.5rem;
}
@media screen and (max-width:63.9375rem) {
    .top_image {
        text-align: left;
        padding-top: 0;
    }
}

.top_image .corner_r {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.interview {
    padding: 6.25rem 0 6.625rem;
}
@media screen and (max-width:63.9375rem) {
    .interview {
        padding: 1.875rem 0;
    }
}

.interview .headline {
    font-weight: bold;
    margin: 0 auto;
}

.interview .headline .text_main {
    font-size: 1.875rem;
}
@media screen and (max-width:63.9375rem) {
    .interview .headline .text_main {
        font-size: 1.125rem;
    }
}

.interview .headline .text_sub {
    font-size: 0.75rem;
}

.interview .employee_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3.75rem;
}
@media screen and (max-width:63.9375rem) {
    .interview .employee_list {
        margin-top: 0;
    }
}

.interview .employee_list .employee_container {
    width: 16.5625rem;
    height: 16.5625rem;
    color: #FFF;
    background:
    linear-gradient(to top right, #00BECC 50%, transparent 50.5%) no-repeat top right/50% 50.5%,
    linear-gradient(to top left, #00BECC 50%, transparent 50.5%) no-repeat top left/50.5% 50%,
    linear-gradient(to right bottom, #00BECC 50%, transparent 50.5%) no-repeat right bottom/50% 50.2%,
    linear-gradient(to left bottom, #00BECC 50%, transparent 50.5%) no-repeat left bottom/50.5% 50.5%;
}
@media screen and (max-width:63.9375rem) {
    .interview .employee_list .employee_container {
        margin-top: 2.25rem;
    }
}

.interview .employee_list .employee_container:hover {
    background:
    linear-gradient(to top right, #79D3D9 50%, transparent 50.5%) no-repeat top right/50% 50.5%,
    linear-gradient(to top left, #79D3D9 50%, transparent 50.5%) no-repeat top left/50.5% 50%,
    linear-gradient(to right bottom, #79D3D9 50%, transparent 50.5%) no-repeat right bottom/50% 50.2%,
    linear-gradient(to left bottom, #79D3D9 50%, transparent 50.5%) no-repeat left bottom/50.5% 50.5%;
    filter: brightness(105%);
    opacity:80%;
    transition: .3s;
}

.interview .employee_list .employee img {
    height: 11rem;
    width: auto;
    position: relative;
    top: -1.25rem;
}

.interview .employee_list .employee .dept {
    position: relative;
    top: -1rem;
}

.interview .employee_list .employee .name {
    font-size: 1.25rem;
    font-weight: bold;
    position: relative;
    top: -1rem;
}

.interview a, .interview a:hover
{
    text-decoration: none;
    color: inherit;
}

.entry_form {
    padding: 3.125rem 0 6.625rem;
    background-color: #D8EFF1;
}
@media screen and (max-width:63.9375rem) {
    .entry_form {
        padding: 1.875rem 0;
    }
}

.entry_form .headline {
    font-weight: bold;
    text-align: left;
}

.entry_form .headline .text_main {
    font-size: 1.875rem;
}
@media screen and (max-width:63.9375rem) {
    .entry_form .headline .text_main {
        font-size: 1.125rem;
    }
}

.entry_form .headline .text_sub {
    font-size: 0.75rem;
}

.entry_form .message {
    text-align: left;
}
@media screen and (max-width:63.9375rem) {
    .entry_form .message {
        font-size: 0.875rem;
    }
}

.entry_form .link {
    margin: auto;
}

@media screen and (max-width:63.9375rem) {
    .entry_form .entry_container {
        width: calc(100% - 1rem);
        max-width: 22.4375rem;
        margin: 0 auto;
    }
    .entry_form .entry_container .headline {
        margin-bottom: 1.25rem;
    }
    .entry_form .entry_container .message {
        margin-bottom: 1.25rem;
    }
}
@media screen and (min-width:64rem) {
    .entry_form .entry_container {
        display: grid;
        display: -ms-grid;
        grid-template-columns: 1fr 1fr;
        -ms-grid-columns: 1fr 1fr;
        grid-template-rows: 5rem 4rem;
        -ms-grid-rows: 5rem 4rem;
        width: 53.375rem;
        margin: 0 auto;
        align-items: end;
    }
    .entry_form .entry_container .headline {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column-span: 1;
    }
    .entry_form .entry_container .message {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column-span: 1;
    }
    .entry_form .entry_container .link {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        -ms-grid-row: 1;
        -ms-grid-column: 2;
        -ms-grid-row-span: 2;
        -ms-grid-column-span: 1;
    }
}
@media screen and (min-width:120rem) {
    .entry_form .entry_container {
        width: 56rem;
    }
}

.btn-entry {
    font-size: 1.875rem;
    font-weight: bold;
    text-decoration: none;
    color: #FFF;
    background-color: #F29436;
    display: inline-block;
    padding: 1.25rem 9.5rem;
    border-radius: 3rem;
    transition: .3s;
}
@media screen and (max-width:63.9375rem) {
    .btn-entry {
        font-size: 1.125rem;
        padding: 1rem 0;
        width: 100%;
    }
}

.btn-entry:hover {
    text-decoration: none;
    background-color: #FDBA78;
    cursor: pointer;
}

.no_job_list {
    margin-bottom: 3.125rem;
    font-size: 1.875rem;
}