@charset "UTF-8";

 
/***

slick dots（ドット）
スライダー枠外にdotsを表示するCSS
合わせてオプションjs内に
dots: true,
appendDots: $('#dots-container'),
を入れる事！

***/
/* dots全体のスタイル */
.slick-dots {
	position: absolute;
	bottom: -25px;  /*スライダーの下に配置 */
	bottom: 16px;  /*スライダーの内側に配置 */
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

/* 各dotのスタイル */
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
	
	width: 16px;
	height: 16px;
/*
	border-radius: 50%;
	background: #ccc;
	background: #fff;
	border: 1px solid #ccc;
	margin: 0 5px;
*/
	
}

/* dotのボタンのスタイル */
.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;
	
	width: 16px;
	height: 16px;
	
	padding: 0;
	border-radius: 50%;
	background: #ccc;
	background: #fff;
	border: 2px solid #ccc;
	border:3px solid rgba(34,155,152,1.00);
	border: 2px solid #fff;
	margin: 0 8px;
}

/* dotの背景 */
.slick-dots li button:before {
	font-family: 'slick';
	font-size: 6px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	content: none;
	text-align: center;
	opacity: .25;
	color: black;

	font-size: 0;
	line-height: 1;

	width: 16px;
	height: 16px;
	
	content: none;
	opacity: 1;
}

/* dotがアクティブな場合のスタイル */
.slick-dots li.slick-active button:before {
	opacity: .75;
	color: black;
	opacity: 1;
	color: #000;
	
	width: 10px;
	height: 10px;
	padding: 0;
}
.slick-dots li.slick-active button {
	width: 12px;
	height: 12px;
	width: 16px;
	height: 16px;
	
	padding: 0;
	border-radius: 50%;
	background: #ccc;
	background: #666;
	background:  rgba(34,155,152,1.00);
	border: 2px solid #fff;
	margin: 0 8px;
}


