@charset "UTF-8";
/* CSS Document */

/*--------------------------------
WordPress News記事読み込み
--------------------------------*/
.news-inner{
	max-width: 1146px;
	margin:0 auto;
	padding: 0 10px;
	box-sizing: border-box;
}
.news-list{
	margin-bottom: 40px;
	display: grid;
	grid-template:
		repeat(2, 1fr) /
		repeat(3, 1fr);
	gap: 50px 50px;
}
.news-list .thumbnail{
	margin-bottom: 10px;
}
.news-list .date{
	margin-bottom: 6px;
}
.news-list .title{
	margin-bottom: 6px;
}
.news-list .cat{
	border: 1px solid #444;
	padding: 0.4em .4em .2em;
	display: inline-block;
	font-size: 1.2rem;
}


@media screen and (max-width:1061px){
.news-list{
	gap: 30px 30px;
}

}


@media screen and (max-width:768px){
.news-list{
	margin-bottom: 60px;
	display: grid;
	grid-template:
		repeat(3, 1fr) /
		repeat(2, 1fr);
	gap: 50px 30px;
}

}


@media screen and (max-width:576px){

}
