@charset "UTF-8";


/* ------------------------------
	.sitemap
------------------------------ */
.sitemap{
	padding: 12rem 0 15rem;
}

@media screen and (max-width: 767px){
	.sitemap{
		padding: 5rem 2rem;
	}
}

.sitemap .sitemap_wrap{
	width: 100%;
	max-width: 81rem;
	margin: 0 auto;
}


@media screen and (max-width: 767px){
	.sitemap{
		padding: 8rem 0 17rem;
	}

	.sitemap .sitemap_wrap{
		max-width: calc(100% - 4rem);
	}
}

/* ------------------------------
	.sitemap
------------------------------ */
.sitemap_item{
	margin-bottom: 3.8rem;
}

@media screen and (max-width: 767px){
	.sitemap_item{
		margin-bottom: 3.5rem;
	}
}

.sitemap_item .ttl {
	color: #000;
	font-size: 1.9rem;
	font-weight: 500;
	margin-bottom: 2rem;
	padding-bottom: .5rem;
	border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px){
	.sitemap_item .ttl {
		margin-bottom: 1.5rem;
	}
}

.sitemap_item .list {
	display: flex;
	flex-direction: flex-start;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 1.5rem 3.5rem;
}

.sitemap_item .list li a {
	color: #000;
	font-size: 1.3rem;
	text-decoration: underline;
}

@media screen and (any-hover: hover) {
	.sitemap_item .list li a:hover {
		opacity: 0.7;
	}
}

.sitemap_back {
	margin-top: 14rem;
	text-align: center;
}

@media screen and (max-width: 767px){
	.sitemap_back {
		margin-top: 6rem;
	}
}

.sitemap_back a {
	text-align: left;
	display: inline-block;
	font-size: 1.6rem;
	position: relative;
	padding: 0 4rem 1rem 0;
	min-width: 20rem;
}

@media screen and (any-hover: hover) {
	.sitemap_back a:hover {
		opacity: 0.7;
	}
}

.sitemap_back a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(17, 52, 69, 0.3);
}

.sitemap_back a:after {
	content: '';
	position: absolute;
	bottom: 2rem;			
	right: 0;
	width: 1.3rem;
	height: 1rem;
	background: url(../img/sitemap/icn_sitemap_arw.svg) no-repeat center center/contain;
}