/**
 * 固定ページ: introduction 専用スタイル
 * URL: /about/introduction
 */

.page-introduction {
	background: #ffffff;
}

/*--------------------------------------------------------------
# KV（ごあいさつページ・intro-kv）
--------------------------------------------------------------*/

.page-introduction .intro-kv {
	position: relative;
	width: 100%;
}

.page-introduction .intro-kv__image {
	width: 100%;
	line-height: 0;
}

.page-introduction .intro-kv__image picture {
	display: block;
	width: 100%;
}

@media (max-width: 768px) {
	.page-introduction .intro-kv__image picture {
		height: 100%;
	}
}

.page-introduction .intro-kv__image img {
	width: 100%;
	height: auto;
	display: block;
}

.page-introduction .intro-kv__text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 clamp(1.5rem, 4.9vw, 4.8125rem);
	box-sizing: border-box;
}

.page-introduction .intro-kv__title {
	margin: 0;
	display: flex;
	column-gap: 0.5rem;
	row-gap: 0.75rem;
	flex-wrap: wrap;
	align-items: center;
}

.page-introduction .intro-kv__title .title-contact-text .mask-text {
	display: block;
	height: 80px;
	width: auto;
}

@media (max-width: 1440px) {
	.page-introduction .intro-kv__image {
		height: clamp(160px, 18.75vw, 270px);
		overflow: hidden;
	}

	.page-introduction .intro-kv__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

@media screen and (max-width: 1024px) {
	.page-introduction .intro-kv__text {
		padding: 0 1.5rem;
	}
}

@media screen and (max-width: 768px) {
	.page-introduction .intro-kv__image {
		height: 160px;
	}

	.page-introduction .intro-kv__title {
		column-gap: 0.15rem;
		row-gap: 0.25rem;
	}

	.page-introduction .intro-kv__title .title-contact-text .mask-text {
		height: 40px;
		width: auto;
	}
}

/*--------------------------------------------------------------
# 六角形タイトル（intro-hex-title）
--------------------------------------------------------------*/

.page-introduction .intro-hex-title {
	width: 448px;
	height: 60px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -32px;
	left: 50%;
    transform: translateX(-50%);
}


.page-introduction .intro-hex-title__shape {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
	z-index: 0;
}

.page-introduction .intro-hex-title__hex {
	fill: #fff;
	stroke: #1f1f1f;
	stroke-width: 4px;
	vector-effect: non-scaling-stroke;
	stroke-linejoin: miter;
	stroke-miterlimit: 8;
	shape-rendering: geometricPrecision;
}

.page-introduction .intro-hex-title__text {
	position: relative;
	z-index: 1;
	font-size: clamp(20px, 1.94vw, 28px);
	font-weight: 700;
	color: var(--color-black);
	white-space: nowrap;
}

/* パンくず*/
.page-introduction .breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0 8px;
	padding: 12px 2em;
	margin-bottom: 80px;
	background-color: var(--color-gray-bg);
	font-family: var(--font-family-primary);
	font-size: var(--font-size-xs);
	line-height: var(--line-height-normal);
	font-weight: var(--font-weight-bold);
	color: var(--color-gray-dark);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.page-introduction .breadcrumb::-webkit-scrollbar {
	display: none;
}

.page-introduction .breadcrumb a,
.page-introduction .breadcrumb span {
	white-space: nowrap;
}

.page-introduction .breadcrumb a {
	color: var(--color-gray-dark);
	text-decoration: none;
}

.page-introduction .breadcrumb a:hover {
	text-decoration: underline;
}

.page-introduction .breadcrumb span {
	color: var(--color-gray-dark);
	user-select: none;
}

/*--------------------------------------------------------------
# intro-container
--------------------------------------------------------------*/

.intro-container {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	gap: 70px;
}

.intro-greeting {
	position: relative;
	border: 4px solid #1f1f1f;
	border-radius: 10px;
	background: #fff;
	padding: 60px 40px 40px;
}

.intro-greeting__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 26px;
	align-items: start;
}

.intro-greeting__message p {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.8;
	color: #1f1f1f;
}

.intro-greeting__message p + p {
	margin-top: 18px;
}

.intro-greeting__message--short {
	padding-top: 4px;
}

.intro-greeting__profile {
	position: relative;
}

.intro-greeting__portrait {
	border: 4px solid #1f1f1f;
	border-radius: 8px;
	overflow: hidden;
}

.intro-greeting__portrait img {
	display: block;
	width: 100%;
	height: auto;
}

.page-introduction .intro-greeting__nameplate {
	width: 270px;
	height: 60px;
	text-align: center;
	top: initial;
	bottom: -28px;
}

.intro-greeting__nameplate-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 2px;
	justify-items: center;
}

.intro-greeting__org {
	margin: 0;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	color: #1f1f1f;
	letter-spacing: -0.05em;
}

.intro-greeting__role {
	margin: 0;
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	color: #1f1f1f;
	letter-spacing: -0.05em;
}

.intro-greeting__name {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #1f1f1f;
}

.fadeUp {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadeUp.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.page-introduction .breadcrumb {
		margin-bottom: 70px;
	}

	.intro-greeting__body {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.page-introduction .intro-hex-title {
		width: 295px;
	}

	.intro-greeting__profile {
		order: 1;
		max-width: 320px;
		margin: 0 auto;
	}

	.intro-greeting__message {
		order: 2;
	}

	.page-introduction .intro-greeting__profile .intro-greeting__nameplate {
		width: 226px;
	}

	.page-introduction {
		padding-bottom: 72px;
	}

	.intro-container {
		margin: 0 1.5rem 0;
		width: auto;
		gap: 93px;
	}

	.intro-greeting {
		padding: 64px 24px 32px;
		border-width: 2px;
	}

	.page-introduction .intro-hex-title__text {
		font-size: 20px;
		text-align: center;
		line-height: 28px;
	}

	.page-introduction .intro-hex-title__hex {
		stroke-width: 2px;
	}

	.intro-greeting__message p {
		font-size: 1rem;
		line-height: 1.375;
	}

	.intro-greeting__profile,
	.intro-greeting__portrait {
		border-width: 2px;
	}

	.intro-greeting__nameplate {
		height: 80px;
		margin-top: 6px;
	}

	.intro-greeting__role {
		gap: 5px;
	}

}
