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

/* --------------------------------------------------

news.css

-------------------------------------------------- */
/* --------------------------------------------------
categorye-list
-------------------------------------------------- */
.categorye-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.categorye-list li{
	width: calc(100% / 3 - 2%);
	margin-right: 1%;
	margin-bottom: 2%;
	text-align: center;
	min-width: 10em;
}
.categorye-list::after {
	display: block;
	content:"";
	width: 32%;
}
.categorye-list li a{
	display: block;
	padding: 0.5em;
}
.categorye-list .cat-all a{
	border: solid 3px #AFE084;
}
.categorye-list .cat-event a{
	border: solid 3px #FFAD60;
}
.categorye-list .cat-news a{
	border: solid 3px #FFE544;
}
.categorye-list .cat-office a{
	border: solid 3px #46D0FD;
}
.categorye-list .cat-seminar a{
	border: solid 3px #FFBCD5;
}
.categorye-list .cat-all.current,
.categorye-list .cat-all a:hover{
	background: #AFE084;
}
.categorye-list .cat-event.current,
.categorye-list .cat-event a:hover{
	background: #FFAD60;
}
.categorye-list .cat-news.current,
.categorye-list .cat-news a:hover{
	background: #FFE544;
}
.categorye-list .cat-office.current,
.categorye-list .cat-office a:hover{
	background: #46D0FD;
}
.categorye-list .cat-seminar.current,
.categorye-list .cat-seminar a:hover{
	background: #FFBCD5;
}
/* for TABLET */
@media screen and (max-width: 800px) {
	.categorye-list li {
		width: calc(100% / 2 - 2%);
	}
}
