@charset "UTF-8";
.subpage {
	background: var(--c_black01);
}
.subPage .l-inner {
	width: 86.1111%;
	max-width: 1240px;
}


/*-------------------------------
 Page Header
-------------------------------*/
.pageHeader {
	position: relative;
	padding: 100px 0 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}
.pageHeader.pageHeader-common {
	background: linear-gradient(to bottom, rgba(127, 29, 29, 0.2) 0px, var(--c_black01) 100%);
}
.pageHeader__orbLayer {
	position: absolute;
	inset: 0;
	opacity: 0.6;
	pointer-events: none;
	overflow: hidden;
}
.pageHeader__orb {
	position: absolute;
	filter: blur(100px);
	border-radius: 50%;
	animation: pageHeaderPulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite backwards;
}
.pageHeader__orb--red {
	width: 400px;
	height: 400px;
	background: var(--c_red01);
	bottom: -200px;
	left: -100px;
	opacity: 0.4;
}
.pageHeader__orb--purple {
	width: 400px;
	height: 400px;
	background: var(--c_purple01);
	top: -250px;
	right: -100px;
	opacity: 0.4;
	animation-delay: 2.5s;
}
.pageHeader__container {
	position: relative;
	z-index: 1;
}
.pageHeader__title {
	font-size: 52px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 25px;
	color: var(--c_white);
	letter-spacing: 0;
}
.pageHeader__title--gradient {
	background: linear-gradient(to right, var(--c_purple06) 0%, var(--c_red04) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: 900;
}
.pageHeader__lead {
	font-size: 18px;
	line-height: 1.8;
	color: var(--t_white0106);
}

@keyframes pageHeaderPulse {
	0%, 100% {
		opacity: 0.1;
		transform: scale(0.95);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.05);
	}
}

@media screen and (max-width: 767px) {
	.pageHeader {
		padding: 60px 0 50px;
	}
	.pageHeader__orbLayer {
		opacity: 0.7;
	}
	.pageHeader__orb {
		animation: pageHeaderPulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite backwards;
	}
	.pageHeader__orb--red {
		width: 300px;
		height: 300px;
		top: 45%;
		left: 50%;
		bottom: auto;
		transform: translate(-65%, -50%);
		filter: blur(60px);
	}
	.pageHeader__orb--purple {
		width: 300px;
		height: 300px;
		top: -35%;
		left: -30%;
		right: auto;
		transform: translate(-35%, -50%);
		filter: blur(60px);
	animation-delay: 1.5s;
	}
	.pageHeader__title {
		margin-bottom: 24px;
		font-size: 40px;
		white-space: nowrap;
	}
	.pageHeader__lead {
		font-size: 16px;
		line-height: 1.8;
		padding-left: 15px;
		padding-right: 15px;
	}
}