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

.cate2 .boxwrap{align-items: stretch;}
.cate2 .boxwrap .box{
	width: calc(100% / 3);
	padding: 0 20px;
	gap: 15px;
	justify-content: flex-start;
}
.cate2 .boxwrap .box:nth-of-type(2){
	border-left: 1px solid #DEE6C9;
	border-right: 1px solid #DEE6C9;
}
.cate2 .boxwrap .box img{
	width: clamp(80px,50%,110px);
}

.cate3 .box{
	justify-content: space-between;
}
.cate3 .box .imgbox{
	width: 40%;
}
.cate3 .box .txtbox{
	width: 50%;
	gap: 40px;
}
/* ---------- 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){
	.cate2 .boxwrap .box{
		padding: 0 10px;
	}
	.cate3 .box .imgbox{
		width: 45%;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate2 .boxwrap{
		gap: 30px;
	}
	.cate2 .boxwrap .box{
		width: 100%;
		padding: 0 10px;
	}
	.cate2 .boxwrap .box:nth-of-type(2){
		border-left: none;
		border-right: none;
		border-top: 1px solid #DEE6C9;
		border-bottom: 1px solid #DEE6C9;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.cate3 .box .imgbox{
		width: 100%;
		margin-bottom: 30px;
	}
	.cate3 .box .txtbox{
		width: 100%;
		gap: 30px;
	}
}

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

