*{
    margin: 0;padding: 0;
}

/* body{
    background-color: #fff;color: #333;
} */

/* header,footer{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #efefef;
    color: #333;
} */

/* header a,footer a{
    color: #666;
} */

/* h1{
    padding-top: 2.0em;
    padding-bottom: 2.0em;
} */

.slick-dots{
    text-align: center;
    margin-top: -35px;
    z-index: 100;
}

/* .slick-dots li{
    display: inline-block;
    margin: 0 2px;
} */

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

/* .slick-dots li button:before {
    content: '•';
    font-size: 22px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: .25;
    color: black;
} */

.slick-dots li button:hover:before,
/* .slick-dots li button:focus:before */
{
    opacity: 1;
    color: #fff; /* hover時の色を変更 */
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 15px;
    line-height: 20px;

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

    width: 20px;
    height: 20px;

    /* 元のcontentプロパティの値だとfont-sizeを変更した際に位置がずれてしまうので値を変更 */
    /* content: '•'; */
    content: '●';
    text-align: center;

    opacity: .25;
    color: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: #fff; /* active時の色を変更 */
}