@charset "UTF-8";


/*======================
     グローバルナビ 
=======================*/

#g-nav {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFF9EB;
    transition: .4s;
    margin-top: 70px;
    /* padding: 0 20px; */
    z-index: -1;
}

#g-nav.panelactive {
    display: block;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: scroll;
    /* -webkit-overflow-scrolling: touch; */
    padding: 0 20px;
}


/* #g-nav li:first-of-type {
    border-top: 1px solid #D3CAC4;
} */

#g-nav li {
    border-bottom: 1px solid #D3CAC4;
}

#g-nav li:last-of-type {
    border-bottom: none;
    margin-top: 29px;
}

/* 
#g-nav.panelactive ul {
    display: block;
} */

#g-nav li a {
    padding: 20px 0 25px;
    display: block;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Zen Maru Gothic', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

#g-nav li:last-of-type a {
    border-radius: 30px;
    width: 270px;
    min-height: 60px;
    padding: 16px 0;
    margin: 0 auto;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 62px;
}

/*===============
ボタンのためのCSS 
===============*/

.openbtn {
    position: fixed;
    z-index: 999;
    top: 10px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #40220F;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


/*=======================
 PCアコーディオン部分
==========================*/


ul.main_nav li {
    position: relative;
}


ul.main_nav_child li {
    text-align: center;
}


nav li.has-child {
    padding-right: 20px;
    position: relative;
    background-image: url(../images/parts_accordion.svg);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: right center;
}

nav li.has-child ul.main_nav_child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: 60px; */
    top: 45px;
    z-index: 10;
    width: 100%;
    background-color: #fff;
    visibility: hidden;
    opacity: 0; 
    transition: ease-in-out .3s;  
    box-sizing: content-box;
    padding: 10px 16px;
}


nav li.has-child ul.main_nav_child li a {
    min-height: 48px;
    line-height: 48px;
}


.main_nav li.has-child:hover {
    background-image: url(../images/parts_accordion_re.svg);
}

nav li.has-child span img {
    position: absolute;
    z-index: 30;
}


li.has-child:hover ul.main_nav_child {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%,15px);
    transition: opacity .3s ease, transform 0.3s ease;
  }


.has-child_a {
    cursor: pointer;
}


/* @keyframes slide-down {
    0% {
        transform: translate(-50%, -15px);
    }

    100% {
        transform: translate(-50%, 0px);
    }
}      */




/*=======================
 タブとページネーション
==========================*/

.news_area_tab .contents div {
    display: flex;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid #D3CAC4;
}

.news_area_tab .contents p {
    width: 100%;
}

.news_area_tab .contents span {
    width: calc(100% / 8);
    font-weight: bold;
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
}

.news_area_tab .contents div span:first-of-type {
    width: 120px;
    line-height: 30px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #3CAB84;
    color: #3CAB84;
}

#jquery-tab-pager-navi {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 50px;
}

#jquery-tab-pager-navi li:first-of-type a,
#jquery-tab-pager-navi li:last-of-type a {
    background-image: url(../images/nation_page_btn_lef.png);
    background-size: 35px 35px;
    background-position: center center;
}

#jquery-tab-pager-navi li:last-of-type a {
    background-image: url(../images/nation_page_btn_right.png);
}


#jquery-tab-pager-navi li a {
    text-align: center;
    color: #3CAB84;
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 24px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

#jquery-tab-pager-navi li a.current {
    background-color: #3CAB84;
    color: #fff;
}

/* #jquery-tab-pager-navi li a:focus {
    background-color: #3CAB84;
    color: #fff;
} */

#jquery-tab-pager-navi .disable {
    filter: grayscale(100%);
}


@media screen and (max-width: 768px) {
    #jquery-tab-pager-navi {
        margin-top: 30px;
    }

    #jquery-tab-pager-navi li a {
        font-size: 20px;
    }
}



/*=======================
 ページネーション採用ページ
==========================*/

.interview_pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 164px;
    margin: 30px auto 0;
}

.interview_clearfix {
    display: none;
}

p.page-info {
    order: 2;
    color: #3CAB84;
    font-weight: bold;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
}

.interview_prev-page {
    order: 1;
}


.interview_next-page,
.interview_prev-page {
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-size: 35px;
    background-position: center;
}

.interview_next-page {
    order: 3;
    background-image: url(../images/nation_interview_btn_right.png);
}

.interview_prev-page {
    order: 1;
    background-image: url(../images/nation_interview_btn_lef.png);
}

.interview_pagination .interview_disabled {
    filter: grayscale(100%);
}


@media screen and (max-width: 768px) {
    .recru_interv_sec_inner section.recru_interv_items div {
        width: 100%;
    }
}