@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap);
section {
    position: relative;
    max-width: 2560px;
    margin: 0 auto;
}

section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section .cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.scene1 {
    height: 1080px;
}

section.scene1 .bg {
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/bg-section01.jpg);
}

section.scene1 .cont .btn_play {
    width: 213px;
    height: 214px;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/btn-play.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 43%;
    transform: translateX(-50%);
}

section.scene2 {
    height: 1080px;
}

section.scene2 .bg {
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/bg-section02.jpg);
}

section.scene2 .cont .btn_reserv {
    display: block;
    width: 629px;
    height: 78px;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/btn-section02.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 78.3%;
    transform: translateX(-50%);
    border: none;
    background-color: transparent;
}

section.scene3 {
    height: 1080px;
}

section.scene3 .bg {
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/bg-section03.jpg);
}

section.scene3 .cont .btn_reserv {
    display: block;
    width: 629px;
    height: 78px;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/btn-section03.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 69.5%;
    transform: translateX(-50%);
    border: none;
    background-color: transparent;
}

section.scene4 {
    height: 1080px;
}

section.scene4 .bg {
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/bg-section04.jpg);
}

section.scene4 .cont {
    overflow: hidden;
}

section.scene4 .update_tab {
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translateX(-50%);
    width: 565px;
    display: flex;
    align-items: center;
}

section.scene4 .update_tab button {
    flex: 1;
    border: none;
    color: #cbc2b5;
    font-size: 20px;
    border: none;
    background-color: transparent;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/img-tab-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    line-height: 67px;
    font-weight: 500;
}

section.scene4 .update_tab button.current {
    color: #cab08b;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/img-tab-bg-selected.png);
}

section.scene4 .update_tab button + button {
    margin-left: 40px;
}

section.scene4 .update_slider {
    position: absolute;
    top: 31%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    padding: 50px 0;
}

section.scene4 .update_slider li {
    width: 787px;
    opacity: 0;
    filter: grayscale(10);
}

section.scene4 .update_slider li.swiper-slide-prev,
section.scene4 .update_slider li.swiper-slide-next,
section.scene4 .update_slider li.swiper-slide-active {
    opacity: 1;
}

section.scene4 .update_slider li.swiper-slide-active {
    filter: grayscale(0);
}

section.scene4 .update_slider .nav {
    width: 893px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

section.scene4 .update_slider .nav button {
    width: 30px;
    height: 90px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
}

section.scene4 .update_slider .nav .nav_prev {
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/ico-nav-prev.svg);
    left: 0;
}

section.scene4 .update_slider .nav .nav_next {
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/ico-nav-next.svg);
    right: 0;
}

.clip_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 200;
    padding: 0 40px;
    display: flex;
    align-items: center;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
}

.clip_modal.open {
    opacity: 1;
    pointer-events: visible;
}

.clip_modal .modal_cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
}

.clip_modal .cont {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.clip_modal .clip_wrap {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    z-index: 5;
    display: none;
    animation: showUp 0.3s forwards;
    background-color: #000;
}

.clip_modal.open .clip_wrap {
    display: block;
}

.clip_modal .clip_wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.clip_modal .close_modal {
    width: 50px;
    height: 50px;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/ico-close-modal.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    position: absolute;
    bottom: 100%;
    right: 0;
    border: none;
    background-color: transparent;
}

.banner_wrap {
    position: fixed;
    top: 100px;
    /* right: calc((100% - 1920px) / 2 + 100px); */
    right: 50px;
    z-index: 10;
}

.banner_wrap .banner_cont {
    position: relative;
}

.banner_wrap .banner_cont + .banner_cont {
    margin-top: 20px;
}

.banner_wrap .banner_cont img {
    max-width: 100%;
}

.banner_wrap .banner_cont button {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 10px;
    right: 60px;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/ico-close-banner.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    border: none;
}

/* 
    문자 초기화
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
*/
/* 
    트랜지션
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
*/

html,body,div,ul,li,p,h3,h1,h2,h4,h5{padding:0;margin:0;line-height:1}
ul,li{list-style:none}
a{text-decoration:none;color:#000}
textarea,input{font-family: 'Noto Sans KR', sans-serif;}
optgroup,select,button{cursor:pointer}
input::-webkit-input-placeholder{color:#AAAAAA;font-weight:400}
textarea::-webkit-input-placeholder{color:#AAAAAA;font-weight:400}
input::-ms-input-placeholder{color:#AAAAAA;font-weight:400}
textarea::-ms-input-placeholder{color:#AAAAAA;font-weight:400}
input::-moz-placeholder{color:#AAAAAA;font-weight:400}
textarea::-moz-placeholder{color:#AAAAAA;font-weight:400}
input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #fff inset}
input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}
input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}
select::-ms-expand{display:none}
select{-moz-appearance:none;-webkit-appearance:none;appearance:none}
img{vertical-align:top}
body{width:100%;position:relative;box-sizing:border-box;}
caption{display:none}
*{margin:0;padding:0;text-decoration:none;-webkit-text-size-adjust:none;outline:0;-webkit-appearance:none; -webkit-tap-highlight-color:transparent; -webkit-font-smoothing:antialiased}
*{font-family: 'Noto Sans KR', sans-serif;line-height:1em;color:#000;box-sizing: border-box;font-weight: normal;letter-spacing: -0.02em;}
i,em {line-height: inherit;font-style: normal}
.blind {display: none  !important;}
span,i,strong,q {font-size: inherit;font-weight: inherit;line-height: inherit;color: inherit; letter-spacing: inherit; font-family: inherit;}
q::before,q::after {content: none;}
b {font-size: inherit;font-weight: 500;line-height: inherit;color: inherit; letter-spacing: inherit; font-family: inherit;}
table {width: 100%;table-layout: fixed;border-collapse: collapse;border-spacing: 0;}


@-webkit-keyframes showUp {
0% {opacity: 0;-webkit-transform: translateY(30px)}
100% {opacity: 1;-webkit-transform: translateY(0)}
}

@keyframes showUp {
0% {opacity: 0;transform: translateY(30px)}
100% {opacity: 1;transform: translateY(0)}
}

body {
    background-color: #000;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(26,26,26,0.9);
}

#header .inner {
    width: 100%;
    max-width: 1320px;
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
}

#header .inner .logo {
    display: inline-block;
    vertical-align: top;
}

#header .inner .logo a {
    display: block;
    width: 112px;
    height: 70px;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/logo-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#header .inner .gnb {
    vertical-align: top;
    display: inline-block;
    margin-left: 125px;
}

#header .inner .gnb > ul {
    font-size: 0;
    display: flex;
    align-items: center;
}

#header .inner .gnb > ul > li + li {
    margin-left: 60px;
}

#header .inner .gnb > ul > li > a {
    display: block;
    font-size: 21px;
    line-height: 70px;
    color: rgba(255,255,255,0.55);
    position: relative;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
}

#header .inner .gnb > ul > li > a::after {
    content: "";
    width: 45px;
    height: 14px;
    background-image: url(https://t1.daumcdn.net/gamepub/pub/odin/event/muspelheim/pc/ico-selected-menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
}

#header .inner .gnb > ul > li.current > a,
#header .inner .gnb > ul > li > a:hover {
    color: rgba(255,255,255,1);
    text-shadow: 0 0 6px #fff;
}

#header .inner .gnb > ul > li.current > a::after {
    opacity: 1;
}

#header .inner .gnb > ul > li .sub {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
}

#header .inner .gnb > ul > li:hover .sub {
    height: 90px;
}

#header .inner .gnb > ul > li ul {
    display: inline-block;
    margin-left: -510px;
    padding: 15px;
}

#header .inner .gnb > ul > li ul li a {
    font-size: 18px;
    color: #5d5d5d;
    line-height: 30px;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
}

#header .inner .gnb > ul > li ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

#header .inner .lnb {
    position: absolute;
    right: 40px;
    top: 0;
    height: 70px;
}

#header .inner .lnb ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#header .inner .lnb ul li {
    position: relative;
}

#header .inner .lnb ul li + li {
    margin-left: 30px;
}

#header .inner .lnb ul li a {
    display: block;
    font-size: 14px;
    color: rgb(255, 255, 255);
    opacity: 0.7;
}

#header .inner .lnb ul li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    width: 1px;
    height: 14px;
    margin-top: -7px;
    margin-right: -15px;
    background: rgb(57, 63, 68);
}
