@charset "UTF-8";

/*--------------------------------------------------------------------
sitemap.html
sitemap.css
--------------------------------------------------------------------*/

/*------------sitemap---------------------------------------------------------------*/
#sitemap table { border: 0 none; }
#sitemap table tr th,
#sitemap table tr td {
	width: auto;
	padding: 0 0 30px;
	background-color: transparent;
	border: 0 none;
}
#sitemap table tr:nth-last-of-type(1) th,
#sitemap table tr:nth-last-of-type(1) td { padding-bottom: 0; }
#sitemap table tr th {
	position: relative;
	padding-right: 2em;
}
#sitemap table tr th::before {
	position: absolute;
	display: block;
	content: "";
	top: 0.7em;
	width: 100%;
	border-top: 1px dashed var(--co-gray30);
	z-index: -1;
}
#sitemap table tr td { padding-left: 0.5em; }
#sitemap table tr th a {
	position: relative;
	display: inline-block;
	padding: 0 0.5em 0 0.8em;
	background-color: var(--co-white);
	color: var(--co-black);
	transition: 0.5s;
}
#sitemap table tr th a::before {
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 9px;
	background-color: var(--co-orange);
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	left: 0;
	transform: var(--transformY);
	transition: 0.5s;
}
#sitemap table tr th a:hover { color: var(--co-orange); }
#sitemap table tr th ul li { padding-left: 1em; }
#sitemap table tr th ul li a::before {
	width: 8px;
	height: 8px;
	background-color: #ffb599;
	border-radius: 50%;
	clip-path: none;
}
#sitemap table tr th ul ul li a::before {
	width: 4px;
	height: 4px;
	background-color: var(--co-navy);
}

@media (max-width: 979px) {
	#sitemap table tr th {
		padding-right: 0;
		padding-bottom: 0.25em;
		background: none;
	}
	#sitemap table tr th::before { display: none; }
	#sitemap table tr td { padding-left: 1em; }
}