@charset "UTF-8";

/*--------------------------------------------------------------------
sitemap.html
sitemap.css
--------------------------------------------------------------------*/

/*------------sitemap---------------------------------------------------------------*/
#sitemap table {
	width: 100%;
	margin-top: 1em;
	border-collapse: collapse;
}
#sitemap table tr th {
	position: relative;
	width: 34.5%;
	padding: 0 0 60px;
	border: 0 none;
	text-align: left;
	vertical-align: top;
}
#sitemap table tr th::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	border-bottom: 1px solid var(--co-gray30);
	top: 0.75em;
	left: 0;
	z-index: -1;
}
#sitemap table tr th a {
	padding-left: 1em;
	padding-right: 0.5em;
	background-color: #fff;
	background-image: url("../img/arrow01.png");
	background-repeat: no-repeat;
	background-position: left center;
	color: var(--co-black);
}
#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 { background-image: url("../img/arrow02.png"); }
#sitemap table tr th ul ul li a { background-image: url("../img/arrow03.png"); }
#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: 979px) {
	#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: wrap;
		background: none;
	}
	#sitemap table tr th::before { display: none; }
	#sitemap table tr td {
		padding-left: 1em;
		padding-bottom: 20px;
	}
	#sitemap table tr:last-child td { padding-bottom: 0; }
}




