@charset "utf-8";

/*==================================================
スライダーのためのcss
===================================*/

.topbnrWrap
{
   width:100%;
   margin:0 auto;
	margin-top: 30px;
	margin-bottom: 20px;
}

.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:92%;
    margin:0 auto;
  padding: 0;
  list-style: none;

}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 34%!important;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
	background-color: transparent!important;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:10px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent!important;
    outline: none;
    width:6px!important;/*ドットボタンのサイズ*/
    height:11px!important;/*ドットボタンのサイズ*/
    display:block;
	border: none!important;
    border-radius:50%!important;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
	width:6px!important;/*ドットボタンのサイズ*/
    height:11px!important;/*ドットボタンのサイズ*/
}

.slider li a{
}
.slider li a:link{
	text-decoration: none!important;
}

.slider li a:hover{
	text-decoration: underline!important;
	color: #333!important;
}

.slider li h4{
	font-size: 15px;
	color: #333;
	line-height: 1.4;
	margin-top: 10px;
}

.slider li p{
	font-size: 10px;
	color: #333;
	margin-top: 2px;
	line-height: 1.4;
	overflow: hidden;
}

@media screen and (max-width: 768px){
.slider li a{
	text-decoration: none!important;
}
.slider li a:link{
	text-decoration: none!important;
}

.slider li h4{
	font-size: 13px;
	color: #333;
	line-height: 1.4;
	margin-top: 10px;
}

.slider li p{
	font-size: 9px;
	color: #333;
	margin-top: 2px;
	line-height: 1.4;
}	
	
	
	
	
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 23%!important;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
	background-color: transparent!important;
}	
	
	}