@charset "UTF-8";
/* CSS Document */
/*ニュースページ向けに文字色を再設定*/
a:link { color: #191919; }
a:visited { color: #191919; }
a:hover { color: #191919; }
a:active { color: #191919; }

/*詳細ページ　ニュース記事の進む戻るボタン*/
.btnList{
	text-align:center;
	margin-bottom:64px;
}

.btnList_type02{
	margin-bottom:0 !important;
}

.btnList_type03{
	text-align: center;
	width: 40%;
	margin: 0 auto 30px;
	position: relative;
}

.btnList_type03 .prev{
	position: absolute;
	left: 30px;
	top: 5px;
}

.btnList_type03 .next{
	position: absolute;
	right: 30px;
	top: 5px;
}

.btnList_type03 .oldest{
	position: absolute;
	left: -35px;
	top: 2px;
}

.btnList_type03 .newest{
	position: absolute;
	right: -35px;
	top: 2px;
}

.btnList_type03 .page{
	font-size: 15px;
	width: 10%;
	margin-bottom: 5px;
}

.btnList_type03 .currentPage{
	padding: 5px 5px;
	box-sizing: border-box;
	border: 1px solid #191919;
	background-color: #191919;
	color: #FFF;
}

.btnList_type03 .page a{
	display:block;
	padding: 5px 5px;
	border: 1px solid #191919;
	box-sizing: border-box;
}

.btnList_type03 .page a:hover{
	background-color: #191919;
	color: #FFF;
}

.btnList li{
	position:relative;
	display:inline-block;
}

.btnList .prev a:before{
	content: "";
	position: absolute;
	top: -3px;
	left: -30px;
	background-image: url(../img/news/arrow_prev.png);
	width: 26px;
	height: 26px;
}

.btnList .next a:before{
	content: "";
	position: absolute;
	top: -3px;
	right: -30px;
	background-image: url(../img/news/arrow_next.png);
	width: 26px;
	height: 26px;
}

.btnList .home{
	margin:0 25px;
	padding:4px 32px;
	border:1px solid #191919;
}

.main{
	position:relative;
	background-color:#FFF;
	color:#191919;
}

.main:before{
	content:"";
	position:absolute;
	top:0;
	width:100%;
	height:50px;
	background-color:#FFFF00;
}

.main:after{
	content:"";
	position:absolute;
	bottom:90px;
	width:100%;
	height:40px;
	background-color:#FFFF00;
}

.main_type02:after{
	content:none;
}

.main .inner{
	padding:54px 0 166px;
	text-align:left;
	box-sizing: border-box;
}

.main .inner_type02{
	padding:54px 0 0;
	text-align:left;
	box-sizing: border-box;
}

/*ページ一番上のタイトル*/
.main .inner>.title{
	margin-bottom:54px;
	text-align:center;
	position: relative;
	top: -24px;
}

/*ニュースリスト*/
.newsList{
	font-size:24px;
}

.newsList li{
	margin-bottom:40px;
}

.newsList .date{
	display:inline-block;
	font-weight:bold;
	border-bottom:3px solid #191919;
	margin-bottom:20px;
	line-height: 1.8;
}

.newsList .title{
	font-weight:bold;
	text-align:left;
	margin-bottom:10px;
}

.newsList .text{
	font-size:18px;
}

/*ニュース詳細ブロック*/
.infoBlock{
	padding: 0 55px;
}

.infoBlock .date{
	font-size:24px;
	display:inline-block;
	border-bottom:3px solid #191919;
	margin-bottom:35px;
}

.infoBlock .title{
	font-size:16px;
	font-weight:normal;
	margin-bottom:25px;
}

.infoBlock .text{
	font-size:16px;
	margin-bottom:40px;
	line-height: 1.9;
}

.infoBlock .caption{
	font-size:16px;
	margin-bottom:40px;
}


/*画像リスト*/
.imgList{
	margin-bottom:90px;
}

.imgList li{
	float:left;
	width:49%;
	box-sizing:border-box;
	margin-right:2%;
}

.imgList li:nth-child(even){
	margin-right:0;
}

.imgList li .imgBlock img{
	width:100%;
}

.imgList li .imgBlock{
	margin-bottom:20px;
	text-align:center
}

.imgList li .caption{
	margin-bottom:30px;
}

.imgList li:last-child .caption{
	margin-bottom:0;
}

/*一覧ページ下の灰色ブロック*/
.main .grayBlock{
	position:absolute;
	bottom:0;
	background-color:#D8D8D8;
	width:100%;
	height:90px;
}


/*レスポンシブ用記述*/
/*画面サイズが1000px以下の場合*/
@media screen and (max-width: 1000px) {
	.main .inner>.title{
		margin-bottom:30px;
	}
	
	.main .title img{
		width: 20%;
	}
	
	.main .inner {
		padding: 54px 10px 155px;
	}
	
	.main .inner_type02 {
		padding: 54px 10px;
	}
	
	.btnList_type03{
		width: 60%;
	}
	
	.btnList_type03 .prev{
		left: 0px;
	}
	
	.btnList_type03 .next{
		right: 0px;
	}
	
	.btnList_type03 .oldest {
		left: -70px;
	}
	
	.btnList_type03 .newest{
		right: -70px;
	}
	
	.btnList_type03 .page{
		font-size:20px;
		width: 15%;
		margin-bottom:5px;
	}
	
	.newsList{
		font-size:18px;
	}
	
	.newsList li{
		margin-bottom:40px;
	}
	
	.newsList .date{
		margin-bottom:10px;
		line-height: 1.5;
	}
	
	.newsList .title{
		font-weight:bold;
		text-align:left;
		margin-bottom:10px;
	}
	
	.newsList .text{
		font-size:14px;
	}
	
	.main::after {
		bottom: 60px;
		width: 100%;
		height: 70px;
	}
	
	.infoBlock{
		padding: 0 25px;
	}
	
	.imgList li .caption{
		font-size:14px;
	}
	
	.imgList li .imgBlock{
		margin-bottom:10px;
	}
	
	/*一覧ページ下の灰色ブロック*/
	.main .grayBlock{
		height:70px;
		bottom: 20px;
	}
}

/*画面サイズが680px以下の場合*/
@media screen and (max-width: 680px) {
	.main .title img{
		width: 30%;
	}
	
	/*ボタンリスト*/
	.btnList .home {
    	margin: 0 10px;
    	padding: 4px 16px;
    	border: 1px solid #191919;
	}
	
	.btnList_type03{
		margin-bottom:40px;
		font-size:18px;
	}
	
	.btnList_type03 .page{
		display:none;
	}
	
	.btnList_type03 .prev{
		left: -10px;
		top: -6px;
	}
	
	.btnList_type03 .next{
		right: -10px;
		top: -6px;
	}
	
	.btnList_type03 .oldest{
		left: -60px;
	}
	
	.btnList_type03 .newest{
		right: -60px;
	}
	
	.btnList_type03 li{
		position:relative !important;
	}

	/*画像リスト*/
	.imgList li{
		float:none;
		width:100%;
	}
}


/*回り込み解除クラス*/
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}