@charset "utf-8";
/* CSS Document */
.cate-wrap{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
}
.cate-wrap > a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 74px;
	height: 32px;
	padding: 4px 16px;
	background-color: #fff;
	border-radius: 4px;
	box-sizing: border-box;
	transition:
		background-color 0.3s ease,
		color 0.3s ease;
}
.cate-wrap > a p{
	margin: 0;
	color: #4B4B4B;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}
.cate-wrap > a.on{
	background-color: #286431;
}
.cate-wrap > a.on p{
	color: #fff;
}
.cate-wrap > a:hover{
	opacity: 1;
	background-color: #286431;
}
.cate-wrap > a:hover p{
	color: #fff;
}


.cate1 .box_wrap{
	gap: 50px;
}
.cate1 .box_wrap .boxitem{
	width: calc(50% - 25px);
}
.cate1 .box_wrap .boxitem .imgbox img{
	border-radius: 10px;
}
.cate1 .box_wrap .boxitem .txtbox{
	align-items: flex-start;
}
.cate1 .box_wrap .boxitem .txtbox .catename{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	width: fit-content;
	max-width: 100%;
	padding: 4px 16px;
	background-color: #286431;
	color: #fff;
	border-radius: 3px;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate1 .box_wrap .boxitem{
		width: 90%;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1 .box_wrap .boxitem .imgbox img {
		border-radius: 5px;
	}
	.cate1 .box_wrap .boxitem .txtbox .catename {
		padding: 2px 13px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

