@import url('fonts/fonts.css');
body {
    font-family: 'Tiffany', sans-serif;
}
body,html{
    overflow-x: hidden;
}
.uk-container {
    max-width: 1215px;
}
header#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}
#headerPC{
    
}
nav.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: url(images/bg_header.png) no-repeat center center/cover;
    min-height: 98px;
}
nav.main-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav.main-header ul li a {
    padding: 0 61px;
    font-family: 'Tahoma',sans-serif;
    font-weight: 400;
    color: #FFF;
    font-size: 15.79px;
    line-height: 38px;
    display: inline-block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

/*nav.main-header ul li:not(:last-child) a:after{
    content: '';
    display: inline-block;
    width: 2px;
    height: 53px;
    background: url(images/menu_line.png) no-repeat center center/contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}*/

nav.main-header ul li a span{
    position: relative;
    z-index: 2;
}
nav.main-header ul li.active > a,nav.main-header ul > li:hover  > a{
    color: #fad694;
}

li.has-child {
    position: relative;
}

li.has-child a span{
    position: relative;
}

li.has-child a span:after{
    content: '';
    display: inline-block;
    width: 13px;
    height: 7px;
    background: url(images/menu_arrow.png) no-repeat center center/contain;
    position: absolute;
    top: 6px;
    right: -18px;
    transition: all .3s ease-out;
}

ul.sub-menu {
    padding: 16px 0 !important;
    position: absolute;
    background: rgb(60 13 15 / 89%);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out;
    border-radius: 11px;
    width: 130px;
}

li.has-child:hover ul.sub-menu{
    opacity: 1;
    visibility: visible;
}
li.has-child:hover a span:after{
    transform: rotate(180deg);
}
ul.sub-menu li{
    text-align: center;
}
ul.sub-menu li a{
    padding: 0 !important;
    text-align: center;
    text-transform: capitalize !important;
}
ul.sub-menu li a:after{
    display: none !important;
}

.logo{
    position: absolute;
    top: 8px;
    left: 185px;
}

#banner {
    position: relative;
    /*height: 100vh;*/
    background: url(images/section1-bg.jpg) no-repeat center center/cover;
}

#videoBG {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.banner-content{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100px;
    width: max-content;
}
.banner-group-cta-inner {
    gap: 9px;
}

.banner-group-cta-register img{
    position: relative;
    top: -13px;
}
.banner-group-cta-topup img{
    position: relative;
    top: -3px;
}
.banner-group-cta{
    padding: 0px 30px;
    background: rgba(0,0,0,.47);
    border-radius: 11px;
}

.banner-group-cta-right-top {
    margin-bottom: 7px;
}

.btn-sweep{
    position: relative;
    display: inline-block;
}
.btn-sweep:before {
    top: 0;
    bottom: 0;
    left: 0;
    background: #1110 -webkit-linear-gradient(left, #1110, #ffffff52) no-repeat 0 0 / 30px;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, .3);
    animation: sweep 2.5s ease infinite;
    content: "";
    position: absolute;
    right: 0;
}
@-webkit-keyframes sweep {
    0% {
        background-position: 0 0;
    }
  
    100% {
        background-position: 100% 100%;
    }
}
@keyframes sweep {
    0% {
        background-position: 0 0;
    }
  
    100% {
        background-position: 100% 100%;
    }
}
.gift_icon{
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.banner-user-registed{
    background: url(images/bg_banner_registed.png) no-repeat center center;
}
.banner-user-registed h2{
    font-family: 'MStiffHei HK';
    font-size: 24.32px;
    line-height: 41.45px;
    color: #ffffd5;
}
.btn-char-play .uk-button{
    position: absolute;
    top: 26%;
    left: 40%;
    padding: 0;
}
#section2 {
    /*margin-top: -80px;*/
    padding-top: 35px;
    background: url(images/bg_f2.jpg) no-repeat top center/100% 100%;
    box-sizing: border-box;
    position: relative;
}
#Features{
    padding: 187px 0 193px;
    margin-top: -71px;
    background: url(images/f2/bg_sec2.png) no-repeat top center;
    background-size: 100% 100%;
}
.Features-head{
    margin-bottom: 20px;
}
.Features-content{
    /*display: flex;
    flex-direction: column;
    gap: 0px;*/
    margin-bottom: 10px;
}
.Features-content img{
    transition: 1.0s ease all;
    -moz-transition: 1.0s ease all;
    -webkit-transition: 1.0s ease all;
    cursor: pointer;
}
.Features-content img:hover{
    transform               : rotateY(360deg);
    -moz-transform          : rotateY(360deg);
    -webkit-transform       : rotateY(360deg);
    transform-origin        : center;
    -moz-transform-origin   : center;
    -webkit-transform-origin: center;

    transition              : transform 1.0s ease all;
    -moz-transition         : -moz-transform 1.0s ease all;
    -webkit-transition      : -webkit-transform 1.0s ease all;
}
.Features-content p{
    font-size: 31px;
    line-height: 43px;
    color: #fff6df;
    margin: 0;
}
.Features-buttons{
    gap: 27px;
}

.Features-left{
    width: 52.51%;
}
.Features-right{
    width: 47.49%;
    position: relative;
}
.Features-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.Features-right img {
    max-width: max-content;
    position: absolute;
    top: -200px;
    left: 147px;
    animation: ic-arrow 3s 0ms infinite ease-in-out;
}

#character{
    position: relative;
}
#character .uk-container{
    max-width: 1550px;
}
.character-inner{
    position: relative;
}
.character-slider-item {
    width: 100%;
    height: 866px;
}
.character-slider-thumb {
    position: absolute;
    top: 148px;
    left: -25px;
    flex-direction: column;
    /*    gap: 37px;*/
}
.character-slider-thumb a {
    position: relative;
    left: var(--top);
    margin-top: var(--mgTop);
    /*top: var(--t);*/
}
.character-slider-desc {
    max-width: 573px;
    position: absolute;
    z-index: 22222222222;
    right: 20px;
    top: 70px;
}
.character-slider-desc p{
    font-size: 19px;
    line-height: 29px;
    color: #FFF;
    font-family: Tahoma, sans-serif;
    font-style: italic;
    max-width: 578px;
    margin-bottom: 30px;
    letter-spacing: 0.025em;
}
.character-slider-desc img {
    margin: auto;
}
img.character-slider-desc-txt{
    margin-top: 15px;
}
.character-slider{
    /* background: url(images/char/Decor.png) no-repeat left center; */
}

.character-slider-thumb a.active, .character-slider-thumb a.active img{
    position: relative;
    /*filter: brightness(120%);*/
}
.character-slider-thumb a.active:before{
    content: '';
    display: inline-block;
    width: 270px;
    height: 261px;
    background: url(images/char/thumb_hover.png) no-repeat center center/contain;
    position: absolute;
    top: -53px;
    left: -39px;
}
.character-slider-item-char{
    width: 50%;
    position: relative;
}
.character-slider-item-char img {
    position: absolute;
    max-width: initial;
    top: var(--top);
    left: var(--left);
    transition: all .5s ease-in-out;
/*    transform: scale(0.3);*/
    z-index: 3;
}
img.character-slider-name {
    position: absolute;
    top: var(--top);
}
.character-slider-item.slick-active .character-slider-desc{
    animation: zoomLittle .5s 0ms 1 ease-in-out;
}
img.char-Decor {
    position: absolute;
    top: -30px;
    left: -51px;
    /*    z-index: 333;*/
    /*    animation: ic-arrow 2s linear infinite;*/
}
a.Trailer {
    position: absolute;
    right: 61px;
    bottom: 361px;
    z-index: 5;
}

.character-slider-item.slick-active .character-slider-item-char img{
    /*top: 0px;
    left: 80px;*/
    -webkit-animation: zoomLittle .5s 0ms 1 ease-in-out;
    animation: zoomLittle .5s 0ms 1 ease-in-out;
}
@-webkit-keyframes zoomLittle{
    0%{
        -webkit-transform: scale(0.3);
                transform: scale(0.3);
    }
    100%{
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
@keyframes zoomLittle{
    0%{
        -webkit-transform: scale(0.3);
                transform: scale(0.3);
    }
    100%{
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
.character-slider-item-right{
    width: 50%;
    box-sizing: border-box;
    padding: 200px 25px 335px 70px;
}
.character-slider-item-right img {
    position: relative;
}

@-webkit-keyframes ani {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes ani {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes ic-arrow {
    50% {
        -webkit-transform: translateY(7px);
                transform: translateY(7px);
    }
}
@keyframes ic-arrow {
    50% {
        -webkit-transform: translateY(7px);
                transform: translateY(7px);
    }
}
.slick-arrow {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    width: 53px;
    height: 55px;
    font-size: 0;
    outline: none;
    border: none;
    cursor: pointer;
    z-index: 999;
    background: url(images/Pre.png) no-repeat center center/contain;
    padding: 0;
}
.slick-next.slick-arrow{
    left: auto;
    right: -60px;
    background: url(images/Next.png) no-repeat center center/contain;
}
#gallery{
    /*padding: 0px 0 170px;*/
}
.gallery-container{
    max-width: 1732px;
    margin: auto;
}
.gallery-slider .slick-current.slick-active{
    min-height: 672px;
    aspect-ratio: 1178/672;
}
.gallery-slider .slick-current.slick-active img{
  transform: scale(1.96);
   position: relative; 
  z-index: 999;
}
.gallery-slider .slick-current.slick-active img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1);
}
.gallery-slider .slick-active.slick-current + .slick-active + .gallery-slider-item img{
    opacity: 0;
    visibility: hidden;
}
.gallery-slider .gallery-slider-item img{
    filter: brightness(0.5);
    transform: scale(1.7);
}
.gallery-slider .slick-track{
    display: flex;
    align-items: center;
}
#gallery .slick-arrow {
    left: 235px;
    top: 45%;
}
#gallery button.slick-next.slick-arrow{
    left: auto;
    right: 235px;
}
ul.slick-dots li {
    display: inline-block;
    margin: 0 29px;
    line-height: 0;
}
ul.slick-dots li button{
    font-size: 0;
    outline: none;
    width: 23px;
    height: 20px;
    background: url('images/dot.png') no-repeat center center/contain;
    border: none;
    cursor: pointer;
    padding: 0;

}
ul.slick-dots li.slick-active button{
    width: 40px;
    height: 39px;
    background: url('images/dot_active.png') no-repeat center center/contain;
}
ul.slick-dots {
    text-align: center;
    padding-left: 0;
    margin: -30px 0px 0px;
    z-index: 99999;
    position: relative;
}



@keyframes ic-arrow {
    50% {
        transform: translateY(10px)
    }
}
@keyframes tranUpDown {
  0%,100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}
.tranUpDown{
    -webkit-animation: tranUpDown 4s infinite;
    animation: tranUpDown 4s infinite;
}


#footer{
    padding: 58px 0 65px;
    background: url(images/BG-footer.png) no-repeat top center;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}
.footer-logo{
    margin-bottom: 25px;
    display: block;
}
#footer p{
    color: #FFF;
    font-family: "Tahoma", sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.5;
    margin: 0;
}
#TOP{
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 9999;
}
.modal-control {
    text-align: center;
    margin-bottom: 36px;
}
.modal-control label {
    display: block;
    color: #ffef37;
    font-family: 'MStiffHei HK';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 30.08px;
    letter-spacing: -0.025em;
    margin-bottom: 15px;
}
.modal-control input {
    width: 100%;
    max-width: 440px;
    height: 77px;
    border: none;
    border-radius: 0;
    outline: none;
    background: #FFF;
    padding: 0 20px;
    font-family: 'UTM Facebook';
    font-size: 20px;
}
.modal-control2{
    margin-bottom: 21px;
}
.modal-submit {
    text-align: center;
}
.modal-submit button{
    outline: none;
    border: none;
    width: 273px;
    height: 81px;
    font-size: 0;
    cursor: pointer;
    transition: all .3s ease;
}
.modal-submit button:hover{
    filter: brightness(120%);
}
.uk-modal-body {
    padding: 44px 122px;
    width: 683px;
    background: url(images/bg_modal.png) no-repeat center center;
    background-size: 100% 100%;
}
a.audio-icon {
    position: fixed;
    top: 15px;
    right: 50px;
}
.hf1{
    transition: all .2s ease;
}
.hf1:hover{
    filter: brightness(120%);
}
.hf2{
    transition: all .2s ease;
}
.hf2:hover{
    filter: brightness(150%);
}
.show-mb{
    display: none !important;
}

.show-mb-inline{
    display: none !important;
}
.banner-title{
    display: none;
}


@media (max-width: 1200px){
    html,body{
        overflow-x: hidden;
    }
}
@media (max-width: 1100px){
    main#site-main {
        padding-top: 93px;
    }
    #header{
        position: static !important;
    }
    #headerPC{
        display: none;
    }
    a.ic_home {
        position: absolute;
        top: 6px;
    }
    .main-header-mobile-center {
        margin-right: 55px;
        gap: 6px;
    }
    .main-header-mobile {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999999999;
        padding: 0px 35px 0 20px;
        box-sizing: border-box;
        background: url(images/bg_header_mb.png) no-repeat center center/cover;
        height: 93px;
    }
    
    a.audio-icon {
        position: static;
        top: 30px;
        right: auto;
        z-index: 22222222222222;
        left: 30px;
        line-height: 0;
    }
    .menu-humburgur-icon-active {
        display: none;
    }
    span.menu-humburgur-icon.open .menu-humburgur-icon-active {
        display: inline-block;
    }
    span.menu-humburgur-icon.open .menu-humburgur-icon-n {
        display: none;
    }
    .menu-main {
        position: fixed;
        top: 93px;
        width: 100%;
        background: rgba(0,0,0,.74);
        text-align: center;
        padding: 35px 0;
        z-index: 999999;
    }
    ul#menu-main-mobile {
        list-style: none;
        padding-left: 0;
    }
    li.menu-item {
        /*font-family: 'Philosopher';
        font-weight: bold;*/
        /* padding: 10px 0; */
        font-size: 29px;
        line-height: 53px;
        font-family: Tahoma,sans-serif;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 0.025em;
    }
    li.menu-item a {
        color: #FFF;
    }
    a.account-center{
        display: none;
    }
    #videoBG{
        display: none;
    }
    #banner{
        background-image: url(images/section1-bg_mb.jpg);
        background-position: top center;
        height: 1156px;
    }
    .banner-title{
        display: block;
        margin: 0 auto 34px;
        max-width: 654px;
        position: relative;
    }
    .btn-char-play .uk-button{
        top: -8%;
        left: auto;
        right: -6.12vw;
    }
    .banner-content{
        bottom: 95px;
        width: 100%;
    }
    .hide-md{
        display: none !important;
    }
    /*.banner-group-cta-inner{
        flex-direction: column;
        gap: 0;
    }*/

    .banner-content .uk-container {
        padding: 0;
    }
    .banner-group-cta{
        max-width: 688px;
        margin: auto;
        box-sizing: border-box;
    }
    #section2{
        margin-top: 0;
        padding-top: 70px;
        background-image: url(images/bg_f2_mb.jpg);
    }

    #gallery{
        display: none;
    }
    #galleryMB{
        display: block !important;
    }
    .gallery-slider-mobile {
        padding: 0 6px;
    }
    .gallery-slider-mobile-item img{
        width: 100%;
    }
    section#galleryMB {
        padding: 0px 0 131px;
    }
    .slick-arrow{
        left: 0;
    }
    .slick-next.slick-arrow{
        right: 0;
    }

}
@media(max-width: 768px){
    main#site-main {
        padding-top: 12.4vw;
    }
    .hide-mb{
        display: none !important;
    }
    .show-mb{
        display: block !important;
    }

    .show-mb-inline{
        display: inline-block !important;
    }
    .main-header-mobile-center {
        margin-right: 7.161vw;
        gap: 0.781vw;
    }
    
    .main-header-mobile-center img{
        max-width: 20.833vw;
    }
    .main-header-mobile{
        padding: 0 4.557vw 0 2.604vw;
        height: 12.4vw;
    }
    .menu-main{
        top: 12.4vw;
        padding: 4.557vw 0;
    }
    li.menu-item{
        font-size: 3.776vw;
        line-height: 6.901vw;
    }
    #banner {
        height: 150.521vw;
        min-height: auto !important;
    }
    .banner-content{
        bottom: 12.370vw;
        width: 100%;
    }

    a.ic_home {
        position: absolute;
        top: 0.781vw;
    }
    a.ic_home img{
        max-width: 13.932vw;
    }
    .logo_mb img{
        max-width: 33.333vw;
    }
    .menu-humburgur-icon img{
        max-width: 9.375vw;
    }
    .banner-content {
        bottom: 0;
    }
    .banner-group-cta-register img{
        position: relative;
        top: -1.693vw;
    }
    .banner-group-cta-topup img{
        position: relative;
        top: -0.391vw;
    }
    .banner-group-cta-center img{
        max-width: 26.953vw;
    }
    .banner-group-cta-left {
        gap: 1.302vw;
    }
    .app-icon{
        max-width: 14.844vw;
    }
    
    .uk-container{
        padding-left: 5.333vw;
        padding-right: 5.333vw;
    }
    .banner-group-cta-inner img{
        max-width: 47.867vw;
    }
    .banner-group-cta-giftcode{
        width: 14.714vw;
        height: 14.714vw;
    }
    .banner-group-cta-inner {
        gap: 1.172vw;
    }
    .banner-group-cta-right-top{
        margin-bottom: 0.911vw;
    }
    .banner-group-cta-register img{
        max-width: 18.229vw;
    }
    .banner-group-cta-topup img{
        max-width: 18.229vw;
    }
    .banner-group-cta-download-apk img{
        max-width: 42.448vw;
    }
    .banner-group-cta-right-bot img{
        max-width: 20.833vw;
    }
    .banner-group-cta{
        max-width: 89.583vw;
        padding: 0 3.906vw;
        border-radius: 1.432vw;
    }
    .banner-title-slogan{
        max-width: 89.844vw;
    }
    .banner-title{
        margin-bottom: 4.427vw;
        max-width: 85.156vw;
    }
    .btn-char-play .uk-button{
        right: -9.12vw;
    }
    .btn-char-play img{
        max-width: 27.734vw;
    }
    #section2{
        padding-top: 9.115vw;
/*        background-size: auto;*/
    }
    .gallery-slider-mobile {
        padding: 0 0.781vw;
    }
    #Features{
        padding: 19.141vw 0 28.646vw;
        margin-top: 3.646vw;
        background: url(images/f2/bg_sec2_mb.png) no-repeat center center/100% 100%;
    }
    #Features .uk-container {
        padding-left: 3.125vw;
        padding-right: 0;
    }
    .Features-left {
        width: 68.49vw;
        position: relative;
        z-index: 222;
    }
    .Features-right{
        width: calc(100% - 68.49vw);
    }
    .Features-right img{
        left: auto;
        right: 0;
        max-width: 50.26vw;
        top: -26.042vw;
    }
    
    .Features-content{
        margin-bottom: 4.948vw;
    }
    .Features-buttons {
        gap: 0.781vw;
    } 
    .Features-buttons img{
        max-width: 20.833vw;
    }
    .character-slider-item-char img{
        max-width: var(--mw);
        left: auto;
        right: var(--left);
    }  
    .character-slider-item-char{
        position: static;
    }
    #character .uk-container{
        padding: 0;
    }
    .character-slider{
        /* background: url(images/char/Decor-mb.png) no-repeat left 12.4vw top -10.933vw / contain; */
    }
    .character-slider-thumb a.active:before{
        background-image: url(images/char/thumb_hover_mb.png);
        width: 30.729vw;
        height: 33.984vw;
        top: -6.901vw;
        left: -0.781vw;
    }
    .character-slider-item{
        height: 181.467vw;
    }
    .character-slider-desc {
        max-width: 100%;
        position: absolute;
        z-index: 22222222222;
        right: 0;
        top: auto;
        bottom: 0;
        /* transform: translateX(50%); */
        width: 100vw;
    }
    .character-slider-desc p{
        max-width: 76.172vw;
        margin: 1.6vw auto;
        font-size: 2.474vw;
        line-height: 3.776vw;
    }
    
    section#galleryMB {
        padding: 0;
    }
    .gallery-head img {
        max-width: 56.901vw;
    }
    .Characters-head img {
        max-width: 82.031vw;
    }
    .character-slider-desc img.character-slider-desc-lbl {
        /* margin-bottom: -7.733vw; */
        max-width: var(--mw);
    }
    .character-slider-desc .hf1 img{
        max-width: 49.349vw;
    }
    img.character-slider-desc-txt{
        max-width: 51.6vw;
        margin: 1.953vw auto 0;
    }
    .character-slider-thumb a img{
        max-width: var(--mw);
    }
    .character-slider-thumb{
        top: 22.135vw;
        left: 1.4vw;
    }
    .character-slider-thumb a{
        left: var(--top-mb);
        margin-top: var(--mgTopMB);
    }
    section#character {
        padding-bottom: 15.625vw;
    }
    img.char-Decor{
        top: 0;
        left: 0;
    }
    #galleryMB .slick-arrow{
        top: auto;
        bottom: -8%;
    }
    
    .slick-arrow {
        left: 9.115vw;
        width: 6.901vw;
        height: 7.161vw;
        top: auto;
        bottom: 0;
    }
    button.slick-next.slick-arrow{
        bottom: 0;
        left: auto;
        right: 9.115vw;
    }
    
    #footer {
        padding: 8.203vw 0;
    }
    .footer-logo{
        margin-bottom: 2.933vw;
    }
    .footer-logo img{
        max-width: 64.193vw;
    }
    #footer p {
        font-size: 2.474vw;
        line-height: 1.63;
        max-width: 78.125vw;
        margin: auto;
    }
    #TOP{
        bottom: 37.333vw;
        right: 2.267vw;
    }
    div#TOP img {
        max-width: 14.533vw;
    }

    ul.slick-dots{
        margin: 6.51vw 0px 0px;
        line-height: 0;
    }
    ul.slick-dots li{
        margin: 0 3.255vw;
    }

    ul.slick-dots li button{
        width: 7.333vw;
        height: 2.604vw;
    }
    ul.slick-dots li.slick-active button{
        width: 5.208vw;
        height: 5.078vw;
    }
    
    .uk-modal-body {
        padding: 5.729vw 15.885vw;
        width: 88.932vw;
    }
    .modal-control label{
        font-size: 3.516vw;
        line-height: 30.08px;
        margin-bottom: 3.917vw;
    }
    .modal-control input{
        max-width: 57.292vw;
        height: 10.026vw;
        padding: 0 2.604vw;
        font-size: 2.604vw;
    }
    .modal-control {
        text-align: center;
        margin-bottom: 4.688vw;
    }
    .modal-control2 {
        margin-bottom: 2.734vw;
    }
    .modal-submit button{
        width: 35.547vw;
        height: 10.547vw;
    }
    .banner-user-registed h2{
        font-size: 3.167vw;
        line-height: 5.397vw;
    }
    .banner-user-registed{
        max-width: 73.177vw;
        margin: auto;
        background-size: 100% 100%;
    }
    a.audio-icon {
        top: 4vw;
        left: 4vw;
    }
    a.audio-icon img{
        max-width: 4.4vw;
    }
    
}