:root {

    /* gradient color */
    --GR200: linear-gradient(180deg, rgba(52,86,219,1) 0%, rgba(252,178,186,1) 100%);
    --GR200-1: linear-gradient(90deg, rgba(52,86,219,1) 0%, rgba(252,178,186,1) 100%);

    /* padding */
    --padding-1: 0 2rem;
    --padding-2: 0 2rem;

}



.wrap-1 {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.wrap-2 {
    max-width: 1200px;
    margin: 0 auto;
}
.title h1, .title h1 span {
    font-size: 6rem;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
}
.title p {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.5;
    margin-top: 2.8rem;
}

@keyframes bounceInUp2 {
    0% {
        opacity: 0;
        transform: translateY(2000px) scale(0.25);
    }
    55% {
        transform: translateY(-50px);
    }
    70% {
        opacity: 1;
        transform: translateY(50px) scale(1);
    }
    85% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

.bounceInUp2 {
    -webkit-animation-name: bounceInUp2;
    animation-name: bounceInUp2;
}

/* 애니메이션 */
@keyframes bounce1 {
    50% {
      transform: translate(0, 0%);
  }
}
@keyframes bounce2 {
    50% {
      transform: translate(0, 5%);
  }
}
@keyframes light {
    50% {
      opacity: 0;
  }
}

@media (max-width: 1200px) {

    :root {
        --padding-1: 0 4.4rem;
        --padding-2: 0 6rem;
    }
    .title h1, .title h1 span {
        font-size: 4.8rem;
    }
    .title p {
        font-size: 2.4rem;
        margin-top: 2.4rem;
    }

}
@media (max-width: 767px) {

    :root {
        --padding-1: 0 2rem;
        --padding-2: 0 2rem;
    }
    .title h1, .title h1 span {
        font-size: 2.4rem;
    }
    .title p {
        font-size: 1.6rem;
        margin-top: 1.6rem;
    }

}


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

/* 헤더 영역 */
.header-area {
    background-color: #3456DA;
    padding: var(--padding-1);
    height: 10rem;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-area.active {
    background-color: #fff;
}
.header-area.active ul li a {
    color: #575453;
}
.header-area.active ul li a.apply {
    color: #fff;
}
.header-area.active .logo {
    content: url(../img/logo.svg);
}
.header-area .wrap-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.header-area .logo {
    width: 15.6rem;
}
.header-area ul {
    gap: 6rem;
}
.header-area ul li a {
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.2;
    color: #fff;
}
.header-area ul li a.active,
.side-area ul li a.active {
    color: #D5B998;
    position: relative;
}
.header-area ul li a.active::before,
.header-area ul li a.active::after,
.side-area ul li a.active::before,
.side-area ul li a.active::after {
    position: absolute;
    content: '';
    width: 0.4rem;
    height: 0.4rem;
    background-color: #D5B998;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.header-area ul li a.active::before,
.side-area ul li a.active::after {
    left: -0.6rem;
}
.header-area ul li a.active::after,
.side-area ul li a.active::before{
    right: -0.6rem;
}
.header-area .apply {
    padding: 1rem 2rem;
    text-align: center;
    background: var(--GR200-1);
    border-radius: 0.4rem;
    border: 1px solid #978DD3;
}
.header-area .apply:hover {
    background: var(--GR200);
    transition: all 0.5s;
}
.header-area .menu-btn {
    display: none;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/ico_menu-white.svg)no-repeat center/cover;
    cursor: pointer;
}
.header-area .close-btn {
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/ico_x-close.svg)no-repeat center/cover;
    cursor: pointer;
}

/* 사이드바 */
.side-area {
    display: none;
}

/* 플로팅 버튼 */
.btm-apply-btn {
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
    height: 56px;
    border: 0;
    font-size: 18px;
    opacity: 1;
    display: none;
    background: var(--GR200-1);
    z-index: 100;
    color: #fff;
    font-weight: 500;
    border-top: 1px solid #3456DB;
}

@media (max-width: 1200px) {

    .header-area {
        height: 6rem;
    }
    .header-area .wrap {
        padding-top: 0.4rem;
    }
    .header-area .logo {
        width: 9.2rem;
    }
    .header-area ul {
        display: none;
    }
    .header-area .menu-btn {
        display: block;
    }
    .header-area.active .menu-btn {
        content: url(../img/ico_menu.svg);
    }
    .side-area {
        display: block;
        z-index: 1000;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background: #5749a9;
        /* background-color: #3456DB; */
        position: fixed;
        transition: all .3s;
    }
    .side-area.active {
        left: 0;
    }
    .side-area.active .logo {
        content: url(../img/logo-white.svg);
    }
    .side-area .header-area {
        /* background-color: #3456DB; */
        background: #5749a9;
    }
    .side-area .header img {
        cursor: pointer;
    }
    .side-area .middle-box {
        display: flex;
        margin-top: 6.4rem;
        flex-direction: column;
        align-items: center;
    }
    .side-area ul {
        gap: 4rem 0;
        margin-left: -1.2rem;
    }
    .side-area ul li a {
        font-size: 1.7rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.3;
        position: relative;
    }
    .side-area .main-apply-btn {
        color: #fff;
        background: var(--GR200-1);
        padding: 1.2rem 4rem;
        border-radius: 0.4rem;
        border: 1px solid #978DD3;
        white-space: nowrap;
        gap: 0 4.8rem;
        margin-top: 4rem;
    }
    .btm-apply-btn {
        display: flex;
    }

}
@media (max-width: 767px) {

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

}
/* //헤더 영역 */

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

/* 메인 헤더 영역 */
.main-header-area {
    padding: var(--padding-1);
    background-color: #3456DA;
    height: 104rem;
    overflow: hidden;
    color: #fff;
    position: relative;
}
.main-header-area::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 10rem;
    background-color: #017087;
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
    left: 0;
    bottom: 0;
}
.main-header-area .wrap-1 {
    position: relative;
}
.main-header-area .main-title-area {
    margin-top: 5.4rem;
    position: relative;
    z-index: 3;
}
.main-header-area .main-title-area .title-box p:first-child {
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #D5B998;
    font-family: 'Cafe24 Classictype';
    font-weight: 700;
    font-size: 3.2rem;
}
.main-header-area .main-title-area .title-box .img-box {
    max-width: 48.8rem;
    margin-top: 3.6rem;
    margin-bottom: 4.2rem;
}
.main-header-area .main-title-area .title-box p:last-child {
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
}
.main-header-area .main-title-area .title-box p:last-child span {
    font-size: 4rem;
}
.main-header-area .timer-area {
    margin-top: 4.4rem;
}
.main-header-area .timer-area > span {
    display: block;
    margin-bottom: 2.8rem;
    letter-spacing: -0.02em;
    color: #000;
    font-size: 2.6rem;
    font-weight: 500;
}
.main-header-area .timer-area .timer {
    display: flex;
    gap: 1rem;
}
.main-header-area .timer-area .timer > div {
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    max-width: 12rem;
    height: 12rem;
    border-radius: 0.6rem;
    background-color: rgba(255,255,255,0.8);
    color: #fff;
}
.main-header-area .timer-area .timer > div p {
    font-size: 6rem;
    font-family: 'impact';
    background: var(--GR200);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.main-header-area .timer-area .timer > div span {
    line-height: 1.2;
    font-size: 1.6rem;
    color: #3456DB;
    font-size: 2rem;
}
.main-header-area .main-arrow {
    left: 50%;
    transform: translateX(-50%);
    bottom: 16rem;
    z-index: 5;
}
/* 메인 비주얼 */
.main-visual-area {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.main-visual-area .visual-1 {
    right: 0;
    bottom: 20rem;
}
.main-visual-area .visual-2 {
    bottom: 0;
    right: 0;
}
.main-visual-area .visual-1  img {
    transform: translate(0%, -2%);
    animation-name: bounce1;
    animation-duration: 2.5s;
    animation-delay: 0.3s;
    animation-iteration-count: infinite;
}
.main-visual-area .visual-3 {
    width: 50rem;
    /* right: 10%; */
    right: 16rem;
    bottom: 12.6rem;
}
.main-visual-area .visual-4 {
    bottom: 0;
    right: 0;
    /* width: 200rem; */
}
@media (max-width: 2480px) {
    .main-visual-area .visual-3{
        right: 37.7rem;
        bottom: 22.3rem;
    }
}
@media (max-width: 2080px) {
    .main-visual-area .visual-3{
        right: 27.7rem;
        bottom: 18rem;
    }
}
@media (max-width: 2020px) {
    .main-visual-area .visual-3{
        right: 26rem;
        bottom: 17.6rem;
    }
}
@media (max-width: 1920px) {
    .main-visual-area .visual-3{
        right: 23.4rem;
        bottom: 16.3rem;
    }
}
@media (max-width: 1728px) {
    .main-visual-area .visual-3{
        right: 11%;
        bottom: 14.5rem;
    }
}
@media (max-width: 1680px) {
    .main-visual-area .visual-3{
        right: 10.4%;
        bottom: 14rem;
    }
}
@media (max-width: 1620px) {
    .main-visual-area .visual-3{
        right: 16rem;
        bottom: 13.4rem;
    }
}
@media (max-width: 1520px) {
    .main-visual-area .visual-3{
           right: 13.8rem;
        bottom: 12.2rem;
    }
}
@media (max-width: 1480px) {
    .main-visual-area .visual-3{
        right: 12.2rem;
        bottom: 15.5rem;
    }
}
@media (max-width: 1440px) {
    .main-visual-area .visual-3{
        right: 11rem;
        bottom: 14.8rem;
    }
}
@media (max-width: 1380px) {
    .main-visual-area .visual-3{
        right: 7.1%;
        bottom: 14rem;
    }
}
@media (max-width: 1320px) {
    .main-visual-area .visual-3{
        right: 8rem;
        bottom: 13rem;
    }
}

@media (max-width: 1480px) {

    .main-visual-area .visual-2 img{
        content: url(../img/kb-obj-02-tb.png);
    }
    .main-visual-area .visual-4 img{
        content: url(../img/kb-obj-05-tb.png);
    }
}

@media (max-width: 1024px) {
    .main-visual-area .visual-3{
        right: 4.5rem;
        bottom: 8rem;
    }
}

/* 1200px */
@media (max-width: 1200px) {
    .main-header-area {
        background: var(--GR200);
        height: 108rem;
    }
    .main-header-area::after {
        border-top-left-radius: 6rem;
        border-top-right-radius: 6rem;
    }
    .main-header-area .main-title-area {
        margin-top: 6.8rem;
    }
    .main-header-area .main-title-area .title-box p:first-child {
        font-size: 2rem;
    }
    .main-header-area .main-title-area .title-box .img-box {
        max-width: 30rem;
        margin-top: 2rem;
        margin-bottom: 4.8rem;
    }
    .main-header-area .main-title-area .title-box p:last-child,
    .main-header-area .main-title-area .title-box p:last-child span {
        font-size: 2.6rem;
    }
    .main-header-area .timer-area .timer {
        gap: 0.8rem;
    }
    .main-header-area .timer-area > span {
        color: #fff;
    }
    .main-header-area .timer-area .timer > div {
        max-width: 8rem;
        height: 8rem;
        background-color: rgba(255,255,255,0.5);
    }
    .main-header-area .timer-area .timer > div p {
        font-size: 3.6rem;
    }
    .main-header-area .timer-area .timer > div span {
        font-size: 1.4rem;
    
    }
    .main-header-area .main-arrow {
        bottom: 14rem;
        width: 4rem;
    }
    /* 메인 비주얼 */
    .main-visual-area .visual-1 {
        width: 76rem;
        right: -10rem;
        bottom: 18.9rem;
    }
    .main-visual-area .visual-2 {
        width: 134rem;
        right: -10rem;
    }

    .main-visual-area .visual-3 {
        width: 40rem;
        right: 4rem;
        bottom: 15rem;
    }
    .main-visual-area .visual-4 {
        width: 134rem;
        right: -10rem;
    }
}

/* 767px */
@media (max-width: 767px) {
    .main-header-area {
        height: 100vh;
    }
    .main-header-area::after {
        height: 10rem;
        border-top-left-radius: 4rem;
        border-top-right-radius: 4rem;
    }
    .main-header-area .main-title-area {
        margin-top: 5.2rem;
    }
    .main-header-area .main-title-area .title-box p:first-child {
        font-size: 1.3rem;
    }
    .main-header-area .main-title-area .title-box .img-box {
        max-width: 20rem;
        margin-top: 1.4rem;
        margin-bottom: 1.8rem;
    }
    .main-header-area .main-title-area .title-box p:last-child, .main-header-area .main-title-area .title-box p:last-child span {
        font-size: 1.8rem;
    }
    .main-header-area .timer-area {
        margin-top: 3.2rem;
    }
    .main-header-area .timer-area > span {
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
    }
    .main-header-area .timer-area .timer {
        gap: 0.6rem;
    }
    .main-header-area .timer-area .timer > div {
        max-width: 6rem;
        height: 6rem;
    }
    .main-header-area .timer-area .timer > div p {
        font-size: 2.4rem;
    }
    .main-header-area .timer-area .timer > div span {
        font-size: 1rem;
    }
    .main-header-area .main-arrow {
        bottom: 11rem;
    }
    /* 메인 비주얼 */
    .main-visual-area .visual-1 {
        width: 36rem;
        right: 0;
        bottom: 9rem;
    }
    .main-visual-area .visual-2 {
        width: 62.3rem;
        right: 0;
        bottom: 4rem;
    }
    .main-visual-area .visual-3 {
        width: 20rem;
        right: 6.8rem;
        bottom: 11rem;
    }
    .main-visual-area .visual-4 {
        width: 67rem;
        right: 0;
        bottom: 4rem;
    }
}

@media (max-width: 540px) {
    .main-visual-area .visual-4 {
        width: 65.3rem;
    }
    .main-header-area .main-title-area {
        margin-top: 2.4rem;
    }
    .main-visual-area .visual-2 {
        right: -35px;
    }
}

@media (max-width: 375px) {
    .main-visual-area .visual-3 {
    width: 20rem;
        right: 6.4rem;
        bottom: 11rem;
    }


}

@media (max-width: 360px) {
    .main-visual-area .visual-3 {
        width: 20rem;
        right: 6.4rem;
        bottom: 10.4rem;
    }
}

/* //메인 헤더 영역 */

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

/* 꿈의 백화점 영역 */
.dream-area {
    padding: var(--padding-1);
    padding-top: 10rem;
    padding-bottom: 30rem;
    position: relative;
    background: linear-gradient(180deg, #017087 0%, #0D3889 100%);
    /* background: linear-gradient(180deg, #fff 0%, #FFF6EB 100%); */
}
.dream-area::before {
    position: absolute;
    content: '';
    background: url(../img/img_sec1.png)no-repeat top/100%;
    width: 100%;
    height: 100%;
    top: -10rem;
    left: 0;
}
.dream-area::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 10rem;
    background-color: #3456DA;
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
    left: 0;
    bottom: 0;
}
.dream-area .title h1 {
    color: #fff;
    /* background: var(--GR200);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; */
}
.dream-area .title {
    margin-bottom: 10rem;
}
.youtube {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #FCB2BA 0%, #E6DDDE 100%);
    /* background-color: #FCB2BA; */
    border-radius: 2rem;
}
.youtube img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.youtube iframe {
    border: none;
}
.youtube iframe,
.youtube object,
.youtube embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 1200px */
@media (max-width: 1200px) {
    .dream-area {
        padding-top: 0;
        padding-bottom: 32rem;
    }
    .dream-area::after {
        height: 16rem;
        border-top-left-radius: 6rem;
        border-top-right-radius: 6rem;
    }
    .dream-area .title {
        margin-bottom: 5.8rem;
    }
}

/* 767px */
@media (max-width: 767px) {
    .dream-area {
        padding-top: 0;
        padding-bottom: 20rem;
    }
    .dream-area::after {
        height: 10rem;
        border-top-left-radius: 4rem;
        border-top-right-radius: 4rem;
    }
    .dream-area .title {
        margin-bottom: 4rem;
    }
}
/* //꿈의 백화점 영역 */

/* 꿈의 백화점 오브젝트 */
.dream-area .container .sub-visual {
    right: 15%;
    top: 24rem;
}
.dream-area .container .sub-visual img {
    transform: translate(0%, -10%);
    animation-name: bounce1;
    animation-duration: 2.5s;
    animation-delay: 0.3s;
    animation-iteration-count: infinite;
}
@media (max-width: 1560px) {
    .dream-area .container .sub-visual {
        right: 5%;
        top: 29rem;
        height: 200px;
    }
    .dream-area .container .sub-visual img{
        height: 200px;
    }
}
@media (max-width: 1200px) {
    .dream-area .container .sub-visual {
        right: 0%;
        top: 4rem;
        display: none;
    }
}
/* 꿈의 백화점 물방울 오브젝트 */
.dream-area .container .sub-visual-2 {
    right: 3%;
    top: 0;
}
.dream-area .container .sub-visual-2 img {
    transform: translate(0%, -10%);
    animation-name: bounce2;
    animation-duration: 5s;
    animation-delay: 0.6s;
    animation-iteration-count: infinite;
}
@media (max-width: 1200px) {
    .dream-area .container .sub-visual-2 {
        top: -6rem;
       
    }
}

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

/* 온라인 라이브 영역 */
.live-area {
    padding: var(--padding-1);
    position: relative;
    padding-top: 10rem;
    padding-bottom: 30rem;
    background: linear-gradient(180deg, #3456DB 0%, #C99FC7 100%);
    position: relative;
}
.live-area::before {
    position: absolute;
    content: '';
    background: url(../img/img_star.png)no-repeat top/100%;
    width: 100%;
    height: 68rem;
    top: -10rem;
    left: 0;
}
.live-area::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 10rem;
    background-color: #5749A9;
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
    left: 0;
    bottom: 0;
}
.live-area .title {
    color: #fff;
}
.live-area .title h1 span {
    background-color: #0D3889;
    border-radius: 0.4rem;
    padding: 0 1rem;
}
.live-area .container .live-date {
    border: 1px solid #fff;
    margin-top: 6.8rem;
    margin-bottom: 10rem;
    padding: 2.4rem 4rem;
    border-radius: 1.2rem;
    gap: 2rem;
}
.live-area .container .live-date div {
    gap: 2.8rem;
}
.live-area .container .live-date div span {
    color: #3456DB;
    background-color: #fff;
    border-radius: 0.6rem;
    font-size: 2.4rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    line-height: 1.5;
}
.live-area .container .live-date div p {
    font-size: 2.6rem;
    line-height: 1.5;
    color: #fff;
}
.live-area .container .live-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    width: 100%;
}
.live-area .container .live-step .part {
    padding: 4rem;
    background-color: #fff;
    border-radius: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.live-area .container .live-step .part .part-info p {
    font-size: 2.2rem;
    line-height: 1.5;
}
.live-area .container .live-step .part .part-title p {
    color: #5749A9;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}
.live-area .container .live-step .part .part-title h2 {
    background: var(--GR200-1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
}
.live-area .container .live-step .part .part-title h2 span {
    font-size: 2rem;
    font-weight: 500;
}

/* 1200px */
@media (max-width: 1200px) {
    .live-area {
        padding-top: 0;
        padding-bottom: 32rem;
    }
    .live-area::before {
        top: -16rem;
    }
    .live-area::after {
        height: 16rem;
        border-top-left-radius: 6rem;
        border-top-right-radius: 6rem;
    }
    .live-area .container .live-date {
        margin-top: 6.4rem;
        margin-bottom: 6rem;
        padding: 2.4rem 3.2rem;
    }
    .live-area .container .live-date div span {
        font-size: 2rem;
    }
    .live-area .container .live-date div p {
        font-size: 2.2rem;
    }
    .live-area .container .live-step {
        gap: 1.4rem;
        grid-template-columns: 1fr;
    }
    .live-area .container .live-step .part {
        padding: 3.2rem;
    }
    .live-area .container .live-step .part .part-info p {
        font-size: 1.9rem;
    }
    .live-area .container .live-step .part .part-title p {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    .live-area .container .live-step .part .part-title h2 {
        font-size: 2.4rem;
        margin-bottom: 1.6rem;
    }
    .live-area .container .live-step .part .part-title h2 span {
        font-size: 1.9rem;
    }
}

/* 767px */
@media (max-width: 767px) {
    .live-area {
        padding-top: 0;
        padding-bottom: 20rem;
    }
    .live-area::before {
        top: -10rem;
    }
    .live-area::after {
        height: 10rem;
        border-top-left-radius: 4rem;
        border-top-right-radius: 4rem;
    }
    .live-area .container .live-date {
        margin-top: 4.8rem;
        margin-bottom: 4rem;
        padding: 2rem;
    }
    .live-area .container .live-date div {
        gap: 2rem;
    }
    .live-area .container .live-date div span {
        min-width: 76px;
        font-size: 1.6rem;
    }
    .live-area .container .live-date div p {
        font-size: 1.6rem;
    }
    .live-area .container .live-step {
        gap: 1.6rem;
    }
    .live-area .container .live-step .part {
        border-radius: 1.2rem;
        padding: 2rem;
    }
    .live-area .container .live-step .part .part-title h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    .live-area .container .live-step .part .part-info p {
        font-size: 1.5rem;
    }
    .live-area .container .live-step .part .img-box {
        width: 6rem;
    }
}
/* //온라인 라이브 영역 */

/* 온라인 라이브 오브젝트 */
.live-area .container .sub-visual {
    right: 0;
    bottom: -4px
}
.live-area .container .sub-visual img {
    transform: translate(0%, -10%);
    /* animation-name: bounce1; */
    animation-duration: 2.5s;
    animation-delay: 0.3s;
    animation-iteration-count: infinite;
}
.live-area .container .sub-visual img.abs {
    top: -16rem;
    height: 58rem;
    width: 66.6rem;
    left: -16rem;
    opacity: 1;
    animation-name: light;
    animation-duration: 2.5s;
    animation-delay: 0.3s;
    animation-iteration-count: infinite;
}
@media (max-width: 1560px) {
    .live-area .container .sub-visual {
        right: 10rem;
        top: 30rem;
        bottom: 0;
    }
    .live-area .container .sub-visual img{
        height: 47rem
    }
    .live-area .container .sub-visual img.abs {
        top: -6rem;
        height: 29rem;
        width: 33.3rem;
        left: -6rem;
    }
}
@media (max-width: 1200px) {
    .live-area .container .sub-visual img{
       display: none;
    }
}

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

/* 사전 신청자 혜택 영역 */
.benefit-area {
    padding: var(--padding-1);
    position: relative;
    padding-top: 1rem;
    padding-bottom: 30rem;
    background: linear-gradient(180deg, #5749A9 0%, #FCB2BA 100%);
}
.benefit-area::before {
    position: absolute;
    content: '';
    background: url(../img/img_sec3.png)no-repeat top/100%;
    width: 100%;
    height: 68rem;
    top: -10rem;
    left: 0;
}
.benefit-area::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 10rem;
    background-color: #017087;
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
    left: 0;
    bottom: 0;
}
.benefit-area .title {
    color: #fff;
}
.benefit-area .title h1 span {
    background-color: #978DD3;
    border-radius: 0.4rem;
    padding: 0 1rem;
}
.benefit-area .title p {
    margin-bottom: 2.8rem;
    margin-top: 0;
}
.benefit-area .gift {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.4rem;
    margin-top: 10rem;
    margin-bottom: 6.8rem;
}
.benefit-area .gift .box {
    background-color: #fff;
    border-radius: 2rem;
    height: 45rem;
}
.benefit-area .gift .box .money {
    max-width: 25rem;
    position: relative;
    bottom: 10%;
}
.benefit-area .gift .box .rank {
    top: -0.6rem;
    left: -0.6rem;
    max-width: 12rem;
}
.benefit-area .gift .box p {
    font-size: 2.8rem;
    line-height: 1.3;
    left: 4rem;
    bottom: 7rem;
}
.benefit-area .gift .box .num {
    right: 2rem;
    bottom: 2rem;
    background-color: #E4E0DD;
    border-radius: 50%;
    font-size: 2.4rem;
    width: 10rem;
    height: 10rem;
    line-height: 1.3;
}
.benefit-area .gift .box .num span {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}
.area-apply-btn {
    width: 100%;
    height: 10rem;
}
.area-apply-btn.btn-space {
    margin-top: 10rem;
}
.area-apply-btn div {
    background-color: #000;
    border-radius: 1.6rem;
    position: relative;
    overflow: hidden;
}
.area-apply-btn div::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 0;
    background-color: #3456DB;
    transition: .5s;
    left: 0;
}
.area-apply-btn:hover div::before {
    width: 100%;
}
.area-apply-btn div p {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    display: inline-block;
    vertical-align: middle;
    z-index: 2;
    word-break: keep-all;
}
.area-apply-btn span {
    width: 10rem;
    border-radius: 1.6rem;
    background-color: #000;
    position: relative;
    transition: .5s;
}
.area-apply-btn:hover span {
    background-color: #3456DB;
}
.area-apply-btn span img {
    z-index: 2;
}

/* 버튼 블루 */
.area-apply-btn.color-blue div {
    background-color: #3456DB;
}
.area-apply-btn.color-blue div::before {
    background-color: #000;
}
.area-apply-btn.color-blue span  {
    background-color: #3456DB;
}
.area-apply-btn.color-blue:hover span {
    background-color: #000;
}


/* 1200px */
@media (max-width: 1200px) {
    .benefit-area {
        padding-top: 0;
        padding-bottom: 32rem;
    }
    .benefit-area::before {
        top: -16rem;
    }
    .benefit-area::after {
        height: 16rem;
        border-top-left-radius: 6rem;
        border-top-right-radius: 6rem;
    }
    .benefit-area .title p {
        margin-bottom: 2.4rem;
        margin-top: 0;
    }
    .benefit-area .gift {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        place-items: center;
        gap: 5.4rem 2rem;
        margin-top: 7.5rem;
        margin-bottom: 7.2rem;
    }
    .benefit-area .gift .box {
        height: 49rem;
    }
    .benefit-area .gift .box-1 {
        grid-column: span 2;
        width: 42rem;
    }
    .benefit-area .gift .box-2 {
        justify-self: end;
    }
    .benefit-area .gift .box-3 {
        justify-self: start;
    }
    .benefit-area .gift .box:not(:first-child) {
        width: 31.4rem;
    }
    .benefit-area .gift .box .money {
        max-width: 24rem;
    }
    .benefit-area .gift .box-1 .money {
        max-width: 28.4rem;
    }
    .benefit-area .gift .box .rank {
        top: -0.6rem;
        left: -0.6rem;
        max-width: 10rem;
    }
    .benefit-area .gift .box p {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5.5rem;
        text-align: center;
        width: 100%;
    }
    .benefit-area .gift .box .num {
        right: -2rem;
        bottom: -2rem;
        font-size: 2.4rem;
    }
    .benefit-area .gift .box:not(:first-child) .num {
        right: -1rem;
        bottom: -2rem;
    }
    .benefit-area .gift .box .num span {
        font-size: 2.8rem;
    }
    .area-apply-btn {
        height: 8rem;
    }
    .area-apply-btn span {
        width: 8rem;
    }
    .area-apply-btn div p {
        font-size: 2rem;
    }
    .area-apply-btn.btn-space {
        margin-top: 8.0rem;
    }
}

/* 767px */
@media (max-width: 767px) {
    .benefit-area {
        padding-top: 0;
        padding-bottom: 20rem;
    }
    .benefit-area::before {
        top: -10rem;
    }
    .benefit-area::after {
        height: 10rem;
        border-top-left-radius: 4rem;
        border-top-right-radius: 4rem;
    }
    .benefit-area .gift {
        margin-top: 8.6rem;
        margin-bottom: 6rem;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .benefit-area .gift .box {
        width: 30rem !important;
        height: 30rem;
    }
    .benefit-area .gift .box-1 {
        grid-column: 1;
    }
    .benefit-area .gift .box:not(:first-child) {
        justify-self: center !important;
    }
    .benefit-area .gift .box-1 .money {
        max-width: 20rem;
    }
    .benefit-area .gift .box .rank {
        max-width: 7.2rem;
    }
    .benefit-area .gift .box p {
        font-size: 2rem;
        bottom: 3rem;
    }
    .benefit-area .gift .box .num {
        width: 8rem;
        height: 8rem;
        right: -1rem;
        bottom: -1rem !important;
        font-size: 2rem;
    }
    .benefit-area .gift .box .num span {
        font-size: 2rem;
    }
    .area-apply-btn {
        height: 6rem;
    }
    .area-apply-btn div {
        border-radius: 1rem;
    }
    .area-apply-btn div p {
        font-size: 1.6rem;
        padding: 0 1.6rem;
    }
    .area-apply-btn span {
        width: 6rem;
        border-radius: 1rem;
    }
    .area-apply-btn span img {
        width: 2rem;
    }
    .area-apply-btn.btn-space {
        margin-top: 6.0rem;
    }
}
/* //사전 신청자 혜택 영역 */

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

/* 채용공고 영역 */
.employ-area {
    padding: var(--padding-1);
    position: relative;
    padding-top: 10rem;
    padding-bottom: 30rem;
    background: linear-gradient(180deg, #017087 0%, #0D3889 100%);
}
.employ-area::before {
    position: absolute;
    content: '';
    background: url(../img/img_sec4.png)no-repeat top/100%;
    width: 100%;
    height: 100%;
    /* height: 68rem; */
    top: -10rem;
    left: 0;
}
.employ-area::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 10rem;
    background-color: #3456DB;
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
    left: 0;
    bottom: 0;
}
.employ-area .title {
    color: #fff;
}
.employ-area .container {
    margin-top: 10rem;
    z-index: 4
}
.employ-area .container .sub-visual {
    z-index: 3;
    left: 11%;
    top: 36rem;
}
.employ-area .container .sub-visual img {
    transform: translate(0%, -10%);
    animation-name: bounce1;
    animation-duration: 2.5s;
    animation-delay: 0.3s;
    animation-iteration-count: infinite;
}
.employ-area .container .sub-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    background: var(--GR200-1);
    height: 8rem;
    width: 60rem;
    border-top-left-radius: 8rem;
    border-top-right-radius: 8rem;
}
.employ-area .container .conts-border {
    padding: 0.3rem;
    background: var(--GR200-1);
    border-radius: 12rem 12rem 4rem 4rem;
    width: 100%;
}
.employ-area .container .conts {
    background-color: #fff;
    border-radius: 12rem 12rem 4rem 4rem;
    width: 100%;
    padding: 8.4rem 10rem 10rem;
}
.employ-area .container .conts .sub-title-info {
    gap: 2.8rem;
}
.employ-area .container .conts .sub-title-info p {
    font-size: 2.8rem;
    font-weight: 500;
    color: #575453;
    position: relative;
}
.employ-area .container .conts .sub-title-info p.line::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 3rem;
    top: calc(50% - 0px);
    left: 0;
    transform: translateY(-50%);
    background-color: rgba(52,86,216,0.2);
}
.employ-area .container .conts .sub-title-info p span {
    font-size: 2.8rem;
    font-weight: 500;
    /* color: #3456DB; */
    
}
.employ-area .container .conts .guide {
    gap: 6.8rem;
    margin-top: 10rem;
}
.employ-area .container .conts .guide .box {
    gap: 10rem;
    align-items: flex-start;
}
.employ-area .container .conts .guide .box h3 {
    color: #fff;
    font-size: 2.8rem;
    padding: 1.6rem 0;
    text-align: center;
    width: 100%;
    max-width: 20rem;
    border-radius: 4rem;
    white-space: nowrap;
}
.container .box ul li {
    position: relative;
    font-size: 2.2rem;
    line-height: 1.6;
    padding-left: 1.6rem;
    word-break: keep-all;
}
.container .box ul li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 1.5rem;
    width: 0.4rem;
    height: 0.4rem;
    background-color: #000;
    border-radius: 50%;
}
.employ-area .container .conts .guide .box-1 h3 {
    background-color: #5749A9;
}
.employ-area .container .conts .guide .box-2 h3 {
    background-color: #3456DB;
}
.employ-area .container .conts .guide .box-2 .list-wrap {
    border-top: 1px solid #3456DB;
    border-bottom: 1px solid #3456DB;
    width: 100%;
}
.employ-area .container .conts .guide .box .list {
    display: flex;
}
.employ-area .container .conts .guide .box .list h4 {
    width: 20rem;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.6;
    color: #3456DB;
}
.employ-area .container .conts .guide .box .list p {
    font-size: 2.2rem;
    line-height: 1.6;
    /* padding-top: 0.4rem; */
    width: calc(100% - 20rem);
}
.employ-area .container .conts .guide .box-2 .list-wrap .list-box-1 .list p span {
    font-size: 1.8rem;
    color: #999;
    line-height: 1.6;
    /* padding-top: 0.5rem; */
    display: block;
}
.employ-area .container .conts .guide .box-2 .list-wrap .list-box-2 .list p span {
    font-size: 1.8rem;
    color: #999;
    line-height: 1.4;
}
.employ-area .container .conts .guide .box-2 .list-wrap .list-1 {
    border-bottom: 1px solid #3456DB;
    padding: 2.4rem 0;
}
.employ-area .container .conts .guide .box-2 .list-wrap .list-1 p {
    font-weight: 700;
}
.employ-area .container .conts .guide .box .list-wrap .list-box {
    padding: 2.4rem 0;
}
.employ-area .container .conts .guide .box-2 .list-wrap .list-box-1 {
    border-bottom: 1px solid #ACACAC;
}
.employ-area .container .conts .guide .box-2 .list-wrap .list-box .list:not(:last-child) {
    padding-bottom: 1.6rem;
}
.employ-area .container .conts .guide .box-3 h3 {
    background-color: #3456DB;
}
.employ-area .container .conts .guide .box-3 .list-box {
    margin-top: 4.8rem;
    gap: 2.4rem;
}
.employ-area .container .conts .guide .box-3 ul {
    width: calc(100% - 20rem);
}
.employ-area .container .conts .guide .box-3 ul li p {
    color: #999;
}
.employ-area .container .conts .guide .box-3 ul li span {
    color: #3456DB;
    font-size: 2.2rem;
    font-weight: 500;
}
.employ-area .container .conts .guide .box-3 .list-3 h4 {
    line-height: 1.4;
}
.employ-area .container .conts .guide .box-3 .list-3 h4 span {
    font-size: 2.2rem;
}
.employ-area .container .conts .guide .box-4 h3,
.employ-area .container .conts .guide .box-5 h3 {
    background-color: #0D3889;
}
.employ-area .container .conts .guide .box-5 {
    align-items: center;
}
.employ-area .container .sub-text{
    font-size: 1.8rem!important;
    font-weight: 400!important
}
/* 1200px */
@media (max-width: 1200px) {
    .employ-area {
        padding-top: 0;
        padding-bottom: 32rem;
    }
    .employ-area::before {
        top: -16rem;
    }
    .employ-area::after {
        height: 16rem;
        border-top-left-radius: 6rem;
        border-top-right-radius: 6rem;
    }
    .employ-area .container {
        margin-top: 8.4rem;
    }
    .employ-area .container .sub-visual {
        display: none;
    }
    .employ-area .container .sub-title {
        height: 6.8rem;
        font-size: 2.6rem;
        border-top-left-radius: 6rem;
        border-top-right-radius: 6rem;
    }
    .employ-area .container .conts-border {
        border-radius: 4rem;
    }
    .employ-area .container .conts {
        padding: 8rem 3rem 3rem;
        border-radius: 4rem;
    }
    .employ-area .container .conts .sub-title-info {
        gap: 2rem;
    }
    .employ-area .container .conts .sub-title-info p,
    .employ-area .container .conts .sub-title-info p span {
        font-size: 2.2rem;
    }
    .employ-area .container .conts .guide {
        margin-top: 6.8rem;
    }
    .employ-area .container .conts .guide .box {
        flex-direction: column;
        gap: 4rem;
    }
    .employ-area .container .conts .guide .box h3 {
        max-width: 16rem;
        padding: 1.2rem 0;
        font-size: 2.4rem;
    }
    .container .box ul li {
        font-size: 2rem;
    }
    .employ-area .container .conts .guide .box .list h4 {
        font-size: 2.1rem;
        width: 14rem;
    }
    .employ-area .container .conts .guide .box-2 .list-wrap .list-box-1 .list p span {
        font-size: 1.9rem;
    }
    .employ-area .container .conts .guide .box .list p {
        font-size: 1.9rem;
    }
    .employ-area .container .conts .guide .box .step-guide .list {
        flex-direction: column;
    }
    .employ-area .container .conts .guide .box-3 ul {
        width: 100%;
    }
    .employ-area .container .conts .guide .box-3 ul li span {
        font-size: 1.9rem;
    }
    .employ-area .container .conts .guide .box-5 {
        align-items: flex-start;
    }
}

/* 767px */
@media (max-width: 767px) {
    .employ-area {
        padding-top: 0;
        padding-bottom: 20rem;
    }
    .employ-area::before {
        top: -10rem;
    }
    .employ-area::after {
        height: 10rem;
        border-top-left-radius: 4rem;
        border-top-right-radius: 4rem;
    }
    .employ-area .container {
        margin-top: 4rem;
    }
    .employ-area .container .sub-title {
        height: 5.6rem;
        font-size: 1.8rem;
        border-top-left-radius: 3.2rem;
        border-top-right-radius: 3.2rem;
        width: 28rem;
    }
    .employ-area .container .conts .sub-title-info p.line::before {
        top: calc(50% - 12px);
        height: 1.4rem;
    }
    .employ-area .container .conts-border {
        border-radius: 2rem;
    }
    .employ-area .container .conts {
        padding: 5rem 2rem 8rem 2rem;
        border-radius: 2rem;
    }
    .employ-area .container .conts .sub-title-info {
        gap: 1.2rem;
    }
    .employ-area .container .conts .sub-title-info p, .employ-area .container .conts .sub-title-info p span {
        font-size: 1.8rem;
        text-align: center;
    }
    .employ-area .container .conts .guide {
        gap: 4.8rem;
    }
    .employ-area .container .conts .guide .box h3 {
        padding: 0.8rem 0;
        max-width: 12rem;
        font-size: 1.8rem;
    }
    .employ-area .container .conts .guide .box {
        gap: 2.4rem;
    }
    .container .box ul li {
        font-size: 1.5rem;
        padding-left: 1.2rem;
    }
    .container .box ul li::before {
        top: 1rem;
        width: 0.3rem;
        height: 0.3rem;
    }
    .employ-area .container .conts .guide .box .list {
        flex-direction: column;
        gap: 0.4rem;
    }
    .employ-area .container .conts .guide .box .list h4 {
        font-size: 1.6rem;
        width: 100%;
    }
    .employ-area .container .conts .guide .box .list p {
        font-size: 1.6rem;
        width: 100%;
        letter-spacing: -0.5px;
        word-break: keep-all;
    }
    .employ-area .container .conts .guide .box-2 .list-wrap .list-box-1 .list p span,
    .employ-area .container .conts .guide .box-2 .list-wrap .list-box-2 .list p span,
    .employ-area .container .conts .guide .box-3 .list-3 h4 span {
        font-size: 1.6rem;
    }
    .employ-area .container .conts .guide .box-3 ul li span {
        font-size: 1.5rem;
    }
    .employ-area .container .conts .guide .box-3 .step-guide .img-box {
        max-width: 28rem;
    }
    .employ-area .container .conts .guide .box-3 .step-guide .img-box img {
        content: url(../img/steps-m.svg);
    }
    .employ-area .container .sub-text{
        font-size: 1.4rem!important;
    }
}
/* //채용공고 영역 */

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

/* FAQ 영역 */
.faq-area {
    padding: var(--padding-1);
    position: relative;
    padding-top: 10rem;
    padding-bottom: 20rem;
    background: linear-gradient(180deg, #3456DB 0%, #FCB2BA 100%);
}
.faq-area::before {
    position: absolute;
    content: '';
    background: url(../img/img_sec5.png)no-repeat top/100%;
    width: 100%;
    height: 84rem;
    top: -10rem;
    left: 0;
}
.faq-area .title {
    color: #fff;
}
.faq-area .container {
    margin-top: 10rem;
    margin-bottom: 8rem;
    gap: 2.3rem;
}
.faq-area .container .box {
    background-color: #fff;
    padding: 2.8rem;
    border-radius: 2rem 2rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
}
.faq-area .container .box h2,
.faq-area .container .box h2 p {
    font-size: 2.6rem;
    font-weight: 700;
    color: #3456DB;
    line-height: 1.4;
}
.faq-area .container .box h2 i {
    margin-right: 1.2rem;
    background: url(../img/faq-1.svg)no-repeat center/cover;
    width: 100%;
    max-width: 3.2rem;
    height: 3.2rem;
}
.faq-area .container .box-2 h2 i {
    background: url(../img/faq-2.svg)no-repeat center/cover;
}
.faq-area .container .box-3 h2 i {
    background: url(../img/faq-3.svg)no-repeat center/cover;
}
.faq-area .container .box h2 span {
    font-size: 2rem;
}
.faq-area .container .box ul li {
    font-weight: 300;
}
.faq-area .count-wrap {
    background-color: #fff;
    width: 100%;
    margin-top: 30rem;
    gap: 4.8rem;
    border-radius: 20rem 20rem 5rem 5rem;
    padding: 10rem 0;
}
.faq-area .count-wrap h2 {
    font-size: 4.8rem;
    line-height: 1.3;
}
.faq-area .count-wrap h2 span {
    font-size: 4.8rem;
    line-height: 1.3;
    font-weight: 700;
    color: #3456DB;
}
.faq-area .count-wrap h2 span:first-child {
    font-weight: 400;
}
.faq-area .count-wrap .timer-area {
    margin: 0;
}
.faq-area .count-wrap .timer-area .timer {
    font-size: 16rem;
    color: #978DD3;
    gap: 2rem;
}
.faq-area .count-wrap .timer-area .timer > div {
    width: 17.2rem;
    height: 16rem;
    font-family: 'impact';
}
.faq-area .count-wrap .timer-area .timer p {
    background: var(--GR200);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 16rem;
    font-family: 'impact';
}
.faq-area .count-wrap .timer-area .timer span{
    font-size: 2.2rem;
}

/* 1200px */
@media (max-width: 1200px) {
    .faq-area {
        padding-top: 0;
        padding-bottom: 12rem;
    }
    .faq-area::before {
        top: -16rem;
    }
    .faq-area .container {
        margin-top: 8rem;
        margin-bottom: 6rem;
    }
    .faq-area .container .box h2,
    .faq-area .container .box h2 p {
        font-size: 2.2rem;
    }
    .faq-area .container .box h2 span {
        font-size: 1.8rem;
    }
    .faq-area .container .box ul li {
        font-size: 1.8rem;
    }
    .faq-area .count-wrap {
        margin-top: 16rem;
        border-radius: 14rem 14rem 5rem 5rem;
    }
    .faq-area .count-wrap .img-box {
        width: 60vw;
        /* display: none; */
    }
    .faq-area .count-wrap h2,
    .faq-area .count-wrap h2 span {
        font-size: 3.2rem;
        text-align: center;
    }
    .faq-area .count-wrap .timer-area .timer {
        font-size: 10rem;
    }
    .faq-area .count-wrap .timer-area .timer > div {
        height: 10rem;
        width: 11rem;
    }
    .faq-area .count-wrap .timer-area .timer p {
        font-size: 10rem;
    }
    .faq-area .count-wrap .timer-area .timer span{
        font-size: 1.8rem;
    }
}

/* 767px */
@media (max-width: 767px) {
    .faq-area {
        padding-top: 0;
        padding-bottom: 10rem;
    }
    .faq-area::before {
        top: -10rem;
    }
    .faq-area .container {
        margin-top: 4rem;
        gap: 1.6rem;
    }
    .faq-area .container .box h2,
    .faq-area .container .box h2 p {
        font-size: 1.9rem;
    }
    .faq-area .container .box h2 span {
        font-size: 1.6rem;
    }
    .faq-area .container .box h2 i {
        margin-right: 1.0rem;
        max-width: 2.4rem;
        height: 2.4rem;
    }
    .faq-area .container .box {
        padding: 2rem;
    }
    .faq-area .container .box ul li {
        font-size: 1.6rem;
    }
    .faq-area .count-wrap {
        margin-top: 10rem;
        border-radius: 5rem 5rem 2rem 2rem;
        padding: 4.8rem 0;
        gap: 2.4rem;
    }
    .faq-area .count-wrap h2, .faq-area .count-wrap h2 span {
        font-size: 1.5rem;
    }
    .faq-area .count-wrap .timer-area .timer {
        gap: 1rem;
        font-size: 4rem;
    }
    .faq-area .count-wrap .timer-area .timer > div {
        height: 4rem;
        width: 4.4rem;
    }
    .faq-area .count-wrap .timer-area .timer p {
        font-size: 4rem;
    }
    .faq-area .count-wrap .img-box {
        width: 60vw;
    }
    .faq-area .count-wrap .timer-area .timer span{
        margin-top: 3px;
        font-size: 1.4rem;
    }
}

/* 400px */
@media (max-width: 400px) {
    .faq-area .container .box h2 p br {
        display: block;
    }
}
/* //FAQ 영역 */

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

/* footer 영역 */
footer {
    background-color: #fff;
    height: 8rem;
    width: 100%;
}
footer .img-box {
    width: 12rem;
}
/* 1200px */
@media (max-width: 1200px) {
    footer {
        margin-bottom: 5.6rem;
    }
}
/* 767px */
@media (max-width: 767px) {
    footer {
        height: 6rem;
    }
    footer .img-box {
        width: 8.6rem;
    }
}
/* //footer 영역 */




/* ------------------------------------------------------------------------------- */
br.mb-ver {display: none;}

@media (max-width: 767px) {
br.mb-ver {display: block;}
}





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

/* floating */
.floating {
    z-index: 50;
    position: fixed;
    right: 4rem;
    bottom: 4rem;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.floating.active {
    opacity: 1;
    visibility: visible;
}
.floating a {
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    line-height: 1.3;
}
.floating .online-apply {
    background: linear-gradient(180deg, rgba(52,86,219,1) 0%, rgba(252,178,186,1) 100%);
    border: 1px solid #0D3889;
    box-sizing: border-box;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}
.floating .online-apply:hover {
    background: #3456DB;
}
.floating .floating-apply {
    background-color: #fff;
    color: #1b1b1b;
    border: 2px solid #1b1b1b;
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 2rem;
    box-sizing: border-box;
}
.floating .floating-apply:hover {
    color: #3456DB;
}

.floating-m {
    z-index: 50;
    position: fixed;
    left: 0;
    bottom: 0;
    display: none;
    width: 100%;
}
.floating-m a {
    height: 6rem;
    width: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0 2rem;
    text-align: center;
    line-height: 1.3;
}
.floating-m .online-apply {
    background-color: #3456DB;
    color: #fff;
    border-top: 1px solid #5749A9;
}
.floating-m .floating-apply {
    background-color: #5749A9;
    color: #fff;
    border-top: 1px solid #000;
}

@media (max-width: 1200px) {
    .floating {
        display: none;
    }
    .floating-m {
        display: flex;
    }
}
@media (max-width: 767px) {
    .floating-m a {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }
    .floating-m a br {
        display: block;
    }
}
/* //floating */