@charset "utf-8";
/* CSS Document */
.cate1 .page_links{
	justify-content: space-around;
	align-items: flex-start;
}
.cate1 .page_links .item-wrap{
	flex-direction: column;
	cursor: pointer;
}
.cate1 .page_links .item-wrap .iconbox{
	width: 100px;
}
.cate1 .page_links .item-wrap .txtbox{
	flex-direction: column;
}
.cate1 .page_links .item-wrap {
    transition: 0.3s; 
}
.cate1 .page_links .item-wrap:hover {
    transform: scale(1.05);
}
.cate1 .page_links .item-wrap .iconbox {
    transition: transform 0.4s ease;
}
.cate1 .page_links .item-wrap:hover .iconbox {
    transform: scale(1.0);
    animation: shake 0.6s ease-in-out;
}
@keyframes shake {
    0%   { transform: scale(1.0) translateX(0); }
    25%  { transform: scale(1.2) translateX(-4px); }
    50%  { transform: scale(1.2) translateX(4px); }
    75%  { transform: scale(1.2) translateX(-2px); }
    100% { transform: scale(1.0) translateX(0); }
}
.cate2 .box_wrap{
	flex-direction: column;
	gap: 120px;
}
.cate2 .box_wrap .boxitem{
	flex-direction: column;
	gap: 70px;
	padding: 80px 150px;
}
body.on .cate2 .box_wrap .boxitem{
	display: none;
}
.cate2 .box_wrap .boxitem .imgbox{
	position: relative;
	width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;
}
.cate2 .box_wrap .boxitem .imgbox .product-img{
	position: absolute;
	top: 50%; 
	left:50%;
	transform: translate(-50%, -50%);
	width: 30%;
	margin: 0 auto;
}
.cate2 .box_wrap .boxitem .txtbox{
	width: 100%;
	gap: 50px;
	flex-direction: column;
	align-items: flex-start;
}
.cate2 .box_wrap .boxitem .more1{
	padding-top: 50px;
}
.cate2 .product-info-box{
	width: 100%;
}
.cate2 .product-info-box .info{
	border-bottom: 1px solid rgba(112, 94, 54, 0.3);
}
.cate2 .product-info-box .info:not(:last-of-type){
	
}
.cate2 .product-info-box .info:first-of-type{
	padding-top: 0;
}
.cate2 .product-info-box .info h3{
	width: 20%;
	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: flex-start;
    align-items: left;
	flex-direction: row;
	box-sizing: border-box;
	padding-right: 30px;
	padding: 20px 0;
}
.cate2 .product-info-box .info > div{
	width: 80%;
	padding: 15px 0;
	padding-left: 80px;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.cate2 .box_wrap{
		gap: 100px;
	}
	.cate1 .page_links .item-wrap .iconbox {
		width: 80px;
	}
	.cate2 .box_wrap .boxitem .txtbox{
		gap: 30px;
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.cate2 .box_wrap{
		gap: 80px;
	}
	.cate1 .page_links .item-wrap .iconbox {
		width: 60px;
	}
	.cate2 .box_wrap .boxitem{
		gap: 50px;
		padding: 60px 100px;
	}
	.cate2 .product-info-box .info > div {
		padding: 10px 0;
		padding-left: 30px;
	}
	.cate2 .product-info-box .info h3 {
		padding: 15px 0;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate2 .box_wrap{
		gap: 50px;
	}
	.cate1 .page_links {
		max-width: 600px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px 32px; 
        justify-items: center; 
    }
    .cate1 .page_links .item-wrap {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .cate1 .page_links .item-wrap .txtbox{
        align-items: center;
    }
	.cate2 .box_wrap .boxitem .imgbox .product-img {
		width: 40%;
	}
	.cate2 .box_wrap .boxitem{
		gap: 30px;
		padding: 60px 50px;
	}
    .cate2 .box_wrap .boxitem .txtbox {
        gap: 20px;
    }
	.cate2 .product-info-box .info {
		flex-direction: column;
		padding-top: 20px;
	}
	.cate2 .product-info-box{
		padding-top: 30px;
	}
	.cate2 .product-info-box .info h3 {
		width: 100%;
		padding: 0;
	}
	.cate2 .product-info-box .info > div {
		width: 100%;
		padding-left: 0px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1 .page_links {
		max-width: 350px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
	.cate2 .box_wrap .boxitem .imgbox .product-img {
		width: 40%;
	}
	.cate2 .box_wrap .boxitem{
		gap: 30px;
		padding: 40px 20px;
	}
	.cate2 .product-info-box{
		padding-top: 10px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

