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

.main-wrap .cate1{
	gap: 40px 80px;
}
.main-wrap .cate1 .box{
	width: calc(100% / 3 - 160px / 3);
	aspect-ratio: 1 / 1;
	background-color: #fff;
	border-radius: 50%;
}
.main-wrap .cate1 .box > div{
	position: relative;
	padding-top: 20px;
}
.main-wrap .cate1 .box > div::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #05AA8E;
}
.main-wrap .cate_wrap{
	padding-top: 0;
}
.main-wrap .two_column{
}
.main-wrap .info_list .box{
	padding: 15px 0;
	border-bottom: 1px solid #DEDEDE;
}
.main-wrap .info_list .box:first-of-type{
	padding-top: 0;
}
.main-wrap .info_list .box .title{
	width: 30%;
}
.main-wrap .info_list .box > div{
	width: 70%;
	padding-left: 20px;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.main-wrap .cate1{
		gap: 40px 60px;
	}
	.main-wrap .cate1 .box{
		width: calc(100% / 3 - 120px / 3);
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.main-wrap .cate1{
		gap: 30px;
	}
	.main-wrap .cate1 .box{
		width: calc(100% / 3 - 60px / 3);
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.main-wrap .cate1{
		gap: 20px;
	}
	.main-wrap .cate1 .box{
		width: calc(100% / 2 - 20px / 2);
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

