.main {
	min-height: calc(100vh - 11rem);
	background: #f2f2f2;
}
.main .list_wrap {
	padding: 4rem 2rem 2.8rem;
	background: #f2f2f2 url("../img/arrow.png") no-repeat 50% 98% / 1.2rem;
}
.main .list_wrap h1 {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.main .list_wrap > ul {
	background: #fff;
	padding: 2rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
}
.main .list_wrap > ul li {
	text-align: center;
	width: 25%;
	padding: 3%;
}
.main .list_wrap > ul li a {
	display: block;
}
.main .list_wrap > ul li a img {
	width: 100%;
}
.main .list_wrap > ul li a p {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	margin-top: .8rem;
	line-height: 1.3;
	word-break: break-all;
}


.main .category_wrap {
	background: #fff;
}
.main .category_wrap h3 {
	display: block;
	width: fit-content;
	margin: 2.5rem auto 2rem;
	padding: .8rem 2rem;
	font-size: 1.8rem;
	font-weight: 700;
	background: #1a1a1a;
	border-radius: 2.5rem;
	color: #fff;
}
.main .category_wrap ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid #ddd;
}
.main .category_wrap ul li {
	border-bottom: 1px solid #ddd;
}
.main .category_wrap ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 1.8rem;
	text-align: center;
	padding: 1.5rem 1.2rem;
	line-height: 1.3;
}
.main .category_wrap ul li:nth-child(2n-1) {
	border-right: 1px solid #ddd;
}