@charset "utf-8";
/* CSS Document */

.sitemap__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 3rem 6rem;
	margin-bottom: 10rem;
	@media (max-width: 767.98px) {
		justify-content: center;
	}
}

.sitemap__content {
	display: grid;
	gap: 4vw 0px;
	max-width: 515px;
	width: 100%;
	@media (max-width: 767.98px) {
		gap: 8vw 0px;
	}
}

.page_block {
	display: grid;
	row-gap: 2rem;
	align-items: center;
}

.page_ttl {
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	font-weight: bold;
	background: #F5F5F5;
	border-left: 12px solid #027DC5;
	display: flex;
	align-items: center;
	position: relative;
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
	&::after {
		content: '';
		background: url("../img/common/icon-arrow-blue_02.svg");
		background-repeat: no-repeat;
		background-size: contain;
		display: inline-block;
		width: 16px;
		height: 19px;
		right: 30px;
		position: absolute;
	}
}

.page_ttl a,
.page_ttl p {
	display: flex;
	align-items: center;
	padding: 1.8rem 3rem;
	width: 100%;
	position: relative;
	&:hover {
		opacity: 0.6;
		transition: 0.6s;
	}
	@media (max-width: 767.98px) {
		padding: 2vw 5vw;
	}
}



.page_ttl a[target="_blank"]::after {
    content: '';
	background: url("../img/common/icon-window.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 17px;
	height: 14px;
	right: -10px;
	position: relative;
}

.child_page {
	display: grid;
	row-gap: 1rem;
}

.child_page li {
	color: #333333;
	display: flex;
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
	&::before {
		content: '';
		display: inline-block;
		background: #333333;
		width: 10px;
		height: 1px;
		margin-right: 5px;
		top: 11px;
		position: relative;
	}
	&:hover {
		text-decoration: underline;
		opacity: 0.6;
		transition: 0.6s;
	}
}














