@charset "UTF-8";

#page_title_section {
	background-image: url("../img/sitemap/top_backimage.jpg");
	background-position: 20% 50%;
}

#map_section {
	background: #f7f5ed;
	margin-bottom: 100px;
}

#map_section .container {
	max-width: 980px;
	margin: 0 auto;
}

#map_section .contents ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#map_section .contents ul li {
	width: 32%;
	padding-bottom: 50px;
}

#map_section .contents ul li a {
	background: #ffffff;
	max-width: 300px;
	display: block;
	font-size: 18px;
	line-height: 1.5em;
	padding: 20px 20px 20px 40px;
	color: #000000;
	text-decoration: none;
	position: relative;
	transition: 0.2s;
}

#map_section .contents ul li a::before {
	content: "";
	width: 8px;
	height: 8px;
	border-top: solid 2px #000000;
	border-right: solid 2px #000000;
	position: absolute;
	top: 50%;
	left: 20px;
	margin-top: -5px;
	transform: rotate(45deg);
}

#map_section .contents ul li a:hover {
	background: #d9cda2;
	color: #ffffff;
}

#map_section .contents ul li a:hover::before {
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
}



/* スマートフォン用 */
@media screen and (max-width: 768px) {

	#map_section .container {
		padding: 0 20px;
	}

	#map_section .contents ul {
		display: block;
	}

	#map_section .contents ul li {
		width: 100%;
		padding-bottom: 30px;
	}

	#map_section .contents ul li a {
		max-width: none;
	}

}


