/******이미지 pc,mobile **********/
/* .mo-img {
  display: none;
}

.pc-img {
  display: block;
}

@media all and (max-width: 768px) {
  .mo-img {
    display: block;
  }

  .pc-img {
    display: none;
  }
} */

/************************/
#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: var(--white);
    width: 100%;
    padding: 0 16px;
    height: 70px;
    z-index: 999;

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

    .applogo {
        display: block;
        background: url("../images/app_launcher_icon_iOS.png?1") no-repeat;
        width: 350px;
        height: 58px;
        background-size: contain;
        font-size: 0;

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

    .logo {
        display: block;
        background: url("../images/logo.png?1") no-repeat;
        width: 350px;
        height: 58px;
        background-size: contain;
        font-size: 0;

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

    .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 {
    padding-top: 70px;
    background: radial-gradient(
            105.46% 97.05% at 45.11% 50%,
            #6100ff 0%,
            #e5007c 100%
        ),
        #fff;
    @media only screen and (max-width: 767px) {
        padding-top: 54px;
    }
}

.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;
    }
}
/***********************************************************************************************************************************************************************************/

.content-scroll-box {
    display: flex;
    width: 100%;
    /* height: 100vh; */
    -ms-overflow-style: none;
    flex-direction: column;
    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;

        .content-body {
            position: relative;
            width: 1200px;
            height: 100%;

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

.content-scroll-box::-webkit-scrollbar {
    display: none;
    background-color: #fff;
    height: 4px;
    width: 4px;
}

.content-scroll-box::-webkit-scrollbar-track {
    background-color: #fff;
}

.content-scroll-box::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 4px;
}

/**********************************************************************************************************************************************************************************/
.sns-symbol-wrap {
    display: flex;
    gap: 4px;
    & > a {
        display: flex;
        align-items: center;
        border-radius: 6px;
        height: 46px;
        &::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-ios {
        background: var(--black);
        color: var(--white);
        &::before {
            content: "";
            background: url("../images/sns-ios.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%;
        }
    }
}

.content-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    font-family: "JalnanGothic";
    font-weight: 200;
    color: var(--white);
    letter-spacing: -0.5px;

    & > li {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        line-height: 100%;
        text-align: center;
    }
    .title {
        font-size: 55px;
        line-height: 120%;
    }

    .desc {
        font-family: "Pretendard", sans-serif;
        font-size: 35px;
        line-height: 120%;
    }

    .text-3 {
        font-size: 34px;
        font-weight: 400;
        color: var(--white);
    }
    @media all and (max-width: 768px) {
        gap: 8px;
        .title {
            font-size: 23px;
        }
        .desc {
            font-size: 20px;
        }
    }
    @media all and (max-width: 320px) {
        .title {
            font-size: 22px;
        }
        .desc {
            font-size: 18px;
        }
    }
}
.space-flex {
    padding: 120px 0;
    .content-body {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 80px;
    }
    @media all and (max-width: 768px) {
        padding: 70px 0;
        .content-body {
            gap: 45px;
        }
    }
}

/*** 01 *************************************************/
.frame-01 {
    height: 100vh;
}
.header-util-right {
    display: flex;
    gap: 8px;
    & > a {
        gap: 6px;
        height: 36px;
        padding: 0 14px;
        font-size: 15px;
        background: var(--gray-900);
        color: var(--white);
        white-space: nowrap;
        &::before {
            filter: var(--filter-white);
            width: 18px;
            height: 18px;
            display: block;
        }
    }
    .btn-ios {
        &::before {
            filter: var(--filter-white);
        }
    }
    .btn-login {
        background: 0;
        color: var(--gray-900);
        font-weight: 800;
    }
    .btn-download {
        display: none;
        background: 0;
        color: var(--gray-900);
        font-weight: 800;
    }
    @media all and (max-width: 768px) {
        .btn-ios {
            display: none;
        }
        .btn-download {
            display: flex;
            padding: 0 4px;
        }
        .btn-google {
            display: none;
        }
        .btn-login {
            padding: 0 4px;
        }
    }
}

.in-util-center {
    gap: 20px;
    & > a {
        gap: 10px;
        padding: 0 20px;
        font-size: 17px;
        background: var(--white);
        color: var(--black);
        &::before {
            filter: var(--filter-black);
            width: 24px;
            height: 24px;
            display: block;
        }
    }
    .ios {
        &::before {
            filter: var(--filter-white);
        }
    }
    @media all and (max-width: 768px) {
        gap: 10px;
        & > a {
            gap: 6px;
            padding: 0 14px;
            font-size: 15px;
            &::before {
                width: 22px;
                height: 20px;
                display: block;
            }
        }
    }
}

.frame-01-title {
    white-space: nowrap;
    z-index: 10;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
    font-size: 50px;
    line-height: 130%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    .title {
        font-size: 85px;
        line-height: 150%;
        font-weight: 800;
        width: fit-content;
        background: radial-gradient(
            67.34% 67.34% at 45.11% 50%,
            #6100ff 43.75%,
            #e5007c 100%
        );
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    @media all and (max-width: 768px) {
        font-size: 30px;
        .title {
            font-size: 45px;
        }
    }
    @media all and (max-width: 420px) {
        font-size: 20px;
        .title {
            font-size: 42px;
        }
    }
}

.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;
    }
}

/*** 02 *************************************************/
.frame-02 {
    /* background: linear-gradient(112deg, #ea006a 9.71%, #ff5c28 84.1%), #fff; */
    background: var(--black);

    .fm-img-02 {
        width: 65%;
        object-fit: contain;
        @media only screen and (max-width: 767px) {
            width: 94%;
        }
    }
}

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

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

    .fm-img-03 {
        width: 74%;
        @media only screen and (max-width: 767px) {
            width: 94%;
        }
    }
}

/*** 04 *************************************************/
.frame-04 {
    height: 100vh;
}
.frame-04-title {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    line-height: 130%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    white-space: nowrap;
    @media all and (max-width: 768px) {
        font-size: 30px;
        white-space: nowrap;
    }
    @media all and (max-width: 768px) {
        font-size: 24px;
    }
}

/****frame-last*************************/
.frame-last {
    padding: 50px 0;
    @media all and (max-width: 768px) {
        padding: 30px 0;
    }
}
/* QNA */
.tab-accordion-wrap {
    .acc-menuList {
        display: flex;
        justify-content: center;
        gap: 10px;

        & > li {
            position: relative;
            width: 200px;
            border-bottom: 3px solid var(--gray-200);
            color: var(--gray-800);
            padding: 0 8px;
            font-size: 18px;
            cursor: pointer;
            height: 54px;
            display: flex;
            justify-content: center;
            align-items: center;

            &.current {
                font-weight: 700;
                border-bottom: 3px solid var(--black);
                color: var(--black);

                &:after {
                    content: "";
                    width: 100%;
                    height: 0;
                    position: absolute;
                    bottom: -1px;
                    left: 0;
                }
            }
        }
    }

    .tab-content {
        display: none;
        padding: 15px 0;

        &.current {
            display: inherit;
        }
    }
}

@media only screen and (max-width: 767px) {
    .tab-accordion-wrap .acc-menuList li {
        height: 46px;
        font-size: 15px;
        flex: 1 0 150px;
        width: 150px;
    }

    .tab-accordion-wrap .tab-content {
        padding: 15px 0;
    }
}
/***********************/
.acc--content {
    list-style: none;

    & > li {
        border-bottom: 1px solid var(--gray-200);
    }

    .subject {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        position: relative;
        font-size: 18px;
        font-weight: 500;

        &.expanded:after {
            content: "";
            display: block;
            width: 22px;
            height: 22px;
            transform: rotate(180deg);
            background: url(../images/arrow-down.svg) no-repeat center center;
            background-size: 100%;
            filter: var(--filter-gray-800);
        }

        &.arrow:after {
            content: "";
            display: block;
            width: 22px;
            height: 22px;
            background: url(../images/arrow-down.svg) no-repeat center center;
            background-size: 100%;
            filter: var(--filter-gray-400);
        }
    }

    .inner-con-box {
        background: var(--gray-100);
        overflow: hidden;
        transition: height 0.25s;
        box-sizing: border-box;

        &.arrow {
            height: 0;
        }

        .conbox {
            padding: 20px;
            border-top: 1px solid var(--gray-200);
            color: var(--gray-700);

            & > b {
                margin: 20px 0 5px;
                display: block;
            }
        }

        & > dl {
            padding-left: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 15px;

            & > dt {
                display: flex;
                flex-direction: column;
                gap: 6px;

                span {
                    display: block;
                }

                .tit {
                    font-weight: 800;
                    font-size: 14px;
                }

                &.def-box span,
                &.cin-box span {
                    display: flex;
                    flex-direction: column;
                    gap: 2px;
                }

                & > em {
                    word-break: break-all;
                }
            }
        }
    }

    @media only screen and (max-width: 767px) {
        .subject {
            height: 40px;
            font-size: 15px;

            &.expanded:after,
            &.arrow:after {
                width: 14px;
                height: 14px;
            }
        }

        .inner-con-box {
            .conbox {
                padding: 10px;
            }

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

#footer {
    background: var(--gray-100);
    padding: 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: 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;
}
