@charset 'UTF-8';
/* Arrows */
.slick-arrow {
    transition: opacity 0.2s ease;
    cursor: pointer;
}
.slick-prev {
    background: url(../images/top/slide_arrow_left.png) no-repeat right top;
    width: 67px;
    height: 95px;
    text-indent: -9999px;
    position: absolute;
    top: 470px;
    left: 50%;
    z-index: 100;
    border: none;
    margin: 0 0 0 -345px;
}
.slick-next {
    background: url(../images/top/slide_arrow_right.png) no-repeat left top;
    width: 67px;
    height: 95px;
    text-indent: -9999px;
    position: absolute;
    top: 470px;
    left: 50%;
    z-index: 100;
    border: none;
    margin: 0 0 0 280px;
}
.slick-disabled {
    opacity: 0.4;
    cursor: default;
}

.slick-dots
{
    position: absolute;
    top: 890px;
    left: 0;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

    text-align: center;
    z-index: 100;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 31px;
    height: 31px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 31px;
    height: 31px;
    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
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-size: 0;

    position: absolute;
    top: 0;
    left: 0;

    width: 31px;
    height: 31px;

    content: '';
	background-image: url('../images/character/dot_default.png');

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
	background-image: url('../images/character/dot_active.png');
    color: black;
}