@charset "UTF-8";
.sp_disp {
    display: none;
}
.pc_disp {
    display: block;
}
@media screen and (max-width: 767px) {
    .sp_disp {
        display: block;
    }
    .pc_disp {
        display: none;
    }
}
html, body {
    font-family: var(--jp-font);
    font-size: var(--font-size);
    font-weight: 400;
    font-style: normal;
    color: var(--main-color);
    background: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    scroll-padding-top: var(--header-height);
}
body{
    position: relative;
}
._inner{
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}
@media screen and (max-width: 1024px) {
    ._inner{
        margin: 0 2.5%;
        max-width: 95%;
    }
}
@media screen and (max-width: 767px) {
    ._inner{
        margin: 0 2.5%;
        max-width: 95%;
    }
}

/* 2025.12.07 */
._index_head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 5px 0 rgba(163, 163, 163, .149);
    background: #FFFFFF;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    ._index_head{
        height: 310px;
        padding: 0.5rem 0;
    }
}
._header{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
._header_top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}
._header_h1{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}
._header_h1 h1{
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
}
@media screen and (max-width: 767px) {
    ._header_h1 h1{
        height: 2rem;
    }
}
._header_h1 ._company_name{
    display: flex;
    max-width: 40%;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
._header_h1 ._company_name {
    max-width: 100%;
}
}
._header_h1 ._company_name img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
._header ._sns_wrap{
    display: flex;
    gap: 5px;
}
._header ._sns_wrap li{
    width: 30px;
    height: 30px;
}
._header ._sns_wrap li img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
._header_bottom{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}
._header_bottom ._link_wrap{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
._header_bottom ._link_wrap li a{
    font-size: 13px;
    font-weight: 400;
    color: var(--accent-color);
}

._single_head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    padding: 1rem 0;
    box-shadow: 0 2px 5px 0 rgba(163, 163, 163, .149);
    background: #FFFFFF;
    z-index: 3;
}
@media screen and (max-width: 767px) {
    ._single_head{
        height: 140px;
        padding: 0.5rem 0;
    }
}
/* 2025.12.07 */

._index_head ._search_box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
._index_head ._search_box button{
    padding: 0.5rem 1rem;
    font-size: 14px;
}
@media screen and (max-width: 767px) {
    ._index_head ._search_box button{
        font-size: 14px;
    }
}
._index_head ._place_box{
    width: 180px;
    border: 1px solid var(--accent-color);
    border-radius: 10px 0 0 10px;
}
._index_head ._jobtype_box{
    width: 180px;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
}
._index_head ._employee_box{
    width: 180px;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
}
._index_head ._salarytype_box{
    width: 180px;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
}
._index_head ._keyword_box{
    width: 180px;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
}
._index_head ._keyword_box ._inputtype{
    font-size: 14px;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    border-radius: unset;
}
._index_head ._keyword_box ._inputtype:focus{
    border-radius: unset;
}
._index_head ._btn_box{
    width: 120px;
    background: var(--accent-color);
    color: #FFFFFF;
    border-radius: 0 10px 10px 0;
    text-align: center;
}
._index_head .job_research_btn{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    ._index_head ._place_box,
    ._index_head ._jobtype_box,
    ._index_head ._employee_box,
    ._index_head ._salarytype_box,
    ._index_head ._keyword_box,
    ._index_head ._btn_box
    {
        width: calc((100% / 6));
    }
}
@media screen and (max-width: 767px) {
    ._index_head ._place_box{
        width: 50%;
        border: unset;
        border-top: 1px solid var(--accent-color);
        border-left: 1px solid var(--accent-color);
        border-right: 1px solid var(--accent-color);
        border-radius: 10px 0 0 0;
    }
    ._index_head ._jobtype_box{
        width: 50%;
        border-top: 1px solid var(--accent-color);
        border-right: 1px solid var(--accent-color);
        border-bottom: unset;
        border-radius: 0 10px 0 0;
    }
    ._index_head ._employee_box{
        width: 50%;
        border-top: 1px solid var(--accent-color);
        border-left: 1px solid var(--accent-color);
        border-right: 1px solid var(--accent-color);
        border-bottom: unset;
    }
    ._index_head ._salarytype_box{
        width: 50%;
        border-top: 1px solid var(--accent-color);
        border-bottom: 1px solid var(--accent-color);
        border-right: 1px solid var(--accent-color);
    }
    ._index_head ._keyword_box{
        width: 50%;
        border-top: 1px solid var(--accent-color);
        border-bottom: 1px solid var(--accent-color);
        border-right: 1px solid var(--accent-color);
        border-left: 1px solid var(--accent-color);
        border-radius: 0 0 0 10px;
    }
    ._index_head ._keyword_box ._inputtype{
        width: 100%;
        height: 100%;
        border-radius: 0 0 0 10px;
        padding: 0 1rem;
    }
    ._index_head ._btn_box{
        width: 50%;
        background: var(--accent-color);
        color: #FFFFFF;
        border-radius: 0 0 10px 0;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 14px;
    }
}
._search_plus{
    display: none;
}
@media screen and (max-width: 767px) {
    ._search_plus{
        margin-top: 5px;
        font-size: 14px;
        padding: 0.3rem;
        background: var(--accent-color);
        color: #FFFFFF;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
._overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: hidden;
    z-index: 2;
    display: none;
}
._overlay_wrap {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
}
._overlay_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    height: 520px;
    background: #FFFFFF;
    z-index: 3;
    overflow: auto;
    border-radius: 10px;
}
@media screen and (max-width: 767px) {
    ._overlay_inner {
        width: 95%;
        max-width: 500px;
        padding: 1rem;
        font-size: 14px;
    }
}
._overlay_inner ._location_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 1rem;
    height: 100%;
    max-height: 100%;
}
._overlay_inner ._location_wrap ul{
    width: 100%;
    display: flex;
    flex-direction: row;
}
._overlay_inner ._location_wrap ul li{
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
}
._location_wrap li._area_link{
    border-radius: 5px 0 0 5px;
    border: 0.5px solid var(--accent-color);
}
._location_wrap li._area_link.active{
    background: var(--accent-color);
    color: #FFFFFF;
}
._location_wrap li._train_link{
    border-radius: 0 5px 5px 0;
    border: 0.5px solid var(--accent-color);
}
._location_wrap li._train_link.active{
    background: var(--accent-color);
    color: #FFFFFF;
}
._overlay_inner ._area_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
    ._overlay_inner ._area_wrap{
        gap: 1rem;
    }
}
.location_city,
.railway_line,
.job_type{
    display: none;
}
._saraly_amount{
    width: 100%;
    height: 100%;
}
._area_wrap ._prefecture_wrap,
._area_wrap ._city_wrap{
    width: calc((100% - 2rem) / 2);
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
._area_wrap ._prefecture_wrap,
._area_wrap ._city_wrap{
        width: calc((100% - 1rem) / 2);
}
}
._overlay_inner ._title{
    font-weight: bold;
    padding: 0 0 1rem 0;
}
._overlay_inner ._value{
    padding: 1rem;
    background: #FFFFFF;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
}
._overlay_inner ._value:hover{
    background: #e2f7f6;
}
._overlay_inner ._value label{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
._overlay_inner ._outline{
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    height: 300px;
}
._overlay_inner ._inner{
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* スクロールバーの横幅 */
._overlay_inner ._inner::-webkit-scrollbar{
    width: 8px;
}
/* スクロールバーの動くパーツ部分 */
._overlay_inner ._inner::-webkit-scrollbar-thumb{
    background: #c1c1c1;
    border-radius: 2px;
}
/* スクロールバーの背景部分 */
._overlay_inner ._inner::-webkit-scrollbar-track-piece:start{
    background: #f1f1f1;
}
._overlay_inner ._overlay_title{
    font-weight: bold;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 1rem 0;
}
._overlay_inner .train_station{
    margin-left: 1rem;
}
._overlay_inner ._employ_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
._overlay_inner ._job_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
._overlay_inner ._jobtype_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
    ._overlay_inner ._jobtype_wrap{
        gap: 1rem;
    }
}
._jobtype_wrap ._category_wrap,
._jobtype_wrap ._jobkind_wrap{
    width: calc((100% - 2rem) / 2);
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
._jobtype_wrap ._category_wrap,
._jobtype_wrap ._jobkind_wrap {
    width: calc((100% - 1rem) / 2);
}
}
._overlay_inner ._salary_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
._overlay_inner ._salarydetail_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
    ._overlay_inner ._salarydetail_wrap{
        gap: 1rem;
    }
}
._salarydetail_wrap ._salarytype_wrap,
._salarydetail_wrap ._salaryprice_wrap{
    width: calc((100% - 2rem) / 2);
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
._salarydetail_wrap ._salarytype_wrap,
._salarydetail_wrap ._salaryprice_wrap {
    width: calc((100% - 1rem) / 2);
}
}
._overlay_inner ._train_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
._overlay_inner ._train_wrap{
    gap: 1rem;
}
}
._train_wrap ._prefecture_wrap,
._train_wrap ._railway_wrap{
    width: calc((100% - 2rem) / 2);
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767px) {
._train_wrap ._prefecture_wrap,
._train_wrap ._railway_wrap {
    width: calc((100% - 1rem) / 2);
}
}
.train_station{
    display: none;
}
._overlay_btn{
    display: flex;
    gap: 1rem;
    margin: 0 auto;
    font-size: 14px;
}
._research_btn{
    background: var(--sub-color);
    padding: 0.5rem 2rem;
    border-radius: 5px;
}
._clear_btn{
    padding: 0.5rem 2rem;
    border-radius: 5px;
    border: 1px solid var(--sub-color);
    cursor: pointer;
}
@media screen and (max-width: 767px) {
._research_btn{
    padding: 0.5rem 1rem;
}
._clear_btn{
    padding: 0.5rem 1rem;
}
}
._sub_search_overlay{
    display: none;
    padding: 1rem 0;
}
._sub_search_overlay h3{
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--accent-color);
    text-align: center;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #C0BBBB;
    margin: 0 0 1rem 0;
}
._search_cnt{
    display: inline-flex;
    background: #e81906;
    color: #FFFFFF;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-left: 1rem;
}
/* 2025.12.07 */
._result{
    width: 100%;
    margin-top: 200px;
}
@media screen and (max-width: 767px) {
    ._result{
        margin-top: 310px;
    }
}
/* 2025.12.07 */
._result_value{
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 2rem;
    font-size: 2rem;
}
@media screen and (max-width: 767px) {
    ._result_value{
        padding: 1rem;
    }
}
._result_value span{
    font-size: 1rem;
    margin-left: 0.5rem;
}

._list_wrap{
    width: 100%;
}
._list_wrap ._list_inner{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
@media screen and (max-width: 1024px) {
    ._list_wrap ._list_inner{
        gap: 1rem;
    }
}
._list_left{
    width: calc(70% - 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._list_left{
        width: calc(70% - 0.5rem);
    }
}
@media screen and (max-width: 767px) {
    ._list_left{
        width: 100%;
    }
}
._list_left article{
    width: 100%;
    padding: 1rem;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 10px;
}
._list_left ._article_wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    ._list_left ._article_wrap{
        gap: 0.5rem;
    }
}
._list_left ._article_wrap ._article_inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._list_left ._article_wrap ._article_inner{
        flex-direction: column;
    }
}
._article_icons{
    width: 100%;
    font-size: 12px;
    font-weight: 200;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
._article_icons span{
    padding: 0 0.5rem;
    border: 1px solid #908C8C;
    border-radius: 5px;
}
._article_left{
    width: calc(40% - 0.5rem);
    overflow: hidden;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 1024px) {
    ._article_left{
        width: 100%;
    }
}
._article_left .swiper-wrapper{
    width: 100%;
    height: auto;
}
._article_img{
    width: 100%;
    height: auto;
}
._article_img img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1024px) {
    ._article_left .swiper-pagination-bullet{
        background: #FFFFFF;
    }
}
._article_left .swiper-pagination-bullet-active{
    background: var(--accent-color);
}
._list_left ._article_wrap ._article_place{
    width: 100%;
}
._list_left ._article_wrap ._employtype{
    font-size: 14px;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 5px;
}
._list_left ._article_wrap ._title_wrap{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
._list_left ._article_wrap h2{
    width: 100%;
    font-weight: bold;
    color: var(--accent-color);
}
._list_left ._article_wrap h2:hover{
    text-decoration: underline;
}
._list_left ._article_wrap ._title_sub{
    font-size: 0.9rem;
}
._article_right{
    width: calc(60% - 0.5rem);
    font-size: 14px;
}
@media screen and (max-width: 1024px) {
    ._article_right{
        width: 100%;
    }
}
._article_right dl{
    display: flex;
    border-top: 0.5px solid #C0BBBB;
    padding: 0.5rem 0 1rem 0;
}
._article_right dl dt{
    width: 20%;
}
._article_right dl dd{
    width: 80%;
}
._article_btn{
    width: 100%;
    display: flex;
    gap: 1rem;
    font-size: 14px;
    padding-top: 1rem;
}
._article_tel{
    width: 50%;
    border-radius: 5px;
    background: var(--sub-color);
    padding: 0.5rem 0;
    text-align: center;
    cursor: pointer;
    flex-grow: 1;
}
._article_mail{
    width: 50%;
    border-radius: 5px;
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 0.5rem 0;
    text-align: center;
    flex-grow: 1;
}
._list_right{
    width: calc(30% - 1.5rem);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 10px;
    padding: 1rem;
    position: sticky;
    top: 240px;
    bottom: 90px;
    z-index: 0;
}
@media screen and (max-width: 1024px) {
    ._list_right{
        width: calc(30% - 0.5rem);
    }
}
@media screen and (max-width: 767px) {
    ._list_right{
        display: none;
    }
}
._list_right h3{
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #C0BBBB;
    margin: 0 0 1rem 0;
}
._sub_search_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
._sub_search_wrap {
    margin: 0 0 1rem 0;
}
}
._sub_search_inner{
    width: 100%;
    display: flex;
    flex-direction: column;
}
._sub_search_inner dt{
    font-weight: bold;
    color: var(--accent-color);
    padding: 0 0 1rem 0;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 1024px) {
    ._sub_search_inner dt{
        padding: 0 0 1rem 0;
    }
}
._sub_search_inner dt::after {
    transform: translateY(-25%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    content: '';
    transition: transform .3s;
    position: absolute;
    top: 0.5rem;
    right: 0;
}
@media screen and (max-width: 1024px) {
    ._sub_search_inner dt::after {
        right: 0;
    }
}
._sub_search_dt.open::after {
    transform: translateY(-25%) rotate(-135deg);
}
._sub_search_inner dd{
    padding: 1rem 0 0 0;
    display: none;
}

._sub_search_item label{
    font-size: 14px;
    display: flex;
    gap: 1rem;
}
label, input[type='checkbox'] {
    cursor: pointer;
}
._sub_btn_box{
    background: var(--accent-color);
    color: #FFFFFF;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    padding: 0.3rem 0;
}


/* single */
/* 2025.12.07 */
._breadcrumbs{
    width: 100%;
    margin-top: 130px;
    font-size: 12px;
}
@media screen and (max-width: 767px) {
    ._breadcrumbs{
        margin-top: 140px;
    }
}
/* 2025.12.07 */
._breadcrumbs ul{
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5rem;
    padding: 1rem 0;
}
._breadcrumbs li{
    display: inline-block;
}
._breadcrumbs li a{
    color: var(--accent-color);
    position: relative;
}
._breadcrumbs li a:hover{
    text-decoration: underline;
}
/* 2025.12.07 */
._breadcrumbs li a::after {
    content: '>';
    margin-left: 1rem;
    color: #555;
}
/* 2025.12.07 */
._single_wrap{
    width: 100%;
}
._single_inner{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
@media screen and (max-width: 1024px) {
    ._single_inner{
        gap: 1rem;
    }
}
._single_info{
    width: calc(70% - 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}
@media screen and (max-width: 1024px) {
    ._single_info{
        width: calc(70% - 0.5rem);
    }
}
@media screen and (max-width: 767px) {
    ._single_info{
        width: 100%;
    }
}
._recruit_head{
    width: 100%;
    padding: 1rem;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    ._recruit_head{
        gap: 0.5rem;
    }
}
._recruit_head ._recruit_type span{
    font-size: 14px;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 5px;
}
._recruit_head ._title_wrap{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
._recruit_head h2{
    width: 100%;
    font-weight: bold;
    color: var(--accent-color);
}
._recruit_head ._title_sub{
    font-size: 0.9rem;
}
._recruit_icons{
    width: 100%;
    font-size: 12px;
    font-weight: 200;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
._recruit_icons span{
    padding: 0 0.5rem;
    border: 1px solid #908C8C;
    border-radius: 5px;
}
._recruit_salary{
    width: 100%;
    font-weight: bold;
}
._recruit_transportation{
    font-size: 0.9rem;
    font-weight: 400;
}
._recruit_gallery{
    width: 100%;
    display: flex;
    gap: 0.5rem;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
._recruit_gallery .swiper-wrapper{
    width: 100%;
    height: auto;
}
._recruit_img{
    width: 100%;
    height: auto;
}
._recruit_img img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
._recruit_gallery .swiper-pagination-bullet-active{
    background: var(--accent-color);
    z-index: 1;
}

._recruit_info,
._recruit_flow,
._recruit_youtube,
._recruit_company{
    width: 100%;
    padding: 1rem;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
}
._recruit_info h3,
._recruit_flow h3,
._recruit_company h3{
    width: 100%;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-color);
}
._recruit_youtube h3{
    height: 1.5rem;
}
._recruit_youtube h3 img{
    object-fit: contain;
    width: auto;
    height: 100%;
}
._recruit_info_inner{
    display: flex;
    flex-direction: column;
}
._recruit_info_inner dl{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-top: 0.5px dashed #868484;
    padding: 1rem 0;
}
@media screen and (max-width: 767px) {
    ._recruit_info_inner dl{
        flex-direction: column;
        gap: 0.5rem;
    }
}
._recruit_info_inner dt{
    width: 20%;
    font-weight: bold;
    color: var(--accent-color);
}
@media screen and (max-width: 767px) {
    ._recruit_info_inner dt{
        width: 100%;
    }
}
._recruit_info_inner dd{
    width: 80%;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    ._recruit_info_inner dd{
        width: 100%;
    }
}
._recruit_info_inner dd ._mark,
._recruit_flow_inner dd ._mark {
    font-weight: bold;
}
._recruit_info_inner ._maparea,
._recruit_flow_inner ._maparea{
    width: 100%;
    height: 300px;
    margin-top: 0.5rem;
}
._recruit_info_inner ._maparea iframe,
._recruit_flow_inner ._maparea iframe{
    width: 100%;
    height: 100%;
}
.environment_wrap{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.environment_inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 1rem;
}
.environment_inner h4 {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}
.environment_value {
    width: 100%;
    display: flex;
}
.environment_value._row5::after {
    content: '';
    background-color: #dadada;
    position: absolute;
    left: 10%;
    width: 80%;
    height: 2px;
}
.environment_item{
    position: relative;
}
.environment_value .environment_item._row5{
    width: calc(100% / 5);
    position: relative;
}
.environment_value .environment_item._row5::after {
    content: '';
    background-color: #CCCCCC;
    background-repeat: no-repeat;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    position: absolute;
    top: -3.5px;
    left: calc(((100% - 20px) / 2) + 5px);
    z-index: 1;
}
.environment_txt{
    width: 100%;
    display: flex;
}
.environment_txt .environment_item._row5{
    width: calc(100% / 5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
.environment_item ._current{
    background-color: var(--accent-color);
    background-repeat: no-repeat;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    position: absolute;
    top: -6px;
    left: calc(((100% - 30px) / 2) + 7.5px);
    z-index: 2;
}
._recruit_flow_inner{
    display: flex;
    flex-direction: column;
}
._recruit_flow_inner dl{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-top: 0.5px dashed #868484;
    padding: 1rem 0;
}
@media screen and (max-width: 767px) {
    ._recruit_flow_inner dl{
        flex-direction: column;
        gap: 0.5rem;
    }
}
._recruit_flow_inner dt{
    width: 20%;
    font-weight: bold;
    color: var(--accent-color);
}
@media screen and (max-width: 767px) {
    ._recruit_flow_inner dt{
        width: 100%;
    }
}
._recruit_flow_inner dd{
    width: 80%;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    ._recruit_flow_inner dd{
        width: 100%;
    }
}
._recruit_company_inner{
    display: flex;
    flex-direction: column;
}
._recruit_company_inner dl{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-top: 0.5px dashed #868484;
    padding: 1rem 0;
}
@media screen and (max-width: 767px) {
    ._recruit_company_inner dl{
        flex-direction: column;
        gap: 0.5rem;
    }
}
._recruit_company_inner dt{
    width: 20%;
    font-weight: bold;
    color: var(--accent-color);
}
@media screen and (max-width: 767px) {
    ._recruit_company_inner dt{
        width: 100%;
    }
}
._recruit_company_inner dd{
    width: 80%;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    ._recruit_company_inner dd{
        width: 100%;
    }
}
._jobposting_no{
    font-size: 14px;
    font-weight: 300;
    padding: 0 1rem;
}
._recruit_yt_inner{
    display: flex;
    flex-direction: column;
}
._recruit_yt_inner dl{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-top: 0.5px dashed #868484;
    padding: 1rem 0;
}
@media screen and (max-width: 767px) {
    ._recruit_yt_inner dl{
        flex-direction: column;
        gap: 0.5rem;
    }
}
._recruit_yt_inner dt{
    width: 20%;
    font-weight: bold;
    color: var(--accent-color);
}
@media screen and (max-width: 767px) {
    ._recruit_yt_inner dt{
        width: 100%;
    }
}
._recruit_yt_inner dd{
    width: 80%;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    ._recruit_yt_inner dd{
        width: 100%;
    }
}
._recruit_yt_inner iframe{
    width: 100%;
    height: 400px;
}
._recruit_date{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
    padding: 1rem 0;
}
@media screen and (max-width: 767px) {
    ._recruit_date{
        flex-direction: column;
        gap: 0.5rem;
    }
}
._recruit_date dl{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    font-size: 14px;
}
._recruit_date dt{
    font-weight: 300;
}
._recruit_date dd{
    font-weight: 100;
}
._recruit_link{
    width: 100%;
    display: flex;
    justify-content: center;
}
._recruit_link a{
    width: 80%;
    background: #F3F2F2;
    font-weight: 100;
    padding: 1rem 0;
    text-align: center;
    border-radius: 10px;
}

._single_nav{
    width: calc(30% - 1.5rem);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 10px;
    padding: 1rem;
    position: sticky;
    top: 0;
    bottom: 90px;
    z-index: 0;
}
@media screen and (max-width: 1024px) {
    ._single_nav{
        width: calc(30% - 0.5rem);
    }
}
@media screen and (max-width: 767px) {
    ._single_nav{
        display: none;
    }
}
._single_nav h2{
    width: 100%;
    color: var(--accent-color);
    font-weight: bold;
}
._single_nav_inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
._recruit_nav_btn{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
._recruit_nav_btn li{
    width: 100%;
    font-size: 14px;
}
._recruit_btn_mail{
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 0.5rem 0;
    text-align: center;
}
._recruit_btn_tel{
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    background: var(--sub-color);
    padding: 0.5rem 0;
    text-align: center;
    cursor: pointer
}
._recruit_nav_link{
    width: 100%;
    display: flex;
    flex-direction: column;
}
._recruit_nav_link li{
    width: 100%;
    color: var(--accent-color);
}
._recruit_sub_link{
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
}
._recruit_sub_link li{
    width: 100%;
    color: var(--main-color);
}
._recruit_nav_link a{
    font-weight: 200;
}
._recruit_nav_link a.active{
    font-weight: bold;
}
a.anchor{
    display: block;
    padding-top: 10px;
    margin-top: -10px;
}

footer{
    margin-top: 200px;
    width: 100%;
    background: var(--main-color);
    color: #FFFFFF;
}
@media screen and (max-width: 767px) {
    footer{
        padding-bottom: 65px;
    }
}
._footer_inner{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}
@media screen and (max-width: 767px) {
    ._footer_inner{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
}
/* 2025.12.07 */
._copyright{
    font-size: 14px;
}
@media screen and (max-width: 767px) {
    ._copyright{
        font-size: 12px;
        text-align: center;
    }
}
/* 2025.12.07 */
._privacy{
    font-size: 14px;
}
._fixed_btn{
    display: none;
}
@media screen and (max-width: 767px) {
    ._fixed_btn{
        display: block;
        width: 100%;
        position: fixed;
        bottom: 1rem;
        left: 0;
    }
    ._fixed_btn ._fixed_job{
        width: 95%;
        display: flex;
        flex-direction: row;
        margin: 0 auto;
    }
    ._fixed_btn ._fixed_job li{
        width: calc(100% / 3);
        font-size: 12px;
        flex-grow: 1;
    }
    ._fixed_job ._fixed_btn_top{
        display: inline-block;
        width: 100%;
        background: #CCCCCC;
        padding: 1rem;
        text-align: center;
    }
    ._fixed_btn_mail{
        display: inline-block;
        width: 100%;
        background: var(--accent-color);
        color: #FFFFFF;
        padding: 1rem 0.5rem;
        text-align: center;
    }
    ._fixed_btn_tel{
        display: inline-block;
        width: 100%;
        background: var(--sub-color);
        padding: 1rem 0.5rem;
        text-align: center;
    }
    ._fixed_btn ._fixed_index{
        width: 95%;
        display: flex;
        flex-direction: row;
        margin: 0 auto;
    }
    ._fixed_btn ._fixed_index li{
        width: 100%;
        font-size: 12px;
    }
    ._fixed_index ._fixed_btn_top{
        display: inline-block;
        width: 100%;
        background: #CCCCCC;
        padding: 0.5rem 0;
        text-align: center;
    }
}
.policy_wrap{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media screen and (max-width:767px) {
    .policy_wrap{
        gap: 3vw;
    }
}
.policy_wrap h2{
    font-weight: bold;
    font-size: 1.3rem;
}

.policy_wrap .policy_inner {
    display: flex;
    flex-direction: column;
    gap: 3vw;
    line-height: 1.6;
}
.policy_wrap .policy_inner dt{
    font-weight: bold;
}

._overlay_tel{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: hidden;
    z-index: 3;
    display: none;
}
._overlay_tel_wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    z-index: 4;
}
._overlay_tel_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    background: #FFFFFF;
    z-index: 5;
    overflow: auto;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 767px) {
    ._overlay_tel_inner {
        width: 95%;
        max-width: 400px;
        padding: 1rem;
        font-size: 14px;
    }
}
._overlay_tel_inner h4{
    font-size: 1rem;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 1rem;
}
._overlay_tel_inner dl {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}
._overlay_tel_inner dl ._mark {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}
._overlay_tel_inner dt {
    width: 30%;
}
._single_btn{
    width: 100%;
    display: flex;
    gap: 1rem;
    font-size: 14px;
    padding-top: 1rem;
}
._single_tel{
    width: 50%;
    border-radius: 5px;
    background: var(--sub-color);
    padding: 0.5rem 0;
    text-align: center;
    cursor: pointer;
    flex-grow: 1;
}
._single_mail{
    width: 50%;
    border-radius: 5px;
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 0.5rem 0;
    text-align: center;
    flex-grow: 1;
}


