@charset 'UTF-8';
/* Slider */
.slick-slide{
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
}
.slick-slide:after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('/soukin/shared/image/cmn_bg_slider_over.png') repeat 0 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.slick-active.slick-slide:after{
    content: none;
}
.slick-active.slick-slide:hover{
    opacity: 0.7;
}
.slick-slide img{
    width: 100%;
}
.slick-slide a{
    outline: none;
}
/*.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}*/

/* Icons */
/*@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}*/

/* Arrows */
.slick-prev,
.slick-next{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;
    z-index: 10;

    display: block;

    width: 36px;
    height: 36px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
@media only screen and (max-width: 768px){
.slick-prev,
.slick-next{
    width: 26px;
    height: 26px;
}
}
.slick-prev:hover,
.slick-next:hover{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before{
    opacity: .8;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before{
    opacity: .2;
}

.slick-prev:before,
.slick-next:before{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev{
    left: 0;
}
@media only screen and (max-width: 995px){
.slick-prev{
    left: 25px;
}
}
.slick-prev:before{
    content: '';
    display: block;
    background: url('/soukin/shared/image/cmn_ico_prev_pc.png') no-repeat 0 0;
    width: 36px;
    height: 36px;
}
@media only screen and (max-width: 768px){
.slick-prev:before{
    background: url('/soukin/shared/image/cmn_ico_prev_sp.png') no-repeat 0 0;
    background-size: cover;
    width: 26px;
    height: 26px;
}
}

.slick-next{
    right: -20px;
}
@media only screen and (max-width: 995px){
.slick-next{
    right: 5px;
}
}
.slick-next:before{
    content: '';
    display: block;
    background: url('/soukin/shared/image/cmn_ico_next_pc.png') no-repeat 0 0;
    width: 36px;
    height: 36px;
}
@media only screen and (max-width: 768px){
.slick-next:before{
    background: url('/soukin/shared/image/cmn_ico_next_sp.png') no-repeat 0 0;
    background-size: cover;
    width: 26px;
    height: 26px;
}
}

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

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

    display: block;

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

    list-style: none;

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

    display: inline-block;

    width: 15px;
    height: 15px;
    padding: 0;

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

    display: block;

    width: 15px;
    height: 15px;
    /*padding: 5px;*/

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover{
    outline: none;
}
.slick-dots li button:before{
    font-family: 'slick';
    font-size: 24px;
    line-height: 20px;

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

    width: 15px;
    height: 15px;

    content: '•';
    text-align: center;

    color: #c9c9c9;

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