/*--------------------------------------------------------*/

/* スライドのドット */

/*--------------------------------------------------------*/

@media print, screen and (min-width: 768px){

.slide-dots {
	margin: 0;
	padding: 0;
	text-align: center;
}
.slide-dots li {
	display: inline-block;
	margin: 0 12px;
}
.slide-dots li button {
	position: relative;
	text-indent: -9999px;
}
.slide-dots li button::before {
	background-image: url("dot01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	cursor: pointer;
	height: 12px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 24px;
	width: 12px;
}
.slide-dots li.slick-active button::before {
	background-image: url("dot02.svg");
}
button {
	background: none;
	border: none;
	outline: none;
}

}

@media screen and (max-width: 768px){

.slide-dots {
	margin: 0;
	padding: 0;
	text-align: center;
}
.slide-dots li {
	display: inline-block;
	margin: 0 5px;
}
.slide-dots li button {
	position: relative;
	text-indent: -9999px;
}
.slide-dots li button::before {
	background-image: url("dot01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	cursor: pointer;
	height: 10px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 22px;
	width: 10px;
}
.slide-dots li.slick-active button::before {
	background-image: url("dot02.svg");
}
button {
	background: none;
	border: none;
	outline: none;
}

}

/*--------------------------------------------------------*/

/* スライド写真の矢印 */

/*--------------------------------------------------------*/

.slick-prev,
.slick-next
{
	display:none !important;
}

}
