@charset "utf-8";
/* CSS Document */

#nav{
	width: 100%;
	/*box-shadow: 0 1px 0 0 #EEE inset;*/
	background-color: #79191d;
}
#gnav_ul{
	width:980px;
	margin: 0 auto;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content:space-around;
	-ms-flex-pack:distribute;
	justify-content:space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#gnav_ul li{
	display:block;
	float:left;
}
#gnav_ul li a{
	width: 100%;
	height:60px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: bold;
	font-size: 14px;
	color: #FFF;
}
#gnav_ul li a:hover{
	text-decoration: none;
	color: #FFF;
	transition : all 0.5s;
}

.pref_link a{
	color:#036EA7;
}


/*パンくず*/
#bread_wrap{
	padding-top:3px;
	padding-bottom:3px;
	/*background-color:#79191d;*/
	font-size:10px;
}
#bread_wrap ul li{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin-right:5px;
}
#bread_wrap ul li:last-child{
	color: #695b56;
}
#bread{
	width : 980px;
	margin: 0 auto;
}


/*ページャー*/
#pager_top_area{
	height:30px;
	margin-top:30px;
}
.pager{
	display:inline-block;
}
.pager .current,
.pager .pagecss,
.pager .pager_prev,
.pager .pager_next{
	width : 40px;
	height: 40px;
	margin-left: 5px;
	line-height: 40px;
	display:inline-block;
	text-align:center;
	text-decoration: none;
	/*border-radius: 50%;*/
	background-color: #EEE;
	transition: all 0.3s;
}
.pager .pagecss:hover,
.pager .pager_prev:hover,
.pager .pager_next:hover{
	text-decoration: none;
	background-color: #79191d;
	color: #FFF;
}
.pager .current{
	font-size : 18px;
	font-weight:bold;
	color:#FFF;
	background-color: #79191d;
}
.pager .pager_prev,
.pager .pager_next,
.pager a[title="last page"],
.pager a[title="first page"]{ display:none;}
.pager a .pager_prev,
.pager a .pager_next{ display:inline;}

