@charset "utf-8";

.montserrat {font-family: "Montserrat", sans-serif !important;}
.play {font-family: "Play", sans-serif !important;}
.inter {font-family: "Inter", sans-serif !important;}

.main_container {
    background-color: #2a2d36;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main_nick_top {
    padding: calc(100vw * (50/375)) calc(100vw * (20/375));
    color: #fff;
    .main_hello {
        font-size: calc(100vw * (22/375));
        font-weight: 700;
    }
    .main_top_btn {
        display: flex;
        align-items: center;
        gap: calc(100vw * (16/375));
        color: #cbe0f2;
        font-size: calc(100vw * (14/375));
        margin-top: calc(100vw * (6/375));
    }
    .main_top_qr {
        padding: calc(100vw * (8/375)) calc(100vw * (12/375));
        border-radius: calc(100vw * (50/375));
        font-size: calc(100vw * (12/375));
        font-weight: 500;
        color: #fff;
        background: linear-gradient(141deg, #63AAF8 16.93%, #076DE7 85.31%);
    }
}

.main_char1 {
    position: absolute;
    bottom: -100%;
    right: calc(100vw * (40/375));
    width: calc(100vw * (101/375));
    height: calc(100vw * (132/375));
    /* background-image: url(../image/main/main_img1.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 1s ease-in-out;
    .main_char_img img {
        width: 100%;
    }
}

.main_char1.on {
    bottom: 0%;
    z-index: 2;
    .char1_bg {
        position: absolute;
        top: 50%;
        right: 0;
        /* z-index: -1; */
        height: 50%;
        width: 50%;
        margin: 0 auto;
        filter: blur(calc(100vw*(15 / 375)));
        transform: translateY(-50%) scale(1.3);
        background: linear-gradient(90deg, #4A9DEA, #0fffc1);
        background-size: 200% 200%;
        animation: animateGlow 3s ease infinite, opacity 5s ease;
        border-radius: 50%;
    }
    .char1_bg::before{
        position: absolute;
        content: '';
        top: 0;
        left: -30%;
        /* z-index: -1; */
        height: 50%;
        width: 50%;
        margin: 0 auto;
        filter: blur(calc(100vw*(15 / 375)));
        transform: translateX(-50%) scale(1.3);
        background: linear-gradient(90deg, #855AFF, #4A9DEA);
        background-size: 200% 200%;
        animation: animateGlow 3s ease infinite, opacity 5s ease;
        border-radius: 50%;
    }
    .char1_bg::after{
        position: absolute;
        content: '';
        top: 100%;
        left: -70%;
        /* z-index: -1; */
        height: 40%;
        width: 40%;
        margin: 0 auto;
        filter: blur(calc(100vw*(15 / 375)));
        transform: translateY(-50%) scale(1.3);
        background: linear-gradient(90deg, #0fffc1, #855AFF);
        background-size: 200% 200%;
        animation: animateGlow 3s ease infinite, opacity 5s ease;
        border-radius: 50%;
    }
}

@keyframes animateGlow {
    0%      {background-position: 0% 50%;}
    50%     {background-position: 100% 50%;}
    100%    {background-position: 0% 50%;}
}

@keyframes opacity {
    0%      {opacity: 0;}
    100%      {opacity: 1;}
}

.main_bottom_cont {
    flex: 1;
    background-color: #fff;
    border-radius: calc(100vw * (25/375)) calc(100vw * (25/375)) 0 0;
    padding: calc(100vw * (50/375)) calc(100vw * (20/375));
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg, #FFF 0%, #F8F8F8 18.82%);
    .main_bottom_title {
        font-size: calc(100vw * (16/375));
        font-weight: 500;
        color: #151515;
    }
    .main_bottom_title2 {
        font-size: calc(100vw * (18/375));
        font-weight: 600;
        color: #151515;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .main_bottom_tab {
        display: flex;
        gap: calc(100vw * (10/375));
        margin-top: calc(100vw * (20/375));
        .left{
            width: calc(100vw * (207/375));
            height: calc(100vw * (246/375));
            border-radius: calc(100vw * (12/375));
            background-color: #e7eef4;
            padding: calc(100vw * (26/375)) calc(100vw * (22/375));
            display: flex;
            flex-direction: column;
            gap: calc(100vw * (10/375));
            overflow: hidden;
            .main_point {
                font-size: calc(100vw * (32/375));
                font-weight: 400;
                span {
                    font-weight: 700;
                    margin-right: calc(100vw * (4/375));
                }
            }
            .main_point_txt {
                font-size: calc(100vw * (15/375));
                color: #666;
                font-weight: 400;
            }
            .main_img2 {
                position: absolute;
                width: calc(100vw * (150/375));
                height: calc(100vw * (180/375));
                bottom: 0%;
                right: -50%;
            }
            .main_img2.on {
                animation: main_img2 1s linear 1s forwards;
            }
            .main_img2.active {
                animation: main2_active 2s linear infinite;
            }
            .main_img2 img {
                width: 100%;
            }
        }
        .right {
            display: flex;
            flex-direction: column;
            gap: calc(100vw * (10/375));
        }
        .right > div {
            width: calc(100vw * (118/375));
            padding: calc(100vw * (17/375)) calc(100vw * (14/375));
            border-radius: calc(100vw * (12/375));
            overflow: hidden;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: #fff;
            font-size: calc(100vw * (16/375));
            font-weight: 600;
        }
        .r_top {
            height: calc(100vw * (99/375));
            background-image: url(../image/main/main_button1.png);
        }
        .r_bot {
            flex: 1;
            background-image: url(../image/main/main_button2.png);
        }
    }
}
@keyframes main_img2 {
    0%       {bottom: 2%; right: -50%;}
    20%      {bottom: 0%; right: -40%;}
    40%      {bottom: 2%; right: -30%;}
    60%      {bottom: 0%; right: -20%;}
    80%      {bottom: 2%; right: -10%;}
    100%     {bottom: 0%; right: 0%;}
}

@keyframes main_active {
    0%       {bottom: 2%;}
    100%     {bottom: 0%;}
}

#container .banner_slide {
    margin: calc(100vw * (30/375)) 0 calc(100vw * (40/375));
    padding-bottom: calc(100vw * (10/375));
    overflow: visible;
    .banner_paging {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #d9d9d9;
        width: fit-content;
        border-radius: calc(100vw * (20/375));
    }
    .swiper-pagination-bullet {
        margin: 0;
        width: calc(100vw * (12/375));
        height: calc(100vw * (4/375));
        border-radius: calc(100vw * (20/375));
        background-color: transparent;
    }
    .swiper-pagination-bullet-active {
        background-color: #585858;
    }
    .swiper-slide {
        border-radius: calc(100vw * (20/375));
        overflow: hidden;
    }
    .swiper-slide img {
        width: 100%;
    }
}

.main_btn_group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(100vw * (18/375)) calc(100vw * (17/375)) calc(100vw * (25/375));
    margin-top: calc(100vw * (20/375));
    background-color: #fff;
    border-radius: calc(100vw * (10/375));
    .main_btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(100vw * (6/375));
        font-size: calc(100vw * (13/375));
        font-weight: 500;
    }
    .main_btn_icon {
        width: calc(100vw * (60/375));
        height: calc(100vw * (60/375));
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: calc(100vw * (25/375));
        background-color: #f7f8fc;
    }
    .main_btn img {
        width: calc(100vw * (25/375));
    }
}

.main_guide {
    display: block;
    margin: calc(100vw * (50/375)) 0;
}

.title_more {
    display: flex;
    align-items: center;
    gap: calc(100vw * (5/375));
    font-size: calc(100vw * (13/375));
    font-weight: 500;
    color: #316df5;
    img {
        width: calc(100vw * (5/375));
    }
}

.main_gift_box {
    border-radius: calc(100vw * (20/375));
    overflow: hidden;
    margin: calc(100vw * (20/375)) 0 calc(100vw * (50/375));
}

.gift_top {
    width: 100%;
    height: calc(100vw * (167/375));
    background-image: url(../image/main/main_gift_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.gift_bottom {
    padding: calc(100vw * (25/375)) calc(100vw * (20/375));
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (10/375));
    .gift_list{
        display: flex;
        align-items: center;
        gap: calc(100vw * (15/375));
        padding-bottom: calc(100vw * (10/375));
        border-bottom: 1px solid #ededed;
    }
    .gift_list:last-child {
        border: none;
        padding-bottom: 0;
    }
    .gift_txt {
        display: flex;
        flex-direction: column;
        gap: calc(100vw * (6/375));
    }
    .gift_brand {
        color: #666;
        font-size: calc(100vw * (12/375));
        font-weight: 400;
    }
    .gift_title {
        color: #151515;
        font-size: calc(100vw * (14/375));
        font-weight: 500;
    }
    .gift_thumb {
        min-width: calc(100vw * (47/375));
        max-width: calc(100vw * (47/375));
        min-height: calc(100vw * (47/375));
        max-height: calc(100vw * (47/375));
        overflow: hidden;
        border-radius: calc(100vw * (10/375));
        background-color: #f7f7f7;
    }
}

.main_shop_grid {
    margin: calc(100vw * (25/375)) 0 0;
    display: flex;
    gap: calc(100vw * (4/375));
    overflow: hidden;
    align-items: center;
    border-radius: calc(100vw * (16/375));
    img {
        border-radius: calc(100vw * (4/375));
    }
    .main_shop_img1 {
        min-width: calc(100vw * (237/375));
        min-height: calc(100vw * (186/375));
    }
    .main_shop_img2 {
        display: flex;
        flex-direction: column;
        gap: calc(100vw * (4/375));
    }
    .main_shop_img2 img {}
}

.main_footer {
    padding: calc(100vw * (50/375)) calc(100vw * (20/375)) calc(100vw * (130/375));
    background-color: #151515;
    color: #111;
}

.footer_logo {
    display: flex;
    align-items: center;
    margin-bottom: calc(100vw * (36/375));
    img{
        width: calc(100vw * (64/375));
        opacity: 0.5;
    }
    .more_info{
		width:calc(100vw * (36/375));
		margin-left:auto;
		transition:0.5s;
        transform-origin:center center;
        img {
            opacity: 1;
        }
	}
	.more_info.on {
        transform: rotate(180deg);
	}
}
.footer_etc {
    display: flex;
    align-items: center;
    gap: calc(100vw * (14/375));
    color: #666;
    font-weight: 500;
}


span.etc_line {
	width:1px;
	height:calc(100vw * (12/375));
	background-color:#999;
}

.footer_info {
    display: flex;
    gap: calc(100vw * (8/375));
    flex-wrap: wrap;
    margin: calc(100vw * (20/375)) 0 calc(100vw * (30/375));
    color: #666;
    font-size: calc(100vw * (12/375));
	font-weight:300;
}

.info_bold {
	color:#e2e2e2;
	text-decoration : underline;
}

.footer_copy {
    color: #999;
    font-size: calc(100vw * (12/375));
    font-weight: 300;
}

.main_fix_menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vw * (83/375));
    background-image: url(../image/main/fix_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(100vw * (27/375)) calc(100vw * (35/375)) calc(100vw * (28/375));
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    .fix_menu_group{
        display: flex;
        align-items: center;
        gap: calc(100vw * (40/375));
    }
    .fix_menu {
        width: calc(100vw * (24/375));
    }

    .fix_center {
        position: absolute;
        left: 50%;
        bottom: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .center_circle {
        width: calc(100vw * (60/375));
        height: calc(100vw * (60/375));
        transform-origin: center center;
        animation: rotate360 5s linear infinite;
    }
    .center_icon {
        width: calc(100vw * (27/375));
        height: calc(100vw * (27/375));
        position: absolute;
    }
}

@keyframes rotate360 {
    0%      {transform: rotate(0deg);}
    100%      {transform: rotate(360deg);}
}

.s4_shop {
        overflow: unset !important;
        margin-top: calc(100vw * (18/375));
    }
.s4_item {
	width: calc(100vw * (320/375));
	display: flex !important;
	flex-direction: column;
	gap: calc(100vw * (10/375));
	color: #111;
}
.s4_thumb {
	width: calc(100vw * (320/375));
	height: calc(100vw * (178/375));
	overflow: hidden;
	border-radius: calc(100vw * (20/375));
}

.s4_title {
	display: flex;
	gap: calc(100vw * (6/375));
	align-items: center;
	font-size: calc(100vw * (14/375));
	font-weight: 400;
}

.s4_title p {
	max-width:calc(100vw * (288/375));
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	display:block;
	line-height:1.2em;
}

.s4_title .hot {
	padding: calc(100vw * (4/375)) calc(100vw * (6/375));
	border-radius: calc(100vw * (9/375));
	background-color: #db6523;
	font-size: calc(100vw * (10/375));
	line-height: 1.2em;
	font-weight: 600;
	color:#fff;
}

.s4_discount {
	color: rgba(0, 0, 0, 0.5);
	font-size: calc(100vw * (14/375));
	font-weight: 400;
	text-decoration: line-through;
}

.s4_num {
	display: flex;
	align-items: center;
	gap: calc(100vw * (4/375));
	font-size: calc(100vw * (18/375));
	font-weight: 600;
}

.percent {
	color: #db6523;
}