/* ==========================================================================
   c-page-title : H1見出し（ページタイトル）
   ========================================================================== */

.c-page-title {
	width: 100%;
}

.c-page-title__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
}

/* 日本語サブテキスト */
.c-page-title__ja {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color_text);
	text-align: center;
	display: block;
}

/* 英語メインテキスト */
.c-page-title__en {
	font-size: 48px;
	font-weight: 700;
	line-height: 60px;
	color: var(--color_text);
	text-transform: uppercase;
	text-align: center;
	display: block;
}

/* ==========================================================================
   カラーバリアント (White)
   ========================================================================== */

.c-page-title--white .c-page-title__ja {
	color: #fff;
}

.c-page-title--white .c-page-title__en {
	color: #fff;
}

/* ==========================================================================
   レスポンシブ（SP: ~768px）
   ========================================================================== */

@media screen and (max-width: 768px) {

	.c-page-title__en {
		font-size: 32px;
		line-height: 1.2;
	}

}
