@charset "utf-8";

/*スライドショー（slickを使用）
----------------------------------------------------------*/
.topimg {
	position: relative;
}

/*画像設定*/
.topimg img {
	border-radius: 0% 0% 0% 0%;
	overflow: hidden;
	width:100%
}

/*dotsボタン全体を囲むブロック*/
ul.slick-dots {
	margin:0;padding: 0;
	line-height: 1;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 10px;
}
/*dotsボタン個別の設定*/
ul.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}
/*buttonタグ*/
ul.slick-dots li button {
	border: none;padding: 0;
	display: block;
	text-indent: -9999px;
	width: 12px;
	height: 12px;
	border-radius: 50%;		/*丸くする指定*/
	cursor: pointer;		/*クリックで画像へジャンプする*/
	background: #fff;
}
/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
ul.slick-dots li.slick-active button {
	background: #e94019;	/*色*/
}
