@charset "utf-8";
/* CSS Document */
.cate1 .box_wrap{
	gap: 80px;
}
.cate1 .box_wrap .box-item{
	gap: 60px;
	border: #939393 1px solid;
	border-radius: 8px;
	padding: 50px 60px;
}
.cate1 .box_wrap .box-item .imgbox{
	width: calc(40% - 30px);
}
.cate1 .box_wrap .box-item .txtbox{
	width: calc(60% - 30px);
}
.cate1 .box_wrap .box-item .txtbox .bottombox{
	border-top: #E6E6E6 1px solid;
	padding-top: 40px;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.cate1 .box_wrap .box-item {
		gap: 40px;
		padding: 40px 30px;
		flex-direction: column;
		width: 80%;
	}
	.cate1 .box_wrap .box-item .imgbox{
		width: 40%;
	}
	.cate1 .box_wrap .box-item .txtbox{
		width: 100%;
	}

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
 	.cate1 .box_wrap .box-item .txtbox .bottombox {
		padding-top: 20px;
	}
    .cate1 .box_wrap .box-item {
        gap: 30px;
        padding: 40px 20px;
        width: 90%;
    }
	.cate1 .box_wrap {
		gap: 60px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
    .cate1 .box_wrap .box-item {
        gap: 20px;
        padding: 20px 10px;
        width: 100%;
    }
	.cate1 .box_wrap {
		gap: 40px;
	}
    .cate1 .box_wrap .box-item .imgbox {
        width: 50%;
    }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

