@charset "utf-8";



/*------------------------------
.u-〇〇 …… 下層ページ固有のclass名
--
lower.cssにあるclass名と被らないよう
接頭文字として "u-" を付けてます。
uniqueの略。
------------------------------*/


/*================================
ここから全サイズ適用
================================*/

/*================================
共通パーツ
================================*/

/*staff_name*/
/*-----------------------------*/
.u-staff_name_wrap {
	margin-bottom: 3rem;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	flex-flow: row wrap;
	gap: 0 3rem;
}
.u-staff_job {
	position: relative;
	z-index: 1;
	padding-left: 2.2em;
	font-family: "Zen Old Mincho", serif;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.5;
}
.u-staff_job::before {
	position: absolute;
	z-index: 1;
	content: "";
	width: 1.3em;
	height: 3px;
	background: var(--theme-color02);
	left: 0;
	top: calc(1em*1.5/2);
}
.u-staff_name_jp {
	font-family: "Zen Old Mincho", serif;
	font-size: 3.4rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.5;
}
.u-staff_name_en {
	font-family: "Zen Old Mincho", serif;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.5;
	color: #c6c6c6;
}



/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {}


/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {

	/*staff_name*/
	/*-----------------------------*/
	.u-staff_name_wrap {}
	.u-staff_job {}
	.u-staff_job::before {}
	.u-staff_name_jp {}
	.u-staff_name_en {}
	
}


/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {

	/*staff_name*/
	/*-----------------------------*/
	.u-staff_name_wrap {}
	.u-staff_job {
		width: 100%;
	}
	.u-staff_job::before {}
	.u-staff_name_jp {}
	.u-staff_name_en {}

}

















