@charset "UTF-8";
.panel {
    margin-bottom: 50px;
}
.panel_title {
    background: #053FB3;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    padding: 10px 16px;
    cursor: pointer;
    border: 1px solid #053FB3;
    transition-duration: .3s;
    transition-property: background-color, color;
    position: relative;
    z-index: 1;
}
.panel_title > i {
    display: block;
    width: 26px;
    height: 26px;
    background: #8AB3E6;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 11px;
    border-radius: 3px;
}
.panel_title > i::before {
    content: "";
    display: block;
    width: 16px;
    height: 3px;
    background: #053FB3;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition-duration: .3s;
    transition-property: transform;
}
.panel_title > i::after {
    content: "";
    display: block;
    width: 16px;
    height: 3px;
    background: #053FB3;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(90deg);
    transition-duration: .3s;
    transition-property: transform;
}
.panel_title.isOpen > i::after {
    transform: rotate(0deg);
}
.panel_in {
    background: #EDF4FC;
    padding: 16px 15px;
    display: none;
}
.isOpen + .panel_in {
    display: flex;
    flex-wrap: wrap;
}
.panel_cols {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 6px 24px;
    display: flex;
    align-items: center;
}

.panel_cols:last-of-type {
    margin-bottom: 0;
}
.panel_cols::after {
    content: "";
    display: block;
    clear: both;
}
.panel_col {
    display: flex;
}
.panel_col-no1 {
    padding-right: 21px;
    margin-right: 24px;
    position: relative;
    z-index: 1;
}
.panel_col-no1::after {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-image: linear-gradient(180deg, #522d00 50%, #fff 50%);
    background-size: auto 2px;
}
.panel_cols:nth-of-type(1) .panel_col-no2 {
    flex-wrap: wrap;
    max-width: 50%;
}
.panel_cols:nth-of-type(2) .panel_col-no2 {
    flex-wrap: wrap;
    max-width: 50%;
}
.panel_label {
    margin: 0;
    padding: 4px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 26px;
    min-width: 187px;
}
.panel_in_type .panel_label {
    min-width: unset;
}
.panel_cLabel[data-label="uozu"] {
    margin-right: 50px;
}
.panel_cLabel[data-label="oyabe"] {
    margin-right: 50px;
}
.panel_label > input {
    position: absolute;
    z-index: 1;
    opacity: 0;
}
.panel_label > i {
    background-color: #FFF;
    border: 2px solid #053FB3;
    width: 20px;
    height: 20px;
    display: block;
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    z-index: 1;
}
.panel_label > i::before {
    content: "";
    width: 6px;
    height: 10px;
    border: 3px solid  #053FB3;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(-2px) rotate(45deg);
    border-top: none;
    border-left: none;
    opacity: 0;
    transition-duration: .3s;
    transition-property: opacity;
}
.panel_label > [type="checkbox"]:checked + i::before {
    opacity: 1;
}
.panel_label > [type="checkbox"]:checked + i + b {
    color: #053FB3;
}
.panel_label > b {
    display: block;
    font-weight: 500;
    transition-duration: .3s;
    transition-property: background-color, color;
}
.panel_cLabel {
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 1em;
}
.panel_cLabel > input {
    position: absolute;
    z-index: 1;
    opacity: 0;
}
.panel_cLabel > i {
    border: 2px solid #cdb86d;
    width: 20px;
    height: 20px;
    display: block;
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 5px;
    position: relative;
    z-index: 1;
}
.panel_cLabel > i::before {
    content: "";
    width: 6px;
    height: 10px;
    border: 3px solid #17804c;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(-2px) rotate(45deg);
    border-top: none;
    border-left: none;
    opacity: 0;
    transition-duration: .3s;
    transition-property: opacity;
}
.panel_cLabel > [type="checkbox"]:checked + i::before {
    opacity: 1;
}
.panel_cLabel > [type="checkbox"]:checked + i + b {
    color: #17804c;
}
.panel_cLabel > b {
    display: block;
    transition-duration: .3s;
    transition-property: background-color, color;
    font-weight: normal;
}
.recruitL_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.recruitL_list::after {
    content: "";
    display: block;
    clear: both;
}
.recruitL_list > li {
    width: 32%;
    margin-left: 2%;
}
.recruitL_list > li:nth-child(3n+1) {
    margin-left: 0;
}
.recruitL_list > li:nth-child(n+4) {
    margin-top: 2%;
}
.recruitL_list > li > a {
    display: block;
    text-decoration: none;
    background: #F7FBFF;
    border-radius: 5px;
    overflow: hidden;
    padding: 7px;
    height: 100%;
    box-sizing: border-box;
}
.recruitL_list > li > a.inactive {
    background: #F7F7F7;
}
.recruitL_list > li > a::before {
    content: "";
}
.recruitL_list > li > a::after {
    content: "";
}
.recruitL_image {
    position: relative;
    z-index: 1;
    padding-bottom: 75%;
    height: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition-duration: .3s;
    transition-property: opacity;
}
.recruitL_status {
    position: absolute;
    z-index: 1;
    width: 56px;
    line-height: 20px;
    border: 1px solid #17804c;
    border-radius: 20px;
    text-align: center;
    top: 5px;
    left: 5px;
    font-size: 14px;
    font-weight: bold;
}
[data-slug="regular"] {
    color: #fff;
    background-color: #17804c;
}
[data-slug="extraordinary"] {
    color: #17804c;
    background-color: #fff;
}
.recruitL_in {
    padding: 10px;
}
.recruitL_areaInfo {
    display: flex;
    align-items: center;
}
.recruitL_area {
    width: 72px;
    text-align: center;
    color: #fff;
    line-height: 22px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 5px;
}
[data-slug="western-north"] {
    background-color: #cdac2b;
}
[data-slug="western-south"] {
    background-color: #c28fcc;
}
[data-slug="eastern-north"] {
    background-color: #78bcf5;
}
[data-slug="eastern-south"] {
    background-color: #83cf4d;
}
.recruitL_areaDetail {
    font-weight: bold;
    line-height: 1.4;
}
.recruit_jf {
    font-size: 14px;
}
.recruitL_typeInfo {
    color: #053FB3;
    font-size: 13px;
    font-weight: 500;
}
.inactive .recruitL_typeInfo {
    color: #333333;
}
.recruitL_title {
    font-size: 19px;
    color: #053FB3;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.4;
    margin: 13px 0 2px;
}
.inactive .recruitL_title {
    color: #4D4D4D;
}
.recruitL_text {
    font-size: 14px;
    line-height: 1.6;
}
.recruitL_link {
    margin-top: 12px;
    height: 44px;
}
.recruit_box {
    background: #F7FBFF;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}
.recruit_areaTitle {
    background: #053FB3;
    padding: 17px 24px 17px;
}
.recruit_jfInfo {
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg, #fff 50%, rgba(255, 255, 255, 0) 50%);
    background-size: 2px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    padding-bottom: 6px;
    margin-bottom: 10px;
}
.recruit_area {
    line-height: 22px;
    width: 72px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 20px;
    margin-right: 6px;
    font-weight: bold;
}
.recruit_jfDetail {
    color: #fff;
    font-weight: 500;
}
.recruit_typeInfo {
    color: #FFF;
    font-size: 13px;
}
.recruit_areaHeadline {
    display: flex;
    align-items: center;
}
.recruit_status {
    line-height: 22px;
    width: 72px;
    border: 1px solid #FFF;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 4px;
}
.recruit_title {
    font-size: 26px;
    color: #fff;
    line-height: 1.4;
}
.recruit_in {
    padding: 23px;
}
.recruit_images {
    list-style: none;
    margin-bottom: 23px;
}
.recruit_images::after {
    content: "";
    display: block;
    clear: both;
}
.recruit_images > li {
    float: left;
    width: 32.8%;
    margin-left: .8%;
}
.recruit_images > li:nth-child(3n+1) {
    margin-left: 0;
    clear: both;
}
.recruit_images > li > a {
    display: block;
}
.recruit_images > li > a::before {
    content: "";
}
.recruit_images > li > a::after {
    content: "";
}
.recruit_images > li > a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.recruit_buttons {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.recruit_buttons > li {
    width: 288px;
    margin-left: 15px;
}
.recruit_buttons > li:first-child {
    margin-left: 0;
}
.recruit_buttons > li > a::before {
    content: "";
}
.recruit_buttons > li > a::after {
    content: "";
}
.panel_loading {
    max-width: 50px;
    margin: 10px auto 0;
    display: none;
}
.panel_loading.isShow {
    display: block;
}
.panel_loading > img {
    max-width: 100%;
    height: auto;
}
.recruit_table > tbody > tr > th {
    border: 1px solid #ebe2c4;
}
.u-table03 > tbody > tr > td {
    border: 1px solid #ebe2c4;
}
.no_recruiting {
    color: #CC0A7A;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}
.no_recruiting_msg {
    font-size: 14px;
    margin-bottom: 20px;
}
.recruit-note-box {
    background-color: #f9f6ed;
    border: 1px solid #ebe2c4;
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 20px;
}
.recruit-note-box .u-headline03 {
    color: #86755d;
}
.recruit-note-box .u-headline03::before {
    background-color: #86755d;
}
.recruit-note-box .txt {
    font-size: 14px;
}

@media screen and (min-width:1024px) {
    .panel_title:hover {
        background: #476EBB;
        color: #053FB3;
    }
    .panel_label:hover > b {
        color: #053FB3;
    }
    .panel_cLabel:hover > b {
        color: #053FB3;
    }
    .recruitL_list > li > a:hover {
        opacity: 1;
    }
    a:hover .recruitL_image {
        opacity: .7;
    }
}
@media screen and (max-width:1023px) {
    .recruit_jf {
        font-size: 12px;
    }

    .panel {
        margin-bottom: 35px;
    }
    .panel_title {
        font-size: 18px;
    }
    .panel_cols:nth-of-type(1) .panel_col-no2 {
        max-width: none;
    }
    .panel_cols:nth-of-type(2) .panel_col-no2 {
        max-width: none;
    }
    .panel_cLabel[data-label="uozu"] {
        margin-right: 1em;
    }
    .panel_cLabel[data-label="oyabe"] {
        margin-right: 1em;
    }
    .panel_label {
        font-size: 16px;
    }
    .recruitL_status {
        font-size: 12px;
        width: 46px;
        line-height: 18px;
    }
    .recruitL_in {
        padding: 0;
        margin-top: 10px;
    }
    .recruitL_area {
        font-size: 12px;
        line-height: 20px;
        width: 60px;
    }
    .recruitL_areaDetail {
        font-size: 13px;
    }
    .recruitL_title {
        font-size: 16px;
        margin: 5px 0 4px;
    }
    .recruitL_text {
        font-size: 12px;
    }
    .recruit_areaTitle {
        padding: 10px 20px;
    }
    .recruit_title {
        font-size: 22px;
    }
    .recruit_in {
        padding: 20px;
    }
    .no_recruiting {
        font-size: 20px;
    }
}
@media screen and (max-width:767px) {
    .panel {
        margin-bottom: 20px;
    }
    .panel_title {
        font-size: 16px;
        padding: 10px 10px;
    }
    .panel_title > i {
        right: 10px;
    }
    .panel_in {
        padding: 10px;
    }
    .panel_cols {
        padding: 5px 10px;
    }
    .panel_col-no1 {
        padding-right: 10px;
        margin-right: 10px;
        min-width: 68px;
        white-space: nowrap;
    }
    .panel_label {
        font-size: 14px;
    }
    .panel_label > i {
        margin-right: 5px;
        width: 16px;
        height: 16px;
    }
    .panel_col-no2 {
        flex-wrap: wrap;
    }
    .panel_cLabel > i {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
    .recruitL_list {
        max-width: 400px;
        margin: 0 auto 0;
    }
    .recruitL_list > li {
        width: 100%;
        margin: 0;
        margin-top: 10px;
    }
    .recruitL_list > li:first-child {
        margin-top: 0;
    }
    .recruit_box {
        margin-bottom: 10px;
        border-radius: 5px;
    }
    .recruit_areaTitle {
        padding: 10px;
    }
    .recruit_jfInfo {
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .recruit_area {
        font-size: 12px;
        line-height: 18px;
        width: 60px;
    }
    .recruit_areaHeadline {
        display: block;
    }
    .recruit_status {
        line-height: 16px;
        width: 60px;
        font-size: 12px;
        margin-bottom: 5px;
    }
    .recruit_title {
        font-size: 16px;
        line-height: 1.2;
    }
    .recruit_in {
        padding: 10px;
    }
    .recruit_images {
        margin-bottom: 10px;
    }
    .recruit_table {
        display: block;
    }
    .recruit_table > tbody {
        display: block;
    }
    .recruit_table > tbody > tr {
        display: block;
    }
    .recruit_table > tbody > tr > th {
        display: block;
        width: auto;
        border: none;
        padding: 5px 10px;
    }
    .recruit_table > tbody > tr > td {
        display: block;
        border: none;
        padding: 5px 10px;
    }
    .recruit_buttons {
        flex-direction: column;
    }
    .recruit_buttons > li {
        margin: 0;
        order: 1;
        width: 100%;
    }
    .recruit_buttons > li:first-child {
        order: 2;
        margin-top: 10px;
    }
    .no_recruiting {
        font-size: 16px;
    }
    .no_recruiting_msg {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .recruit-note-box {
        margin-bottom: 10px;
        padding: 16px;
    }
    .recruit-note-box .txt {
        font-size: 12px;
    }
}
