@charset "utf-8";
/* ===================================================================
CSS
 file name  :  sitemap.css
=================================================================== */
/* =====================================
サイトマップ
======================================== */
.sitemap{
	padding-bottom: 150px;
}
.sitemap a{
	color: #333;
	text-decoration: none;
}
.sitemap a:hover{
	color: #417FCE;
	text-decoration: underline;
}
@media print, screen and (min-width: 769px) {
	ul.sitemap_list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 30px;
	}
	ul.sitemap_list > li{
		width: 30%;
		margin-bottom: 4em;
	}
}
ul.sitemap_list > li .sub_title{
	background: #E5ECF6;
	color: #202466;
	padding: 0.5em 1em;
	font-weight: 500;
}
ul.sitemap_list > li li{
	margin-top: 0.8em;
}
.sitemap_bottom{
	border-top: 1px solid #E5ECF6;
	padding-top: 4em;
}
@media print, screen and (min-width: 769px) {
	.sitemap_bottom ul{
		display: flex;
	}
	.sitemap_bottom ul li{
		margin-right: 5em;
	}
}
@media screen and (max-width: 768px) {
	.sitemap{
		padding-bottom: 100px;
	}
	ul.sitemap_list{
		margin-top: 30px;
	}
	ul.sitemap_list > li{
		margin-bottom: 3em;
	}
	.sitemap_bottom{
		padding-top: 3em;
	}
	.sitemap_bottom ul li{
		margin-bottom: 0.8em;
	}
}
@media screen and (max-width: 480px) {
	.sitemap{
		padding-bottom: 80px;
	}
}