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

/* ---------- cate1 ---------- */
.cate1 .box_wrap{
	gap: 80px 60px;
	justify-content: flex-start;
}
.cate1 .box_wrap .box-item{
	gap: 10px;
	width: calc((100% - 120px)/3);
	align-items: flex-start;
}
.cate1 .box_wrap .box-item .imgbox{
    width: 100%;
    height: 100px;           
    display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
    overflow: hidden;
}
.cate1 .box_wrap .box-item .imgbox img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.btn_wrap{
	padding-top: 0;
}
.btn_wrap .more_a{
	border-top: #010000 1px solid;
	padding-top: 150px;
}

/* ---------- 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{
		width: calc((100% - 60px)/2);
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.btn_wrap .more_a{
		padding-top: 100px;
	}
	.cate1 .box_wrap .box-item .imgbox{
		height: 80px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.btn_wrap .more_a{
		padding-top: 80px;
	}
	.cate1 .box_wrap .box-item{
		width: 100%;
	}

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

