@charset "utf-8";

#fullpage {
    margin-top: -120px;
    font-family: "submariner", "Noto Sans KR";
}
#fullpage ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#fullpage p {margin: 0;}
#fullpage img {max-width: 100%;}
#fullpage .sContainer {
    max-width: 1000px;
    margin: 120px auto 0;
}
#fullpage .title {
    margin-bottom: 50px;
    text-align: center;
}
#fullpage .title h3 {
    font-family: "submariner";
    font-size: 42px;
    color: #ed7e3a;
    margin: 0 0 10px;
}
#fullpage .title p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

#about {
    background: url(/img/custom/about_bg.jpg) no-repeat center;
    background-size: cover;
    height: 100vh;
}
#about .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: calc(100% - 30px);
}
#about .txt p {
    font-family: "submariner";
    font-size: 60px;
    color: #ed7e3a;
    line-height: 1;
}
#about .txt h2 {
    font-size: 60px;
    color: #fff;
    margin: 30px 0;
    font-weight: 500;
    text-shadow: 0 0 30px rgba(0,0,0,0.8);
}
#about .scrollDown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    text-align: center;
}
#about .scrollDown p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}
#about .scrollDown img {
    animation: scroll 1s ease-in-out 0s infinite alternate;
}
@keyframes scroll {
    0%{transform:translate(0,-10px);}
    100%{transform:translate(0,0);}
}

#game {
    background: url(/img/custom/game_bg.jpg) no-repeat center;
    background-size: cover;
    height: 100vh;
    position: relative;
}
#game .img {
    position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%,-50%);
    border: 4px solid #ffd420;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    width: calc(100% - 60px);
}
#game .txt {
    position: absolute;
    right: 100px;
    bottom: 130px;
    text-align: right;
}
#game .txt p {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}
#game .txt p span {color: #ffd200;}
#game .txt .appBtn {
    font-size: 0;
    margin-top: 40px;
}
#game .txt .appBtn > a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    background: #000;
    border: 1px solid #fff;
    height: 55px;
    line-height: 55px;
    max-width: 200px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
}
#game .txt .appBtn > a:last-child {margin-right: 0;}

#gallery {
    background: url(/img/custom/gallery_bg.jpg) no-repeat center;
    background-size: cover;
    height: 100vh;
    position: relative;
}
#gallery .inner {
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 1400px;
    font-size: 0;
}
#gallery .mSlideWrap,
#gallery .mSlideArrow {display: none;}
#gallery .slideWrap .slick-slide {
    position: relative;
    text-align: center;
    opacity: 0.5;
    transition: all 300ms ease;
    float: none;
    display: inline-block;
    vertical-align: middle;
}
#gallery .slideWrap .slick-slide.slick-center {
    opacity: 1;
    z-index: 2;
}
#gallery .slideWrap .slick-slide .img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #fff0a8;
    height: 270px;
}
#gallery .slideWrap .slick-slide.slick-center .img {
    box-shadow: 0 0 30px rgba(0,0,0.8);
    width: 1000px;
    height: 500px;
    transform: translateX(-25%);
}

#gallery .slideArrow .prev,
#gallery .slideArrow .next {
    position: absolute;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}
#gallery .slideArrow .prev {left: 90px;}
#gallery .slideArrow .next {right: 90px;}
#gallery .slideArrow .next img {transform: scaleX(-1);}
#gallery .slick-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0;
    width: calc(100% - 30px);
    text-align: center;
}
#gallery .slick-dots li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
#gallery .slick-dots li:last-child {margin-right: 0;}
#gallery .slick-dots li button {
    background: url(/img/custom/dot.png) no-repeat center;
    background-size: cover;
    width: 12px;
    height: 12px;
    border: none;
    font-size: 0;
}
#gallery .slick-dots li.slick-active button {background-image: url(/img/custom/dot_active.png);}

#contact {
    background: #f7f2e9;
    height: 100vh;
    position: relative;
}
#contact .infoTxt {
    font-size: 0;
    margin-bottom: 30px;
}
#contact .infoTxt .logoImg {
    display: inline-block;
    vertical-align: middle;
}
#contact .infoTxt ul {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    overflow: hidden;
}
#contact .infoTxt ul li {
    font-family: "Noto Sans KR";
    float: left;
    font-weight: 500;
    margin-right: 30px;
}
#contact .infoTxt ul li:first-child {margin-bottom: 15px;}
#contact .infoTxt ul li:nth-child(2) {clear: both;}
#contact .infoTxt ul li a {
    display: inline-block;
    vertical-align: middle;
}
#contact .infoTxt ul li img {
    display: inline-block;
    vertical-align: middle;
}
#contact .infoTxt ul li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    margin-left: 10px;
    margin-top: -4px;
}
#contact .infoTxt ul li:first-child span {margin-left: 0;}
#notice {
    background: url(/img/custom/notice_bg.jpg) no-repeat right top;
    background-size: cover;
    height: 100vh;
}

#recruit {
    background: url(/img/custom/recruit_bg.jpg) no-repeat center;
    background-size: cover;
    height: 100vh;
}

#footer {
    background: #1b1919;
    padding: 50px 100px 70px;
    color: #fff;
    font-size: 13px;
    font-family: "Noto Sans KR";
    overflow: hidden;
}
#footer ul {
    overflow: hidden;
    float: left;
}
#footer ul li {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}
#footer ul li:last-child {clear: both;}
#footer .copyright {
    float: right;
    opacity: 0.3;
}

#fp-nav {top: 55%;}
#fp-nav.fp-left {left: 40px;}
#fp-nav ul li {
    width: auto;
    height: auto;
    margin: 0 0 30px;
    font-size: 0;
}
#fp-nav ul li:nth-last-child(2) {margin-bottom: 0;}
#fp-nav ul li:last-child {display: none !important;}
#fp-nav ul li a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: auto;
}
#fp-nav ul li a span:last-child {
    width: 4px;
    height: 4px;
    background: #fff;
    position: relative;
    display: block;
    margin: 0;
    border-radius: 4px;
    top: inherit;
    left: inherit;
    opacity: 0.3;
}
#fp-nav ul li a span:last-child::after {
    content: "";
    width: 31px;
    height: 31px;
    border: 1px solid #fff;
    border-radius: 31px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all 0.3s;
}
#fp-nav ul li:hover a span:last-child,
#fp-nav ul li a.active span:last-child {
    margin: 0;
    width: 4px;
    height: 4px;
}
#fp-nav ul li:hover a span:last-child,
#fp-nav ul li:hover a span:last-child::after,
#fp-nav ul li a.active span:last-child,
#fp-nav ul li a.active span:last-child::after {opacity: 1;}

#fp-nav ul li .fp-tooltip {
    opacity: 0.3;
    font-family: "submariner";
    font-size: 14px;
    color: #fff;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 0;
    max-width: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: inherit;
    left: inherit !important;
    margin-left: 30px;
    margin-top: 2px;
}
#fp-nav ul li.reversal a span:last-child {background: #908b82;}
#fp-nav ul li.reversal a span:last-child::after {border: 1px solid #908b82;}
#fp-nav ul li.reversal .fp-tooltip {color: #615c52;}


@media all and (max-width: 1400px) {
    #gallery .slideWrap .slick-slide .img {height: 220px;}
    #gallery .slideWrap .slick-slide.slick-center .img {
        width: 800px;
        height: 400px;
    }
}
@media all and (max-width: 1024px) {
    #game .img {
        position: relative;
        top: inherit;
        left: inherit;
        transform: none;
        width: 100%;
    }
    #game .txt {
        position: relative;
        right: inherit;
        bottom: inherit;
        text-align: center;
        margin-top: 80px;
        padding: 0 15px;
    }
    #gallery .mSlideWrap {display: block;}
    #gallery .slideWrap {display: none;}
    #gallery .mSlideWrap .slick-slide {
        float: left;
        opacity: 1;
        padding: 0 100px;
    }
    #gallery .mSlideArrow .prev {left: 15px;}
    #gallery .mSlideArrow .next {right: 15px;}
    #footer {padding: 50px 30px 70px;}
    #fp-nav {display: none !important;}
}
@media all and (max-width: 1000px) {
    #fullpage .sContainer {padding: 0 15px;}
}
@media all and (max-width: 991px) {
    #fullpage {margin-top: -70px;}
    #fullpage .sContainer {margin-top: 60px;}
    #footer {padding: 50px 15px 70px;}
}
@media all and (max-width: 767px) {
    #fullpage .title {margin-bottom: 20px;}
    #fullpage .title h3 {
        font-size: 30px;
        margin-bottom: 5px;
    }
    #fullpage .title p {font-size: 14px;}
    #about .txt p {font-size: 36px;}
    #about .txt h2 {
        font-size: 36px;
        margin: 15px 0;
    }
    #about .scrollDown {bottom: 20px;}
    #about .scrollDown p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    #game .txt {margin-top: 30px;}
    #game .txt p {font-size: 24px;}
    #game .txt .appBtn {margin-top: 30px;}
    #game .txt .appBtn > a {
        width: calc((100% - 10px)/2);
        padding: 0 20px;
    }
    #gallery .mSlideWrap .slick-slide {padding: 0 15px;}
    #gallery .mSlideArrow .prev,
    #gallery .mSlideArrow .next {display: none !important;}
    #gallery .slick-dots {bottom: -30px;}
    #gallery .slick-dots li {margin-right: 10px;}
    #gallery .slick-dots li button {width: 10px; height: 10px;}
    #contact .infoTxt {margin-bottom: 20px;}
    #contact .infoTxt .logoImg {display: none;}
    #contact .infoTxt ul {margin-left: 0;}
    #contact .infoTxt ul li {
        margin-right: 15px;
        word-break: keep-all;
    }
    #contact .infoTxt ul li span {font-size: 15px;}
    #footer {
        padding: 30px 15px;
        font-size: 12px;
    }
    #footer ul {float: none;}
    #footer ul li {margin-bottom: 5px;}
    #footer .copyright {
        float: none;
        margin-top: 20px;
    }
}