/* recruit top visual */
.recruit_visual {
    padding-top: 310px;
    padding-bottom: 200px;
}
.recruit_visual p {
    font-family: 'FF Good Pro', 'Spoqa Han Sans Neo', '맑은 고딕', Dotum;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 26px;
}
.recruit_visual .main_title {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.5;
}

/* recruit benefit */
.recruit_company {
    padding-top: 0;
    padding-bottom: 200px;
    overflow: hidden;
}
.recruit_company .content_layout {
    display: flex;
    flex-wrap: wrap;
}
.recruit_company .benefit_item {
    float: left;
    width: 50%;
    padding: 50px 70px;
    box-sizing: border-box;
    position: relative;
    border: 1px solid #c4c4c4;
    border-bottom: none;
}
.recruit_company .benefit_item:nth-child(odd) {
    border-left: none;
    border-right: none;
}
.recruit_company .benefit_item:nth-child(even) {
    border-right: none;
}
.recruit_company .benefit_item:nth-child(-n+2) {
    border-top: none;
}
.recruit_company .benefit_item img {
    width: 78px;
}
.recruit_company .benefit_item .on {
    display: none;
}
.recruit_company .benefit_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
}
.recruit_company .benefit_item.active::after {
    border: 4px solid #000;
}
.recruit_company .benefit_item.active .on {
    display: block;
}
.recruit_company .benefit_item.active .off {
    display: none;
}

.recruit_company .benefit_item .title {
    font-size: 32px;
    font-weight: bold;
    margin-top: 78px;
    line-height: 1.5;
}
.recruit_company .benefit_item ul {
    margin-top: 50px;
    margin-left: 12px;
}
.recruit_company .benefit_item ul li {
    font-size: 22px;
    color: #757575;
    list-style: disc;
    line-height: 1.8;
}

/* recruit list */
.recruit_part {
    padding-bottom: 200px;
}
.recruit_part h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 65px;
}
.recruit_part li .title {
    position: relative;
    height: 138px;
    border-top: 1px solid #e5e5e5;
    
}
.recruit_part li:last-child .title {
    border-bottom: 1px solid #e5e5e5;
}
.recruit_part li .title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #808996;
    transition: height 400ms cubic-bezier(0.77, 0, 0.175, 1);
    will-change: height;
}
.recruit_part li.active .title::before {
    height: 100%;
} 
.recruit_part li .title strong {
    font-size: 32px;
    transition: color .3s cubic-bezier(.52,.24,.08,1);
}
.recruit_part li .title span {
    margin-left: 20px;
    font-size: 24px;
    color: #c4c4c4;
}

.recruit_part li .title .content_layout {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.recruit_part li .title .accodian_arrow {
    width: 44px;
    color: #c4c4c4;
    transition: transform .3s cubic-bezier(.52,.24,.08,1);
}
.recruit_part li.active .title .accodian_arrow {
    color: #fff;
    transform: rotate(180deg);
}

.recruit_part li.active .title {
    font-weight: bold;
    border-bottom: 1px solid #e5e5e5;
}
.recruit_part li.active .title strong{
    color: #fff;
}

.recruit_part .desc {
    display: none;
    overflow: hidden;
}
.recruit_part li.active .desc {
    box-sizing: border-box;
}
.recruit_part .desc .content_layout {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
}
.recruit_part .desc .content_layout dl {
    width: 50%;
    margin-bottom: 58px;
}
.recruit_part .desc .content_layout dl dt {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 32px;
}
.recruit_part .desc .content_layout dl dd {
    font-size: 20px;
    color: #757575;
    line-height: 1.8;
}

/* 채용절차 */
.recruit_process {
    padding-top: 0;
    padding-bottom: 200px;
}
.recruit_process h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 65px;
}

.recruit_process .process_wrap {
    background: #f6f6f6;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: 62px 100px 45px;
}
.recruit_process .process_map {
    display: flex;
    justify-content: space-between;
}
.recruit_process .process_map li {
    position: relative;
}
.recruit_process .process_map li:not(:last-child):after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: -70px;
    width: 22px;
    height: 14px;
    background-image: url(/assets/05_Recruit/Recruit_process_arrow.svg);
    background-size: 22px 14px;
}
.recruit_process .process_map li div {
    text-align: center;
    margin-bottom: 32px;
}
.recruit_process .process_map li img {
    width: 32px;
}
.recruit_process .process_map li .process_name {
    font-size: 24px;
}

.recruit_process .notice {
    margin-top: 50px;
    margin-left: 12px;
}
.recruit_process .notice li {
    list-style-type: disc;
    color: #757575;
    line-height: 1.8;
}

.recruit_support {
    padding-top: 0;
}
.recruit_support h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 95px;
}


@media screen and (max-width: 768px) {
    .recruit_visual {
        padding-top: 38.89vw;
        padding-bottom: 38.89vw;
    }
    .recruit_visual p {
        font-size: 4.44vw;
        margin-bottom: 6.67vw;
    }
    .recruit_visual .main_title {
        font-size: 8.33vw;
    }
    .recruit_company {
        padding-bottom: 33.33vw;
    }
    .recruit_company .content_layout {
        flex-direction: column;
    }
    .recruit_company .benefit_item {
        width: 100%;
        border: none;
        border-bottom: 1px solid #c4c4c4;
        padding: 11.11vw 5.56vw;
    }
    .recruit_company .benefit_item img {
        width: 16.67vw;
    }
    .recruit_company .benefit_item .title {
        font-size: 5.56vw;
        margin-top: 8.89vw;
        word-break: keep-all;
    }
    .recruit_company .benefit_item ul {
        margin-top: 8.33vw;
        margin-left: 5.56vw;
    }
    .recruit_company .benefit_item ul li {
        font-size: 3.61vw;
    }
    .recruit_company .benefit_item ul li::marker {
        margin-right: 0;
    }

    .recruit_part {
        padding-top: 0;
        padding-bottom: 33.33vw;
    }
    .recruit_part h2 {
        font-size: 6.67vw;
        margin-bottom: 13.61vw;
        padding: 0;
    }
    .recruit_part li .title {
        height: 25vw;
    }
    .recruit_part li .title strong {
        font-size: 5.56vw;
    }
    .recruit_part li .title span {
        font-size: 3.89vw;
    }
    .recruit_part li .title .accodian_arrow {
        width: 6.94vw;
    }

    .recruit_part .desc .content_layout {
        padding: 13.89vw 5.56vw;
    }
    .recruit_part .desc .content_layout dl {
        width: 100%;
        margin-bottom: 13.89vw;
    }
    .recruit_part .desc .content_layout dl:last-child {
        margin-bottom: 0;
    }
    .recruit_part .desc .content_layout dl dt {
        font-size: 4.44vw;
        margin-bottom: 6.25vw;
    }
    .recruit_part .desc .content_layout dl dd {
        font-size: 3.89vw;
    }
    
    .recruit_process {
        position: relative;
        padding-bottom: 62.50vw;
    }
    .recruit_process h2 {
        font-size: 6.67vw;
        margin-bottom: 13.61vw;
        padding: 0;
    }
    
    .recruit_process .content_layout {
        padding: 0;
        padding-left: 5.56vw;
    }
    .recruit_process .process_wrap {
        overflow-x: auto;
        border-top-left-radius: 13.89vw;
        border-bottom-right-radius: 8.89vw;
        padding: 13.89vw 20.83vw;
    }
    .recruit_process .process_map {
        width: 194.44vw;
    }
    .recruit_process .process_map li:not(:last-child):after {
        bottom: 40%;
        right: -12.50vw;
        width: 4.17vw;
        background-size: 4.17vw 14px;
    }
    .recruit_process .process_map li img {
        /* width: 5.56vw; */
    }
    .recruit_process .process_map li .process_name {
        font-size: 3.89vw;
    }
    .recruit_process .notice {
        position: absolute;
        left: 5.5vw;
        bottom: 37vw;
        font-size: 3.61vw;
    }
    .recruit_support {
        padding-bottom: 33.33vw;
    }
    .recruit_support h2 {
        font-size: 6.67vw;
        margin-bottom: 13.61vw;
        padding: 0;
    }
}