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

.cate1 .boxwrap{
	justify-content: space-between;
	align-items: flex-start;
}
.cate1 .boxwrap .box{
	width: 27%;
	gap: 30px;
}
.cate1 .boxwrap.sc-anime.on .box{
	opacity:0;
	transform: translateY(50px);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.cate1 .boxwrap.sc-anime.on.active .box{
	animation-name: blurin2;
	animation-duration: 1.8s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.cate1 .boxwrap.sc-anime.on .box:nth-of-type(2){
	animation-delay: 0.4s;
}
.cate1 .boxwrap.sc-anime.on .box:nth-of-type(3){
	animation-delay: 0.8s;
}
.cate1 .boxwrap .box .imgbox{
	position: relative;
	width: 100%;
	max-width: 250px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #E4E4E4;
}
.cate1 .boxwrap .box .imgbox img{
	width: 30%;
	max-width: 80px;
}
.cate1 .boxwrap .box .imgbox p{
	position: absolute;
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.cate1 .boxwrap .box{
		width: 30%;
		gap: 30px;
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1 .boxwrap{
		gap: 50px;
		justify-content: center;
	}
	.cate1 .boxwrap .box{
		width: 100%;
		max-width: 300px;
		gap: 20px;
	}
	.cate1 .boxwrap .box .imgbox{
		max-width: 150px;
	}
}

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

