@charset "UTF-8";

/*--------------------------------------------------------------------
sitemap.html
sitemap.css
--------------------------------------------------------------------*/

/*------------sitemap---------------------------------------------------------------*/
#sitemap table {
	width: 100%;
	margin-top: 1em;
	border-collapse: collapse;
	border: 0 none;
}
#sitemap table tr th {
	position: relative;
	padding: 0 2em 60px 0;
	border: 0 none;
	background-color: transparent;
	white-space: nowrap;
	text-align: left;
	vertical-align: top;
}
#sitemap table tr th::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	top: 0.7em;
	left: 0;
	border-top: 1px dashed var(--co-gray30);
	z-index: -1;
}
#sitemap table tr th a {
	position: relative;
	padding-left: 1em;
	padding-right: 0.5em;
	background-color: var(--co-white);
}
#sitemap table tr th a::before {
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 9px;
	background-color: var(--co-green);
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	left: 0;
	transform: var(--transformY);
	transition: 0.5s;
	z-index: 5;
}
#sitemap table tr th a:hover {
	text-decoration: none;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--co-green);
}
#sitemap table tr th ul {
	width: 100%;
	padding-left: 1em;
	list-style: none;
}
#sitemap table tr th ul li + li { margin-top: 0.1em; }
#sitemap table tr th ul li a::before {
	width: 8px;
	height: 8px;
	background-image: none;
	background-color: var(--co-lime);
	border-radius: 50%;
	clip-path: none;
}
#sitemap table tr td {
	width: auto;
	padding: 0 0 60px 0.8em;
	border: 0 none;
	text-align: left;
	vertical-align: top;
}
#sitemap table tr:last-child th,
#sitemap table tr:last-child td { padding-bottom: 0; }

@media (max-width: 480px) {
	#sitemap table tr th,
	#sitemap table tr td {
		display: block;
		padding: 0;
		background-color: transparent;
		border: 0 none;
	}
	#sitemap table tr th {
		width: 100%;
		white-space: nowrap;
	}
	#sitemap table tr th::before { display: none; }
	#sitemap table tr td {
		padding-left: 1em;
		padding-bottom: 30px;
	}
	#sitemap table tr:last-child td { padding-bottom: 0; }
}




