@charset "UTF-8";

/**************************************************
固定ページ：クラスリスト
**************************************************/
/* PC・SP表示切り替え */
@media (min-width: 768px) {
	.sp {
		display: none;
	}
}

@media (max-width: 767px) {
	.pc {
		display: none;
	}
}


/* PCのみテキスト中央寄せ */
@media (min-width: 768px) {
	.text-center_pc p,
	*.text-center_pc {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.text-center_pc p,
	*.text-center_pc {
		text-align: left !important;
	}
}


/* h1下の英語見出し用フォントスタイル */
.page-title_en {
	font-family: "Playfair Display", serif;
}


/* タイトル装飾：左寄せ文字＋右に線 */
.title-line {
	display: flex;
	gap: 20px !important;
}

.title-line::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--wp--preset--color--sm-sub-accent);
	flex: 1;
}