@charset "UTF-8";

/*******************************
 newsCss 
*******************************/
.main-sub{
	background-image: url("../img/header_img.jpg");
}

/*list*/
.caselist-list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;

}
.caselist-list li{
	margin-bottom: 30px;
	text-align: left;
}
.caselist-list li span{
	display: block;
}
.caselist-list li span.box_photo{
	margin-bottom: 12px;
}
.caselist-list li span.box_photo img{
	width: 100% !important;
	height: auto;
}
.caselist-list li span.cat{
	border-radius: 5px;
	background-color: #479f4b;
	color: #fff;
	padding: 5px 16px;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
}
.caselist-list li span.title{
	
}
/*pager*/
.pager{
	margin-top: 50px;
}
.pager ul{
	display: flex;
	justify-content: center;
	line-height: 40px;
	align-items: center;
}
.pager li{
	margin: 0 4px;
	font-size: 22px;
}
.pager li.current{
	width: 40px;
	height: 40px;
	display: block;
	border-radius: 50%;
	background-color: #479f4b;
	color: #fff;
}
.pager li a{
	width: 40px;
	height: 40px;
	display: block;
	border-radius: 50%;
	background-color: #464646;
	color: #fff;
}
.pager li.arrow a{
	background: none;
	font-family: FontAwesome;
	font-style: normal;
	color: #000;
}
.pager li.space{
	margin: -10px 10px 0 10px;
	
}
/*============================================

PC用CSS

============================================*/
@media screen and (min-width: 1024px){
	/*list*/
	.caselist-list{
	}
	.caselist-list li{
		flex-basis: calc(100%/3 - 9px);
	}

}