/* 最低限タブが機能するのに必要なスタイル*/
.tab_item {}

.tab_item>.cont-main {
    opacity: 0;
    transition: .5s ease all;
    position: relative;
    top: 120px;
    height: 0;
    pointer-events: none
}

.tab_item.is-active-item>.cont-main {
    opacity: 1;
    transition: .5s ease all;
    position: relative;
    top: 0;
    height: auto;
    pointer-events: all;
}

.tab-item-area {
    position: relative;
}

/* ******* 主要修改部分 ******** */
#tab-recruit-information .tab-item-area .tab_item {
    padding-top: 0;
    position: absolute;
    top: 0;
    /* 必须要设定宽度 */
    width: 100%;
}

#tab-recruit-information .tab-item-area .tab_item.is-active-item {
    /* 其实最好使用下面两行padding+margin来取消页头的遮蔽，但在这里无法正常运作，只能使用下面的scroll-margin-top */
    /*     padding-top: 130px; */
    /*     margin-top: -130px; */
    position: relative;
    top: 0;
    /* 这是最主要的，跳转到指定位置后，因为会被页头遮住一部分，所以使用此命令再滑动一部分，此处的150px为最小的手机版的滑动距离 */
    scroll-margin-top: 150px;
}

/* 平板的滑动距离 */
@media (min-width: 768px) {
    #tab-recruit-information .tab-item-area .tab_item.is-active-item {
        scroll-margin-top: 200px;
    }
}

/* 电脑的滑动距离 */
@media (min-width: 992px) {
    #tab-recruit-information .tab-item-area .tab_item.is-active-item {
        scroll-margin-top: 250px;
    }
}

/* ******* 这里为止 ******** */

.tab-menu .tab_btn {
    cursor: pointer;
}

/* おわり */
#tab-recruit-information.tab-recruit .tab-btn-area .tab_btn {
    color: #dc8d14;
    background: #fff;
    border: 1px solid #dc8d14;
    border-radius: 50px;
    min-width: 222px;
    overflow: hidden;
    text-align: center;
}

#tab-recruit-information.tab-recruit .tab-btn-area .tab_btn:hover,
#tab-recruit-information.tab-recruit .tab-btn-area .tab_btn.is-active-btn {
    color: #fff;
    background: #dc8d14;
    border-radius: 50px;
}



.text.ttl-14 {
    font-weight: 24px;
    font-weight: 400;
}

.table-base dl dt {
    color: #fff;
    background-color: #dc8d14;
}

.button-center a {
    border: transparent;
    background: transparent;
    border-radius: 0;
}

.button-center a svg {
    fill: #fff;
    position: relative;
    top: inherit;
    transform: inherit;
    right: -14px;
    background-color: #dc8d14;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    transition: .5s ease all;
}

.button-center a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-center .box {
    color: #dc8d14;
}

.button-center a {
    width: 210px;
    margin: auto;
    transition: .5s ease all;
}

.button-center a:hover {
    background-color: transparent;
}

.button-center a:hover svg {
    background-color: transparent;
    fill: #dc8d14;
}

.button-center a:hover .box {
    color: #000;
    transition: .5s ease all;
}

.table-dl.table-base {
    box-shadow: 1px 6px 10px 5px rgb(232 234 231);
}

.tab-item-area .ttl-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}








@media (min-width: 992px) {
    .tab-btn-area {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .select {
        font-size: 16px;
        font-weight: 400;
        color: #dc8d14;
        display: flex;
        align-items: center;
        border-right: 2px dotted #dc8d14;
        padding-right: 20px;
        margin-right: 20px;

    }
}

@media (max-width: 992px) {
    .tab-btn-area {
        display: block;
        justify-content: center;
        margin-bottom: 20px;
    }

    .select {
        font-size: 16px;
        font-weight: 400;
        color: #dc8d14;
        display: flex;
        align-items: center;
        border-bottom: 2px dotted #dc8d14;
        padding-right: 20px;
        margin-right: 20px;
        justify-content: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-right: transparent;

    }
}