@charset "UTF-8";

 
/***

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

***/
#dots-container,
#dots-container2 {
	width: 100%;
	height: 1px;
	position: relative;
/*	background: #C56C97;*/
	z-index: 999;
}


#dots-container ul,
#dots-container2 ul {
	width: auto;
	height: 20px;
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
/*	background: #31DDBB;*/
	
	position: absolute;
	top: -20px;
	right: 0;
	
	
	z-index: 999;
	
}
#dots-container2 ul {
	height: 20px;
	position: absolute;
	top: 15px;
/*	top: -100px;*/
	right: 20px;
	
	
	z-index: 999;
	
/*	background: rgba(175,129,217,1.00);*/
	
}
@media print, screen and (min-width: 801px) {
#dots-container ul {
	text-align: left;
	right: none;
	left: 83%;
/*	top: -120px;*/
}
}
@media print, screen and (min-width: 1301px) {
#dots-container ul {
	left: 1200px;
}
}
@media print, screen and (min-width: 1401px) {
#dots-container ul {
	left: 1300px;
}
}
/* dots全体のスタイル */
.slick-dots {
/*
  position: absolute;
  bottom: -25px;  スライダーの下に配置 
  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: 12px;
	height: 12px;
	
	
/*
	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: 12px;
	height: 12px;
	padding: 0;
	border-radius: 50%;
	background: #ccc;
	background: #fff;
	border: 2px solid #ccc;
	margin: 0 6px;
}

/* 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: 10px;
	height: 10px;
	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;
	padding: 0;
	border-radius: 50%;
	background: #ccc;
	background: #666;
	border: 2px solid #666;
	margin: 0 6px;
}


