.sitemapBox

.sitemap {
	text-align: left;
}

.sitemap .sitemap__item {
	font-size: 3.6rem;
	font-weight: 700;
	padding: 0.75em 0em;
	border-top: 4px solid var(--green-2);
}

.sitemap .sitemap__item > a,
.sitemap .sitemap__item > span,
.sitemap .subNav__item > a {
	position: relative;
	margin-left: 1.5em;
}

.sitemap .sitemap__item > a,
.sitemap .subNav__item > a {
	opacity: 1;
	transition: var(--hover-1);
}

@media (hover: hover) {
	.sitemap .sitemap__item:hover > a,
	.sitemap .subNav__item:hover > a {
		opacity: var(--opacity);
	}
}

.sitemap .sitemap__item > a::before,
.sitemap .sitemap__item > span::before,
.sitemap .subNav__item > a::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: -0.75em;
	top: 50%;
	width: 0.4em;
	height: 0.8em;
	transform: translateY(-50%);
	background-image: url(../img/common/tri-icon.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.sitemap .sitemap__item:last-of-type {
	border-bottom: 4px solid var(--green-2);
}

@media only screen and (max-width: 767px) {
	.sitemap .sitemap__item {
		font-size: 2.8rem;
	}	
}

.sitemap .subNav {
	position: relative;
	margin-top: 48px;
	margin-left: 40px;
}

.sitemap .subNav__item {
	position: relative;
	font-size: 2.4rem;
	margin-left: 40px;
}

.sitemap .subNav__item ~ .subNav__item {
	margin-top: 1.5em;
}

.sitemap .subNav__item > a {
	font-weight: 500;
}

.sitemap .subNav::before {
	content: "";
	display: block;
	position: absolute;
	top: -32px;
	left: 0;
	z-index: -1;
	bottom: 0;
	width: 0;
	border-left: 2px solid black;
}

.sitemap .subNav__item::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: -40px;
	width: 40px;
	height: 2px;
	background-color: black;
}

.sitemap .subNav__item:last-of-type::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% + 1px);
	left: -40px;
	z-index: -1;
	height: 100%;
	width: 2px;
	background-color: #fff;
}

@media only screen and (max-width: 767px) {
	.sitemap .subNav {
		margin-top: 32px;
		margin-left: 24px;
	}

	.sitemap .subNav::before {
		top: -16px;
	}

	.sitemap .subNav__item {
		position: relative;
		font-size: 2.0rem;
		margin-left: 24px;
	}	

	.sitemap .subNav__item::before {
		left: -24px;
		width: 24px;
	}

	.sitemap .subNav__item:last-of-type::after {
		left: -24px;
	}
}