/* 헤더 영역 */
.header-area {
    height: 8rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 5;
}
.header-area.active {
    background-color: #fff;
}
.header-area .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.header-area .logo {
    width: 8.4rem;
}
.header-area ul {
    gap: 4.8rem;
}
.header-area ul li a {
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
}
.header-area ul li a.active {
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
}
.header-area ul li a.apply {
    background-color: #EC0C6E;
    color: #fff;
    padding: .8rem 4rem;
    text-align: center;
    line-height: 1.2;
    border-radius: 4rem;
    transition: .3s;
    font-weight: 700;
}
.header-area .menu-btn {
    display: none;
    width: 3.2rem;
    height: 3.2rem;
    background: url(../img/ico_menu.svg)no-repeat center/cover;
    cursor: pointer;
}
.header-area .close-btn {
    width: 3.2rem;
    height: 3.2rem;
    background: url(../img/ico_close.svg)no-repeat center/cover;
    cursor: pointer;
}

/* 사이드바 */
.side-area {
    z-index: 1000;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    transition: 0.3s;
    background: linear-gradient(#fff, #FFCBF5);
}
.side-area.active {
    right: 0;
}
.side-area .header-area .wrap {
    justify-content: space-between;
}
.side-area .logo-box {
    padding: 4.8rem 4rem 4.4rem;
}
.side-area .logo-box a {
    width: 17.7rem;
}
.side-area .middle-box {
    margin-top: 14rem;
    height: 100%;
}
.side-area .middle-box ul {
    gap: 4.8rem;
}
.side-area .middle-box ul li a {
    font-size: 1.9rem;
    font-weight: 600;
    display: block;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
}
.side-area .middle-box ul li a.active {
    color: #000;
    font-weight: 700;
}
.side-area .middle-box ul li .apply {
    font-size: 1.7rem;
    color: #fff;
    background-color: #EC0C6E;
    padding: 1.4rem;
    width: 20rem;
    border-radius: 4rem;
}
.side-area .obj-1 {
    bottom: 1.5rem;
    height: 20%;
    right: 0;
}

/* 플로팅 버튼 */
.floating {
    height: 6rem;
    visibility: hidden;
    opacity: 0;
    background-color: #EC0C6E;
    transition: .3s;
}

@media (max-width: 1279px) {

    .header-area {
        height: 6.8rem;
    }
    .header-area .logo {
        width: 7.2rem;
    }
    .header-area ul {
        display: none;
    }
    .header-area .menu-btn {
        display: block;
    }
    .floating.active {
        visibility: visible;
        opacity: 1;
    }

}

@media (max-width: 800px) {

    .header-area {
        height: 5.6rem;
    }
    .header-area .logo {
        width: 6.8rem; 
    }
    .header-area .close-btn,
    .header-area .menu-btn {
        width: 2.4rem;
        height: 2.4rem;
    }

}


/* ------------------------------------------------------------------------------- */

.arrow-down {
    top: 45%
}

/* 메인 비주얼 영역 */
.main-visual-area {
    background: url(../img/kv-bg.png)no-repeat center/cover;
    width: 100%;
    /* height: 200dvh; */
}
.main-visual-area .wrap {
    position: relative;
}
.main-visual-area .wrap > .pin-spacer {
    width: 100% !important;
    inset: 0 !important;
    position: absolute !important;
    padding: 0 4rem !important;
}
.main-visual-area .scroll-down {
    width: 7rem;
    height: 7rem;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    top: calc(100vh - 10rem);
    pointer-events: auto;
}
.main-bg {
    background: url(../img/main-bg.png)no-repeat center/cover;
    height: 100vh;
    width: 100%;
    top: 0;
    z-index: 0;
}
.main-visual-area .wrap {
    height: 100%;
}
.scroll-m {
    width: 100%;
    max-width: 1120px;
}
.main-visual-area .scrollWrap {
    padding-top: 12rem;
    padding-bottom: 30rem;
    min-width: 66.5rem;
    max-width: 1120px;
    width: 100%;
}
.main-visual-area .visual {
    /* position: sticky; */
    position: absolute;
    top: 11rem;
    right: 0;
    height: 665px;
    width: 665px;
}
.main-visual-area .visual::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: #fff;
    border-radius: 50%;
    filter: blur(50px);
    left: 50%;
    top: 55%;
    transform: translate(-50%,-50%);
}
.kv-1 {
    width: 100%;
}
.kv-2 {
    width: 34%;
    top: 13%;
    left: 15%;
}
.kv-3 {
    width: 50%;
    top: 15%;
    right: -6%;
}
.kv-3 img {
    /* animation-delay: 0.2s; */
}
.kv-4 {
    width: 35%;
    bottom: 4%;
    right: 10%;
}
.kv-4 img {
    animation-delay: 0.4s;
}
.kv-5 {
    width: 39%;
    bottom: 9%;
    left: 3%;
}
.kv-5 img {
    animation-delay: 0.3s;
}
.main-visual-area * {
    letter-spacing: -0.03em;
}
.main-visual-area .wrap > .pin-spacer {
    pointer-events: none;
}
.main-visual-area .title-area {
    padding-top: 14rem !important;
    position: sticky;
    top: 0;
    white-space: nowrap;
    max-width: 1120px !important;
    width: 100% !important;
    pointer-events: none;
}
.main-visual-area .title-area > div {
    pointer-events: auto;
}
.main-visual-area .title-area .text-2 {
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.main-visual-area .date-text {
    color: rgba(10, 10, 10, 0.7);
    margin-top: 4rem;
}
.main-visual-area .sub-1 {
    margin-right: .8rem;
}
.main-visual-area .apply-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26rem;
    height: 7.4rem;
    border-radius: 7rem;
    background:  #EC0C6E;
    box-shadow: 5.845px 5.845px 11.69px 0 rgba(117, 40, 4, 0.10);
    color: #FFF;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.05em;
    margin-top: 8rem;
}

/* 카드 */
.main-visual-area .card-scroll {
    padding-top: 40rem;
}
.main-visual-area .card-scroll .card {
    padding: 2.4rem 2.8rem 2.4rem 2.4rem;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(0, 0, 0, 0.3);
    border-radius: 3rem;
    cursor: pointer;
    width: 45.5rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1),
    inset 1px 1px 0 rgba(255, 255, 255, .7),
    inset -1px -1px 0 rgba(255, 255, 255, .7),
    inset 3px 3px 8px rgba(0, 0, 0, 0.05),
    inset -3px -3px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: .3s;
}
.main-visual-area .card-scroll .card:not(:last-child) {
    margin-bottom: 1rem;
}
.main-visual-area .card-scroll .card .text-box {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.main-visual-area .card-scroll .card .text-box .text-1 {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.3;
    transition: .3s;
}
.main-visual-area .card-scroll .card .text-box .text-2 {
    font-size: 3.7rem;
    font-weight: 600;
    line-height: 1.3;
    transition: .3s;
}
.main-visual-area .card-scroll .card button {
    margin-left: auto;
    color: rgba(0, 0, 0, 0.3);
    padding: 1.2rem 2rem;
    border-radius: 4rem;
    background: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -0.05em;
    font-weight: 600;
    transition: .3s;
}
.main-visual-area .card-scroll .card button img {
    filter: brightness(0%);
    opacity: 0.3;
    transition: .3s;
}
.main-visual-area .card-scroll .card.card-center,
.main-visual-area .card-scroll .card:hover {
    background:  #FF378F;
    box-shadow: none;
}
.main-visual-area .card-scroll .card.card-center .text-1,
.main-visual-area .card-scroll .card:hover .text-box .text-1 {
    color: #ebebeb;
}
.main-visual-area .card-scroll .card.card-center .text-2,
.main-visual-area .card-scroll .card:hover .text-box .text-2 {
    color: #fff;
}
.main-visual-area .card-scroll .card.card-center button,
.main-visual-area .card-scroll .card:hover button {
    color: #fff;
    background: linear-gradient(to bottom, rgba(255,255,255,0.09), rgba(255,255,255,0.3));
    box-shadow: 5.845px 5.845px 11.69px 0 rgba(117, 40, 4, 0.10),
    inset 1px 1px 0 rgba(255, 255, 255, .5),
    inset -1px -1px 0 rgba(255, 255, 255, .5);
}
.main-visual-area .card-scroll .card.card-center img,
.main-visual-area .card-scroll .card:hover button img {
    filter: brightness(100%);
    opacity: 1;
}

.bounceIn.reverse {
  animation-name: bounceIn;
  animation-direction: reverse;
}

@media (max-width: 1279px) {
    .main-visual-area .title-area .text-1 {
        font-size: 2.2rem;
    }
    .main-visual-area .title-area .text-2 {
        font-size: 5.7rem;
    }
    .main-visual-area .title-area .text-2 p {
        font-size: 5.5rem;
    }
    .main-visual-area .title-area .text-3 {
        font-size: 1.9rem;
    }
    .main-visual-area .date-text {
        font-size: 2.8rem;
        margin-top: 1.5rem;
    }
    .main-visual-area .date-text sub {
        font-size: 1.9rem;
    }
    .main-visual-area .apply-btn {
        margin-top: 3rem;
        width: 18rem;
        height: 5rem;
        font-size: 2rem;
    }
    .main-visual-area .scrollWrap {
        right: 13rem;
        min-width: 46.5rem;
    }
    .main-visual-area .visual {
        width: 46.5rem;
        height: 46.5rem;
    }
    .main-visual-area .card-scroll {
        padding-top: 30rem;
    }
    .main-visual-area .card-scroll .card {
        padding: 1.3rem 1.5rem;
        border-radius: 1.2rem;
        width: 30.6rem;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0 rgba(255, 255, 255, .5),
        inset -1px -1px 0 rgba(255, 255, 255, .5), inset 2px 2px 4px rgba(0, 0, 0, 0.05),
        inset -2px -2px 4px rgba(0, 0, 0, 0.05);
    }
    .main-visual-area .card-scroll .card:not(:last-child) {
        margin-bottom: .7rem;
    }
    .main-visual-area .card-scroll .card .text-box .text-1 {
        font-size: 1.4rem;
    }
    .main-visual-area .card-scroll .card .text-box {
        gap: .3rem;
    }
    .main-visual-area .card-scroll .card .text-box .text-2 {
        font-size: 2rem;
    }
    .main-visual-area .card-scroll .card button {
        padding: .7rem 1.2rem;
        font-size: 1.2rem;
    }
    .main-visual-area .card-scroll .card button img {
        width: 1.3rem;
        height: 1.3rem;
    }
        
}

@media (max-width: 999px) {
    .main-visual-area .scrollWrap {
        right: 5rem;
        min-width: 46.5rem;
    }
    .main-visual-area .title-area {
        padding-left: 4rem !important;
        left: 0 !important;
    }
}

@media (max-width: 801px) {
    .main-visual-area .visual {
        right: -5.5rem;
    }
}
@media (max-width: 800px) {
    .main-visual-area .scrollWrap {
        right: 0;
        min-width: 46.5rem;
    }
    .main-visual-area .scroll-down {
        width: 4rem;
        height: 4rem;
    }
}
@media (max-width: 600px) {
    .main-visual-area .main-bg {
        background-image: url(../img/main-bg_m.png);
    }
    /* .main-visual-area .main-bg img {
        display: block;
        height: 100%;
    } */
    .main-visual-area .wrap > .pin-spacer {
        pointer-events: none;
        inset: 0 !important;
    }
    .main-visual-area .scroll-down {
        pointer-events: auto;
        top: calc(100vh - 5rem);
    }
    .main-visual-area .title-area {
        padding-top: 7.5rem !important;
        padding-left: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    .main-visual-area .title-area::before {
        content: '';
        background: linear-gradient(to bottom, rgba(153, 215, 255, 1) 80%, rgba(153, 215, 255, 0) 100%);
        position: absolute;
        top: 0;
        left: -2rem;
        width: calc(100% + 4rem);
        height: 46rem;
    }
    .main-visual-area .title-area::after {
        content: '';
        background: radial-gradient( rgba(168, 254, 235, 1) 0%, rgba(168, 254, 235, 0) 100%);
        position: absolute;
        top: -2rem;
        left: -2rem;
        width: 30rem;
        height: 30rem;
        filter: blur(10px);
    }
    .main-visual-area .title-area > div {
        width: 100%;
        z-index: 2;
        pointer-events: auto;
    }
    .main-visual-area .title-area > div::before {
        content: '';
        background: radial-gradient( rgb(201, 184, 242,.5) 0%, rgba(201, 184, 242, 0) 100%);
        position: absolute;
        bottom: 0;
        left: 1rem;
        width: 70rem;
        height: 20rem;
        filter: blur(10px);
        z-index: -1;
    }
    .main-visual-area .title-area > div > * {
        text-align: center;
    }
    .main-visual-area .title-area .text-1 {
        font-size: 2.2rem;
    }
    .main-visual-area .title-area .text-2 {
        font-size: 5.7rem;
        margin-bottom: 1.2rem;
    }
    .main-visual-area .title-area .text-2 p {
        font-size: 5.5rem;
    }
    .main-visual-area .title-area .text-3 {
        font-size: 1.9rem;
    }
    .main-visual-area .date-text {
        font-size: 2.8rem;
        margin-top: 1.5rem;
        justify-content: center;
    }
    .main-visual-area .date-text sub {
        font-size: 1.9rem;
    }
    .main-visual-area .apply-btn {
        margin: 0 auto;
        margin-top: 3rem;
        width: 18rem;
        height: 5rem;
        font-size: 2rem;
        pointer-events: auto;
    }
    .main-visual-area .scrollWrap {
        min-width: 100%;
        align-items: center;
        padding-bottom: 20rem;
    }
    .main-visual-area .visual {
        width: 33.5rem;
        height: 33.5rem;
        right: auto;
        top: 38rem;
    }
    .main-visual-area .card-scroll {
        padding-top: 30rem;
    }
    .main-visual-area .card-scroll .card {
        padding: 1.3rem 1.5rem;
        border-radius: 1.2rem;
        width: 30.6rem;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0 rgba(255, 255, 255, .5),
        inset -1px -1px 0 rgba(255, 255, 255, .5), inset 2px 2px 4px rgba(0, 0, 0, 0.05),
        inset -2px -2px 4px rgba(0, 0, 0, 0.05);
    }
    .main-visual-area .card-scroll .card:hover {
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0 rgba(255, 255, 255, .5),
        inset -1px -1px 0 rgba(255, 255, 255, .5), inset 2px 2px 4px rgba(0, 0, 0, 0.05),
        inset -2px -2px 4px rgba(0, 0, 0, 0.05);
    }
    .main-visual-area .card-scroll .card:not(:last-child) {
        margin-bottom: .7rem;
    }
    .main-visual-area .card-scroll .card .text-box .text-1 {
        font-size: 1.4rem;
    }
    .main-visual-area .card-scroll .card .text-box {
        gap: .3rem;
    }
    .main-visual-area .card-scroll .card .text-box .text-2 {
        font-size: 2rem;
    }
    .main-visual-area .card-scroll .card button {
        padding: .7rem 1.2rem;
        font-size: 1.2rem;
    }
    .main-visual-area .card-scroll .card button img {
        width: 1.3rem;
        height: 1.3rem;
    }
}


/* ------------------------------------------------------------------------------- */


/* 회사소개 영역 */
.about-area {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFF1FC 41%, #FFC7F5 100%);
}
.about-area .about-list {
    margin-top: 5rem;
}
.about-area .about-list .sub-title .text-1 {
    color: #474747;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.45;
    letter-spacing: -0.04em;
}
.about-area .about-list .sub-title .text-2 {
    color: #0A0A0A;
    font-size: 3.4rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.04em;
}
.about-area .about-list .sub-title p {
    color: #EC0C6E;
    line-height: 1.3;
    font-weight: 800;
    font-size: 4.2rem;
    display: inline-block;
    letter-spacing: -0.04em;
}
.about-area .about-list .sub-title p.set-w1{
    width: 27.3rem;
}
.about-area .about-list .sub-title p.set-w2{
   width: 24rem;
}
.about-area .about-list > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.2rem solid #AEAEAE;
    height: 34rem;
    /* padding: 2rem 0; */
}
.about-area .about-list > div:last-child {
    border-bottom: none;
}
.about-area .about-list > div .motion-box-2 {
    display: grid;
    grid-template-columns: 18rem 28.8rem;
    grid-template-rows: 4.6rem 4.6rem;
    align-self: center;
    gap: 1.2rem;
}
.about-area .about-list > div .motion-box-2 .box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    height: 4.6rem;
    border: 0.1rem solid var(--color-3D3D3D);
}
.about-area .about-list > div .motion-box-2 .box span {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    gap: 0.6rem;
}
.about-area .about-list > div .motion-box-2 .box i {
    width: 2rem;
    height: 2rem;
}
.about-area .about-list > div .motion-box-2 .box-1 i {
    background-image: url("../img/ico_person1.svg");
}
.about-area .about-list > div .motion-box-2 .box-2 i {
    background-image: url("../img/ico_person2.svg");
}
.about-area .about-list > div .motion-box-2 .box-3 i {
    background-image: url("../img/ico_person3.svg");
}
.about-area .about-list > div .motion-box-2 .box-4 i {
    background-image: url("../img/ico_person4.svg");
}
.about-area .about-list > div .motion-box-4 {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}
.about-area .about-list > div .motion-box-4 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.7rem;
}
.about-area .about-list > div .motion-box-4 > div .img-box {
    width: 10rem;
}
.about-area .about-list > div .motion-box-4 > div p {
    line-height: 1.5;
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}


/* 애니메이션 영역 */
.ani,
.pt {
    position: absolute;
    background-repeat: no-repeat;
    background-position: 0 0;
}

/* firstMotion */
.aboutWrap .motion-box {
    width: 28rem;
    height: 26rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    left: 30px;
}
.aboutWrap .firstMotion {
    position: relative;
    bottom: 0;
    width: 30rem;
    height: 26rem;
    right: 4rem;
}
.aboutWrap .firstMotion .graphBox {
    position: relative;
    height: 100%;
    width: 3rem;
}
.aboutWrap .firstMotion .graphBox:nth-child(n+2):nth-child(-n+4){
    z-index: 10;
}
.aboutWrap .firstMotion .graphBox .line {
    position: absolute;
    bottom: 0;
    width: 3rem;
    /* border-radius: 0.4rem; */
}
.aboutWrap .firstMotion .graphBox .text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: "pretendard";
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    z-index: 10;
}
.aboutWrap .firstMotion .graphBox.first .line {
    height: 2rem;
    background-color: #FFA4E9;
}
.aboutWrap .firstMotion .graphBox.second .line {
    height: 8.4rem;
    background-color: #FC6ECF;
}
.aboutWrap .firstMotion .graphBox.third .line {
    height: 13.8rem;
    background-color: #F544A5;
}
.aboutWrap .firstMotion .graphBox.fourth .line {
    height: 22rem;
    background-color: #EC0C6E;
}
.aboutWrap .firstMotion .graphBox.first .text {
    bottom: 2.4rem;
}
.aboutWrap .firstMotion .graphBox.second .text {
    bottom: 4rem;
}
.aboutWrap .firstMotion .graphBox.third .text {
    bottom: 9rem;
}
.aboutWrap .firstMotion .graphBox.fourth .text {
    bottom: 22.4rem;
}
.aboutWrap .firstMotion .obj-1 {
    position: absolute;
    top: 0;
    left: 0;
}
.aboutWrap .firstMotion .obj-2 {
    position: absolute;
    top: 50px;
    left: 60px;
}
.aboutWrap .gr {
    width: 100%;
    height: 1.6rem;
    position: absolute;
    left: 50%;
    bottom: .8rem;
    transform: translateX(-50%);
    border-radius: 4rem;
    background: radial-gradient(50% 50% at 50% 50%, rgba(133, 13, 108, 0.20) 0%, rgba(133, 13, 108, 0.00) 100%);
    filter: blur(8px);
}

/* secondMotion */
.aboutWrap .secondMotion {
    position: relative;
    right: 0rem;
    top: 1.6rem;
    width: 30rem;
    height: 26rem;
}
.aboutWrap .secondMotion .pop {
    position: absolute;
    top: 0;
}
.aboutWrap .secondMotion .obj-1 {
    left: 0;
    top: 0;
}
.aboutWrap .secondMotion .obj-2 {
    /* top: -1.2rem;
    right: 3rem; */
    top: 9.4rem;
    right: 15rem;
}
.aboutWrap .round {
    position: absolute;
    top: -.8rem;
    right: -1.6rem;
    width: 3.2rem;
    aspect-ratio: 1/1;
    background-color: rgba(236, 12, 110, .5);
    border-radius: 50%;
    opacity: 0.3;
}

/* thirddMotion */
.thirddMotion {
    width: 49rem;
    height: 30rem;
}
.thirddMotion .obj-1 {
    width: 28rem;
    right: 6rem;
}
.thirddMotion .obj-2 {
    width: 14rem;
    right: 10rem;
    top: 4rem;
}
.thirddMotion .obj-3 {
    width: 17rem;
    right: 9rem;
    top: 9rem;
}
.thirddMotion .obj-4 {
    width: 16rem;
    top: 13rem;
    right: 15.3rem;
}
.thirddMotion .obj-5 {
    width: 10rem;
    top: 2rem;
    right: 25.3rem;
}
.thirddMotion .obj-5 img {
    animation-delay: .2s;
}
.thirddMotion .obj-6 {
    width: 13rem;
    top: 15rem;
    right: 25.3rem;
}
.thirddMotion .obj-6 img {
    animation-delay: .4s;
}
.thirddMotion .obj-7 {
    width: 14rem;
    top: 19rem;
    right: 11.3rem;
}
.thirddMotion .obj-7 img {
    animation-delay: .6s;
}
.thirddMotion .obj-8 {
    width: 9rem;
    top: 13rem;
    right: 2rem;
}
.thirddMotion .obj-8 img {
    animation-delay: .8s;
}


@media (max-width: 1279px) {
    .about-area .about-list > div {
        flex-direction: column;
        gap: 3.2rem;
        height: 36rem;
        padding-bottom: 5rem;
    }
    .about-area .about-list > div:not(:first-child) {
        padding-top: 5rem;
        height: 50rem;
    }
    .about-area .about-list > div:last-child {
        padding-bottom: 0;
    }
    .about-area .about-list > div > * {
        text-align: center;
    }
    .about-area .about-list .sub-title .text-1 {
        font-size: 1.8rem;
        line-height: 1;
        margin-bottom: 1.2rem;
    }
    .about-area .about-list .sub-title .text-2 {
        font-size: 2rem;
    }
    .about-area .about-list .sub-title p {
        font-size: 2.4rem;
    }
    .aboutWrap .motion-box {
        width: 19.2rem;
        height: 16rem;
        left: 30px;
    }
    .aboutWrap .firstMotion {
        width: 22rem;
        height: 18rem;
        right: 0;
    }
    .aboutWrap .firstMotion .graphBox .text {
        font-size: 1.6rem;
    }
    .aboutWrap .firstMotion .graphBox {
        width: 2rem;
    }
    .aboutWrap .firstMotion .graphBox .line {
        width: 2rem;
    }
    .aboutWrap .firstMotion .graphBox.first .line {
        height: 1.4rem;
    }
    .aboutWrap .firstMotion .graphBox.first .text {
        bottom: 2.0rem;
    }
    .aboutWrap .firstMotion .graphBox.second .line {
        height: 5.5rem;
    }
    .aboutWrap .firstMotion .graphBox.third .line {
        height: 9rem;
    }
    .aboutWrap .firstMotion .graphBox.fourth .line {
        height: 14.2rem;
    }
    .aboutWrap .firstMotion .graphBox.second .text {
        bottom: 3rem;
    }
    .aboutWrap .firstMotion .graphBox.third .text {
        bottom: 6rem;
    }
    .aboutWrap .firstMotion .graphBox.fourth .text {
        bottom: 14.5rem;
    }
    .aboutWrap .gr {
        height: 1rem;
        filter: blur(6px);
    }
    .aboutWrap .secondMotion {
        width: auto;
        height: auto;
        right: 0;
        top: 0;
    }
    .aboutWrap .secondMotion .obj-1 {
        width: 20rem;
    }
    .aboutWrap .secondMotion .obj-2 {
        width: 6rem;
        top: 8rem;
        right: 7rem;
    }
    .aboutWrap .round {
        top: -.8rem;
        right: -.8rem;
        width: 2.5rem;
    }
    .aboutWrap .secondMotion .gr {
        bottom: -.8rem;
    }
    .thirddMotion {
        transform: scale(.6);
        width: 40rem;
        top: -5rem;
    }
    .thirddMotion .gr {
        bottom: -12rem;
        width: 70%;
    }
}


/* ------------------------------------------------------------------------------- */


/* Mnet Plus 영역 */
/* .mnet-plus-area {
    padding-bottom: 40rem;
} */
.mnet-plus-area .title {
    margin-top: 5rem;
}
.mnet-plus-area .mic-plus {
    width: 24rem;
    top: -5rem;
    left: 7rem;
}
.mnet-plus-area .mic-light {
    width: 34.2rem;
    top: -9.4rem;
    left: 42.5rem;
}
.mnet-plus-area .mic-twinkle {
    width: 4.9rem;
    right: 17rem;
    top: 17rem;
}
.mnet-plus-area .mic-dot {
    width: 12.5rem;
    right: 0;
    top: 13.5rem;
}
.mnet-plus-area .news-music {
    width: 12.5rem;
    left: 8rem;
    bottom: 10rem;
}
.mnet-plus-area .mic-area {
    right: -20%;
    top: 13%;
    /* margin-top: 5rem; */
    scale: 0.5;
}
.mnet-plus-area .mic {
    width: 29.5rem;
}
.mnet-plus-area .mic-logo {
    width: 16.4rem;
    left: 18rem;
}

@media (max-width: 1279px) {
    .mnet-plus-area .wrap > p {
        font-size: 2rem;
    }
    .mnet-plus-area .title {
        margin-top: 3rem;
    }
    .mnet-plus-area .mic-logo {
        left: 19.9rem;
        width: 13.4rem;
    }
    .mnet-plus-area .mic-light {
        left: 23rem;
    }
    .mnet-plus-area .mic-plus {
        width: 11rem;
    }
    .mnet-plus-area .mic {
        width: 24rem;
    }

}

@media (max-width: 800px) {
    .mnet-plus-area .wrap > p {
        font-size: 2rem;
    }
    .mnet-plus-area .title {
        margin-top: 3rem;
    }
    .mnet-plus-area .mic-logo {
        left: 16.5rem;
        width: 9rem;
    }
    .mnet-plus-area .mic-light {
        left: 12rem;
        width: 15rem;
    }
    .mnet-plus-area .mic-plus {
        width: 9rem;
        top: -2rem;
        left: 2rem;
    }
    .mnet-plus-area .mic-twinkle {
        width: 2.9rem;
        right: 4rem;
        top: 19rem;
    }
    .mnet-plus-area .mic-area {
        scale: 0.4;
        right: -50%;
        top: 12%;
    }
    .mnet-plus-area .mic {
        width: 14rem;
    }
    .mnet-plus-area {
        padding-bottom: 10rem;
    }
    .mnet-plus-area .news-music {
        width: 6.5rem;
        left: 2rem;
        bottom: 4rem;
    }
}


/* ------------------------------------------------------------------------------- */


/* 채용 공고 + 합류 여정 공통 영역 */
.job-area .wrap {
    gap: 8rem;
}
.job-area h1 {
    margin-bottom: 5rem;
}
.job-area h2 {
    margin-bottom: 3rem;
}
.job-area .tab-menu-box {
    margin-bottom: 3.2rem;
}
.job-area .tab-menu-box li {
    width: 100%;
}
.job-area .tab-menu-box li a {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: -0.03em;
    position: relative;
}


/* 채용 공고 영역 */
.job-area-1 {
    padding-bottom: 0;
}
.job-area .tab-menu-box-1 li a {
    padding-bottom: 1.4rem;
}
.job-area .tab-menu-box-1 li a::before {
    content: '';
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
}
.job-area .tab-menu-box-1 li a.active {
    color: #EC0C6E;
}
.job-area .tab-menu-box-1 li a.active::before {
    background-color: #EC0C6E;
    height: 2px;
}
.job-area .swiper {
    overflow: hidden;
    padding-bottom: 2rem;
}
.job-area .swiper .swiper-wrapper {
    display: -webkit-inline-box;
}
.job-area .swiper .swiper-slide .slide-box {
    height: 22rem;
    padding: 3rem;
    border-radius: 2rem;
    background: linear-gradient(102deg, rgba(255, 139, 191, 0.05) 2.22%, rgba(255, 197, 222, 0.05) 56.64%, rgba(255, 221, 239, 0.05) 89.29%);
    box-shadow: 4.464px 4.464px 8.929px 0 rgba(117, 40, 4, 0.10);
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    word-break: keep-all;
}
.job-area .swiper .swiper-slide .slide-box .text-box {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.job-area .swiper .swiper-slide .slide-box .gr-obj {
    width: 90%;
    height: 5rem;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: rgba(236, 12, 110, 0.05);
    filter: blur(20px);
}
.job-area .swiper .swiper-slide .slide-box button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.8rem;
    height: 3.8rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #FFF;
    background: radial-gradient(111.16% 111.16% at 32.12% 26.28%, #EC0C6E 15.8%, #FFF 100%);
    cursor: pointer;
    bottom: 3rem;
    right: 3rem;
}
.job-area .swiper .swiper-slide .slide-box button:hover {
    background: #EC0C6E;
}
.job-area .swiper .swiper-slide .slide-box button img {
    width: 2rem;
    height: 2rem;
    aspect-ratio: 1/1;
}
.job-area .swiper .swiper-slide .slide-box button span {
    border-radius: 50px;
    border: 2px solid transparent;
    background: linear-gradient(120deg, rgba(255, 255, 255, 1) 0%, rgba(178, 178, 178, 0.2) 25%, rgba(178, 178, 178, 0.2) 75%, rgba(255, 255, 255, 0.5) 100%) border-box;;
    mask: /*4*/ linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    width: 100%;
    height: 100%;
}
.swiper-button-prev, .swiper-button-next {
    width: 2.8rem !important;
    height: 2.8rem !important;
    cursor: pointer;
    top: calc(50% - 2rem);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .2;
}
.swiper-button-prev {
    left: -3.8rem !important;
}
.swiper-button-next {
    right: -3.8rem !important;
}
.swiper-button-prev::before {
    background: url(../img/ico_prev.svg) no-repeat center center / cover;
    width: 2.8rem;
    height: 2.8rem;
}
.swiper-button-next::before {
    background: url(../img/ico_next.svg) no-repeat center center / cover;
    width: 2.8rem;
    height: 2.8rem;
}
.swiper-box {
    height: 26rem;
}
.swiper-pagination {
    bottom: 0px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.swiper-pagination .swiper-pagination-bullet {
    border-radius: 50%;
    opacity: .2 !important;
    cursor: pointer;
}
.swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: #EC0C6E !important;
}

/* 합류 여정 영역 */
.job-area .tab-menu-box-2 {
    gap: 2rem;
}
.job-area .tab-menu-box-2 li a {
    border: 1px solid #EC0C6E;
    padding: 1.9rem 0;
}
.job-area .tab-menu-box-2 li a.active {
    color: #fff;
    background-color: #EC0C6E;
}
.job-area .tab-cnt-box-2 ul {
    gap: 2rem;
}
.job-area .tab-cnt-box-2 ul li {
    padding: 2.3rem 1.9rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    border-radius: 1rem;
    height: 15rem;
}
.job-area .tab-cnt-box-2 ul li div:first-child {
    top: 2.3rem;
    left: 1.9rem;
}
.job-area .tab-cnt-box-2 ul li div:last-child p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: right;
}
.job-area .tab-cnt-box-2 ul li div:last-child span {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
}
.job-area .box h2 {
    margin-top: 0;
}
.job-area .box-2 ul:last-child {
    margin-top: 3rem;
}
.job-area-2 .obj-1 {
    width: 14.7rem;
    right: 0;
    top: 0;
}
.job-area-2 .obj-2 {
    width: 28.1rem;
    right: 0;
    top: 50rem;
}

@media (max-width: 1279px) {
    .job-area h1 {
        margin-bottom: 3rem;
    }
    .job-area .wrap {
        gap: 0;
    }
    .job-area-2 .wrap {
        gap: 5rem;
    }
    .job-area h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    .job-area .tab-menu-box {
        margin-bottom: 2.5rem;
    }
    .job-area .tab-menu-box-1 li a {
        font-size: 1.6rem;
    }
    .job-area .tab-menu-box-2 {
        gap: .5rem;
    }
    .job-area .tab-menu-box-2 li a {
        font-size: 1.8rem;
        padding: 1rem 0;
    }
    .job-area-2 .obj-1 {
        width: 8rem;
    }
    .job-area .tab-cnt-box-2 ul {
        gap: .8rem;
    }
    .job-area .tab-cnt-box-2 ul li {
        padding: 1.5rem;
        border-radius: .6rem;
        height: 12rem;
    }
    .job-area .tab-cnt-box-2 ul li div:first-child {
        font-size: 1.4rem;
        top: 1.5rem;
        left: 1.5rem;
    }
    .job-area .tab-cnt-box-2 ul li div:last-child p {
        font-size: 1.4rem;
    }
    .job-area .tab-cnt-box-2 ul li div:last-child span {
        font-size: 1.2rem;
    }
    .job-area-2 .obj-2 {
        width: 17.1rem;
        right: 2rem;
        top: 39rem;
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    .swiper-pagination {
        bottom: 0 !important;
    }
    .swiper-box {
        height: 17rem;
    }
    .job-area .swiper .swiper-slide .slide-box {
        padding: 2rem;
        border-radius: 1.4rem;
        height: 14rem;
    }
    .job-area .swiper .swiper-slide .slide-box .text-box {
        gap: .3rem;
    }
    .job-area .swiper .swiper-slide .slide-box .text-box span {
        font-size: 1.2rem;
    }
    .job-area .swiper .swiper-slide .slide-box .text-box p {
        font-size: 1.8rem;
    }
    .job-area .swiper .swiper-slide .slide-box button {
        right: 2rem;
        bottom: 2rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    .job-area .swiper .swiper-slide .slide-box button img {
        width: 1.1rem;
        height: 1.1rem;
    }
}

@media (max-width: 800px) {
    .job-area h1 {
        margin-bottom: 3rem;
    }
    .job-area .wrap {
        gap: 0;
    }
    .job-area-2 .wrap {
        gap: 5rem;
    }
    .job-area h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    .job-area .tab-menu-box {
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }
    .job-area .tab-menu-box li:not(:last-child) {
        width: calc(50% - .25rem);
    }
    .job-area .tab-menu-box-1 li a {
        font-size: 1.6rem;
    }
    .job-area .tab-menu-box-1 li:last-child {
        margin-top: 1rem;
    }
    .job-area .tab-menu-box-2 {
        gap: .5rem;
    }
    .job-area .tab-menu-box-2 li a {
        font-size: 1.8rem;
        padding: 1rem 0;
    }
    .job-area-2 .obj-1 {
        width: 8rem;
    }
    .job-area .tab-cnt-box-2 ul {
        gap: .8rem;
    }
    .job-area .tab-cnt-box-2 #tab2-1 ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .job-area .tab-cnt-box-2 ul li {
        padding: 1.5rem;
        border-radius: .6rem;
        height: 12rem;
    }
    .job-area .tab-cnt-box-2 #tab2-1 ul li {
        width: 25%;
    }
    .job-area .tab-cnt-box-2 ul li div:first-child {
        font-size: 1.4rem;
        top: 1.5rem;
        left: 1.5rem;
    }
    .job-area .tab-cnt-box-2 ul li div:last-child p {
        font-size: 1.4rem;
    }
    .job-area .tab-cnt-box-2 ul li div:last-child span {
        font-size: 1.2rem;
    }
    .job-area-2 .obj-2 {
        display: none;
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    .swiper-pagination {
        bottom: 0 !important;
    }
    .swiper-box {
        height: 17rem;
    }
    .job-area .swiper .swiper-slide .slide-box {
        padding: 2rem;
        border-radius: 1.4rem;
        height: 14rem;
        min-width: 100% !important;
    }
    .job-area .swiper .swiper-slide .slide-box .text-box {
        gap: .3rem;
    }
    .job-area .swiper .swiper-slide .slide-box .text-box span {
        font-size: 1.2rem;
    }
    .job-area .swiper .swiper-slide .slide-box .text-box p {
        font-size: 1.8rem;
    }
    .job-area .swiper .swiper-slide .slide-box button {
        right: 2rem;
        bottom: 2rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    .job-area .swiper .swiper-slide .slide-box button img {
        width: 1.1rem;
        height: 1.1rem;
    }
    .swiper-box.pc {
        display: none;
    }
    .swiper-box.mob {
        display: block;
        height: auto;
    }
    .swiper-box.mob .swiper .swiper-wrapper .swiper-slide {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 800px) {
    .job-area .tab-cnt-box-2 ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .job-area .tab-cnt-box-2 #tab2-1 ul li {
        width: calc(50% - .8rem);
    }
    .job-area .tab-cnt-box-2 ul li {
        width: calc(50% - .8rem);
    }
}


/* ------------------------------------------------------------------------------- */


/* 더 알아보기 영역 */
.shorts-area {
    background: linear-gradient(289deg, #FFCDF8 9.75%, #C3CAFF 98.66%);
}
.shorts-area .title {
    margin-bottom: 8rem;
}
.shorts-area .shorts-box > .img-phone {
    max-width: 39.5rem;
    aspect-ratio: 395/778;
}
.shorts-area .shorts-box > .img-phone-logo {
    max-width: 12.6rem;
    bottom: 3rem;
}
.shorts-area .shorts-box > .youtube-box {
    aspect-ratio: 365/650;
    top: 6.2rem;
}
.shorts-area .bg-obj-1 {
    width: 64.6rem;
    left: -21.6rem;
    bottom: -20rem;
}
.shorts-area .bg-obj-2 {
    width: 65.7rem;
    right: -23rem;
    top: 0;
}
.shorts-area .bg-obj-3 {
    width: 200rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.shorts-area .obj-1 {
    width: 25rem;
    top: 35rem;
    left: -13.7rem;
}
.shorts-area .obj-2 {
    width: 20.8rem;
    top: 36.2rem;
    left: 11.2rem;
}
.shorts-area .obj-3 {
    width: 15.8rem;
    top: 42.4rem;
    right: 4rem;
}
.shorts-area .obj-3 img {
    animation-delay: .4s;
}
.shorts-area .obj-4 {
    width: 50.6rem;
    top: 36.2rem;
    right: 10.6rem;
}
.shorts-area .obj-5 {
    width: 36.8rem;
    top: 73rem;
    left: 15rem;
}
.shorts-area .obj-5 img {
    animation-delay: .4s;
}
.shorts-area .obj-6 {
    width: 13.8rem;
    top: 76rem;
    right: 4rem;
}
.shorts-area .obj-7 {
    width: 16.5rem;
    top: 24.8rem;
    left: .2rem;
}
.shorts-area .obj-7 img {
    animation-delay: .2s;
}
.shorts-area .obj-8 {
    width: 15rem;
    top: 7.8rem;
    right: 20rem;
}
.shorts-area .obj-9 {
    width: 17.5rem;
    top: 64rem;
    right: -8rem;
}
.shorts-area .obj-9 img {
    animation-delay: .2s;
}

@media (max-width: 1279px) {
    .shorts-area .title {
        margin-bottom: 3rem;
    }
    .shorts-area .shorts-box > .img-phone {
        width: 24rem;
    }
    .shorts-area .shorts-box > .youtube-box {
        width: 22.125rem;
        top: 3.75rem;
    }
    .shorts-area .shorts-box > .youtube-box iframe {
        width: 100%;
        height: 100%;
    }
    .shorts-area .shorts-box > .img-phone-logo {
        max-width: 7.6rem;
        bottom: 1.75rem;
    }
    .shorts-area .bg-obj-1 {
        width: 34.6rem;
        left: -11.6rem;
        bottom: -10rem;
    }
    .shorts-area .bg-obj-2 {
        width: 30rem;
        right: -11rem;
        top: 0;
    }
    .shorts-area .bg-obj-3 {
        width: 1200px;
    }
    .shorts-area .obj-1 {
        width: 10rem;
        top: 24rem;
        left: 0;
    }
    .shorts-area .obj-2 {
        width: 8.8rem;
        top: 23.2rem;
        left: 11.2rem;
    }
    .shorts-area .obj-3 {
        width: 6.8rem;
        top: 25.4rem;
        right: 13rem;
    }
    .shorts-area .obj-4 {
        width: 25.6rem;
        top: 23.2rem;
        right: 13.6rem;
    }
    .shorts-area .obj-5 {
        width: 13.8rem;
        bottom: -5rem;
        left: 19rem;
        top: auto;
    }
    .shorts-area .obj-6 {
        width: 6.8rem;
        top: 42rem;
        right: 12rem;
    }
    .shorts-area .obj-7 {
        width: 8.5rem;
        top: 17.8rem;
        left: 5.2rem;
    }
    .shorts-area .obj-8 {
        width: 6rem;
        top: 3.8rem;
    }
    .shorts-area .obj-9 {
        width: 8.5rem;
        top: 37rem;
        right: 6rem;
    }
}

@media (max-width: 800px) {
    .shorts-area .title {
        margin-bottom: 3rem;
    }
    .shorts-area .shorts-box > .img-phone {
        width: 24rem;
    }
    .shorts-area .shorts-box > .youtube-box {
        width: 22.125rem;
        top: 3.75rem;
    }
    .shorts-area .shorts-box > .youtube-box iframe {
        width: 100%;
        height: 100%;
    }
    .shorts-area .shorts-box > .img-phone-logo {
        max-width: 7.6rem;
        bottom: 1.75rem;
    }
    .shorts-area .bg-obj-1 {
        width: 25.6rem;
        left: -9.6rem;
        bottom: -8rem;
    }
    .shorts-area .bg-obj-2 {
        width: 16.7rem;
        right: -5rem;
        top: 0;
    }
    .shorts-area .bg-obj-3 {
        width: 800px;
        top: 6rem;
    }
    .shorts-area .bg-obj-3 img {
        transform: rotate(15deg);
    }
    .shorts-area .obj-1 {
        width: 6rem;
        top: 19rem;
        left: -1rem;
    }
    .shorts-area .obj-2 {
        width: 7.8rem;
        top: 24.2rem;
        left: -0.8rem;
    }
    .shorts-area .obj-3 {
        top: 17.4rem;
        right: 1rem;
    }
    .shorts-area .obj-4 {
        width: 19.6rem;
        top: 28.2rem;
        right: -4rem;
    }
    .shorts-area .obj-5 {
        width: 10.8rem;
        left: 0rem;
    }
    .shorts-area .obj-6 {
        width: 4.8rem;
        top: 25rem;
        right: 1rem;
    }
    .shorts-area .obj-7 {
        width: 4.5rem;
        top: 13.8rem;
        left: 2.2rem;
    }
    .shorts-area .obj-8 {
        width: 5rem;
        top: 3.8rem;
        right: 1rem;
    }
    .shorts-area .obj-9 {
        width: 8.5rem;
        top: 39rem;
        right: -3rem;
    }
}

@media (max-width: 400px) {
    .shorts-area .bg-obj-3 {
        width: 600px;
        top: 10rem;
    }
}


/* ------------------------------------------------------------------------------- */

/* 글로벌 영역 */
.global-area {
    background: linear-gradient(180deg, #FFF 0%, #FFE1F3 100%);
    position: relative;
}
.global-area::before {
    content: '';
    position: absolute;
    background: url(../img/global-bg.png)no-repeat center/cover;
    width: 100%;
    height: 100%;
    object-fit: fill;
    left: 0;
    top: 0;
}
.global-area .obj-1 {
    width: 36rem;
    aspect-ratio: 1/1;
}
.global-area .obj-1::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, #AEFCFF 0%, rgba(189, 251, 254, 0.70) 23.38%, rgba(255, 243, 250, 0.00) 100%);
    z-index: -1;
}
.global-area .btn-box {
    gap: 5rem;
}
.global-area .btn-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30rem;
    height: 8.5rem;
    border-radius: 8rem;
}
.global-area .btn-box .link-copy-btn {
    background: rgba(255, 110, 174, 0.05);
    box-shadow: 5.845px 5.845px 11.69px 0 rgba(117, 40, 4, 0.10), inset 4px 4px 10px 0 rgba(255, 110, 174, 0.1), inset -4px -4px 10px 0 rgba(255, 255, 255, 0.35);
    color: #EC0C6E;
}
.global-area .btn-box .link-copy-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8rem;
        border: 2px solid transparent;
    background: linear-gradient(170deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255,1) 100%) border-box;
    mask: /*4*/ linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
}
.global-area .btn-box .apply-btn {
    background: var(--mnet_pink, #EC0C6E);
    box-shadow: 5.845px 5.845px 11.69px 0 rgba(117, 40, 4, 0.10);
    color: #fff;
}

@media (max-width: 1279px) {
    .global-area .mb-ver {
        display: block;
    }
    .global-area .obj-1 {
        width: 24rem;
    }
    .global-area .obj-1::before {
        width: 40rem;
    }
    .global-area .btn-box {
        gap: 2.5rem;
    }
    .global-area .btn-box a {
        height: 6rem;
        width: 24rem;
        font-size: 2rem;
    }
}

@media (max-width: 800px) {
    .global-area .mb-ver {
        display: block;
    }
    .global-area .obj-1 {
        width: 24rem;
    }
    .global-area .obj-1::before {
        width: 40rem;
    }
    .global-area .btn-box {
        gap: 2.5rem;
        flex-direction: column;
    }
    .global-area .btn-box a {
        height: 6rem;
        width: 24rem;
        font-size: 2rem;
    }
}


/* ------------------------------------------------------------------------------- */


/* footer 영역 */
footer {
    padding: 3.6rem 0;
}

@media (max-width: 1279px) {
    footer {
        padding-bottom: 8rem;
    }
    footer img {
        width: 8.4rem;
    }
}

@media (max-width: 800px) {
    footer {
        padding-top: 2rem;
    }
    footer p {
        display: none;
    }
    footer img {
        margin: 0 auto;
    }
}
/* //footer 영역 */


/* ------------------------------------------------------------------------------- */


/* 모달 영역 */
body.active {
    overflow-y: hidden;
}
.modal-area {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    display: none;
}
.modal-area.active {
    display: block;
}
.modal-area .modal {
    display: none;
}
.modal-area .modal.active {
    display: block;
}

.job-modal {
    padding: 6rem 3rem;
    width: 100%;
    max-width: 112rem;
    border-radius: 2rem;
    border: 1px solid #EC0C6E;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 3px 3px 30px 0 rgba(0, 0, 0, 0.10);
}
.job-modal .x-btn,
.news-modal .x-btn {
    right: 2.8rem;
    top: 2.8rem;
}
.job-modal .top-box {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid #A5A5A5;
}
.job-modal .top-box h1 {
    color: #EC0C6E;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: normal;
}
.job-modal .scroll-box,
.news-modal .scroll-box  {
    height: 50vh;
    overflow-y: auto;
}
.job-modal .scroll-box::-webkit-scrollbar,
.news-modal .scroll-box::-webkit-scrollbar {
    width: 5px;
}
.job-modal .scroll-box::-webkit-scrollbar-thumb,
.news-modal .scroll-box::-webkit-scrollbar-thumb {
    background: #EC0C6E;
    border-radius: 4px;
}
.job-modal .scroll-box::-webkit-scrollbar-track,
.news-modal .scroll-box::-webkit-scrollbar-track  {
    background: #FFF;
    border-radius: 4px;
}
.job-modal .scroll-box .list-box {
    display: flex;
    flex-direction: column;
    padding-top: 5.4rem;
    gap: 5rem;
}
.job-modal .scroll-box .list-box > ul {
    gap: 5rem;
}
.job-modal .scroll-box .list-box > ul > li {
    display: flex;
    align-items: flex-start;
}
.job-modal .scroll-box .list-box .list-title {
    min-width: 21.2rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: -0.02em;
}
.job-modal .scroll-box .list-box .list-wrap {
    gap: 5rem;
}
.job-modal .scroll-box .list-box > ul > li ul {
    width: 100%;
}
.job-modal .scroll-box .list-box > ul > li ul > li {
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: -0.02em;
    padding-right: 2.0rem;
}
.job-modal .scroll-box .list-box li.no-dot {
    font-weight: 700;
}
.job-modal .scroll-box .list-box li.no-dot::before {
    display: none;
}
.job-modal .scroll-box .list-box li::before {
    top: 1.5rem;
}

@media (max-width: 800px) {
    .job-modal {
        padding: 3rem 2rem;
        background: #fff;
        border-radius: 1rem;
        width: calc(100% - 4rem);
    }
    .job-modal .top-box {
        padding-bottom: 1.4rem;
    }
    .job-modal .top-box h1 {
        font-size: 1.8rem;
    }
    .job-modal .scroll-box .list-box > ul > li {
        flex-direction: column;
    }
    .job-modal .scroll-box .list-box .list-title {
        min-width: auto;
        padding-bottom: 1.5rem;
        font-size: 1.6rem;
        line-height: 1.2;
    }
    .job-modal .scroll-box .list-box {
        gap: 4rem;
        padding-top: 2rem;
    }
    .job-modal .scroll-box .list-box .list-wrap {
        gap: 4rem;
    }
    .job-modal .scroll-box .list-box > ul > li ul > li {
        font-size: 1.6rem;
        padding-right: 1.2rem;
    }
    .job-modal .scroll-box .list-box li::before {
        top: 1.125rem;
    }
    .job-modal .x-btn {
        top: 3rem;
        right: 2rem;
        width: 2.4rem;
        height: 2.4rem;
    }
}

/* 모달 버튼 추가 */
.job-modal a.apply {
    background-color: #EC0C6E;
    color: #fff;
    padding: .8rem 4rem;
    text-align: center;
    line-height: 1.2;
    border-radius: 4rem;
    transition: .3s;
    font-weight: 700;
    margin-right: 4.0rem;
}
@media (max-width: 800px) {
    .job-modal .top-box {
        flex-direction: column;
        gap: 1.2rem;
    }
    .job-modal a.apply {
        /* margin-right: 2.0rem; */
    }
}

.hyperlink:hover {
    color: #EC0C6E
}

/* 뉴스 섹션 추가 */
.news-area {
    margin-top: 8.0rem;
    width: 100%;
    border-radius: 2.0rem;
    padding: 5.0rem;
    background: rgba(0, 0, 0, 0.00);
    border: 1px solid #fff;
    box-shadow: 5px 5px 10px 0 rgba(117, 40, 4, 0.10);
    filter: blur(20%);
    font-size: 2.2rem;
    font-weight: 600;
}
.news-bubble {
   display: inline-flex;
   flex-direction: column;
   gap: 2.8rem; 
}
/* 공통 스타일 */
.news-bubble li {
    width: fit-content;
  padding: 1.6rem 2.0rem;
  line-height: 1.6;
  filter: drop-shadow(5px 5px 10px rgba(117, 40, 4, 0.10));
}
.news-bubble li.left {
    align-self: flex-start;  /* 왼쪽 정렬 */
    border-radius: 20px 20px 20px 0;
    background: #EC0C6E;
    color: #fff;
}
.news-bubble li.right{
      align-self: flex-end;  
    border-radius: 20px 20px 0px 20px;
    background: #fff;
    color: #EC0C6E;
    text-align: right;
}

/* 왼쪽 꼬리 */
.news-bubble li.left::before {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: -16px; /* 이미지가 겹치지 않게 */
  /* transform: translateY(-50%); */
  width: 16px;  /* 이미지 크기 맞춤 */
  height: 16px;
  background: url(../img/bubble-tail-left.svg) no-repeat center;
  background-size: contain;
}

/* 오른쪽 꼬리 */
.news-bubble li.right::before {
  content: "";
  position: absolute;
  bottom: -0.5px;
  right: -16px;
  /* transform: translateY(-50%); */
  width: 16px;
  height: 16px;
  background: url(../img/bubble-tail-right.svg) no-repeat center;
  background-size: contain;
}

.news-modal {
    padding: 6rem 3rem;
    width: 100%;
    max-width: 112rem;
    border-radius: 2rem;
    border: 1px solid #EC0C6E;
    background: rgba(255, 255, 255, 1);
    box-shadow: 3px 3px 30px 0 rgba(0, 0, 0, 0.10);
}
.news-modal .top-box img{
    width: 18rem;
}
.news-modal .scroll-box .list-box  {
    gap: 4rem;
    padding-right: 3rem;
}
.news-modal .scroll-box .list-box p{
    word-break: keep-all;
    margin-top: 2.4rem;
}
.news-modal .scroll-box .list-box span.text-1{
    font-size: 1.6rem;
}
.news-modal .scroll-box .list-box .new-img{
    padding: 0 4rem;
    margin: 0 auto;
}
.desc {
    font-size: 1.6rem;
    letter-spacing: 0!important;
}
@media (max-width: 1279px) {
    .news-modal .scroll-box .list-box p{
        font-size: 2.0rem;
   }
       .news-area {
        font-size: 1.6rem;
       }
}
@media (max-width: 800px) {
    .news-area {
        margin-top: 5rem;
        font-size: 1.4rem;
        padding: 2.4rem;
    }
    .news-area p.desc{
        margin-top: 3rem;
    }
    .news-bubble {
        gap: 2.0rem;
    }
    .news-bubble li {
        padding: 1.0rem 1.4rem;
    }
    .news-modal {
        padding: 3rem 2rem;
        background: #fff;
        border-radius: 1rem;
        width: calc(100% - 4rem);
    }
    .news-modal .top-box img{
        width: 14rem;
    }
    .news-modal .scroll-box .list-box {
        padding-right: 1.2rem;
    }
    .news-modal .scroll-box .list-box p{
        font-size: 1.6rem;
        margin-top: 2.0rem;
    }
    .news-modal .scroll-box .list-box span.text-1{
        font-size: 1.4rem;

    }
    .news-modal .scroll-box .list-box .new-img{
        padding: 0;
    }
    .desc {
    font-size: 1.3rem;
}
}

