@charset "utf-8";
/* CSS Document */

.fs-c-subgroup {
	display: none;
}
.allitem_category {
	width: 95%;
	margin: 0 auto;
}
.allitem_category ul {
	/*Flex boxの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;

	padding: 0;
}
.allitem_category ul li {
	width: calc( ( 100% - 6% ) / 4 );
	/*text-decoration: none;*/
	list-style: none;
	border: #000 1px solid;
	margin: 10px 2% 0 0;
	padding: 10px;
	text-align: center;
	font-size: 0.9em;
	letter-spacing: 0.1em;
}
.allitem_category ul li:nth-child(4n) {
	margin-right: 0;
}
.allitem_category ul li a {
	text-decoration: none;
	color: #000;
	display: block;
}
.allitem_category ul li:hover {
	opacity: 0.7;
}
@media screen and (max-width:768px) {
	.allitem_category ul li {
		width: calc( ( 100% - 4% ) / 3 );
	}
	.allitem_category ul li:nth-child(4n) {
		margin-right: 2%;
	}
	.allitem_category ul li:nth-child(3n) {
		margin-right: 0;
	}
}