.main > h1 {
	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: -.1rem;
	padding: 1.5rem 0;
	text-align: center;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.main > h1 em {
	font-size: 1.5rem;
	font-weight: 900;
	padding-left: .7rem;
	color: #f45e71;
}
.content_wrap {
	padding: 2rem;
	background-color: #fab0b9;
	min-height: calc(100vh - 11rem);
}
.content_wrap ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.content_wrap ul li {
	position: relative;
}
.content_wrap ul li::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: .5rem;
	width: 2rem;
	height: 2rem;
	background: url("../img/arrow.png") no-repeat center / .6rem;
}
.content_wrap ul li.ad::after {
	display: none;
}
.content_wrap ul li a {
	font-size: 2rem;
	font-weight: 600;
	padding: 1rem;
	padding-right: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	text-align: center;
	line-height: 1.4;
	background-color: #fff;
	height: 100%;
}