.content_wrap {
	padding: 0 2rem 2rem;
}
.content_wrap form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.content_wrap form select {
	font-size: 1.5rem;
	padding: 1rem 1rem;
	border: 1px solid #ccc;
	width: 45%;
	height: 100%;
	background: #eaeaea;
}
.content_wrap form select option {
	font-size: 1.4rem;
	padding: 0;
}
.content_wrap form .category_wrap {
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 1.5rem;
	height: 100%;
	width: 55%;
}
.content_wrap form .category_wrap a {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 800;
	height: 100%;
	position: relative;
}
.content_wrap form .category_wrap a.on {
	color: #21aeb8;
}
.content_wrap form .category_wrap a.on::after {
	content: "";
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	height: .4rem;
	background: #21aeb8;
}

.list_wrap ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #ccc;
	border-bottom: none;
	padding: 1.5rem;
	background: url("../img/arrow_next.png") no-repeat 50% 50% / 1.5rem;
}
.list_wrap ul li:last-child {
	border-bottom: 1px solid #ccc;
}
.list_wrap ul li p {
	font-size: 1.8rem;
}
.list_wrap ul li .percent {
	font-weight: 600;
}