/*--------------------------------------------------------------
# Section Title Component (セクションタイトルコンポーネント)
--------------------------------------------------------------*/

/* Section Title (セクションタイトル) */
/* Section Title (セクション見出し) */
.section-title {
	margin-bottom: var(--spacing-xxl);
	position: relative;
}

.section-title__en {
	display: block;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 1.2rem;
}

.section-title h2 {
	font-size: 2.8rem;
	color: var(--color-text);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: '';
	display: block;
	width: 6.0rem;
	height: 0.2rem;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	margin-top: 1.6rem;
	border-radius: 0.2rem;
}

.section-title.text-center h2::after {
	margin-left: auto;
	margin-right: auto;
}

.section-title p {
	color: var(--color-text-light);
	font-size: var(--font-size-base);
	margin-top: 1.2rem;
}

@media (max-width: 768px) {
	.section-title__en {
		font-size: 1.2rem;
		margin-bottom: 0.8rem;
	}
	
	.section-title h2 {
		font-size: 2.2rem;
	}
	
	.section-title h2::after {
		width: 4.0rem;
		margin-top: 1.2rem;
	}
}

/* エイリアス: l-section-title (レイアウトクラス名として使用されている場合) */
.l-section-title {
	margin-bottom: var(--spacing-xxl);
	position: relative;
}

.l-section-title__en {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 1.2rem;
}

.l-section-title h2 {
	font-size: 2.8rem;
	color: var(--color-text);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	position: relative;
	display: inline-block;
}

.l-section-title h2::after {
	content: '';
	display: block;
	width: 6.0rem;
	height: 0.2rem;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	margin-top: 1.6rem;
	border-radius: 0.2rem;
}

.l-section-title.text-center h2::after,
.l-section-title.u-text-center h2::after {
	margin-left: auto;
	margin-right: auto;
}

.l-section-title.u-text-center h2 {
	display: block; /* 中央揃えのためにblockに変更 */
	text-align: center;
}

.l-section-title p {
	color: var(--color-text-light);
	font-size: var(--font-size-base);
	margin-top: 1.2rem;
}

.l-section-title__text {
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	font-size: 4.2rem;
	color: var(--color-primary);
}

.l-section-title__border {
	margin-top: 8px;
	height: 1px;
	background-color: var(--color-border);
	width: 100%;
}

@media (max-width: 768px) {
	.l-section-title__en {
		font-size: 1.2rem;
		margin-bottom: 0.8rem;
	}
	
	.l-section-title h2 {
		font-size: 2.2rem;
	}
	
	.l-section-title h2::after {
		width: 4.0rem;
		margin-top: 1.2rem;
	}
}

