/* recruit_message-tab.css */



.recruit_message {
    background: #fff;
    padding: 10rem 0 0 0;
}

#recruit_message__area {}

.recruit_message__menu {
    width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 0 auto;

}

.recruit_message__menu-item {
    width: 270px;
    padding: 1.5rem 4.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    color: #B6B6B6;
    border-radius: 10px 10px 0 0;
    background: #fff;
    cursor: pointer;
    position: relative;
    list-style: none;
}

.recruit_message__menu-item::after {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #B6B6B6;
    position: absolute;
    top: 16px;
    right: -1px;
    z-index: 2;
}

.recruit_message__menu-item:last-of-type::after,
.recruit_message__menu-item.is-active::after {
    display: none;
}

.recruit_message__menu-item.is-active::before {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #00A5A5;
    position: absolute;
    top: 16px;
    right: 0px;
    z-index: 2;
}

.recruit_message__menu-item.is-active::after {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #00A5A5;
    position: absolute;
    top: 16px;
    left: 0px;
    z-index: 2;
}

.recruit_message__menu .is-active {
    background: #00A5A5;
    color: #fff;
    cursor: default;

}

.recruit_message__body {
    /* width: 1080px; */
    display: none;
    /* padding: 6rem 4.8rem 20rem; */
    /* margin: 0 auto; */
}

.recruit_message__contain {
    border-top: 2px solid #00A5A5;
}

.recruit_message__contain .is-active {
    display: block;

}

.small-txt {
    font-size: 1.3rem;
    /* color: #fff; */
}