section {
    position: relative;
    max-width: 2560px;
    margin: 0 auto;
}

section .bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 1920px;
}

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

section.scene1 {
    height: 1080px;
}

section.scene1 .bg {
    background-image: url(../img/assets/bg-section01.jpg);
}

section.scene1 .cont .btn_play {
    width: 155px;
    height: 155px;
    background-image: url(../img/assets/btn-play.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 63.5%;
    transform: translateX(-50%);
}

section.scene1 .cont .btn_reserv {
    display: block;
    width: 458px;
    height: 76px;
    background-image: url(../img/assets/btn-section01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 79.5%;
    transform: translateX(-50%);
    border: none;
    background-color: transparent;
}

section.scene2 {
    height: 1080px;
}

section.scene2 .bg {
    background-image: url(../img/assets/bg-section02.jpg);
}

section.scene2 .cont .btn_reserv {
    display: block;
    width: 492px;
    height: 96px;
    background-image: url(../img/assets/btn-section02.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 75.3%;
    transform: translateX(-50%);
    border: none;
    background-color: transparent;
}

section.scene3 {
    height: 1080px;
}

section.scene3 .bg {
    background-image: url(../img/assets/bg-section03.jpg);
}

section.scene4 {
    height: 1080px;
}

section.scene4 .bg {
    background-image: url(../img/assets/bg-section04.jpg);
}

section.scene4 .cont {
    overflow: hidden;
}

section.scene4 .cont .btn_reserv {
    display: block;
    width: 492px;
    height: 96px;
    background-image: url(../img/assets/btn-section03.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 75.3%;
    transform: translateX(-50%);
    border: none;
    background-color: transparent;
}


.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(../img/assets/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;
    bottom: 50px;
    /* top: calc(100vh - 573px - 50px); */
    /* bottom: calc(100% - 100vh + 50px); */
    /* right: calc((100% - 1920px) / 2 + 100px); */
    right: 50px;
    z-index: 10;
    text-align: right;
}

.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(../img/assets/ico-close-banner.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    border: none;
}