@media only screen {

.slick-dots
{
    position: absolute;
    bottom: -30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
/* 横幅600px以上の場合 */
@media only screen and (min-width:600px) {
.slick-dots
{
    bottom: -40px;
}
}

.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}
/* 横幅600px以上の場合 */
@media only screen and (min-width:600px) {
.slick-dots li
{
    margin: 0 7px;
}
}

.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
{
    opacity: 1;
}
.slick-dots li button:before
{
	font-size: 15px;
	line-height: 15px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	text-align: center;
	opacity: .2;
	color: #00376e;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/* 横幅600px以上の場合 */
@media only screen and (min-width:600px) {
.slick-dots li button:before
{
	font-size: 22px;
	line-height: 22px;
}
}

.slick-dots li.slick-active button:before
{
    opacity: .8;
    color: black;
}

}
