.row--box {
    width: 1380px !important;
    margin: 0 auto !important;
    max-width: 100%;
    min-width: 320px;
    padding-left: 16px;
    padding-right: 16px;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/************************/
#container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    min-width: 320px;
}

/* 헤드 */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(var(--rgb-black), 50%);
    width: 100%;
    padding: 0 clamp(16px, 1.25vw + 12px, 36px);
    height: 70px;

    z-index: 999;

    .hd-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .logo {
        display: block;
        background: url('../images/logo.png?002') no-repeat;
        width: 200px;
        height: 28px;
        background-size: contain;
        font-size: 0;

        @media only screen and (max-width: 768px) {
            display: block;
            background: url('../images/logo-symbol.png?01') no-repeat;
            width: 30px;
            height: 30px;
            background-size: contain;
        }
    }

    .topNav {
        float: right;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 6px;

        & > li {
            border-radius: 100px;
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            padding: 0 25px;
        }
    }

    @media only screen and (max-width: 768px) {
        height: 54px;

        .hd-inner {
            width: 100%;
        }

        .topNav li {
            height: 32px;
            padding: 0 12px;
            font-size: 14px;
        }
    }
}

.content-body-wrap {
    padding-top: 70px;
    height: 100vh;
}

.gradient-bg {
    background: radial-gradient(105.46% 97.05% at 45.11% 50%, #6100ff 0%, #e5007c 100%), #fff;
}

.sec-join-wrap {
    width: 700px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;

    &.white-bg {
        background: var(--white);
    }

    @media all and (max-width: 768px) {
        width: 100%;
        padding: 0 16px;
    }
}

.sub-content-box {
    padding: 30px;

    @media all and (max-width: 768px) {
        padding: 0 16px;
    }
}

/**/

.top-util-button-wrap {
    display: flex;
    gap: 4px;
    margin-left: auto;
    & > a {
        display: flex;
        align-items: center;
        gap: 6px;
        height: 36px;
        padding: 0 14px;
        font-size: 15px;
        border: 1px solid rgb(var(--rgb-white), 20%);
        color: var(--white);
        border-radius: 4px;
    }
    .btn-login {
        background: rgb(var(--rgb-white), 15%);
    }
}

/*********************************************************************************************************************/

.content-body {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: clamp(38px, 1.375vw + 33.6px, 60px);
    width: 100%;
    -ms-overflow-style: none;
    overflow: hidden auto;
    scroll-snap-type: y mandatory;
}

.sec-item {
    position: relative;
    scroll-snap-align: start;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    padding: clamp(50px, 3.125vw + 40px, 100px) 16px;
}

.btn-kakaotalk {
    color: var(--gray-900);
    background: #fae300;
    width: fit-content;
    &::before {
        content: '';
        background: url('../images/sns-kakaotalk.svg') no-repeat;
        background-size: contain;
        display: flex;
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }
}

/*********************************************************************************************************************/
.sns-symbol-wrap {
    display: flex;
    gap: 4px;
    margin-left: 8px;
    & > a {
        display: flex;
        align-items: center;
        gap: 6px;
        height: 36px;
        padding: 0 14px;
        font-size: 15px;
        background: rgb(var(--rgb-black), 60%);
        color: var(--white);
        border-radius: 4px;

        &::before {
            display: block;
            width: 24px;
            height: 24px;
        }
    }

    .btn-google {
        &::before {
            content: '';
            background: url('../images/sns-google.svg') no-repeat;
            background-size: 100%;
            filter: unset;
        }
    }

    .btn-googleplay {
        &::before {
            content: '';
            background: url('../images/sns-googleplay.svg') no-repeat;
            background-size: 100%;
            filter: unset;
        }
    }

    .btn-onestore {
        &::before {
            content: '';
            background: url('../images/sns-onestore.svg') no-repeat;
            background-size: 100%;
            filter: unset;
        }
    }

    .btn-apple {
        &::before {
            content: '';
            background: url('../images/sns-apple.svg') no-repeat;
            background-size: contain;
            filter: var(--filter-white);
        }
    }

    .btn-kakaotalk {
        &::before {
            content: '';
            background: url('../images/sns-kakatalk.svg') no-repeat;
            background-size: contain;
            filter: var(--filter-white);
        }
    }
    .btn-email {
        &::before {
            content: '';
            background: url('../images/ico-email.svg') no-repeat;
            background-size: 100%;
        }
    }
}

@media all and (max-width: 768px) {
    .sns-symbol-wrap {
        position: fixed;
        bottom: 20px;
        right: 20px;
        flex-direction: column-reverse;
        .btn-login {
            font-size: 14px;
            padding: 0 12px;
            border: 1px solid rgb(var(--rgb-white), 20%);
        }

        & > a {
            gap: 0;
            height: 36px;
            padding: 0 8px;
            font-size: 0;
            border-radius: 4px;

            &::before {
                width: 20px;
                height: 20px;
            }
        }
    }
}

/****/
.btn-oneLink.black {
    background: linear-gradient(135deg, #000, #757575) padding-box, linear-gradient(135deg, #555, #222) border-box;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-oneLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 100px;
    height: 60px;
    padding: 0 36px 0 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.25);
    margin: 20px;

    border: 1px solid transparent;
    background: linear-gradient(135deg, #ff6170, #e72140) padding-box, linear-gradient(135deg, #f82136, #b4001c) border-box;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    &:active {
        transform: scale(0.96);
    }
    .box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 100%;
        padding: 0 16px 0 26px;
        background: rgb(var(--rgb-black), 20%);
        & > ico {
            font-size: 0;
            width: 24px;
            height: 24px;
            filter: var(--filter-white);
        }

        .ico-ios {
            display: block;
            background: url('../images/sns-apple.svg') no-repeat;
            background-size: contain;
        }

        .ico-aos {
            display: block;
            background: url('../images/sns-googlestore.svg?01') no-repeat;
            background-size: contain;
        }
    }
}
@media all and (max-width: 768px) {
    .btn-oneLink {
        gap: 8px;
        height: 42px;
        padding: 0 16px 0 0;
        overflow: hidden;
        font-size: 16px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
        margin: 10px;

        .box {
            gap: 4px;
            padding: 0 10px 0 14px;

            & > ico {
                font-size: 0;
                width: 20px;
                height: 20px;
                filter: var(--filter-white);
            }
        }
    }
}

/***/
.row-style {
    flex-direction: row !important;

    @media all and (max-width: 1024px) {
        flex-direction: column !important;
    }
}

.content-title {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: clamp(4px, 0.375vw + 2.8px, 10px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.5px;

    & > h1 {
        font-size: clamp(24px, 2.875vw + 14.8px, 70px);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -1.5px;
    }

    & > h2 {
        font-size: clamp(18px, 0.75vw + 15.6px, 30px);
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    & > h3 {
        font-size: clamp(18px, 1.063vw + 14.6px, 35px);
    }

    & > h4 {
        font-size: clamp(15px, 0.688vw + 12.8px, 26px);
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .point {
        color: var(--primary-500);
        font-weight: 800;
    }
}

@media all and (max-width: 768px) {
    .content-title {
        justify-content: center;
        align-items: center !important;

        & > h1 {
            text-align: center !important;
        }

        & > h2 {
            text-align: center !important;
        }

        & > h3 {
            text-align: center;
        }

        & > h4 {
            text-align: center;
        }

        .point {
        }
    }
}

/*** 01 *************************************************/
.visual-frame {
    height: 100vh;
    padding: 0;
}

/**/
.vs-title {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 0.5vw + 10.4px, 20px);
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-0, -50%);
    text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
    line-height: 130%;

    .h1 {
        font-size: clamp(24px, 3.188vw + 13.8px, 75px);
        line-height: 1.3;
        width: fit-content;
        color: var(--white);
    }

    .h2 {
        font-size: clamp(34px, 2.563vw + 25.8px, 75px);
        line-height: 1.3;
        font-weight: 800;
        width: fit-content;
        color: var(--primary-500);
    }
}

@media all and (max-width: 768px) {
    .vs-title {
        display: flex;
        justify-content: center;
        align-items: center;
        left: 50%;
        transform: translate(-50%, -50%);

        .h1 {
            white-space: nowrap;
            text-align: center;
        }

        .h2 {
        }
    }
}

.video-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .video {
        position: relative;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }
}

/*** 01 *************************************************/
.frame-01 {
    .content-title {
        align-items: center !important;
    }
    .content-img-box {
        width: 65%;
        height: 100%;
    }
}

@media all and (max-width: 768px) {
    .frame-01 {
        .content-img-box {
            width: 95%;
        }
    }
}

/*** 02 *************************************************/
.frame-02 {
    background: var(--gray-900);
    height: 100% !important;

    .img-box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fm-img-02 {
        width: 74%;

        @media only screen and (max-width: 767px) {
            width: 94%;
        }
    }
}

.grid-images {
    display: grid;
    grid-template-columns: repeat(3, 180px);
    gap: 16px;
    overflow: hidden;
    padding: 20px;
    .card {
        width: 100%;
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
        background-color: #2a2a2a;
        animation: wave 4s ease-in-out infinite;

        &:nth-child(1) {
            animation-delay: 0s;
        }

        &:nth-child(2) {
            animation-delay: 0.2s;
        }

        &:nth-child(3) {
            animation-delay: 0.4s;
        }

        &:nth-child(4) {
            animation-delay: 0.6s;
        }

        &:nth-child(5) {
            animation-delay: 0.8s;
        }

        &:nth-child(6) {
            animation-delay: 1s;
        }

        &:nth-child(7) {
            animation-delay: 1.2s;
        }

        &:nth-child(8) {
            animation-delay: 1.4s;
        }

        &:nth-child(9) {
            animation-delay: 1.6s;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

@media all and (max-width: 768px) {
    .grid-images {
        grid-template-columns: repeat(3, 100px);
        gap: 4px;

        .card {
            height: 140px;
            border-radius: 4px;
        }
    }
}

@keyframes wave {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-10px) rotate(2deg) scale(1.02);
    }

    50% {
        transform: translateY(8px) rotate(-2deg) scale(0.98);
    }

    75% {
        transform: translateY(-5px) rotate(1deg) scale(1.01);
    }
}

/*** 03 *************************************************/
.frame-03 {
    .content-img-box {
        width: 20%;
        object-fit: contain;
    }
}

@media all and (max-width: 768px) {
    .frame-03 {
        .content-img-box {
            width: 60%;
        }
    }
}

/*** 04 *************************************************/
.frame-04 {
    background: var(--gray-900);
    .content-title {
        align-items: center;
    }
    .content-img-box {
        width: 26%;
        object-fit: contain;
    }
}

@media all and (max-width: 768px) {
    .frame-04 {
        .content-img-box {
            width: 65%;
        }
    }
}

/*** 05 *************************************************/
.frame-05 {
    background: linear-gradient(180deg, #000 0%, #ff6170 100%);

    .symbol {
        width: 10%;
        object-fit: contain;
    }
    .content-title {
        align-items: center;
    }
}

@media all and (max-width: 768px) {
    .frame-05 {
        .symbol {
            width: 18%;
        }
        .content-img-box {
            width: 55%;
        }
    }
}

/*** 06 *************************************************/
.frame-06 {
    background: var(--primary-500);
    .content-title {
        align-items: center;
    }
    .content-img-box {
        width: 45%;
        object-fit: contain;
    }
}

@media all and (max-width: 768px) {
    .frame-06 {
        .content-img-box {
            width: 100%;
        }
    }
}

/*** 07 *************************************************/
.frame-07 {
    background: var(--primary-500);
    .content-title {
        align-items: center;
    }
    .content-img-box {
        width: 56%;
        object-fit: contain;
    }
}

@media all and (max-width: 768px) {
    .frame-07 {
        .content-img-box {
            width: 95%;
        }
    }
}
/*************************************************/

#footer {
    background: var(--gray-100);
    padding: clamp(10px, 0.625vw + 8px, 20px) 0;
    width: 100%;

    .footer-inner {
        width: 1200px;
        margin: 0 auto;

        @media all and (max-width: 1200px) {
            width: 100%;
            padding: 0 16px;
        }
    }

    .link-wrap {
        display: flex;
        gap: 16px;
        align-items: center;
        height: clamp(32px, 0.5vw + 30.4px, 40px);
        font-size: 13px;
    }

    .address {
        color: var(--gray-800);
        padding: 2px 0;

        .row {
            font-size: 12px;
            display: flex;
            gap: 20px;

            @media all and (max-width: 768px) {
                &:nth-child(1) {
                    flex-direction: row;
                    gap: 16px;
                }

                &:nth-child(4) {
                    flex-direction: row;
                    gap: 16px;
                }

                gap: 2px;
                flex-direction: column;
            }
        }
    }
}

@media all and (max-width: 1024px) {
    .footer {
        width: 100%;
        padding: 0 16px 20px 16px;
        margin-top: 50px;

        .menu {
            height: 46px;

            & > a {
                font-size: 14px;
            }
        }
    }

    .footer .address {
        font-size: 12px;
        line-height: 18px;
        word-break: keep-all;

        p.row:nth-child(3) {
            flex-direction: column;
            gap: 0px;
        }
    }

    .section-modal-popup .mod-inContent .pop-textbox {
        font-size: 12px;
        line-height: 22px;
    }
}

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

/* 모달 레이어 팝업*/
#dark-md-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modalLayer-popup {
    position: relative;
}

.section-modal-popup {
    display: none;
    width: calc(100% - 100px);
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    height: 70%;
    box-shadow: 0px 15px 25px 0px rgb(0 0 0 / 20%);
    overflow-y: scroll;
}

.mod-inContent {
    position: relative;

    &:after {
        content: '';
        display: table;
        clear: both;
    }

    .btn-close i {
        position: absolute;
        top: 10px;
        right: 15px;
        width: 20px;
        height: 20px;
        background: url('../images/btn-close.svg') no-repeat center center;
        background-size: 100%;
        z-index: 1;
        display: inline-block;
    }

    .btn-close:hover,
    .btn-close:focus {
        cursor: pointer;
    }

    .pop-content-box {
        font-size: 14px;
        line-height: 140%;
    }
}

@media all and (max-width: 767px) {
    .section-modal-popup {
        width: 90%;
        padding: 16px;
    }
}

/***************************************/
.hd-title {
    font-size: 30px;
    color: var(--white);
}

.sns-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;

    & a {
        display: flex;
        align-items: center;
        background: var(--white);
        gap: 14px;
        height: 48px;
        padding: 0 50px 0 60px;
        font-weight: 600;
        font-size: 16px;
    }
}

.join-caption {
    padding-top: 30px;
    text-align: center;
    color: var(--white);
    font-size: 14px;
}

/**/
.w-member-wrap {
    width: 700px;
    background: var(--white);
    height: 100%;
    margin: 0 auto;

    @media all and (max-width: 768px) {
        width: 100%;
    }
}

.app-title-area {
    /* position: fixed;
  left: 0;
  right: 0;
  top: 0; */
    margin: 0 auto;
    height: 56px;
    /* background: rgba(0, 0, 0, 0.4); */
    max-width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    padding: 8px 16px 0;

    .title {
        width: 100%;
        text-align: center;
        font-size: 17px;
        font-weight: 600;
    }

    .btn-back {
        display: block;
        background: url('../images/arrow-left.svg') no-repeat center;
        width: 14px;
        height: 14px;
        cursor: pointer;
        filter: var(--filter-gray-700);
    }
}

/**********************/
/*  panel-input-box,판넬 */
.panel-input-box {
    display: flex;
    flex-direction: column;
    gap: 16px;

    & > input {
        display: flex;
        width: 100% !important;
    }

    .row-item {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 4px 0;
        width: 100%;

        &:after {
            content: '';
            display: table;
            clear: both;
        }

        &:last-child {
            margin-bottom: 0;
        }

        .subject {
            display: flex;
            gap: 4px;
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-800);
        }

        .subject::after {
            content: '*';
            color: var(--gray-400);
        }

        .subject.none::after {
            content: '';
        }

        .btn-selectBox {
            border: 1px solid var(--gray-300);
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;

            &::after {
                content: '';
                background: url('../svg/arrow-down.svg') no-repeat;
                background-size: 100% auto;
                width: 20px;
                height: 20px;
                filter: var(--filter-gray-600);
            }
        }

        .important-warning {
            display: block;
            color: var(--red);
            font-size: 13px;
            font-weight: 400;
        }

        /*에러/공지 메세지*/
        .important-error {
            color: var(--red);
            /* display: none; */
            font-size: 13px;
            font-weight: 300;
        }

        .important-notice {
            display: block;
            color: var(--purple-500);
            font-size: 13px;
        }

        .in-row {
            display: flex;
            gap: 6px;

            & > input {
                display: flex;
                width: 100% !important;
            }
        }

        .in-col {
            display: flex;
            flex-direction: column;
            gap: 4px;
            position: relative;

            & > input {
                width: 100%;
            }

            .in-col-in {
                display: flex;
                gap: 6px;

                & > input {
                    display: flex;
                    width: 100% !important;
                }
            }
        }
    }

    .important-note {
        display: block;
        color: var(--gray600);
        font-size: 13px;
    }

    .important-caution {
        display: block;
        color: var(--red);
        font-size: 13px;
    }

    .eyeView {
        position: absolute;
        top: 12px;
        right: 10px;

        .security[type='checkbox'] {
            display: none !important;
        }

        .security[type='checkbox'] + .Link {
            color: #222;
        }
    }
}

.btn-inputReg {
    background: var(--gray-300);
    color: var(--gray-600);
    width: 78px;
    height: 52px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;

    &.active {
        border: 1px solid var(--primary-red);
        color: var(--primary-red);
        background: var(--white);
    }
}

.password-serach {
    text-align: right;
    font-size: 14px;
}

.btn-auth-number {
    font-size: 14px;
    margin-left: auto;
    color: #4b4deb;
}
