nav {
    background-color: #f7931e;
    border-bottom: 1px solid #b95a23;
}

@media (max-width: 768px) {
    nav {
        background-color: #f7931e;
    }
}

.nav_list:hover {
    background-color: #b95a23;
    border: 0px;
}

@media (max-width: 1536px) {
    .nav_list {
        background-color: #f7931e;
        border: 1px solid #b95a23;
    }
}

@media (max-width: 1536px) {
    .nav_fb {
        background-color: #f7931e;
        border: 1px solid #b95a23;
    }
}

@media (max-width: 768px) {
    .nav_mobile_close {
        background-color: #f7931e;
        border: 1px solid #b95a23;
    }
}

main {
    width: 100%;
    height: auto;
}

.container {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffb12a), to(#ffe824));
    background: linear-gradient(#ffb12a, #ffe824);
}

.map {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background-image: url("../image/bg_map.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.map::before {
    content: '';
    width: 100%;
    height: 100%;
    opacity: 1;
    position: absolute;
    top: 0;
    background-image: url("../image/bg_light.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-animation: bg_rotate_effect 2.6s linear infinite alternate;
    animation: bg_rotate_effect 2.6s linear infinite alternate;
}

@-webkit-keyframes bg_rotate_effect {
    to {
        opacity: .2;
        -webkit-transform: scale(1.2) rotate(-1deg);
        transform: scale(1.2) rotate(-1deg);
    }
}

@keyframes bg_rotate_effect {
    to {
        opacity: .2;
        -webkit-transform: scale(1.2) rotate(-1deg);
        transform: scale(1.2) rotate(-1deg);
    }
}

.event_container {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.event {
    height: auto;
    width: 52%;
    margin-bottom: 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-content: center;
}

@media (max-width: 1560px) {
    .event {
        width: 65%;
    }
}

@media (max-width: 1080px) {
    .event {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .event {
        width: 85%;
    }
}

@media (max-width: 420px) {
    .event {
        width: 95%;
    }
}

.event_live_img {
    width: 100%;
    padding-bottom: 62.058%;
    background-image: url("../image/logo_main_live_img.png");
    background-size: 100%;
    background-position: 0;
}

.event_game_img {
    width: 100%;
    padding-bottom: 66.706%;
    background-image: url("../image/logo_main_game_img.png");
    background-size: 100%;
    background-position: 0;
}

.start {
    width: 60%;
    max-width: 459px;
    padding-bottom: 13.5788%;
    border-radius: 59px;
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
    position: relative;
}

.btn_game_start,
.btn_live_start {
    width: 96.078%;
    max-width: 541px;
    padding-bottom: 21.786%;
    background-color: #86a200;
    border-radius: 50px;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn_live_start {
    background-color: #f7931e;
}

.btn_game_start > p,
.btn_live_start > p {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    word-break: keep-all;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn_game_start > p::after,
.btn_live_start > p::after {
    content: '';
    width: 16px;
    height: 26px;
    margin-left: 40px;
    background-image: url("../image/btn_arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
}

@media (max-width: 420px) {
    .btn_game_start > p::after,
    .btn_live_start > p::after {
        width: 12px;
        height: 19.5px;
        margin-left: 20px;
    }
}

@media (max-width: 420px) {
    .btn_game_start > p,
    .btn_live_start > p {
        font-size: 20px;
    }
}

.btn_game_start::before,
.btn_live_start::before {
    content: '';
    width: 130%;
    height: 250%;
    display: block;
    position: absolute;
    top: -211%;
    left: -14%;
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg);
}

.info {
    width: auto;
    height: auto;
    font-size: 15px;
    letter-spacing: .5px;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    right: 2%;
    bottom: 2%;
    cursor: default;
}

.info > p {
    margin-top: 10px;
    padding: 2px 18px;
    border: 1px solid #ffffff;
}

.link {
    width: auto;
    height: auto;
    opacity: .1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    left: 2%;
    bottom: 2%;
}

.link > a {
    font-size: 12px;
    color: #ffffff;
}

.link > a:nth-child(2) {
    margin: 0 5px;
}

#wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.content {
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -100;
}