@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  サイトマップ
**************************************************
--------------------------------------------------*/
.contents_01 {
	max-width: 800px;
}

.contents_01 ul .indent {
	padding-left: 1em;
}

.contents_01 ul a {
	position: relative;
	display: block;
	width: 100%;
	padding: 15px 30px 15px 0;
	border-top: var(--gray-line) 1px solid;
	transition: all .5s ease;
}

.contents_01 ul li:last-child a {
	border-bottom: var(--gray-line) 1px solid;
}

.contents_01 ul a:hover {
	color: var(--blue-dark);
}

.contents_01 ul a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	display: block;
	width: 10px;
	height: 10px;
	border-top: var(--gray-darker) 2px solid;
	border-right: var(--gray-darker) 2px solid;
	transition: all .5s ease;
}

.contents_01 ul a:hover::after {
	right: 5px;
	border-top: var(--blue-dark) 2px solid;
	border-right: var(--blue-dark) 2px solid;
}

/* SP */
@media screen and (max-width: 767px) {
	.contents_01 ul a {
		font-size: 1.4rem;
	}
}
