@charset "UTF-8";


.slick-slider *:focus{
    outline: none;
}

.slick-slide img {
    margin: 0 auto;
}

/* Arrows */
.slick-prev, .slick-next{
    position: absolute;
    top: 50%;
    font-size: 0;
    line-height: 0;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev{
    left: -85px;
    background: url(../img/top/btn_ar_prev.png) no-repeat center center;
}
.slick-next{
    right: -85px;
    background: url(../img/top/btn_ar_next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider{
    margin-bottom: 30px;
}

.slick-dots{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li{
    position: relative;

    display: inline-block;

    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;

    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 10px;
    height: 10px;
    padding: 5px;

    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{
    background-color: rgba(106,93,40, .3);
}
.slick-dots li button:before{
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 10px;
    height: 10px;

    content: '';
    text-align: center;

    background-color: rgba(106,93,40, .3);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before{
    background-color: #108ccf;
}