@charset "utf-8";


#main_contents1 {
    width: 220px;
    height: 800px;
    position: absolute;
    left: calc(50% - 780px);
    top: 70px;
}

.main-logo {
    width: 85%;
    height: 120px;
    margin: 0 auto;
}

.main-logo a img {
    filter: drop-shadow(1px 0px 3px rgba(0,0,0,0.5)) drop-shadow(0px 2px 0px rgba(0,0,0,0.5)) drop-shadow(-1px 0px 3px rgba(0,0,0,0.5)) drop-shadow(3px -1px 0px rgba(0,0,0,0.5));
}

.main-menu {
    width: 100%;
    height: 235px;
    margin: 0px 0px 7%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.menu-img {
    width: 16px;
    margin: 0 20% 0 0;
}

.main-menu ul {
    width: 80%;
}

.main-menu ul li {
    margin: 7% 0;
    padding: 7px 10px;
    box-shadow: 3px 5px 4px 0px #000;
    background: linear-gradient(45deg, black, black, #0e0e0e, #222222);
    border-radius: 15px;
    border: 1px solid #000;
}


.main-menu ul li a {
    color: #fff !important;
}

.main-dday {
    width: 90%;
    height: 80px;
    background-color: #0e0e0e;
    margin: 0px 0px 3%;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    border: 10px solid transparent;
    border-image: url(/img/border_frame2.png);
    border-image-slice: 30;
}

.dday-img {
    width: 75px;
    height: 75px;
    border-radius: 5px;
    margin: 0px 7px;
    background-image: url(/img/dday_img.png);
    background-size: 250%;
    background-position-x: 33%;
    background-position-y: 63%;
}

.dday-content {

}





#main_contents3 {
    width: 190px;
    height: 740px;
    position: absolute;
    right: calc(50% - 810px);
    top: 70px;
    background-image: url(/img/side_img.png);
    background-size: 450%;
    background-position-x: 70%;
    background-position-y: 15%;
    border: 30px solid transparent;
    border-image: url(/img/border_frame.png);
    border-image-slice: 80;
    padding: 0px !important;
}


.curtain_L {
    width: 480px;
    position: fixed;
    left: 0;
    top: 0;
    animation: fadeInLeft 2.5s;
}

.curtain_R {
    width: 480px;
    position: fixed;
    right: 0;
    top: 0;
    animation: fadeInRight 2.5s;
}


.rose_L {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 990;
    animation: fadeInUp 2.5s;
}

.rose_R {
    position: fixed;
    right: calc(0% - 0px);
    bottom: 0;
    z-index: 950;
    animation: fadeInUp 2.5s;
}

.rose_B {
    position: fixed;
    left: calc(15% - 0px);
    bottom: 0;
    z-index: 900;
    animation: fadeInUp 3s;
}

.top-border {
    position: fixed;
    animation: fadeInBottom 2.5s;
    width: 100%;
    text-align: center;
    top: 25px;
    opacity: 0.4;
}

    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            transform: translate3d(-100%, 0, 0);
        }
        to {
            opacity: 1;
            transform: translateZ(0);
        }
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            transform: translate3d(100%, 0, 0);
        }
        to {
            opacity: 1;
            transform: translateZ(0);
        }
    }


    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translate3d(0, 100%, 0);
        }
        to {
            opacity: 1;
            transform: translateZ(0);
        }
    }

    @keyframes fadeInBottom {
        0% {
            opacity: 0;
            transform: translate3d(0, -100%, 0);
        }
        to {
            opacity: 0.4;
            transform: translateZ(0);
        }
    }



/****************** 모바일 메뉴 ******************/

.mobile-slide-open{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 999;
    overflow:hidden; 
    display: none;
}

.burgur{
right: 15px;
top: 23px;
position: absolute;
width: 20px;
height: 2px;
background: #fff;
}
.burgur .top-line{
width: 20px;
height: 2px;
background-color: #fff;
bottom: -5px;
content: '';
position: absolute;
right: 0;
-webkit-transition:  -webkit-transform .3s;
transition: transform .3s;

}

.burgur .bot-line {
width: 20px;
height: 2px;
background-color: #fff;
top: -5px;
content: '';
position: absolute;
right: 0;
-webkit-transition:  -webkit-transform .3s;
transition: transform .3s;
}

.burgur.on {
width: 0;
}

.burgur.on .bot-line {
-webkit-transform: translateY(5px) rotate(135deg);
transform: translateY(5px) rotate(135deg);
}

.burgur.on .top-line{
-webkit-transform: translateY(-5px) rotate(-135deg);
transform: translateY(-5px) rotate(-135deg);
}

.mobile-slide{
    width: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: left .3s;
    -moz-transition: left .3s;
    -ms-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
    background-color: rgba(0,0,0,0.6);
    z-index: 998;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-slide ul li img {
    width: 20px;
    margin: 0 5px 0 0;
}

.mobile-slide-title {
    width: 100%;
    height: 100px;
    font-size: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0 40px 0;
}

.mobile-slide-title a img {
    width: 200px;
    filter: drop-shadow(1px 0px 3px rgba(0,0,0,0.5)) drop-shadow(0px 2px 0px rgba(0,0,0,0.5)) drop-shadow(-1px 0px 3px rgba(0,0,0,0.5)) drop-shadow(3px -1px 0px rgba(0,0,0,0.5));
}

.mobile-slide.on{
  left:0;
}

.mobile-slide ul {
    display: grid;
    justify-content: center;
    text-align: center;
}

.mobile-slide ul li {
    display: inline-block;
    width: auto;
    padding: 10px;
}

.mobile-slide ul li a {
    color: #fff;
    font-size: 1.2em;
}

.custom-mobile-login  {
    display: grid;
    justify-content: center;
    margin: 10px 0 0 0;
}

.custom-mobile-login .ui-btn.small {
    margin: 0 0 5px 0;
    border-radius: 15px;
}

.custom-mobile-login .name{
    margin: 10px 0 10px 0;
}

/****************** 모바일 메뉴 ******************/



@media (max-width: 1000px) {
    #main_contents1 {display: none;}
    #main_contents3 {display: none;}
    .curtain_L {display: none;}
    .curtain_R {display: none;}
    .rose_L {width: 340px;}
    .rose_R {width: 340px;}
    .top-border {display: none;}
    .mobile-slide-open {display: inline-block;}
}

@media (max-width: 460px) {
    #main_contents3 {display: none;}
    .curtain_L {display: none;}
    .curtain_R {display: none;}
    .rose_L {display: none;}
    .rose_R {display: none;}
    .rose_B {display: none;}
    .top-border {display: none;}
    .mobile-slide-open {display: inline-block;}
}

@media (max-width: 390px) {
    .mobile-slide-open {display: inline-block;}
}