@charset "UTF-8";

/* ヒーローエリア */
.hero {
	background-image: url(../img/hero-sitemap.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 554px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .container {
	padding: 0px 30px;
}

.hero .container img.ttl {
	max-width: 336x;
	width: 100%;
	height: auto;
}

/* SITE MAP */
.sitemap {
	padding: 60px 30px;
}

.sitemap .container {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}

.sitemap .head {
	border-bottom: 1px solid #707070;
	margin-bottom: 30px;
}

.sitemap h2 {
	text-align: center;
	font-size: 24px;
	font-family: 'Noto Serif JP', serif;
	padding-bottom: 30px;
}

.sitemap h3 {
	font-size: 18px;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	padding-bottom: 20px;
}

.sitemap div.box {
	margin-bottom: 40px;
}

.sitemap ul li:nth-child(2n+1) {
	background: #898989;
}

.sitemap ul li:nth-child(2n) {
	background: #aaaaaa;
}

.sitemap ul li {
	padding: 6px 8px;
	margin: 2px;
}

.sitemap ul li a {
	color: #fff;
	display: block;
}

.sitemap img {
	display: block;
	width: 100%;
	height: auto;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	.sitemap div.box {
	display: flex;
	}
	.sitemap div.box ul {
	flex: 1 1 25%;
	}
}