@charset "UTF-8";

/* ===============================================
CSS Information

FileName:sitemap.css
Author:MML
Last edit:20191001

=============================================== */
.contentBox.sitemap {
	column-count: 2;
	column-gap: 0;
}

.contentBox.sitemap {
	padding: 5px;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.contentBox.sitemap section {
	margin: 0 5% 40px;
}

.contentBox.sitemap section h2 {
	padding-left: 5px;
	border-bottom: 1px solid #333;
}

.contentBox.sitemap section h2 a {
	font-size: 1.6rem;
	text-decoration: none;
	color: #1655AA;
}

.contentBox.sitemap section h2::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 5px;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent #1655AA;
}

.contentBox.sitemap section ul {
	margin-left: 20px;
}
.contentBox.sitemap section li {
	margin-top: .5em;
}

.contentBox.sitemap section li::before {
	content: "・";
	display: inline-block;
	color:  #1655AA;
}


@media screen and (max-width: 767px) {
	.contentBox.sitemap {
		column-count: 1;
		column-gap: 0;
	}

	.contentBox.sitemap section {
		margin: 0 3% 40px;
	}

}