@charset "UTF-8";

/* サイトマップ */
#page-title-block + .wrapper {
	margin-bottom: var(--space9);
}

#page-title-block + .wrapper .content {
	max-width: 800px;
	margin: 0 auto;
}

#page-title-block + .wrapper .list > li {
	padding: var(--space3) 0;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space1) 0;
}

#page-title-block + .wrapper .list > li:has(.list-child) {
	flex-direction: column;
}

#page-title-block + .wrapper .list .item {
	font-size: 18px;
	line-height: 1.5;
	font-weight: var(--fw_medium);
	letter-spacing: 0.05em;
}

#page-title-block + .wrapper .list-child {
	line-height: 1.5;
	font-weight: var(--fw_medium);
	letter-spacing: 0.05em;
	padding-left: 1em;
}

#page-title-block + .wrapper .list-child > li {
	padding: 0.5em 0 0.5em 1.4em;
}

#page-title-block + .wrapper .list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	gap: 0 1em;
}

#page-title-block + .wrapper .list a {
	text-decoration: none;
	display: block;
	position: relative;
	padding-left: 1em;
	display: flex;
	align-items: center;
}

#page-title-block + .wrapper .list a:hover {
	color: var(--color01);
	transition: var(--transition_primary);
}

#page-title-block + .wrapper .list a:hover::before {
	transform: translateX(0.2em);
	opacity: 0.7;
	transition: var(--transition_primary);
}

#page-title-block + .wrapper .list a::before {
	content: "";
	position: relative;
	display: inline-block;
	background-image: url(../img/common/arrow-right_color01.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	width: 1em;
	height: 1em;
	aspect-ratio: 1 / 1;
	margin-right: 0.4em;
}



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

	/* サイトマップ */
	#page-title-block + .wrapper {
		margin-bottom: var(--space6);
	}

	#page-title-block + .wrapper .content {
		max-width: 480px;
	}

	#page-title-block + .wrapper .list > li {
		padding: var(--space2) 0;
		flex-direction: column;
	}

	#page-title-block + .wrapper .list .item {
		font-size: 16px;
		width: 100%;
	}

	#page-title-block + .wrapper .list-child {
		width: 100%;
	}	

}