@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;
	width: 34.5%;
	padding: 0 0 60px;
	border: 0 none;
	background-color: transparent;
	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 solid var(--co-gray30);
	z-index: -1;
}
#sitemap table tr th a {
	position: relative;
	padding-left: 1.3em;
	padding-right: 0.5em;
	background-color: var(--co-white);
	color: var(--co-black);
}
#sitemap table tr th a::before {
	position: absolute;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background-image: url("../img/arrow_s.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	top: 50%;
	left: 0;
	transform: var(--transformY);
}
#sitemap table tr th a:hover {
	text-decoration: none;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--co-sky);
}
#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 {
	background-image: none;
	background-color: var(--co-gray20);
	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; }
}




