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

.main-wrap .cate_wrap .cate1 .boxwrap .box{
	gap: 60px;
}
.main-wrap .cate_wrap .cate1 .boxwrap .box:nth-of-type(even){
	flex-direction: row-reverse;
}
.main-wrap .cate_wrap .cate1 .boxwrap .box:not(:last-of-type){
	margin-bottom: 80px;
}
.main-wrap .cate_wrap .cate1 .boxwrap .box > div{
	width: calc(50% - 60px / 2);
}

.main-wrap .cate_wrap .cate2 .boxwrap{
	align-items: flex-start;
	justify-content: flex-start;
	gap: 50px 20px;
}
.main-wrap .cate_wrap .cate2 .boxwrap .box{
	width: calc(100% / 3 - 40px / 3);
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.main-wrap .cate_wrap .cate1 .boxwrap .box{
		gap: 50px;
	}
	.main-wrap .cate_wrap .cate1 .boxwrap .box > div{
		width: calc(50% - 50px / 2);
	}

}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.main-wrap .cate_wrap .cate2 .boxwrap{
		gap: 50px 30px;
	}
	.main-wrap .cate_wrap .cate2 .boxwrap .box{
		width: calc(100% / 2 - 30px / 2);
	}

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.main-wrap .cate_wrap .cate1 .boxwrap .box{
		gap: 40px;
	}
	.main-wrap .cate_wrap .cate1 .boxwrap .box .imgbox{
		width: calc(40% - 40px / 2);
	}
	.main-wrap .cate_wrap .cate1 .boxwrap .box .txtbox{
		width: calc(60% - 40px / 2);
	}
	.main-wrap .cate_wrap .cate2 .boxwrap{
		gap: 50px 20px;
	}
	.main-wrap .cate_wrap .cate2 .boxwrap .box{
		width: calc(100% / 2 - 20px / 2);
	}

}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.main-wrap .cate_wrap .cate1 .boxwrap .box{
		gap: 0;
	}
	.main-wrap .cate_wrap .cate1 .boxwrap .box:not(:last-of-type){
		margin-bottom: 50px;
	}
	.main-wrap .cate_wrap .cate1 .boxwrap .box .imgbox{
		width: 100%;
		margin-bottom: 20px;
	}
	.main-wrap .cate_wrap .cate1 .boxwrap .box .txtbox{
		width: 100%;
	}
	.main-wrap .cate_wrap .cate2 .boxwrap{
		gap: 40px;
	}
	.main-wrap .cate_wrap .cate2 .boxwrap .box{
		width: 100%;
	}

}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

