@charset "utf-8";

@font-face {
    font-family: 'NotoKr';
    font-style: normal;
    font-weight: 100;
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-light.eot');
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-light.eot?#iefix') format('embedded-opentype'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-light.woff2') format('woff2'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-light.woff') format('woff');
}

@font-face {
    font-family: 'NotoKr';
    font-style: normal;
    font-weight: 100;
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-light.eot');
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-light.eot?#iefix') format('embedded-opentype'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-light.woff2') format('woff2'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-light.woff') format('woff');
}

@font-face {
    font-family: 'NotoKr';
    font-style: normal;
    font-weight: 400;
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-regular.eot');
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-regular.eot?#iefix') format('embedded-opentype'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-regular.woff2') format('woff2'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-regular.woff') format('woff');
}

@font-face {
    font-family: 'NotoKr';
    font-style: normal;
    font-weight: 500;
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-medium.eot');
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-medium.eot?#iefix') format('embedded-opentype'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-medium.woff2') format('woff2'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-medium.woff') format('woff');
}

@font-face {
    font-family: 'NotoKr';
    font-style: normal;
    font-weight: 700;
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-bold.eot');
    src: url('https://file.valofe.com/Valofe_file/web/fonts/notokr-bold.eot?#iefix') format('embedded-opentype'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-bold.woff2') format('woff2'),
    url('https://file.valofe.com/Valofe_file/web/fonts/notokr-bold.woff') format('woff');
}

/*  Reset CSS  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "NotoKr", "FontAwesome", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    color: #555;
    min-width: 1280px;
    margin: 0;
    padding: 0;
}

ol, ul {
    list-style: none;
}

a {
    outline: 0;
    text-decoration: none;
    color: #555;
}

img {
    border: 0;
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

input[type='text'] {
    border-block-style: none;
    background: transparent;
    border: none;
    padding-left: 5px;
}

/* 스크롤 바 */
/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.5);
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(206, 124, 121, 0.85);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(206, 124, 121, 1)
}

/* 공통 */
.hidden {
    visibility: hidden;
    position: absolute;
}

.text-indent {
    text-indent: -9999px;
}

.clearfix {
    clear: both;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/************************************************************/
/* ///////////////////////// sns ///////////////////////// */
#sns {
    position: fixed;
    top: 40px;
    right: 50px;
    z-index: 14;
}

#sns li {
    float: left;
    margin-left: 20px;
}

#sns li i {
    font-size: 25px;
    color: #3b570a;
    opacity: 0.8;
    transition: all 0.25s;
}

#sns li i.white {
    font-size: 25px;
    color: #fff;
    opacity: 0.5;
    transition: all 0.25s;
}

#sns li i:hover {
    transform: scale(1.2);
    opacity: 1;
}

#sns li i.white:hover {
    transform: scale(1.2);
    opacity: 1;
}

/************************************************************/
/* ///////////////////////// 마우스 ///////////////////////// */
.mouse {
    position: fixed;
    top: 110px;
    right: 47px;
    z-index: 20;
}

/* 마우스 스크롤 이미지 */
.aniBounce {
    -webkit-animation: fadeIn 10s 2s 1 both, bounce 1s 2.6s infinite alternate;
    -moz-animation: fadeIn 10s 2s 1 both, bounce 1s 2.6s infinite alternate;;
    -ms-animation: fadeIn 10s 2s 1 both, bounce 1s 2.6s infinite alternate;;
    -o-animation: fadeIn 10s 2s 1 both, bounce 1s 2.6s infinite alternate;;
    animation: fadeIn 10s 2s 1 both, bounce 1s 2.6s infinite alternate;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
        opacity: 1;
    }
    to {
        transform: translateY(-15px);
        opacity: 1;
    }
}


/************************************************************/
/* ///////////////////////// lnb ///////////////////////// */
/*로고*/
#lnb {
    box-sizing: border-box;
    position: fixed;
    height: 100%; /*height: 100vh;*/
    width: 310px;
    overflow: hidden;
    top: 0;
    left: 0px;
    margin-top: 0;
    z-index: 17;
}

#lnb .lnb-wrapper {
    margin-top: 0;
    box-sizing: border-box;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    width: 263px;
    padding: 0px 16px 30px 30px;
    background-color: rgba(0, 0, 0, 0.8);
    background-size: 263px 100%;
    background-repeat: repeat;
    background-position: left top;
    height: 100%; /*height: 100vh;*/
    overflow-y: auto;
}

h1 {
    position: absolute;
    top: 34px;
    left: 2rem;
    z-index: 10;
    width: 100%;
    max-width: 200px;
    text-align: center;
}

h1 img {
    width: 19vh;
    height: auto;
    max-width: 200px;
}

/* lnb-controll */
.btn-lnb-controll {
    position: absolute;
    left: 263px;
    top: 71px;
    width: 45px;
    height: 46px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    z-index: 17;
}

.btn-lnb-controll .blit {
    display: inline-block;
    margin-top: 13px;
    margin-left: 9px;
    width: 23px;
    height: 19px;
    vertical-align: middle;
    transition: all .25s;
}

.btn-lnb-controll.is-normal .blit {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-close-min.png) center no-repeat;
    background-size: 100%;
}

.btn-lnb-controll.is-normal:hover .blit {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-close-min.png) center no-repeat;
    background-size: 100%;
    filter: invert(26%) sepia(88%) saturate(5200%) hue-rotate(345deg) brightness(102%) contrast(105%);

}

.btn-lnb-controll.is-closed .blit {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-close-min.png) center no-repeat;
    background-size: 100%;
    transform: rotate(-180deg);
}

.btn-lnb-controll.is-closed:hover .blit {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-close-min.png) center no-repeat;
    background-size: 100%;
    transform: rotate(-180deg);
    filter: invert(26%) sepia(88%) saturate(5200%) hue-rotate(345deg) brightness(102%) contrast(105%);
}

.btn-lnb-controll .bar {
    position: absolute;
    z-index: 1;
    right: 0;
    width: 3px;
    height: 46px;
    display: inline-block;
    background-color: #ff3f3f;
}

/* lnb icon */
#lnb_home {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    top: 14vh;
    left: 2rem;
    width: 200px;
    z-index: 15;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    line-height: 15px;
    padding-top: 6px;
}

#lnb_home i.fa {
    font-size: 20px;
    line-height: 16px;
    vertical-align: top;
}

#lnb_home:hover,
#lnb_home:hover i.fa {
    color: #fff;
    -webkit-animation: neon3 1.5s ease-in-out infinite alternate;
    -moz-animation: neon3 1.5s ease-in-out infinite alternate;
    -ms-animation: neon3 1.5s ease-in-out infinite alternate;
    -o-animation: neon3 1.5s ease-in-out infinite alternate;
    animation: neon3 1.5s ease-in-out infinite alternate;
}

#lnb_sns {
    position: fixed;
    z-index: 15;
    bottom: 105px;
    padding-top: 17px;
    box-sizing: border-box;
    padding-left: 20px;
    width: 221px;
    text-align: center;
    background-position: left top;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 1px;
    -moz-background-size: 100% 1px;
    background-size: 100% 1px;
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4dffffff', endColorstr='#00ffffff', GradientType=1);
}

#lnb_sns li {
    display: inline-block;
    margin-left: 2rem;
    margin-right: 2rem;
}

#lnb_sns li:first-child {
    margin-left: 0;
    margin-right: 2rem;
}

#lnb_sns li i {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    transition: all 0.25s;
}

#lnb_sns li i.white {
    font-size: 25px;
    color: #fff;
    opacity: 0.5;
    transition: all 0.25s;
}

#lnb_sns li i:hover, #lnb_sns li i.white:hover {
    transform: scale(1.2);
    opacity: 1;
    -webkit-animation: neon3 1.5s ease-in-out infinite alternate;
    -moz-animation: neon3 1.5s ease-in-out infinite alternate;
    -ms-animation: neon3 1.5s ease-in-out infinite alternate;
    -o-animation: neon3 1.5s ease-in-out infinite alternate;
    animation: neon3 1.5s ease-in-out infinite alternate;
}

#lnb_sns + p {
    position: fixed;
    bottom: 40px;
    z-index: 15;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 221px;
    background-position: left top;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 1px;
    -moz-background-size: 100% 1px;
    background-size: 100% 1px;
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4dffffff', endColorstr='#00ffffff', GradientType=1);
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* lnb menu */
#menu {
    margin-top: 23.5vh;
}

#menu > li {
    position: relative;
    display: block;
    box-sizing: border-box;
    height: 5.68vh;
    max-height: 63px;
    line-height: 5.6vh;
    min-height: 52px;
    background-position: left top;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 1px;
    -moz-background-size: 100% 1px;
    background-size: 100% 1px;
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%); /* FF3.6-15 */
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#menu > li:nth-of-type(2) {
    height: auto;
    max-height: unset;
    padding-bottom: 20px;
}

/* 서브메뉴 있는 li */
#menu li li {
    position: relative;
    display: block;
    box-sizing: border-box;
    height: 4vh;
    max-height: 40px;
    line-height: 4vh;
    min-height: 44px;
}

#menu a {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    width: 100%;
    transition: all 0.25s;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    font-size: 18px;
    opacity: 0.8;
    letter-spacing: -1px;
}

#menu li a:hover {
    font-size: 18px;
    opacity: 1;
    text-decoration: none;
}

#menu li.on a {
    font-size: 18px;
    opacity: 1;
}

#menu > li > a { /*border-top:1px solid rgba(255,255,255,0.2)*/
    font-size: 18px;
    padding-left: 14px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4dffffff', endColorstr='#00ffffff', GradientType=1); /* IE6-9 */
}

#menu li ul li a {
    padding-left: 30px;
}

#menu .title {
    display: block;
    width: 210px;
    padding-left: 14px;
    text-align: left;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    background-position: left top;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 1px;
    -moz-background-size: 100% 1px;
    background-size: 100% 1px;
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%); /* FF3.6-15 */
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.125) 0%, rgba(255, 255, 255, 0.125) 1%, rgba(255, 255, 255, 0.1) 69%, rgba(255, 255, 255, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4dffffff', endColorstr='#00ffffff', GradientType=1); /* IE6-9 */
}

#menu .title:hover, #menu .title.on {
    -webkit-animation: neon3 1.5s ease-in-out infinite alternate;
    -moz-animation: neon3 1.5s ease-in-out infinite alternate;
    -ms-animation: neon3 1.5s ease-in-out infinite alternate;
    -o-animation: neon3 1.5s ease-in-out infinite alternate;
    animation: neon3 1.5s ease-in-out infinite alternate;
}

#menu li ul li a .blit-lnb {
    display: inline-block;
    margin-right: 3px;
    margin-top: -1px;
    width: 15px;
    height: 15px;
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-is-closed-off.png") center top no-repeat;
    background-size: contain;
}

#menu li ul li.on a .blit-lnb {
    display: inline-block;
    margin-right: 3px;
    margin-top: -1px;
    width: 15px;
    height: 15px;
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-is-closed-on-min.png") center top no-repeat;
    background-size: contain;
}

#menu li:nth-child(4) {
    padding-bottom: 0;
    line-height: 23px;
}

#menu li a:hover,
#menu li.on a,
#menu li:nth-child(2).on > span,
#menu li:nth-child(2).on ul li.on a {
    -webkit-animation: neon3 1.5s ease-in-out infinite alternate;
    -moz-animation: neon3 1.5s ease-in-out infinite alternate;
    -ms-animation: neon3 1.5s ease-in-out infinite alternate;
    -o-animation: neon3 1.5s ease-in-out infinite alternate;
    animation: neon3 1.5s ease-in-out infinite alternate;
}

@keyframes neon3 {
    from {
        text-shadow: 0 0 0px #fff, 0 0 0px #ff3f3f, 0 0 0px #ff3f3f, 0 0 10px #ff3f3f, 0 0 20px #ff3f3f, 0 0 30px #ff3f3f;
    }
    to {
        text-shadow: 0 0 0px #fff, 0 0 0px #ff3f3f, 0 0 0px #ff3f3f, 0 0 0px #ff3f3f, 0 0 0px #ff3f3f, 0 0 1px #ff3f3f;
    }
}

/************************************************************/
/* ///////////////////////// 레이아웃 ///////////////////////// */
.wrapper, #wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

section {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    /*width: min(100vw,200vw);*/
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    aspect-ratio: 1920/960;
}

#section0 {
    background-image: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/bg-min.png);
}

#section1 {
    background-image: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec1/sec2-bg-min.png);
}

#section2 {
    background-image: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec1/sec2-bg-min.png);
}

#section3 {
    background-image: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec3/sec4-bg-min.png);
}

#section4 {
    background-image: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec4/sec5-bg-min.png);
}

.article {
    position: absolute;
    top: 80px;
    width: calc(100% - 520px);
    left: 400px;
    z-index: 11;
    padding: 30px;
}

.img-wrap {
    position: absolute;
    top: 50%;
    height: 95%;;
    z-index: 12;
    max-height: 870px;
    left: 50%;
    transform: translate(-45%, -50%);
}

.img-wrap img {
    height: 100%;
}

.snows {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec4/stars-min.png) no-repeat center/contain;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    -moz-animation: snow-fall 25s ease infinite;
    -ms-animation: snow-fall 25s ease infinite;
    -o-animation: snow-fall 25s ease infinite;
    animation: snow-fall 25s ease infinite;
    pointer-events: none;
    z-index: 12;

}

@keyframes snow-fall {
    0% {
        opacity: 10%;
        top: -40%;
    }
    20% {
        opacity: 60%;
    }
    40% {
        opacity: 30%;
    }
    80% {
        opacity: 80%;
    }
    100% {
        opacity: 5%;
        top: 50%;
    }
}


/*회전 애니메이션*/
@keyframes rotate_image {
    10% {
        opacity: 0.5;
    }
    to {
        transform: rotate(360deg);
    }
}

/************************************************************/
/* ///////////////////////// section0 ///////////////////////// */
.bg-paper {
    position: absolute;
    display: inline-block;
    left: 3%;
    width: 104%;
    height: 100%;
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/paper-min.png) no-repeat center/contain;
}

/*main title*/
.main-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10%;
    left: 4%;
    width: 100%;
    z-index: 14;
}

.title-sub {
    width: 19%;
    max-width: 352px;
}

.title-main {
    width: 59%;
    /*max-width: 1126px;*/
    max-width: 1060px;
}

.title-date {
    max-width: 365px;
}

.main-title-wrap img {
    width: 100%;
}

/* 캐릭터 */
#section0 .deco-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 4%;
}

#section0 .deco-wrap span {
    position: absolute;
    display: inline-block;
    z-index: 13;
}

#section0 .chr-wrap {
    position: absolute;
    /*width: 49%;*/
    width: 900px;
    height: 70%;
    left: 60%;
    bottom: 0;
    transform: translateX(-60%);
}

#section0 .chr-wrap img {
    position: absolute;
}

#section0 .chr {
    width: 100%;
    max-width: 936px;
    min-width: 900px;
    top: 5%;
}

.chr-rudolf {
    width: 13%;
    max-width: 132px;
    min-width: 120px;
    right: 25%;
    top: 15%;
}

.chr-snowman {
    width: 31%;
    max-width: 381px;
    min-width: 360px;
    left: -11%;
    top: 35%;
}

.chr-gift-s {
    width: 23%;
    max-width: 186px;
    min-width: 160px;
    right: 5%;
    top: 78%;
}

.chr-gift-l {
    width: 24%;
    max-width: 223px;
    min-width: 200px;
    left: 16%;
    top: 16%;
}

.chr-wrap .star1 {
    width: 11%;
    max-width: 91px;
    left: -9%;
    top: 82%;
    opacity: 0;
    animation: jello-horizontal-loop 3s infinite;
    animation-delay: 3s;
    will-change: transform, opacity;
}

.chr-wrap .star2 {
    display: inline-block;
    width: 17%;
    max-width: 58px;
    right: 17%;
    top: 21%;
    opacity: 0;
    animation: jello-horizontal-loop 3s ease infinite;
    animation-delay: 2.2s;
    will-change: transform, opacity;
}

.chr-wrap .star3 {
    width: 6%;
    max-width: 38px;
    right: -8%;
    top: 70%;
    opacity: 0;
    animation: jello-horizontal-loop 3s infinite;
    animation-delay: 3.6s;
    will-change: transform, opacity;
}

@keyframes jello-horizontal-loop {
    /* 시작: 숨김 */
    0% {
        opacity: 0.8;
        transform: scale3d(1, 1, 1);
    }

    /* 튀어나오는 구간 */
    15% {
        opacity: 1;
        transform: scale3d(1.25, 0.75, 1);
    }
    20% {
        transform: scale3d(0.75, 1.35, 1);
    }
    35% {
        transform: scale3d(1.15, 0.85, 1);
    }

    /* ✅ 여기서 끝 */
    55% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }

    /* ✅ 쉬는 구간 (멈춰있음) */
    85% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }

    /* 다시 초기화 */
    100% {
        opacity: 0.8;
        transform: scale3d(1, 1, 1);
    }
}


.chr, .chr-gift-l, .chr-gift-s, .chr-rudolf, .chr-snowman {
    will-change: transform, opacity;
    transform-origin: 50% 100%;
}

.ribbon1 {
    width: 50%;
    height: 61%;
    max-width: 923px;
    left: calc(-10.5% + 50px);
    bottom: calc(-18% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/ribbon_bottom_left-min.png) no-repeat center/contain;
}

.ribbon2 {
    width: 28%;
    height: 44%;
    max-width: 602px;
    right: calc(-2.5% + 50px);
    top: calc(-16% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/ribbon_top-min.png) no-repeat center/contain;
}

.ribbon3 {
    width: 33%;
    height: 85%;
    max-width: 667px;
    right: calc(-8.5% + 50px);
    bottom: calc(-34% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/ribbon_bottom_right-min.png) no-repeat center/contain;
}

.sticker-l {
    width: 21%;
    height: 21%;
    max-width: 223px;
    left: calc(7.5% + 50px);
    top: calc(-6% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/tie1-min.png) no-repeat center/contain;

    opacity: 0;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 0.6s;
    will-change: transform, opacity;
}

.sticker-s {
    width: 15%;
    height: 16%;
    max-width: 152px;
    right: calc(12.5% + 50px);
    top: calc(28% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/tie2-min.png) no-repeat center/contain;

    opacity: 0;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 1.1s;
    will-change: transform, opacity;
}

.snowflake1 {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/spin-snow1-min.png) no-repeat center/contain;
    height: 100px;
    width: 100px;
    position: absolute;
    right: calc(22.5% + 50px);
    top: calc(45% + 50px);
    filter: invert(0.3);
    animation: rotate_image 6s linear infinite;
    animation-delay: 3.4s;
    opacity: 0.3;
}
.snowflake2 {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/spin_snow2-min.png) no-repeat center/contain;
    height: 90px;
    width: 90px;
    position: absolute;
    right: calc(29.5% + 50px);
    top: calc(5% + 50px);
    filter: invert(0.3);
    animation: rotate_image 6s linear infinite;
    animation-delay: 3.4s;
    opacity: 0.3;
}
.snowflake3 {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec0/spin-snow1-min.png) no-repeat center/contain;
    height: 70px;
    width: 70px;
    position: absolute;
    right: calc(51.5% + 50px);
    top: calc(0% + 50px);
    filter: invert(0.3);
    animation: rotate_image 6s linear infinite;
    animation-delay: 3.4s;
    opacity: 0.3;
}

@keyframes rotate_image {
    10% {
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scale-in-center {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes clip-l {
    0% {
        clip-path: inset(0 0 0 93%);
    }
    30% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

/************************************************************/
/* ///////////////////////// section1 ///////////////////////// */
/*#section2 .img-wrap {*/
/*    transform: translate(-45%, -50%);*/
/*}*/
#section1 .img-wrap {
    position: relative;
    display: inline-block;
    height: 93%;
    top: 50%;
    aspect-ratio: 1082/882;
}

#section1 .deco-wrap, #section2 .deco-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#section1 .deco-wrap div, #section1 .deco-wrap span,
#section2 .deco-wrap div, #section2 .deco-wrap span {
    position: absolute;
    display: inline-block;
    z-index: 13;
}

#section1 .chr-l, #section2 .chr-l {
    position: absolute;
    max-width: 315px;
    width: 35%;
    left: calc(12% - 50px);
    bottom: calc(12% + 50px);
    @media all and (max-width: 1680px) {
        left: calc(9% - 50px);
        bottom: calc(19% + 50px);
    }
}

#section1 .chr-r, #section2 .chr-r {
    position: absolute;
    max-width: 710px;
    width: 35%;
    right: calc(1% - 50px);
    bottom: calc(-24% + 50px);
    @media all and (max-width: 1680px) {
        right: calc(0% - 50px);
    }
}

#section1 .wreath, #section2 .wreath {
    width: 30%;
    max-width: 590px;
    height: 30%;
    top: calc(-11% + 50px);
    left: calc(-8.5% + 50px);
    animation: swing 2.8s ease-in-out infinite;
    will-change: transform;
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec1/deco_left_top-min.png) no-repeat center/contain;
    @media all and (max-width: 1680px) {
        left: calc(-15.5% + 50px);

    }
}

.berry {
    width: 18%;
    max-width: 140px;
    height: 24%;
    top: calc(-3% + 50px);
    right: calc(7.5% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec1/deco-r-min.png) no-repeat center/contain;
    @media all and (max-width: 1680px) {
        right: calc(-5.5% + 50px);
    }
    @media all and (max-width: 1280px) {
        right: calc(-8.5% + 50px);
    }
}

.cookie {
    width: 30%;
    max-width: 158px;
    height: 30%;
    bottom: calc(-5% + 50px);
    left: calc(-2% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec1/cookie-min.png) no-repeat center/contain;
}

#section1 .star-l, #section2 .star-l {
    width: 6%;
    max-width: 54px;
    height: 6%;
    bottom: calc(39% + 50px);
    right: calc(-2% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec1/star-min.png) no-repeat center/contain;
}

#section1 .stick, #section2 .stick {
    width: 30%;
    max-width: 184px;
    height: 30%;
    top: calc(17% + 50px);
    right: calc(-5% + 50px);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec1/stick-min.png) no-repeat center/contain;
}


/************************************************************/
/* ///////////////////////// section2 ///////////////////////// */


#section2 .img-wrap {
    position: relative;
    display: inline-block;
    height: 93%;
    top: 50%;
    aspect-ratio: 1082/882;
}

/* 버튼 */
.my-get-num {
    position: absolute;
    display: inline-block;
    top: 18.3%;
    height: 2.6%;
    color: #343434;
    font-size: 13px;
    font-size: 1.3vh;
    left: 31.6%;
    width: 14.7%;
    text-align: center;
    z-index: 13;
    font-weight: bold;
    line-height: 20px;
}

.btn-view-my-list {
    position: absolute;
    display: inline-block;
    left: 56.1%;
    top: 16.8%;
    width: 27.4%;
    height: 5.2%;
    z-index: 13;
}

.btn-show-way {
    position: absolute;
    left: 50%;
    display: inline-block;
    z-index: 13;
    text-indent: -9999px;
    margin-left: -30.805687%;
    bottom: 16.2%;
    width: 18.89%;
    max-width: 226px;
    height: 5.3%;
}

.btn-reset {
    position: absolute;
    left: 50%;
    display: inline-block;
    z-index: 13;
    text-indent: -9999px;
    margin-left: -9.360190%;
    max-width: 226px;
    width: 18.6%;
    bottom: 16.2%;
    height: 5.3%;
}

.btn-itemlist {
    position: absolute;
    left: 50%;
    display: inline-block;
    z-index: 13;
    text-indent: -9999px;
    margin-left: 11.848341%;
    max-width: 226px;
    bottom: 16.2%;
    height: 5.5%;
    width: 18.5%;
}

/* 플립 카드 */
.board {
    z-index: 20;
    position: absolute;
    left: 17.3%;
    top: 27.8%;
    width: 65.8%;
    height: 44.8%;
}

table.board td {
    position: relative;
    width: 8%;
    height: 20%;
}

.board input[type="checkbox"] {
    display: none;
}

.board .bg-white {
    background-color: #fff;
    width: 104%;
    height: 108%;
    position: absolute;
    top: -4%;
    left: -2%;
}

.card {
    width: 100%;
    height: 100%;
    display: block;
}

.card ul {
    width: 100%;
    height: 100%;
    display: block;
}

.card ul li {
    position: relative;
    display: block;
    margin-right: 4px;
    margin-bottom: 4px;
    float: left;
    width: calc(11.1% - 3.5555556px);
    height: calc(20% - 3.2px);
}

.card ul li:nth-child(9n) {
    margin-right: 0;
}

.quizy-mg-item {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}

/* 플립 전*/
.quizy-mg-item-top {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/card-min.png") no-repeat left top;
    background-size: 100% 100%;
    box-sizing: border-box;
    z-index: 17;
}

/* 플립 후 뒷면*/
.mgcard-show {
    position: relative;
    display: inline-block;
    text-indent: -9999px;
    margin-top: 0px;
    width: 100%;
    height: 100%;
    z-index: 16;
}

.prize {
    text-indent: -9999px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.prize.item1 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-01-min.png");
}

.prize.item2 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-02-min.png");
}

.prize.item3 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-03-min.png");
}

.prize.item4 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-04-min.png");
}

.prize.item5 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-05-min.png");
}

.prize.item6 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-06-min.png");
}

.prize.item7 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-07-min.png");
}

.prize.item8 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-08-min.png");
}

.prize.item9 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-09-min.png");
}

.prize.item10 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-10-min.png");
}

.prize.item11 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-11-min.png");
}

.prize.item12 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-12-min.png");
}

.prize.item13 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-13-min.png");
}

.prize.item14 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-14-min.png");
}

.prize.item15 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-15-min.png");
}

.prize.item16 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-16-min.png");
}

.prize.item17 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-17-min.png");
}

.prize.item18 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-18-min.png");
}

.prize.item19 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-19-min.png");
}

.prize.item20 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-20-min.png?ver2");
}

.prize.item21 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-21-min.png");
}

.prize.item22 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-22-min.png");
}

.prize.item23 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-23-min.png");
}

.prize.item24 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-24-min.png");
}

.prize.item25 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-25-min.png?ver2");
}

.prize.item26 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-26-min.png");
}

.prize.item27 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-27-min.png");
}

.prize.item28 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-28-min.png");
}

.prize.item29 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-29-min.png");
}

.prize.item30 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-30-min.png");
}

.prize.item31 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-31-min.png");
}

.prize.item32 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-32-min.png");
}

.prize.item33 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-33-min.png");
}

.prize.item34 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-34-min.png");
}

.prize.item35 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-35-min.png");
}

.prize.item36 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-36-min.png");
}

.prize.item37 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-37-min.png");
}

.prize.item38 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-38-min.png");
}

.prize.item39 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-39-min.png");
}

.prize.item40 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-40-min.png");
}

.prize.item41 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-41-min.png");
}

.prize.item42 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-42-min.png");
}

.prize.item43 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-43-min.png");
}

.prize.item44 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-44-min.png");
}

.prize.item45 {
    background-image: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec2/item-45-min.png");
}


/************************************************************/
/* ///////////////////////// section3 ///////////////////////// */
#section3 .img-wrap {
    height: 93%;
    max-height: 92vh;
    left: 47.5%;
    /*top: 9vh;*/
    /*transform: translateX(-40%);*/
    aspect-ratio: 1082/904;
}

#section3 .img-wrap .floating-banner-attend img {
    height: 132px;
    position: absolute;
    top: -16.9%;
    left: 22%;
}

#section3 .deco-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 12;
    pointer-events: none;
}

#section3 .deco-wrap div, #section3 .deco-wrap span {
    position: absolute;
    display: inline-block;
    z-index: 13;
}

#section3 .chr-l {
    position: absolute;
    z-index: 13;
    max-width: 719px;
    width: 35%;
    left: calc(-4% - 50px);
    bottom: calc(-27% + 50px);
    @media all and (max-width: 1680px) {
        left: calc(-9% - 50px);
    }
}

#section3 .leaf {
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec3/deco_left-min.png") no-repeat center/contain;
    max-width: 490px;
    width: 37%;
    height: 35%;
    left: calc(-3% + 50px);
    top: calc(-15% + 50px);
    transform-origin: 90% 50%;
    animation: leaf-swing-soft 2.5s ease-in-out infinite;
    will-change: transform;
    @media all and (max-width: 1680px) {
        left: calc(-8% + 50px);
    }
}

@keyframes leaf-swing-soft {
    0% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(-3deg);
    }
}

#section3 .flower {
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec3/flower-min.png") no-repeat center/contain;
    max-width: 259px;
    width: 37%;
    height: 32%;
    right: calc(-6% + 50px);
    bottom: calc(0% + 50px);
    z-index: 11;
    @media all and (max-width: 1680px) {
        right: calc(-14% + 50px);
    }
}

#section3 .star-l {
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec3/star-min.png") no-repeat center/contain;
    max-width: 490px;
    width: 10%;
    height: 5%;
    right: calc(1% + 50px);
    bottom: calc(-3% + 50px);
}


.secret-attend-list {
    position: absolute;
    left: 6%;
    top: 22.7%;
    width: 88.2%;
    height: 76.6vh;
}

.secret-attend-list li {
    position: relative;
    float: left;
    width: calc(16.999% - 1%);
    height: calc(33.33% - 1.7%);
    margin-right: 0.76%;
}

.secret-attend-list li:nth-child(6n) {
    margin-right: 0;
}

.secret-attend-list li:nth-child(-n+18) {
    margin-bottom: 2.7%;
}

.secret-attend-list li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
}

.secret-attend-list li.get-ok a:after {
    position: absolute;
    display: inline-block;
    content: '';
    width: 100%;
    height: 100%;
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec3/get-ok-min.png) center no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
}

.floating-banner-attend {
    z-index: 9998;
    position: absolute;
    display: inline-block;
    width: 16vh;
    height: 73vh;
    max-width: 178px;
    max-height: 850px;
    right: -23%;
    bottom: 0;
    top: 62%;
    transform: translateY(-59%);
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec3/bonus-min.png) no-repeat 0 0 /contain;
    @media all and (max-width: 1680px) {
        right: -19%;
    }
    @media all and (max-width: 1440px) {
        right: -17%;
    }
}

.my-attend-cnt {
    position: absolute;
    top: 26.5%;
    left: 22%;
    width: 42%;
    height: 5%;
    padding-left: 2%;
    line-height: 39px;
    background: #e8d7db;
    color: #663939;
    font-size: 1.4vh;
    font-weight: bold;
    text-align: center;
}

.my-attend-cnt ~ span {
    position: absolute;
    top: 27.7%;
    right: 34%;
    font-size: 1.4vh;
    /* font-size: 14px; */
    font-weight: bold;
    color: #663939;
}

.bonus-attend-list {
    position: absolute;
    left: 8%;
    top: 34%;
    width: 82.7%;
}

.bonus-attend-list li {
    position: relative;
    width: 100%;
    height: 15.1vh;
    margin-bottom: 0.8vh;
    max-height: 182px;
}

.bonus-attend-list li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
}

.bonus-attend-list li.get-ok a::after {
    position: absolute;
    display: inline-block;
    content: '';
    width: 100%;
    height: 100%;
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec3/get-bonus-min.png) center no-repeat;
    background-size: cover;
    left: 0;
    top: -0;
}

/************************************************************/
/* ///////////////////////// section4 ///////////////////////// */
#section4 .img-wrap {
    /*max-height: unset;*/
    /*height: 93%;*/
    aspect-ratio: 1082 / 900;

}

#section4 .deco-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 13;
    pointer-events: none;
}

#section4 .deco-wrap .chr-l {
    position: absolute;
    width: 21%;
    max-width: 879px;
    top: calc(5% + 50px);
    left: calc(2% + 50px);
    z-index: 13;
    @media all and (max-width: 1680px) {
        left: calc(-3% + 50px);
    }
}

#section4 .deco-wrap .chr-r {
    position: absolute;
    width: 41%;
    max-width: 879px;
    bottom: calc(-23% + 50px);
    right: calc(-11% + 50px);
    z-index: 13;
    @media all and (max-width: 1680px) {
        right: calc(-15.8% + 50px);
    }
}

#section4 .deco-wrap .chr-r img, #section4 .deco-wrap .chr-l img {
    width: 100%;
}

#section4 .deco-wrap span {
    display: inline-block;
    position: absolute;
    z-index: 12;
}

#section4 .ribbon {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec4/ribbon-min.png) no-repeat center/contain;
    width: 30%;
    height: 14%;
    top: 4%;
    right: calc(-5% + 50px);
    transform-origin: 50% 0;
    animation: swing 2.8s ease-in-out infinite;
    will-change: transform;
    @media all and (max-width: 1680px) {
        right: calc(-8.8% + 50px);
    }
}

@keyframes swing {
    0% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(-4deg);
    }
}

#section4 .wreath {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec4/deco-l-min.png) no-repeat center/contain;
    width: 30%;
    max-width: 483px;
    height: 40%;
    bottom: calc(-15.8% + 50px);
    left: calc(-6.5% + 50px);
}

#section4 .star-l {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec4/star-l-min.png) no-repeat center/contain;
    width: 5%;
    height: 5%;
    top: calc(60% + 50px);
    left: calc(-1% + 50px);
}

#section4 .star-s {
    background: url(https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/sec4/star-min.png) no-repeat center/contain;
    width: 4%;
    height: 4%;
    top: calc(16% + 50px);
    right: calc(6.3% + 50px);
}

#section4 .btn-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#section4 .img-wrap .btn-go-to-shop {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 13%;
    transform: translateX(-50%);
}

#section4 .btn-go-to-shop img {
    max-width: 240px;
    height: 4.54vh;
}


/************************************************************/
/* ///////////////////////// popup ///////////////////////// */
/* popup 공통 요소 */
.layer-wrap {
    z-index: 9998;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}

.layer-wrap:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -.25em;
}

.layer-wrap.basic .pop-layer {
    z-index: 9999;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    width: 430px;
    height: auto;
    background-color: #fff;
}

.layer-wrap.basic2 .pop-layer {
    position: relative;
    z-index: 19999;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    width: 430px;
    height: auto;
    background-color: #fff;
}

.layer-wrap.tbl .pop-layer {
    z-index: 9999;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    width: 500px;
    min-height: 240px;
    height: 340px;
    overflow-y: auto;
    background: #fff;
    border: 3px solid #c9c99b;
}

.pop-container {
    height: 100%;
}

.pop-container .skip {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
}

.pop-container .frame {
    z-index: 9999;
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #c9c99b;
}

.pop-container.my-get-list .frame {
    border: none;
}

/* 애니메이션 */
.shadow {
    display: none;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    padding-bottom: 0px;
    top: 0;
    left: 0;
    z-index: -1;
    background-size: cover;
    background: rgba(0, 0, 0, 0.80);
}

.pop-container .frame h1 {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 42px;
    max-width: unset;
    padding: 0;
    padding-left: 5px;
    text-indent: 16px;
    box-sizing: border-box;
    color: #222222;
    font-weight: bold;
    font-size: 18px;
    background: none;
    text-align: left;
    position: absolute;
    line-height: 41px;
    background: transparent;
}

.layer-wrap.tbl .pop-container .wrap-tbl {
    display: table;
    margin-top: 18px;
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    padding: 30px 10px 10px 10px;
    text-align: center;
}

.layer-wrap.tbl .pop-container .frame h1 {
    top: -18px;
    left: 0;
    color: #222222;
    max-width: unset;
}

.layer-wrap.tbl .pop-container .frame .wrap-tbl h2 {
    font-size: 1rem;
    margin-bottom: 7px;
    color: #222222;
}

.layer-wrap.tbl .pop-container table {
    border-collapse: collapse;
    cell-padding: 0;
    cell-spacing: 0;
    width: 100%;
}

.layer-wrap.tbl .pop-container table th {
    background: #c9c99b;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-left: 1px solid #d2ffb5;
    padding: 7px 0;
}

.layer-wrap.tbl .pop-container table th:first-child {
    border-left: 1px solid #c9c99b;
}

.layer-wrap.tbl .pop-container table th:last-child {
    border-right: 1px solid #c9c99b;
}

.layer-wrap.tbl .pop-container table td {
    color: #000;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 12px;
    text-align: center;
    border: 1px solid #c9c99b;
}

.layer-wrap.tbl .pop-container table td:first-child {
    border-right: 0;
}

.pop-container .msg {
    box-sizing: border-box;
    width: 100%;
    margin-top: 80px;
    letter-spacing: -0.5px;
    font-size: 17px;
    font-weight: bold;
    color: #3f3f3f;
    line-height: 1.4;
}

.pop-container .msg .db-text {
    display: inline-block;
    letter-spacing: -0.5px;
    font-size: 18px;
    font-weight: bold;
    color: #3f3f3f;
    line-height: 1.4;
}

.pop-container .msg .db-alert {
    display: inline-block;
    letter-spacing: -0.5px;
    font-size: 18px;
    font-weight: bold;
    color: cornflowerblue;
    line-height: 1.4;
}

.pop-container .btn-layer-close {
    position: absolute;
    top: 12px;
    right: 15px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20230111_newyear/btn-pop-x-min.png") 0 0 no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

.pop-container .wrap-btn {
    width: 100%;
    margin: 30px auto 22px;
    text-align: center;
}

.pop-container .btn-confirm, .pop-container .btn-cancel, .pop-container .btn-close {
    display: inline-block;
    width: 148px;
    height: 44px;
}

.pop-container .btn-confirm {
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-pop-confirm-min.png") 0 0 no-repeat;
}

.pop-container.my-get-list .btn-confirm {
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-pop-confirm-min.png") 0 0 no-repeat;
    margin-bottom: 20px;
}

.pop-container .btn-cancel {
    background: url("https://lostsagakr-cdn-image.valofe.com/2014_grand/event/20251217_christmas/images/common/btn-pop-cancel.png") 0 0 no-repeat;
}

.btn1 {
    margin-right: 10px;
}

.btn2 {
    margin-left: 10px;
}


/*****미디어쿼리*****/
@media screen and (max-width: 1750px) {
}


@media screen and (max-width: 1676px) {
}


@media screen and (max-width: 1600px) {
}

@media screen and (max-width: 1500px) {
}

@media screen and (max-width: 1440px) {
}