@charset "UTF-8";
/* CSS Document */
/* 基本設定 */
/* --------------------------------------------------
section size
-------------------------------------------------- */
.sub-page-contents {
	background: #efefef;
}

.sub-page-contents .inner {
	max-width: 120rem;
	width: 90%;
	margin: 0 auto;
}

/* ===============================
KV
=============================== */
.sub-mv {
	position: relative;
	overflow: hidden;
}
.sub-mv__image img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 42rem;
	object-fit: cover;
}
.sub-mv__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.18);
	pointer-events: none;
}
.sub-mv__project {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	width: 42rem;
	max-width: 46%;
}
.sub-mv__project img {
	display: block;
	width: 100%;
	height: auto;
}

.sub-mv__titleWrap {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
}

.sub-mv__title {
	position: relative;
	display: inline-block;
	padding-left: 0.55em;
	font-size: 7.2rem;
	line-height: 1.15;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.sub-mv__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.12em;
	height: 1.15em;
	background: #fff;
}

/* ===============================
導入
=============================== */
.sub-intro {
	padding: 8rem 0 10rem;
	background: url("../img/teaser/news-bg@2x.webp") repeat-y center top;
	background-size: cover;
	text-align: center;
}

.sub-intro__inner {
	max-width: 100rem;
}

.sub-intro__icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3.2rem;
	margin-bottom: 3.8rem;
}

.sub-intro__icons .icon {
	display: block;
	width: 3.2rem;
	height: 3.2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.sub-intro__icons .icon01 {
	background-image: url("../img/sub/icon01.svg");
}
.sub-intro__icons .icon02 {
	background-image: url("../img/sub/icon02.svg");
}
.sub-intro__icons .icon03 {
	background-image: url("../img/sub/icon03.svg");
}
.sub-intro__icons .icon04 {
	background-image: url("../img/sub/icon04.svg");
}

.sub-intro__title {
	font-size: 3.8rem;
	line-height: 1.6;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: #333;
	margin-bottom: 2.8rem;
}

.sub-intro__title::after {
	content: "";
	display: block;
	width: 7.2rem;
	height: 2px;
	background: #333;
	margin: 2.2rem auto 0;
}

.sub-intro__text {
	font-size: 2rem;
	line-height: 2.1;
	letter-spacing: 0.08em;
	font-weight: 500;
	color: #333;
}

.sub-intro__text p {
	margin-top: 1em;
}

.sub-intro__text p:first-child {
	margin-top: 0;
}

/* ===============================
本文
=============================== */
.sub-content {
	padding: 8rem 0 12rem;
	background: #efefef;
}

/* Gutenbergの変な余白対策 */
.sub-content > .inner > *:first-child {
	margin-top: 0;
}

.sub-content .wp-block-group,
.sub-content .wp-block-columns,
.sub-content .wp-block-heading,
.sub-content .wp-block-paragraph,
.sub-content .wp-block-image {
	margin-top: 0;
}

/* ===============================
SP
=============================== */
@media screen and (max-width: 520px) {
	.sub-mv__image img {
		min-height: 24rem;
	}
	.sub-mv__project {
		width: 22rem;
		max-width: 60%;
	}

	.sub-mv__title {
		font-size: 3.8rem;
	}

	.sub-intro {
		padding: 5rem 0 6rem;
	}

	.sub-intro__icons {
		gap: 1.6rem;
		margin-bottom: 2.4rem;
	}

	.sub-intro__icons .icon {
		width: 1.8rem;
		height: 1.8rem;
	}

	.sub-intro__title {
		font-size: 2.2rem;
		margin-bottom: 1.8rem;
	}

	.sub-intro__title::after {
		width: 4.8rem;
		margin-top: 1.4rem;
	}

	.sub-intro__text {
		font-size: 1.4rem;
		line-height: 2;
	}

	.sub-content {
		padding: 5rem 0 8rem;
	}
}