@charset "utf-8";

/* ------------------------------
 サイトマップ（PC）
------------------------------ */
.sitemap {
	border-top: 1px solid #ddd;
	line-height: 22px;
}
.sitemap > li {
	padding: 39px 0;
	border-bottom: 1px solid #ddd;
}
.sitemap > li > a {
	display: inline-block;
	position: relative;
	padding-right: 32px;
	color: #2b2b2b;
	font-size: 2.1rem;
	font-weight: bold;
	text-decoration: none;
}
.sitemap > li > a::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 22px;
	height: 22px;
	margin: auto 0;
	border-radius: 50%;
	background-color: #c11920;
}
.sitemap > li > a::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 8px;
	width: 6px;
	height: 6px;
	margin: auto 0;
	border-right: solid 2px #fff;
	border-bottom: solid 2px #fff;
	transform: rotate(-45deg);
}
.sitemap > li > a[target="_blank"]::after {
	top: 5px;
	bottom: auto;
	right: 5px;
	width: 11px;
	height: 11px;
	margin: auto 0;
	border: 0;
	background: url(../img/icon_blank_white.svg) no-repeat center center / cover;
	transform: rotate(0);
}
.sitemap > li > ul > li > a {
	text-decoration: none;
	font-weight: bold;
}
.sitemap > li > ul > li > a::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 0 3px 5px;
	border-top: 1px solid #6c7889;
	border-right: 1px solid #6c7889;
	vertical-align: middle;
	transform: rotate(45deg);
}
@media print, screen and (min-width: 768px) {
	.sitemap > li {
		display: flex;
		column-gap: 50px;
	}
	.sitemap > li > a {
		transition: .3s ease-in-out;
	}
	.sitemap > li > a:hover {
		opacity: 1;
		color: #c11920;
	}
	.sitemap > li > ul {
		display: flex;
		column-gap: 40px;
	}
}
/* ------------------------------
 サイトマップ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.sitemap > li {
		padding: 23px 0;
	}
	.sitemap > li > a {
		font-size: 1.8rem;
	}
	.sitemap > li > ul {
		margin-top: 15px;
	}
	.sitemap > li > ul > li:not(:last-child) {
		margin-bottom: 10px;
	}
}