@charset "utf-8";
/* CSS Document */


/* ------------------------- Reset : Start ------------------------- */
html, body { overflow-x: hidden; width: 100%; height: 100%; background: #000000; }
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button { padding: 0; margin: 0; word-break: keep-all; }
body, th, td, input, select, textarea, button, pre { font-family: 'Pretendard', 'MalgunGothic', sans-serif; font-weight: 400; line-height: 1; letter-spacing: 0; -webkit-text-size-adjust: none; -moz-text-size-adjust: none; -ms-text-size-adjust: none; }
fieldset, img { border: none; }
dl, ul, ol, menu, li { list-style: none; }
blockquote, q { quotes: none; }
blockquote::before, blockquote::after, q::before, q::after { content: none; }
input, select, textarea, button { vertical-align: middle; }
input, input:focus, button:focus, textarea:focus { outline: none; }
button { border: 0 none; background-color: transparent; cursor: pointer; }
a {text-decoration: none; color: #a3a4a6; cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent !important; }
img { max-width: 100%; vertical-align: top; }
table { border-collapse: collapse; }
br { font-family: 'Dotum'; }
.bold { font-weight: 800 !important; }
*, *::before, *::after { box-sizing: border-box; }


/* 320px 이상 -- 모바일  */
@media (min-width: 320px) {
    html { font-size: 12px; }
}

/* 360px 이상 -- 모바일  */
@media (min-width: 360px) {
    html { font-size: 14px; }
}

/* 393px 이상 -- 모바일  */
@media (min-width: 393px) {
    html { font-size: 16px; }
}

/* 768px 이상 -- 태블릿  */
@media (min-width: 768px) {
    html { font-size: 18px; }
}

/* ------------------------- Reset : End ------------------------- */




/* ------------------------- Common : Start ------------------------- */
.wrap {
    color: #FFFFFF;
}
.container {
    max-width: 24.56rem;
    padding: 0 2.25rem;
    margin: 0 auto;
}
.container-fluid {
    max-width: 100%;
}


/********** Screen Reader Only : Start **********/
.sr-only {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    clip: rect(0, 0, 0, 0);
    clip-path: polygon(0 0, 0 0, 0 0);
}
/********** Screen Reader Only : End **********/



/********** Tab : Start **********/
.tab-container {
    display: flex;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
/********** Tab : End **********/



/********** Accordion : Start **********/
.accordion {
    overflow: hidden;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}
.accordion-header .ico {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}
.accordion.open .accordion-header .ico {
    transform: rotate(0deg);
}
.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.accordion.open .accordion-content {
    max-height: 312.5rem;
}
/********** Accordion : End **********/

/* ------------------------- Common : End ------------------------- */





/* ------------------------- Section-01 : Start ------------------------- */
.section-01 {
    position: relative;
    z-index: 2;
    padding-bottom: 2.5rem;
    background: #FFF5E1;
}



.header {
    padding: 4.06rem 0 1.63rem;
    text-align: center;
}
.logo {
    display: inline-block;
    width: 5.63rem;
    height: 2.19rem;
    background: url(/images/header-logo.svg) no-repeat center / 100%;
    text-indent: -9999px;
}



.wrap-rank .box-header {
    text-align: center;
}
.wrap-rank .box-header .box-title {
    display: none;
}
.wrap-rank .box-header .box-title.active {
    display: block;
}
.wrap-rank .box-header .txt {
    margin-bottom: 0.38rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.88rem;
    letter-spacing: -0.05rem;
    color: #323232;
}
.wrap-rank .box-header .tit {
    font-size: 2.38rem;
    font-weight: 900;
    line-height: 2.81rem;
    letter-spacing: -0.05rem;
    white-space: nowrap;
    color: #323232;
}


.section-01 .box-body {
    margin-top: 1.3rem;
}


.rank-tabs {
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0 0.31rem;
    margin-bottom: 0.8rem;
}
.rank-tabs .tab-btn {
    flex: 1;
    position: relative;
    max-width: 9.06rem;
    padding: 0.5rem 0.31rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.03rem;
    background: #323232;
    transition: all 0.3s ease;
    border-radius: 3rem;
    color: #FFFFFF;
}
.rank-tabs .tab-btn.active {
    background: #FF6C00;
}



.price-area,
.rank-area {
    position: relative;
    min-height: 24rem;
    padding: 0.13rem;
    background: linear-gradient(180deg, #f6e7cd, #FF6C00);
    border-radius: 0.94rem;
}
.price-area::before,
.rank-area::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 13px;
    background: linear-gradient(146deg, #FFF 27.2%, #FFE6CF 120.91%);
    z-index: 0;
}
.price-area > *,
.rank-area > * {
    position: relative;
    z-index: 1;
}



.price-area {
    padding: calc(1.5rem + 2px) calc(1.06rem + 2px) calc(1.13rem + 2px);
    color: #000000;
}
.price-area .box-top .box-row {
    display: flex;
    align-items: center;
    gap: 0.67rem;
}
.price-area .box-top .box:first-child {
    align-self: flex-start;
}
.price-area .box-top .box:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.price-area .box-top .ico {
    display: block;
    width: 3.21rem;
    height: 3.21rem;
}
.price-area .box-top .name,
.price-area .box-top .txt {
    letter-spacing: -0.03rem;
    color: #000000;
}
.price-area .box-top .name {
    font-size: 1.13rem;
    font-weight: 800;
}
.price-area .box-top .txt {
    font-size: 1.38rem;
    font-weight: 700;
    word-break: break-all;
}
.price-area .box-top .desc {
    flex-shrink: 0;
    padding: 0.06rem 0.31rem;
    border: 1px solid #FF6C00;
    font-size: 0.81rem;
    font-weight: 700;
    line-height: 1.25rem;
    letter-spacing: -0.02rem;
    border-radius: 3.13rem;
    color: #FF6C00;
}
.price-area .box-top .txt-sub {
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: -0.02rem;
    color: #9D9D9D;
}
.price-area .box-middle {
    margin-top: 1.5rem;
}
.price-area .box-chart {
    height: 15.19rem;
    background: transparent;
}





.rank-area {
    padding: calc(1.13rem + 2px) calc(1.13rem + 2px) calc(1rem + 2px) calc(1.13rem + 2px);
}
.rank-area .box-top {
    margin-bottom: 0.25rem;
}
.rank-area .box-top .tit {
    padding: 0.15rem 0 1rem;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5rem;
    letter-spacing: -0.04rem;
    color: #000;
}
.rank-area .box-top .tit .point {
    color: #EC7200;
}
.rank-area .box-top .txt {
    font-size: 0.81rem;
    font-weight: 500;
    letter-spacing: -0.03rem;
    color: #737373;
}


.rank-area .box-top .txt-sub {
    margin-bottom: 0.75rem;
    font-size: 0.63rem;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: -0.02rem;
    color: #9D9D9D;
}
.rank-area .box-middle .box-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.63rem 1rem 0.44rem;
    border-bottom: 1px solid rgba(203, 189, 171, 0.5);
    color: #000;
}
.rank-area .box-middle .box-row:last-child {
    margin-bottom: 0;
}
.rank-area .box-middle .box-row .num {
    flex-shrink: 0;
    width: 1.63rem;
    height: 1.63rem;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.63rem;
    text-align: center;
    color: #000000;
}
.rank-area .box-middle .box-row:nth-child(1) .num,
.rank-area .box-middle .box-row:nth-child(2) .num,
.rank-area .box-middle .box-row:nth-child(3) .num {
    text-indent: -9999px;
}
.rank-area .box-middle .box-row:nth-child(1) .num {
    background: url(/images/img-rank-num-01@3x.png) no-repeat center / 100%;
}
.rank-area .box-middle .box-row:nth-child(2) .num {
    background: url(/images/img-rank-num-02@3x.png) no-repeat center / 100%;
}
.rank-area .box-middle .box-row:nth-child(3) .num {
    background: url(/images/img-rank-num-03@3x.png) no-repeat center / 100%;
}
.rank-area .box-middle .box-row .ico {
    width: 1.88rem;
    height: 1.88rem;
}



.coin-corp-01 {
    background: url(/images/coin-corp-01@3x.png) no-repeat center / 100%;
}
.coin-corp-02 {
    background: url(/images/coin-corp-02@3x.png) no-repeat center / 100%;
}
.coin-corp-03 {
    background: url(/images/coin-corp-03@3x.png) no-repeat center / 100%;
}
.coin-corp-04 {
    background: url(/images/coin-corp-04@3x.png) no-repeat center / 100%;
}
.coin-corp-05 {
    background: url(/images/coin-corp-05@3x.png) no-repeat center / 100%;
}



.rank-area .box-middle .coin-info {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 0.13rem;
}
.rank-area .box-middle .coin-info .name {
    font-size: 0.78rem;
    font-weight: 800;
}
.rank-area .box-middle .coin-info .unit {
    font-size: 0.56rem;
    font-weight: 600;
    color: #8E8E8E;
}



.rank-area .box-middle .coin-status {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-left: auto;
    text-align: right;
}
.rank-area .box-middle .coin-status .rate {
    font-size: 0.81rem;
    font-weight: 700;
    color: #EC5533;
}
.wrap-rank .box-middle .coin-status .amount {
    font-size: 0.48rem;
}
/* ------------------------- Section-01 : End ------------------------- */





/* ------------------------- Section-02 : Start ------------------------- */
.section-02 {
    position: relative;
    padding: 3.81rem 0 0;
    background: #FF7A24;
}
.section-02::before {
    content: '';
    position: absolute;
    top: -11.81rem;
    left: 50%;
    z-index: 0;
    width: 100%;
    min-width: 67.56rem;
    height: 19.5rem;
    background: #FF6300;
    border-radius: 30%;
    filter: blur(50px);
    transform: translateX(-50%);
}
.section-02::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10.69rem;
    z-index: 0;
    width: 120%;
    min-width: 67.19rem;
    height: 21rem;
    background: #FFF5E1;
    border-radius: 50%;
    transform: translateX(-50%);
}
.section-02 .container {
    position: relative;
    z-index: 10;
    padding: 0;
}
.section-02 .box-header .tit {
    width: 21.81rem;
    height: 7.88rem;
    margin: auto;
    background: url(/images/visual-tit@3x.png) no-repeat center / 100%;
}
.section-02 .box-header .txt {
    position: relative;
    z-index: 2;
    margin-top: 0.81rem;
    font-size: 1.44rem;
    font-weight: 500;
    line-height: 1.88rem;
    letter-spacing: -0.04rem;
    text-align: center;
}
.section-02 .box-header .point {
    color: #FFFC00;
}



.section-02 .box-body {
    position: relative;
    height: 23.94rem;
}
.section-02 .box-body .desc {
    font-size: 1.04rem;
    font-weight: 500;
    line-height: 1.45rem;
    letter-spacing: -0.03rem;
    color: #C7C7C7;
}
.section-02 .box-body .point {
    font-weight: 800;
    color: #FF9C3E;
}
.section-02 .box-body .img {
    display: block;
    position: absolute;
    top: -3.63rem;
    left: 50%;
    width: 37.19rem;
    height: 31.38rem;
    margin: auto;
    background: url(/images/visual-img@3x.png) no-repeat center / 100%;
    transform: translateX(-50%);
}
/* ------------------------- Section-02 : End ------------------------- */






/* ------------------------- Section-03 : Start ------------------------- */
.section-03 {
    position: relative;
    padding-top: 2.25rem;
    padding-bottom: 1.81rem;
    background: #FFF5E1;
}
.wrap-guide .box-header .tit {
    width: 10.44rem;
    height: 2.5rem;
    margin: 0.5rem auto 2rem;
    background: url(/images/visual-sub-tit@3x.png) no-repeat center / 100%;
    text-indent: -9999px;
}
.wrap-guide .box {
    line-height: 1.2;
    background: #FFFFFF;
    border-radius: 0.63rem;
    box-shadow: 0 0.31rem 0.74rem 0 #EBE1CC;
}
.wrap-guide .box .row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.wrap-guide .box .row:last-child {
    margin-bottom: 0;
}
.wrap-guide .row .tit strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 900;
}
.wrap-guide .row .txt {
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.68px;
    color: #323232;
}
.wrap-guide .row .point {
    font-weight: 800;
    color: #FF6C00;
}
.wrap-guide .coupon {
    width: 15.94rem;
    height: 8.94rem;
    padding: 1.6rem 2.13rem;
    margin: auto;
    background: url(/images/coupon-bg@3x.png) no-repeat center / 100%;
    text-align: center;
    letter-spacing: -0.03em;
}
.wrap-guide .coupon .num {
    width: 9.44rem;
    height: 2.31rem;
    margin: auto;
    background: url(/images/coupon-num@3x.png) no-repeat center / 100%;
    text-indent: -9999px;
}
.wrap-guide .coupon .btn {
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    font-size: 1.19rem;
    font-weight: 600;
    line-height: 1.38rem;
    background: #323232;
    letter-spacing: -0.04rem;
    border-radius: 2.94rem;
    text-align: center;
    white-space: nowrap;
    color: #FFF;
}
.wrap-guide .row .detail {
    margin: auto;
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1.37rem;
    letter-spacing: -0.03rem;
    color: #878787;
}



.wrap-guide .box-01 {
    padding: 1.44rem 1.63rem 1.06rem;
    margin-bottom: 0.69rem;
}
.wrap-guide .box-01 .row .tit {
    width: 2.38rem;
    height: 2.38rem;
    padding: 0.5rem 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03rem;
    background: #FF6C00;
    border-radius: 50%;
    text-align: center;
    color: #FFF;
}



.wrap-guide .box-02 {
    padding: 1.38rem 1.63rem 1.63rem;
    margin-bottom: 0.88rem;
}
.wrap-guide .box-02 .row {
    flex-direction: column;
    gap: 0;
}
.wrap-guide .box-02 .row .tit {
    width: 4.5rem;
    height: 1.94rem;
    padding: 0.5rem 0.56rem 0 0.94rem;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03rem;
    background: #FF6C00;
    border-radius: 11.25rem 6.25rem 6.25rem 0;
    text-align: center;
    color: #FFF;
}



.wrap-guide .caution {
    margin-top: 1.38rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 2.01rem;
    text-align: center;
    color: #A6A6A6;
}
/* ------------------------- Section-03 : End ------------------------- */






/* ------------------------- Section-04 : Start ------------------------- */
.section-04 {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 10;
}
.section-04 .container {
    padding: 0 1.13rem;
}
.wrap-cta {
    display: block;
    position: relative;
    border-radius: 0.63rem;
    background: #FF6C00;
    box-shadow: 0 0.38rem 0.88rem 0 rgba(99, 99, 99, 0.50);
}
.wrap-cta:hover {
    background: #3F3F3F;
}
.wrap-cta .cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.69rem;
    height: 4.75rem;
    padding: 1.68rem 0;
}
.wrap-cta .cta-btn .txt {
    width: 13.25rem;
    height: 1.69rem;
    background: url(/images/cta-btn-text@3x.png) no-repeat center / 100%;
}
.wrap-cta .cta-btn .ico-arrow {
    width: 0.63rem;
    height: 1.06rem;
    margin-top: 0.13rem;
    background: url(/images/cta-btn-arrow.svg) no-repeat center / 100%;
}
/* ------------------------- Section-04 : End ------------------------- */






/* ------------------------- Section-05 : Start ------------------------- */
.section-05 {
    padding: 3.31rem 0 1.19rem;
    background: #262626;
}
.accordion {
    border-radius: 0.5rem;
}
.accordion .accordion-header {
    padding: 0.38rem 0 0.38rem;
    border-bottom: 0.3px solid #FFFFFF;
}
.accordion .accordion-header .tit {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
}
.accordion .accordion-header .ico-info {
    display: inline-block;
    width: 14px;
    height: 14.5px;
    background: url(/images/ico-info.svg) no-repeat center / 14px 14.5px;
    transform: rotate(0deg) !important;
}
.accordion .accordion-header .ico-arrow {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background: url(/images/accordion-arrow.svg) no-repeat center / 100% ;
}



.accordion .accordion-content .box {
    padding: 1.25rem 1rem;
    margin-top: 1.19rem;
    background: #383838;
    border-radius: 0.69rem;
    color: #323232;
}
.accordion .accordion-content .box:first-child {
    margin-top: 0.69rem;
}
.accordion .accordion-content .box .tit {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.5rem;
    color: #FFFFFF;
}
.accordion .accordion-content .box .tit ~ .tit {
    margin-top: 1rem;
}
.accordion .accordion-content .box .desc-group {
    margin-top: 0.25rem;
}
.accordion .accordion-content .box .desc-group .desc-group {
    margin-top: 0;
}
.accordion .accordion-content .box .desc-group .desc {
    position: relative;
    margin: 0.38rem 0;
    padding-left: 0.5rem;
    font-size: 0.69rem;
    font-weight: 400;
    line-height: 1.05rem;
    color: #878787;
}
.accordion .accordion-content .box .desc-group .desc::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 2px;
    height: 2px;
    margin-right: 0.31rem;
    background: #878787;
    vertical-align: middle;
    border-radius: 50%;
}
.accordion .accordion-content .box .desc-group .desc.none {
    padding-top: 0.75rem;
    padding-left: 0;
}
.accordion .accordion-content .box .desc-group .desc.none::before {
    display: none;
}
.accordion .accordion-content .box .desc-group .desc.bullet-rf-mark {
    padding-left: 0.75rem;
}
.accordion .accordion-content .box .desc-group .desc.bullet-rf-mark::before {
    content: '※';
    top: 0;
    width: auto;
    height: auto;
    font-size: 0.63rem;
    background: none;
    color: #878787;
}



.accordion .accordion-content .box .row {
    margin-bottom: 0.5rem;
}
.accordion .accordion-content .box .row .tit {
    font-size: 0.94rem;
    font-weight: 600;
}
.accordion .accordion-content .box .row .desc-group .desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.25rem;
    color: #FFFFFF;
}
.accordion .accordion-content .box .row .desc-group .desc::before {
    background: #FFFFFF;
}



.approval-num {
    margin: 1.5rem 0 0;
}
.approval-num p {
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: center;
    color: #AEAEAE;
}
/* ------------------------- Section-05 : End ------------------------- */






/* ------------------------- Footer : Start ------------------------- */
.footer {
    padding: 1.5rem 0 7rem;
    font-size: 0.88rem;
    line-height: 1.5;
    background: #C8C8C8;
    text-align: center;
}
.footer .logo {
    display: inline-block;
    width: 3.06rem;
    height: 1.19rem;
    margin-bottom: 0.5rem;
    background: url(/images/footer-logo.svg) no-repeat center / 100%;
    text-indent: -9999px;
}
.footer .company-info p {
    font-size: 0.5rem;
    line-height: 0.75rem;
    letter-spacing: -0.01rem;
    color: #737373;
}
/* ------------------------- Footer : End ------------------------- */
