@charset "utf-8";

body {
    position: fixed;
    width: 100%;
    height: 100%;
}

.posNum {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 50px;
    margin: -25px 0 0 -150px;
    background: #111;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    z-index: 9999;
}

/** scrollBox **/
.scrollBox {
    min-width: 1200px;
    height: 100%;
    position: relative;
    perspective: 900px;
}

.scrollBox .wrap {
    min-width: 1200px;
    position: relative;
    overflow: hidden;
}

.scrollBox .wrap > div {
    height: 1000px;
    position: relative;

}

.scrollBox .wrap .objs > li {
    position: absolute;
    left: 50%;
}

/*player*/
#player {
    width: 800px;
    height: 781px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -415px 0 0 -400px;
    z-index: 9999;
    border: 3px solid #ebebeb;
    overflow: hidden;
    display: none;
}

#player .bg {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

#player .middle {
    width: 800px;
    height: 240px;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 9999;
}

#player .bottom {
    width: 800px;
    height: 36px;
    position: fixed;
    top: 820px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 9999;
}

/* 메뉴 호출 버튼 */
.btnMenu {
    position: absolute;
    top: 50px;
    left: 40px;
    z-index: 3;
    -webkit-animation: ani 0.5s infinite alternate;
    -o-animation: ani 0.5s infinite alternate;
    animation: ani 0.5s infinite alternate;
}

@keyframes ani {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* 카테고리 그룹 */
nav {
    position: absolute;
    width: 150px;
    height: 100%;
    background: #f9f9f9;
    z-index: 2;
    -webkit-transform: rotateY(120deg);
    -moz-transform: rotateY(120deg);
    -ms-transform: rotateY(120deg);
    -o-transform: rotateY(120deg);
    transform: rotateY(120deg);
    transform-origin: left center;
    opacity: 0;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

nav.on {
    -webkit-transform: rotateY(15deg);
    -moz-transform: rotateY(15deg);
    -ms-transform: rotateY(15deg);
    -o-transform: rotateY(15deg);
    transform: rotateY(15deg);
    opacity: 1;
}

/* 로고 */
nav h1 {
    width: 100px;
    position: absolute;
    top: 80px;
    left: 50%;
    margin-left: -50px;
}

nav h1 img {
    width: 100%;
    height: auto;
}

.navi {
    width: 100%;
    height: 310px;
    position: absolute;
    left: 0;
    top: 203px;
}

.navi .naviJs > li {
    text-align: center;
    margin-bottom: 45px;
}

#slides1 {
    width: 145px;
    height: 227px;
    position: absolute;
    left: 0;
    bottom: 375px;

}

#slides1 div {
    cursor: pointer;
}

/* 카테고리 메뉴 */
#gnb {
    width: 100%;
    height: 160px;
    background: #00e743;
    position: absolute;
    top: 472px;
    left: 0;

}

#gnb li a {
    display: block;
    width: 100%;
    height: 14px;
    box-sizing: border-box;
    text-align: center;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

#gnb li .list1 {
    background: url("../img/main/menu/main_menu07.jpg") no-repeat center bottom;
    margin: 31px 0;
}

#gnb li .list1:hover {
    background: url("../img/main/menu/main_menu07_on.jpg") no-repeat center top;
}

#gnb li .list2 {
    background: url("../img/main/menu/main_menu08.jpg") no-repeat center top;
    margin-bottom: 29px;
}

#gnb li .list2:hover {
    background: url("../img/main/menu/main_menu08_on.jpg") no-repeat center top;
}

#gnb li .list3 {
    background: url("../img/main/menu/main_menu09.jpg") no-repeat center top;
}

#gnb li .list3:hover {
    background: url("../img/main/menu/main_menu09_on.jpg") no-repeat center top;
}

/* 컨텐츠 그룹*/
section {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transform-origin:right center;
    -moz-transform-origin:right center;
    -ms-transform-origin:right center;
    -o-transform-origin:right center;
    transform-origin: right center;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

section.on {
    -webkit-transform: rotateY(-10deg);
    -moz-transform: rotateY(-10deg);
    -ms-transform: rotateY(-10deg);
    -o-transform: rotateY(-10deg);
    transform: rotateY(-10deg);
}

section > div {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    perspective: 700px;
    -webkit-perspective: 700px;
    -moz-perspective: 700px;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -ms-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
}

section > div.on {
    z-index: 2;
    opacity: 1;
}

section > div > p {
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -ms-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
    float: left;
    position: relative;
}

section > div.on > p {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

/* 컨텐츠 웹 아이콘 설정 */
.icon {
    position: relative;
    top: 50%;
    opacity: 0.5;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.icon:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
}

/** Scene01 **/
#scene01 {
    height: 1310px;
}

#scene01 section .box1 > p {
    float: right;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -ms-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
}

#scene01 section .box1 > p:nth-child(2) {
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

#scene01 section .box1 > p:nth-child(3) {
    -webkit-transition: all 1.3s;
    -moz-transition: all 1.3s;
    -ms-transition: all 1.3s;
    -o-transition: all 1.3s;
    transition: all 1.3s;
}

#scene01 section .box1 > p:nth-child(4) {
    -webkit-transition: all 1.7s;
    -moz-transition: all 1.7s;
    -ms-transition: all 1.7s;
    -o-transition: all 1.7s;
    transition: all 1.7s;
}

#scene01 .box2 .last {
    position: absolute;
    right: 0;
    top: 0;
}

#slides2 {
    width: 1920px;
    height: 350px;
    position: absolute;
    left: 50%;
    margin-left: -960px;
    bottom: 0;
    z-index: 10;
}

#slides2 .slidesjs-pagination {
    width: 166px;
    height: 12px;
    position: absolute;
    left: 50%;
    bottom: 37px;
    margin-left: -118px;
    z-index: 100;
    text-indent: -9999px;

}

#slides2 .slidesjs-pagination-item {
    float: left;
    margin-right: 11px;
}

#slides2 .slidesjs-pagination-item a {
    background: url("../img/common/banner/slide_banner_off.png") no-repeat right top;
    width: 12px;
    height: 12px;
    display: block;
    transition: all 0.7s;
    position: relative;
    right: 0;
}

#slides2 .slidesjs-pagination-item a.active {
    background: url("../img/common/banner/slide_banner_on.png") no-repeat right top;
    width: 40px;
}

/** Scene02 **/
#scene02 {
    height: 1024px;
}

#scene02 .tit {
    position: absolute;
    left: 50%;
    margin-left: -149px;
    top: 105px;
}

#scene02 .inner {
    width: 1200px;
    margin: 0 auto;
    padding-top: 275px;
    position: relative;
}

#scene02 .inner > div {
    float: left;
    position: relative;
}

#scene02 .inner .list {
    float: right;
    cursor: pointer;
}

#scene02 .inner .center {
    float: right;
    margin-right: -15px;
}

#scene02 .inner .last {
    float: right;
}

#scene02 .inner .center {
    width: 265px;
    height: 749px;
    float: right;
}

#scene02 .inner .center > p {
    float: left;
    cursor: pointer;
}

#scene02 .inner .last {
    background: url("../img/main/dashboard/dashboard_part03.jpg") no-repeat center top;
    width: 500px;
    height: 500px;
}

#scene02 .inner .last .btn {
    background: url("../img/main/dashboard/dashboard_part03_button.png") no-repeat center top;
    width: 109px;
    height: 34px;
    position: absolute;
    left: 287px;
    bottom: 75px;
    transition: all 1s;
}

#scene02 .inner .last .btn:hover {
    background: url("../img/main/dashboard/dashboard_part03_button_on.png") no-repeat center top;

}

/** Scene03 **/
#scene03 {
    height: 939px;
}

#scene03 .tit {
    position: absolute;
    left: 50%;
    top: 105px;
    margin-left: -223px;

}

#one_slides {
    width: 2880px;
    height: 520px;
    position: absolute;
    top: 276px;
    left: 50%;
    margin-left: -1440px;
}

#roll_ban_wrap {
    position: relative;
    padding-bottom: 44px;
}

#roll_ban_wrap .roll_wrap div {
    width: 960px;
    height: 520px;
    float: left;
}

#pager2 {
    width: 130px;
    position: absolute;
    left: 50%;
    top: 550px;
    margin-left: -65px;
    text-indent: -9999px;
}

#pager2 a {
    width: 14px;
    height: 16px;
    display: block;
    float: left;
    margin-right: 22px;
}

#pager2 a:nth-child(1) {
    background: url("../img/common/numbers/num01.png") no-repeat center top;
}

#pager2 a.selected:nth-child(1) {
    background: url("../img/common/numbers/num01_on.png") no-repeat center top;
}

#pager2 a:nth-child(2) {
    background: url("../img/common/numbers/num02.png") no-repeat center top;
}

#pager2 a.selected:nth-child(2) {
    background: url("../img/common/numbers/num02_on.png") no-repeat center top;
}

#pager2 a:nth-child(3) {
    background: url("../img/common/numbers/num03.png") no-repeat center top;
}

#pager2 a.selected:nth-child(3) {
    background: url("../img/common/numbers/num03_on.png") no-repeat center top;
}

#pager2 a:nth-child(4) {
    background: url("../img/common/numbers/num04.png") no-repeat center top;
    margin-right: 0;
}

#pager2 a.selected:nth-child(4) {
    background: url("../img/common/numbers/num04_on.png") no-repeat center top;

}

/** Scene04 **/
#scene04 {
    height: 1030px;
    background: #f6f6f6;
}

#scene04 .tit {
    position: absolute;
    left: 50%;
    top: 71px;
    margin-left: -128px;
}

#scene04 .box {
    width: 353px;
    background: white;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    text-align: center;
    position: relative;
    cursor: pointer;
    float: left;
    margin-right: 33px;
}

#scene04 .box.right {

    margin-right: 0;
}

#scene04 .box .imgWrap {
    width: 333px;
    height: 333px;
    overflow: hidden;
    margin: 10px 10px 56px;

}

#scene04 .box .imgWrap img {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

#scene04 .box:hover .imgWrap img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

#scene04 .box .one {
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 294px;
    z-index: 1;
}

#scene04 .box .text {
    margin: 56px 0 26px;
}

#scene04 .box .new {
    position: absolute;
    right: 20px;
    top: 20px;
    -webkit-animation: new .5s linear infinite alternate;
    -o-animation: new .5s linear infinite alternate;
    animation: new .5s linear infinite alternate;
}

@keyframes new {
    0% {
        margin-top: 0;
    }
    100% {
        margin-top: 10px;
    }
}

#slides3 {
    width: 1520px;
    height: 688px;
    position: absolute;
    left: 50%;
    margin-left: -760px;
    top: 241px;

}

#slides3 .slidesjs-pagination {
    width: 140px;
    height: 16px;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -70px;
    z-index: 100;
    text-indent: -9999px;
}

#slides3 .slidesjs-pagination-item {
    float: left;
    margin-right: 11px;
}

#slides3 .slidesjs-pagination-item:nth-child(6) {
    margin-right: 0;
}

#slides3 .slidesjs-pagination-item a {
    width: 14px;
    height: 16px;
    display: block;
}

#slides3 .slidesjs-pagination-item:nth-child(1) a {
    background: url("../img/common/numbers/num01.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(1) a.active {
    background: url("../img/common/numbers/num01_on.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(2) a {
    background: url("../img/common/numbers/num02.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(2) a.active {
    background: url("../img/common/numbers/num02_on.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(3) a {
    background: url("../img/common/numbers/num03.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(3) a.active {
    background: url("../img/common/numbers/num03_on.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(4) a {
    background: url("../img/common/numbers/num04.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(4) a.active {
    background: url("../img/common/numbers/num04_on.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(5) a {
    background: url("../img/common/numbers/num05.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(5) a.active {
    background: url("../img/common/numbers/num05_on.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(6) a {
    background: url("../img/common/numbers/num06.png") no-repeat center top;
}

#slides3 .slidesjs-pagination-item:nth-child(6) a.active {
    background: url("../img/common/numbers/num06_on.png") no-repeat center top;
}

/** Scene05 **/
#scene05 {
    height: 1430px;
}

#scene05 .tit {
    position: relative;
    text-align: center;
    padding-top: 100px;
}

#scene05 .mainTitle {
    background: url("../img/main/djradio/sc05_tit_bg.jpg") no-repeat center top;
    width: 1100px;
    height: 620px;
    margin: 169px auto 66px;
    position: relative;
    text-align: center;
}

#scene05 .mainTitle > li {
    display: none;
}

#scene05 .mainTitle .text1 {
    padding-top: 81px;
    margin-bottom: 25px;
}

#scene05 .mainTitle .text2 {
    margin-bottom: 30px;
}

#scene05 .mainTitle .text3 {
    margin-bottom: 46px;
}

#scene05 .mainTitle .text4 {
    margin-bottom: 20px;
}

#scene05 .mainTitle .text5 {
    margin-bottom: 44px;
}

#scene05 .mainTitle .text6_line {
    width: 1px;
    /*height: 90px;*/
    height: 0;
    background: #fff;
    margin: 0 auto 22px;
    display: block;

}

#scene05 .tit2 {
    text-align: center;

}

#slides4 {
    width: 960px;
    height: 272px;
    position: absolute;
    left: 50%;
    top: 1145px;
    margin-left: -480px;
}

#slides4 .fadeWrap > div {
    float: left;
    margin-right: 16px;
    display: none;
}

#slides4 .fadeWrap .last {
    margin-right: 0;
}

#slides4 .slidesjs-pagination {
    width: 140px;
    height: 16px;
    position: absolute;
    left: 50%;
    bottom: 20px;
    margin-left: -70px;
    z-index: 100;
    text-indent: -9999px;
}

#slides4 .slidesjs-pagination-item {
    float: left;
    margin-right: 11px;
}

#slides4 .slidesjs-pagination-item:nth-child(6) {
    margin-right: 0;
}

#slides4 .slidesjs-pagination-item a {
    width: 14px;
    height: 16px;
    display: block;
}

#slides4 .slidesjs-pagination-item:nth-child(1) a {
    background: url("../img/common/numbers/num01.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(1) a.active {
    background: url("../img/common/numbers/num01_on.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(2) a {
    background: url("../img/common/numbers/num02.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(2) a.active {
    background: url("../img/common/numbers/num02_on.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(3) a {
    background: url("../img/common/numbers/num03.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(3) a.active {
    background: url("../img/common/numbers/num03_on.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(4) a {
    background: url("../img/common/numbers/num04.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(4) a.active {
    background: url("../img/common/numbers/num04_on.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(5) a {
    background: url("../img/common/numbers/num05.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(5) a.active {
    background: url("../img/common/numbers/num05_on.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(6) a {
    background: url("../img/common/numbers/num06.png") no-repeat center top;
}

#slides4 .slidesjs-pagination-item:nth-child(6) a.active {
    background: url("../img/common/numbers/num06_on.png") no-repeat center top;
}

/** footer **/
#footer {
    height: 266px;
    background: url("../img/common/footer/footer_bg.jpg") no-repeat center top;

}
