@charset 'UTF-8';
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    /* color: black; */
    border: none;
    outline: none;
    opacity: .7;
    /* background: transparent; */
    z-index: 10;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    opacity: 1;
    /* background: transparent; */
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    /* color: white; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev:before {
    content: '←';
}
[dir='rtl'] .slick-prev:before {
    content: '→';
}
.slick-next:before {
    content: '→';
}
[dir='rtl'] .slick-next:before {
    content: '←';
}



/* 메인비주얼 롤링 */
.main-visual-prev {
    background: url('image/bg-arr-prev-white.png') no-repeat;
    background-size: 26px 51px;
    width: 26px;
    height: 51px;
    left: 3%;
}
.main-visual-next {
    background: url('image/bg-arr-next-white.png') no-repeat;
    background-size: 26px 51px;
    width: 26px;
    height: 51px;
    right: 3%;
}
/* 하단사이트배너 */
.news-rolling-prev {
    background: url('image/bg-news-arr-prev.png') no-repeat;
    width: 30px;
    height: 21px;
    left: -60px;
}
.news-rolling-next {
    background: url('image/bg-news-arr-next.png') no-repeat;
    width: 30px;
    height: 21px;
    right: -60px;
}
/* ////////////////////////////////////////////////// tablet & mobile */
@media all and (max-width:480px) {
    /* 하단사이트배너 */
    .news-rolling-prev {
        background-size: 20px 14px;
        width: 20px;
        height: 14px;
        left: -40px;
    }
    .news-rolling-next {
        background-size: 20px 14px;
        width: 20px;
        height: 14px;
        right: -40px;
    }
}




/* Dots */
.slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 0 3px;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 11px;
    height: 11px;
    margin: 0 3px;
    border-radius: 50%;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    /* background: transparent; */
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    margin: 0 3px;
    border: solid 2px #aaa;
    border-radius: 50%;
    content: '';
    text-align: center;
    color: #dedede;
    box-sizing: border-box;
    background: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    background: #333;
    color: #333;
    border: solid 2px #333;
}
