@import url("webfont.css");
@import url("table.css");

body {
}
#container {
    width: 100%;
    overflow-x: hidden;
    min-width: 320px;
}
#container .page {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100vh;
    padding: 0;
    font-size: 70px; /*scroll-snap-align: center;*/
}
#container .page .page-inner {
    position: relative;
    width: 1300px;
    height: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

@media only screen and (max-width: 767px) {
    #container .page .page-inner {
        width: 100%;
        padding: 16px;
    }
}

#container .page.sec-01 {
    background: #eb247c;
    padding: 0;
}
#container .page.sec-02 {
    background: linear-gradient(
        96deg,
        #ffd8e3 11.67%,
        #fff4f4 56.88%,
        #ffd2df 98.62%
    );
}
#container .page.sec-03 {
    background: linear-gradient(
        78deg,
        #ffb1ad 31.41%,
        #ff9ab0 39.03%,
        #ff71b7 53.73%,
        #ff57bc 65.71%,
        #ff4ebe 72.79%
    );
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    width: 100%;
    height: 70px;
}
.header .hd-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1300px;
    margin: 0 auto;
}
.header .device-button {
    margin-left:  auto;
    display: flex;
    gap: 4px;
}
.header .device-button img {
    height: 42px;
}
@media only screen and (max-width: 767px) {
    .header .device-button {
        display: none !important;
    }
}
.header .logo {
    display: block;
    background: url("../images/logo.svg") no-repeat;
    width: 140px;
    height: 40px;
    background-size: 100%;
}
.header .topNav {
    float: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
}
.header .topNav li {
    border-radius: 100px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 0 25px;
}

.header .topNav li.site {
    border: 1px solid #eb247c;
}
.header .topNav li.site a {
    color: #eb247c;
}
.header .topNav li.login {
    background: var(--white);
    border: 1px solid var(--color600);
}
.header .topNav li.join {
    background: var(--color600);
}
.header .topNav li.join a {
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .header {
        height: 54px;
    }
    .header .hd-inner {
        width: 100%;
        padding: 0 16px;
    }

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

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

@media only screen and (max-width: 767px) {
    .imgPC {
        display: none;
    }
    .imgMO {
        display: block !important;
    }
}
.imgMO {
    display: none;
}

/*** 01 ***/
.page.sec-01 {
    display: flex !important;
    flex-wrap: wrap;
}
.page.sec-01 .page-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    width: 100% !important;
    padding: 0 0 80px 0 !important;
}
@media only screen and (max-width: 767px) {
    .page.sec-01 .page-inner {
        padding-bottom: 60px !important;
    }
}
.page.sec-01 .imgbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 500;
    display: block;
    width: 1100px;
}
.page.sec-01 .imgbox img {
    width: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 767px) {
    .imgbox {
        width: 100% !important;
    }
}
@media only screen and (max-width: 1024px) {
    .imgbox {
        width: 850px;
    }
}

.animated-gallery {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
}
.animated-gallery .photo-img-list {
    width: 5000px;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
}
.animated-gallery .photo-img-list > li {
    position: relative;
    flex: 0 0 auto;
    height: 300px;
}
.animated-gallery .photo-img-list li::after {
    content: "";
    background-color: rgb(var(--rgb-black), 37%);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.animated-gallery .photo-img-list img {
    width: 100%;
    height: 100%;
}
.animated-gallery .photo-img-list li:hover::after {
    background-color: rgb(var(--rgb-black), 0%);
    backdrop-filter: blur(0px);
}
.animated-gallery .photo-img-list li:hover img {
    transform: scale(1.1);
}
.animated-gallery.left .photo-img-list {
    animation: bannermove-left 26s linear infinite;
}
.animated-gallery.right .photo-img-list {
    animation: bannermove-right 24s linear infinite;
}
@media only screen and (max-width: 767px) {
    .animated-gallery {
        height: 200px !important;
    }
    .animated-gallery .photo-img-list > li {
        height: 120px !important;
    }
}
@media only screen and (max-width: 1024px) {
    .animated-gallery .photo-img-list {
        width: 100%;
        display: flex;
        gap: 20px;
    }
    .animated-gallery .photo-img-list > li {
        height: 180px;
    }
    .animated-gallery .photo-img-list li::after {
        background-color: rgb(var(--rgb-black), 37%);
        backdrop-filter: blur(2px);
    }
}

/*** 02 ***/
.page.sec-02 .page-inner {
}
.page.sec-02 .img-box {
    width: 1000px;
    position: absolute;
    bottom: 50px;
    right: 0;
}
.page.sec-02 .img-box img {
    width: 100%;
    object-fit: cover;
}
.page.sec-02 .component-con-title li.txt1 {
    color: #b90072;
}
@media only screen and (max-width: 767px) {
    .page.sec-02 .img-box {
        width: 100%;
        bottom: 0;
        left: 0;
    }
}

/*** 03 ***/
.page.sec-03 .img-box {
    width: 100%;
    position: absolute;
    bottom: 50px;
    left: 0;
}
.page.sec-03 .img-box img {
    width: 100%;
    object-fit: cover;
}
.page.sec-03 .component-con-title li.txt1 {
    color: #43002b;
}
@media only screen and (max-width: 767px) {
    .page.sec-03 .img-box {
        bottom: 0;
    }
}
.page.last {
    background: var(--white);
    padding: 0;
    height: 100% !important;
}
.page.last .page-inner {
    padding: 30px 16px !important ;
}

/* QNA */
.tab-accordion-wrap .acc-menuList {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.tab-accordion-wrap .acc-menuList li {
    position: relative;
    flex: 0 0 200px;
    width: 200px;
    border: 1px solid var(--color300);
    background: var(--color200);
    color: var(--color600);
    border-radius: 100px;
    padding: 0 20px;
    font-size: 17px;
    cursor: pointer;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tab-accordion-wrap .acc-menuList li.current {
    color: var(--white);
    background: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
}
.tab-accordion-wrap .acc-menuList li.current:after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: -1px;
    left: 0;
}
.tab-accordion-wrap .tab-content {
    display: none;
    padding: 15px 0;
}
.tab-accordion-wrap .tab-content.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;
}
.acc--content li {
    border-bottom: 1px solid var(--color200);
}
.acc--content .subject {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
}
.acc--content .inner-con-box.arrow {
    height: 0;
}
.acc--content .subject.expanded:after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url(../images/arrow-up.svg) no-repeat center center;
    background-size: 100%;
    filter: var(--filter600);
}
.acc--content .subject.arrow:after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url(../images/arrow-down.svg) no-repeat center center;
    background-size: 100%;
    filter: var(--filter600);
}
.acc--content .inner-con-box {
    background: var(--color100);
    overflow: hidden;
    -webkit-transition: height 0.25s;
    -moz-transition: height 0.25s;
    transition: height 0.25s;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.acc--content .inner-con-box .conbox {
    padding: 20px 20px;
    border-top: 1px solid var(--color200);
    color: var(--color700);
}
.acc--content .inner-con-box .conbox b {
    margin: 20px 0 5px 0;
    display: block;
}

@media only screen and (max-width: 767px) {
    .acc--content .subject.expanded:after,
    .acc--content .subject.arrow:after {
        width: 14px;
        height: 14px;
    }
}

.acc--content .inner-con-box dl {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 15px;
}
.acc--content .inner-con-box dl dt {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.acc--content .inner-con-box dl dt span {
    display: block;
}
.acc--content .inner-con-box dl dt .tit {
    font-weight: 800;
    font-size: 14px;
}
.acc--content .inner-con-box dl dt.def-box span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.acc--content .inner-con-box dl dt.cin-box span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.acc--content .inner-con-box dl dt em {
    word-break: break-all;
}

@media only screen and (max-width: 767px) {
    .acc--content .subject {
        height: 40px;
        font-size: 15px;
    }
    .acc--content .inner-con-box .conbox {
        padding: 10px;
    }
    .acc--content .inner-con-box dl {
        font-size: 14px;
    }
}

.footer {
    background: var(--color100);
    padding-bottom: 30px;
}
.footer .menu {
    display: flex;
    align-items: center;
    height: 60px;
    width: 1300px;
    margin: 0 auto;
}
.footer .menu li {
    display: inline-block;
    padding-right: 30px;
}
.footer .menu li a {
    display: inline-block;
    font-size: 16px;
}
.footer .address {
    font-size: 14px;
    line-height: 20px;
    color: var(--color600);
    width: 1300px;
    margin: 0 auto;
}
.footer .address .row {
    display: flex;
    gap: 20px;
}

@media all and (max-width: 1024px) {
    .footer {
        width: 100%;
        padding: 0 16px 20px 16px;
        margin-top: 50px;
    }
    .footer .menu {
        height: 46px;
    }
    .footer .menu li a {
        font-size: 14px;
    }

    .footer .address {
        font-size: 12px;
        line-height: 18px;
        word-break: keep-all;
    }
    .footer .address p.row:nth-child(3) {
        flex-direction: column;
        gap: 0px;
    }
    .section-modal .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 {
    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;
}
.section-modal .mod-inContent {
    position: relative;
}
.section-modal .mod-inContent:after {
    content: "";
    display: table;
    clear: both;
}
.section-modal .mod-inContent .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;
}
.section-modal .mod-inContent .btn-close:hover,
.section-modal .mod-inContent .btn-close:focus {
    cursor: pointer;
}
.section-modal .mod-inContent .pop-content-box {
    font-size: 14px;
    line-height: 140%;
}

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

.component-con-title {
    z-index: 10;
}
.component-con-title li {
    line-height: 120%;
    line-height: 140%;
    letter-spacing: -3px;
}
.component-con-title li.txt1 {
    font-size: 100px;
    font-family: "JalnanGothic";
    letter-spacing: -2px;
    line-height: 115%;
}
.component-con-title li.txt2 {
    font-size: 60px;
    line-height: 120%;
    color: var(--black);
    letter-spacing: -2px;
}
.component-con-title li b {
    color: #fff836;
}
@media only screen and (max-width: 767px) {
    .component-con-title {
        padding: 45px 0 25px;
        width: 90%;
        margin: 0 auto;
    }
    .component-con-title li.txt1 {
        font-size: 45px;
        letter-spacing: -1px;
    }
    .component-con-title li.txt2 {
        font-size: 20px;
        letter-spacing: 0;
        margin-top: 2px;
    }
}

@keyframes bannermove-right {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

@keyframes bannermove-left {
    0% {
        transform: translate(-50%, 0);
    }
    100% {
        transform: translate(0%, 0);
    }
}

/*첫화면 앱다운로드 팝업*/
.start-popup-body   {display: none;}
@media all and (max-width: 1024px) {
    .start-popup-body {     
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        width: 100%;
        min-width: 280px;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.8) !important;
        overflow: auto;
        z-index: 99999;
    }
    .pop-container {
        display: flex; align-items: center; justify-content: center;
        width: 100%;
        height: 100%;
        /* position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);         */
        
    }
    .pop-container .btn-close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 20px;
        height: 20px;
        background: url("../images/btn-close.svg") no-repeat center center;
        background-size: 100%;
        z-index: 1;
        display: block;
        filter: var(--filter500);
    }
    .description-wrap {
        width:80%; 
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
       .app-logo  img  {  
            width: 95px;
            height: 95px; 
        }
    }
  
 
    .description-wrap .dec-box {
        width:100%; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;  
        .text-1 {       
            font-size: 22px;
            gap: 4px;
            line-height: 120%;
            font-weight: 600;
            color: var(--white);            
        }
        .text-2 {       
         font-size: 14px;
        display: block; 
        color: var(--color400);
        font-weight: 400;          
        }        
    }
      /* .description-wrap .app-text::before {content: ""; display: block; width: 80px; height: 80px;  background: url(../images/app-logo.png) no-repeat center center; background-size: 100%;  } */
    .description-wrap .btn-appdownload {
        border-radius: 15px;
        width:50%;
        height: 50px;  
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: var(--white);
        background: radial-gradient(
            77.95% 77.95% at 33.28% 27.5%,
            #fac473 0%,
            #f90 45.71%,
            #fc5b00 100%
        );
           }
}
@media all and (max-width:460px) { 
    .description-wrap .btn-appdownload {  width:100%; }

 }
 