/**
 * Site Map Page Styles
 *
 * Mobile-first: base 400px, desktop overrides at 768px+.
 *
 * @package Okayama
 */



.page-corporate-sitemap {
	background-color: #f3f8e7;
}



.sitemap-title {
	text-align: center;
	padding: 40px 20px 0;
}

.sitemap-title__main {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(28px, calc(23.2px + 1.2vw), 40px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

.sitemap-title__en {
	font-family: 'Reddit Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #6bb529;
	line-height: 1.6;
	margin: 4px 0 0;
	text-transform: uppercase;
}



.sitemap-card {
	background-color: #fff;
	border-radius: 18px;
	padding: 40px 20px;
	margin: 40px 20px 0;
}



.sitemap-group {
	margin-bottom: 60px;
}

.sitemap-group:last-child {
	margin-bottom: 0;
}

.sitemap-group__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(23px, calc(18.2px + 1.2vw), 35px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

.sitemap-group__divider {
	border: none;
	border-top: 1px solid #d9d9d9;
	margin: 20px 0;
}



.sitemap-sub {
	margin-bottom: 20px;
}

.sitemap-sub:last-child {
	margin-bottom: 0;
}

.sitemap-sub__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(18px, calc(15.6px + 0.6vw), 24px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	margin: 0;
}



.sitemap-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}

.sitemap-links--large {
	gap: 16px 32px;
}



.sitemap-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
}

.sitemap-link span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.sitemap-link:hover span {
	color: #6bb529;
}


.sitemap-link--large span {
	font-size: clamp(18px, calc(15.6px + 0.6vw), 24px);
	font-weight: 700;
	line-height: 1.6;
}


.sitemap-arrow {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}



@media (min-width: 768px) {
	.sitemap-title {
		padding: 60px var(--corp-pad-side) 0;
	}

	.sitemap-card {
		width: 100%;
		max-width: 1100px;
		margin: 60px auto 0;
		border-radius: 24px;
		padding: 64px clamp(40px, 6vw, 80px);
	}

	.sitemap-group {
		margin-bottom: 80px;
	}

	.sitemap-links {
		gap: 17px 40px;
	}

	.sitemap-links--large {
		gap: 20px 40px;
	}
}
