@charset "utf-8";
/* CSS Document */
.link_wrap{
	gap: 50px;
}
.link_wrap a{
	position: relative;
	min-width: 250px;
	box-sizing: border-box;
	padding: 10px 20px 10px 30px;
	border-bottom: 2px solid #242424;
}
.link_wrap a::before{
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.link_wrap a:first-of-type::before{
	background-color: #7745A7;
}
.link_wrap a:last-of-type::before{
	background-color: #E9DE89;
}
.link_wrap a img{
	position: absolute;
	width: 10px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: ease 0.3s;
}
.link_wrap a:hover img{
	transform: translateY(-40%);
}

.main-wrap .cate_wrap{
	padding-top: 0!important;
	background-color: #fff;
}
.main-wrap .cate_wrap .cate{
}
.main-wrap .cate_wrap .cate .titlebox{
	width: 30%;
}
.main-wrap .cate_wrap .cate .titlebox h3{
	margin: 0 auto 30px;
	line-height: 1;
	padding: 20px 10px;
}
.main-wrap .cate_wrap .cate1 .titlebox h3{
	background-color: #7745A7;
	color: #fff;
}
.main-wrap .cate_wrap .cate2 .titlebox h3{
	background-color: #E9DE89;
}
.main-wrap .cate_wrap .cate .boxwrap{
	width: 70%;
	padding-left: 50px;
	gap: 40px 10px;
	justify-content: flex-start;
	align-items: flex-start;
}
.main-wrap .cate_wrap .cate .boxwrap .box{
	width: calc(100% / 2 - 10px / 2);
}
.main-wrap .cate_wrap .cate .boxwrap .box .imgbox a{
	display: block;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.link_wrap a{
		min-width: 200px;
		box-sizing: border-box;
		padding: 10px 20px 10px 30px;
		border-bottom: 2px solid #242424;
	}
	.main-wrap .cate_wrap .cate .titlebox{
		width: 100%;
		margin-bottom: 40px;
	}
	.main-wrap .cate_wrap .cate .boxwrap{
		width: 100%;
		padding-left: 0px;
		gap: 40px 10px;
		justify-content: flex-start;
		align-items: flex-start;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.link_wrap{
		gap: 30px;
	}
	.link_wrap a{
		min-width: 150px;
		box-sizing: border-box;
		padding: 5px 20px 5px 25px;
		border-bottom: 2px solid #242424;
	}
	.link_wrap a::before{
		width: 14px;
		height: 14px;
	}
	.main-wrap .cate_wrap .cate .titlebox{
		width: 100%;
		margin-bottom: 30px;
	}
	.main-wrap .cate_wrap .cate .boxwrap{
		width: 100%;
		padding-left: 0px;
		gap: 30px 10px;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.main-wrap .cate_wrap .cate .boxwrap .box{
		width: 100%;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

