<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.sitemap-list {
	margin-top: 50px;
	margin-bottom: 50px;
}
.sitemap-list li {
	margin-bottom: 20px;
}
.sitemap-list li a {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 100%;
	height: 50px;
	padding-left: 25px;
	background-color: #F0F3F5;
	border-radius: 7px;
	color: #132743;
	font-size: 2.4rem;
	font-weight: bold;
	position: relative;
}
.sitemap-list li a::before {
	content: "";
	display: block;
	width: 3px;
	height: 27px;
	background-color: #2faee5;
	position: absolute;
	top: 11.5px;
	left: 10px;
}
.sitemap-list li a::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url(../img/common/icn_arrow.svg) 0 0 no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 17px;
	right: 25px;
	transition:  right 0.3s;
}
.sitemap-list li:hover a::after {
	right: 20px;
}
.sitemap-list2 {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.sitemap-list2 li {
	padding: 0 5%;
	margin-bottom: 0;
	box-sizing: border-box;
	width: 50%;
}
.sitemap-list2 li a::before {
	content: "●";
	color: #2faee5;
	font-size: 2rem;
}
@media screen and (min-width: 801px) {
	.sitemap-list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.sitemap-list li {
		width: 48%;
	}
}
@media screen and (max-width: 800px) {
	.sitemap-list li a {
		font-size: 2rem;
	}
	.sitemap-list2 li {
		padding: 0 5% 0 1em;
		text-indent: -1em;
	}
}
</pre></body></html>