.kakkokuList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 19px 19px 29px;
}
.kakkokuList > li {
	width: calc((100% - 19px) / 2);
	background: #ede4d1;
	border-radius: 8px;
	position: relative;
}
.kakkokuList > li:nth-child(n + 3) {
	margin-top: 20px;
}
.kakkokuList > li a {
	width: 100%;
	height: 100%;
	display: block;
	padding: 15px;
	text-decoration: none;
}
.kakkokuList > li a::after {
	content: "";
	display: block;
	background: url(/img/common/ic/ic_blank.png) no-repeat;
	width: 11px;
	height: 12px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}
.kakkokuList > li a:hover {
	opacity: 0.7;
}

.kakkokuList_h {
	font-size: 1.6rem;
	font-weight: bold;
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
}
.kakkokuList_h::before {
	content: "";
	display: block;
	background: url(/img/common/ic/ic_arr.png) no-repeat;
	width: 13px;
	height: 13px;
	position: absolute;
	top: 5px;
	left: 0;
}

.kakkokuList_location {
	display: flex;
	align-items: center;
	font-weight: bold;
}
.kakkokuList_location .location_icon {
	white-space: nowrap;
	background: #fff;
	display: inline-block;
	padding: 3px 5px;
	margin-right: 8px;
}

@media only screen and (max-width: 750px) {
	.kakkokuList {
		display: block;
		padding: 19px calc(29 / 750 * 100vw) 29px;
	}
	.kakkokuList > li {
		width: 100%;
	}
	.kakkokuList > li:not(:first-child) {
		margin-top: 20px;
	}
	.kakkokuList > li a {
		padding: 15px calc(28 / 750 * 100vw);
	}

	.kakkokuList_h {
		padding-left: 20px;
		margin-bottom: 10px;
	}
}