@charset "UTF-8";

.l-page-ttl {
	background-image: url("../img/sitemap/Sitemap_page-ttl.webp");
}

/* サイトマップ */


.p-sitemap {
	margin: 80px auto 160px 0;
}

.p-sitemap__content {
	max-width: 880px;
	margin: 0 auto;
}

.p-sitemap__list > li {
	padding: 36px 0;
	border-bottom: 1px solid var(--color_gray04);
	display: flex;
	justify-content: space-between;
	gap: 8px 0;
}

.p-sitemap__item {
	font-size: clamp(18px, calc(24 / 768 * 100vw), 24px);
	line-height: 1.5;
	font-weight: var(--fw_jp_bold);
	letter-spacing: 0.1em;
	width: 50%;
}

.p-sitemap__list-child {
	line-height: 2.5;
	width: 55%;
	padding-left: 1em;
}

.p-sitemap__list-child > li {
	padding: 0px 0 8px 0;
}


.p-sitemap__list a {
	color: var(--color01);
	text-decoration: none;
	display: flex;
	position: relative;
	padding-left: 1em;
}
.p-sitemap__list a:hover {
	color: var(--color02);
}

.p-sitemap__item a {
	padding-right: 1.5em;
}

.p-sitemap__item .arrow{
	width: 20px;
    height: auto;
    margin-left: 80px;
	transition: transform 0.3s ease;
}

.p-sitemap__item:hover .arrow{
	transform: translateX(6px);
}

.p-sitemap__list-child a {
	padding: 0 0 0 40px;
	color: var(--color_black);
}

.p-sitemap__list-child a:hover {
	color: var(--color02);
}

.p-sitemap__list-child a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
	width: 0.4em;
	height: 0.4em;
	border: 1px solid currentColor;
	border-bottom: none;
	border-left: none;
}



/* スマートフォン用 - ブレイクポイント768 */
@media screen and (max-width: 768px) {

	/* サイトマップ */
	.p-sitemap { margin: 60px auto; }
	.p-sitemap__content { max-width: 480px; }
	.p-sitemap__list > li { padding: 20px 0; flex-direction: column; }
	.p-sitemap__item { width: 100%; }
	.p-sitemap__list-child { width: 100%; }

}