@charset "utf-8";
/* CSS Document */
.cate1 {
	flex-direction: column;
	gap: 60px;
}
.cate1 .box_wrap{
	gap: 40px;
	justify-content: flex-start;
}
.cate1 .box_wrap a{
	width: calc((100% - 80px)/3);
}
.cate1 .box_wrap a img{
	border-radius: 8px;
}
/* ---------- 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 a{
		width: calc((100% - 40px)/2);
	}
	.cate1 .box_wrap a img{
		border-radius: 5px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1 .box_wrap {
		gap: 20px;
		justify-content: flex-start;
	}
	.cate1 .box_wrap a{
		width: calc((100% - 20px)/2);
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

