@charset "UTF-8";

/*================================================
 *  サイトマップ用
 ================================================*/

.sitemap_area {
	width: 800px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	font-size: 18px;
}
.sitemap_area .sitemap_list {
	width: 380px;
}
.sitemap_area .sitemap_list > li:nth-child(n+2) {
	margin-top: 20px;
}
.sitemap_area .sitemap_list > li > a,
.sitemap_area .sitemap_list > li > div {
	border: 1px solid #2e9568;
	border-radius: 100vh;
	color: #2e9568;
	display: block;
	padding: 0.6em 0;
	text-align: center;
	position: relative;
	font-weight: bold;
	line-height: 1.5;
}
.sitemap_area .sitemap_list > li > a::after {
	position: absolute;
	content: '';
	top: 50%;
	right: 1em;
	width: 0.5em;
	height: 0.5em;
	border-top: 2px solid;
	border-right: 2px solid;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.sitemap_area .sitemap_list > li > a:hover {
	background-color: #2d814f;
	color: #fff;
	opacity: 1;
}

.sitemap_area .sitemap_list li .sub {
	padding: 15px 0 0 10px;
}
.sitemap_area .sitemap_list li .sub li:nth-child(n+2) {
	margin-top: 0.4em;
}
.sitemap_area .sitemap_list li .sub li a {
	display: block;
	position: relative;
	padding-left: 1em;
	line-height: 1.5;
}
.sitemap_area .sitemap_list li .sub li a::before {
	position: absolute;
	content: '';
	top: 0.5em;
	left: 0;
	width: 0.45em;
	height: 0.45em;
	border-top: 1px solid #2d814f;
	border-right: 1px solid #2d814f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}





/*================================================
 *  タブレット/スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {


.sitemap_area {
	width: 80vw;
	display: block;
	font-size: 4.5vw;
}
.sitemap_area .sitemap_list {
	width: 100%;
}
.sitemap_area .sitemap_list + .sitemap_list,
.sitemap_area .sitemap_list > li:nth-child(n+2) {
	margin-top: 4vw;
}
.sitemap_area .sitemap_list li .sub {
	padding: 3vw 0 0 3vw;
}











}