/* =========================================================
   サイトマップページ
========================================================= */

.tks-sitemap-page {
	position: relative;
	z-index: 3;
	background: #fff;
	color: #111;
}

.tks-page-hero {
	position: relative;
	overflow: hidden;
	padding: 190px 40px 120px;
	color: #fff;
}

.tks-page-hero--sitemap {
	background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url("/wp-content/uploads/2026/04/inquiry-bg.webp") center / cover no-repeat;
}

.tks-page-hero__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.tks-page-hero__heading {
	position: relative;
	display: inline-block;
	margin-bottom: 28px;
}

.tks-page-hero__heading-bg {
	position: absolute;
	top: -12px;
	left: -10px;
	z-index: 3;
	width: calc(100% + 20px);
	height: 72px;
	background: linear-gradient(90deg, #4689ca 0%, #133a7a 100%);
	transform: scaleX(0);
	transform-origin: left center;
	animation: tksHeadingBgBox 1.05s cubic-bezier(0.76, 0, 0.24, 1) 0.25s forwards;
}

.tks-page-hero__title {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #fff;
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.04em;
	opacity: 0;
	animation: tksHeadingText 0.01s linear 0.87s forwards;
}

.tks-page-hero__subtitle {
	position: relative;
	z-index: 2;
	margin-top: 10px;
	color: #2f72b8;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.12em;
	opacity: 0;
	filter: blur(10px);
	animation: tksBlurFade 0.8s ease 1.2s forwards;
}

.tks-page-hero__lead {
	max-width: 680px;
	margin: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.04em;
	opacity: 0;
	transform: translateY(28px);
	animation: tksFadeUp 0.75s ease 1.37s forwards;
}

.tks-sitemap-section {
	position: relative;
	padding: 110px 40px 120px;
	background: linear-gradient(180deg, #f7f9fc 0%, #fff 26%, #fff 100%);
}

.tks-sitemap-section__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.tks-sitemap-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.tks-sitemap-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 150px;
	padding: 30px 32px;
	color: #111;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(19, 58, 122, 0.12);
	border-radius: 18px;
	box-shadow: 0 18px 46px rgba(19, 58, 122, 0.08);
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.tks-sitemap-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, #5aa4e8 0%, #174f9f 100%);
}

.tks-sitemap-item::after {
	content: "›";
	position: absolute;
	right: 28px;
	top: 50%;
	color: #2f72b8;
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
	transform: translateY(-50%);
	transition: transform 0.25s ease;
}

.tks-sitemap-item:hover {
	transform: translateY(-6px);
	border-color: rgba(47, 114, 184, 0.28);
	box-shadow: 0 24px 58px rgba(19, 58, 122, 0.14);
}

.tks-sitemap-item:hover::after {
	transform: translate(5px, -50%);
}

.tks-sitemap-item__en {
	display: block;
	margin-bottom: 10px;
	color: #2f72b8;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.14em;
}

.tks-sitemap-item__ja {
	display: block;
	padding-right: 34px;
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0.04em;
}

@media (max-width: 959px) {
	.tks-page-hero {
		padding: 140px 24px 82px;
	}

	.tks-page-hero__title {
		font-size: 34px;
	}

	.tks-page-hero__subtitle {
		font-size: 16px;
	}

	.tks-page-hero__lead {
		font-size: 14px;
		line-height: 1.9;
	}

	.tks-sitemap-section {
		padding: 78px 20px 86px;
	}

	.tks-sitemap-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tks-sitemap-item {
		min-height: 118px;
		padding: 24px 26px;
		border-radius: 16px;
	}

	.tks-sitemap-item::after {
		right: 22px;
	}

	.tks-sitemap-item__ja {
		font-size: 22px;
	}
}