
/*레이어팝업*/
.layer_background{
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 100;
    position: fixed;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(0, 0, 0,0.5);
    transition: 0.7s all;
}

.layer_background.hide{
    opacity: 0;
    z-index: 0;
}


.layer_background > div{
    width: 128rem;
    background: #fff;
    padding: 2rem;
}


.recruitment_pop .lp_close {
    height: auto;
    padding: 0.5rem 1.05rem;
    background: #000;
    border-radius: 0;
    transform: translateY(-50%);
    color: #fff;
    vertical-align: middle;
    position: relative;
    bottom: 635px;
    left: 1150px;
    display: flex;
    align-items: center;
    width: 85px;
    justify-content: center;
}



@media (max-width: 1640px) {
    .recruitment_pop .lp_close{
        bottom: 70rem;
        left: 115rem;
    }
}
@media (max-width: 1280px) {
    .recruitment_pop .lp_close{
        bottom: 79rem;
        left: 113rem;
    }
}
@media (max-width: 1110px) {
    .layer_background > div {
        width: 100%;
    }

    .recruitment_pop .lp_close{
        bottom: 79rem;
        left: 92%;
    }
}

@media (max-width: 768px) {
    .recruitment_pop .lp_close{
        bottom: 92%;
        left: 92%;
    }
}

@media (max-width: 640px){
    .layer_background > div {
        height: 100%;
        overflow-y: auto;
    }


    .recruitment_pop .lp_close{
        bottom: unset;
        left: unset;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 8rem;
        margin: 2rem auto 0;
        padding: 1rem;
    }
}
