@charset "UTF-8";

/*================================================
 *  サイトマップ
 ================================================*/
section#sitemap_area .circle_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
section#sitemap_area .circle_list li {
	line-height: 1;
	padding: 0.5em 0 0.5em 1.1em;
	color: #333;
	font-weight: bold;
	width: 325px;
	border-bottom: #ccc 1px dotted;
	position: relative;
}
section#sitemap_area .circle_list li:nth-child(n+3) {
	margin-top: 20px;
}
section#sitemap_area .circle_list li::before {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #c9151d;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
section#sitemap_area .circle_list li a {
	text-decoration: underline;
}
section#sitemap_area .circle_list li a:hover {
	text-decoration: none;
}

/*================================================
 *  タブレット向けデザイン
 ================================================*/
@media screen and (max-width: 870px) {
	section#sitemap_area .circle_list {
		display: block;
		margin-top: -0.8em;
	}
	section#sitemap_area .circle_list li {
		padding: 0.8em 0 0.8em 1em;
	}
	section#sitemap_area .circle_list li:nth-child(n+3) {
		margin-top: 0;
	}
}
/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width: 500px) {
	section#sitemap_area .circle_list {
		display: block;
		margin-top: 0;
	}
	section#sitemap_area .circle_list li {
		font-size: 5vw;
		padding: 0;
		width: 100%;
		text-indent: 0;
	}
	section#sitemap_area .circle_list li:nth-child(n+3) {
		margin-top: 0;
	}
	section#sitemap_area .circle_list li::first-letter {
		color: inherit;
	}
	section#sitemap_area .circle_list li::before {
	content: none;
	}
	section#sitemap_area .circle_list li a {
		display: block;
		text-decoration: none;
		padding: 4.6vw 3vw;
		position: relative;
	}
	section#sitemap_area .circle_list li a::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 3%;
		width: 8vw;
		height: 8vw;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transform-origin: top right;
		transform-origin: top right;
		border-top: 4px solid #363636;
		border-right: 4px solid #363636;
	}
}
