/* 
 ヘッダーモジュールのCSS
*/
/* default */
.cat-list {
	display: block;
	width: 100%;
	line-height: 1.5;
}
.cat-list > ul {
	display: inline-block;
	float: right;
}
.cat-list > ul > li {
	list-style : none;
	float: left;
	word-break: break-word;
	line-height: 190%;
}
.cat-list > ul > li > a {
	padding-left: 0;
	padding-right: 0;
}
.cat-list > ul > li > a > span {
	padding: 0 1.5em;
	text-align: center;
	overflow: hidden;
}
.art-list {
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
}
.art-list-d {
	display: block;
	margin-bottom: 14px;
}
.art-list-each {
	float: left;
	margin-right: 2%;
	margin-bottom: 20px;
	width: 32%;
}
.art-list-each-right {
	margin-right: 0;
}
.art-list-each > img {
	width: 100%;
	height: 260px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.art-list-detail{
	margin-bottom: 15px;
	text-align: center;
}
.art-list-detail-date{
	font-size: 90%;
}
.art-list-detail-title{
	
}
.art-list-page {
	text-align: center;
	padding: 40px;
	clear: both;
}
.art-list-page > a{
	padding: 20px;
}
.art-list-d-ip {
	display: none;
}
.art-list-d-mobile {
	display: none;
}
@media screen and (max-width: 1025px) {
	.art-list-d-ip {
		display: block;
	}
	.art-list-d {
		display: none;
	}
	.art-list-d-mobile {
		display: none;
	}
	.art-list {
		overflow: unset;
	}
	.art-list-each {
		width: 48%;
	}
}
@media screen and (max-width: 767px) {
	.art-list-d {
		display: none;
	}
	.art-list-d-ip {
		display: none;
	}
	.art-list-d-mobile {
		display: block;
	}
	.art-list {
		overflow: unset;
	}
	.art-list-each {
		width: 96%;
	}
}
