@charset "utf-8";
/*================================
ここから全サイズ適用
================================*/



/*------------------------------
.u-〇〇 …… 下層ページ固有のclass名

lower.cssにあるclass名と被らないよう
接頭文字として "u-" を付けてます。
uniqueの略。
------------------------------*/




/*-------------------------------
ページタイトル
-------------------------------*/
.page-title {
	background-image: url(../common/img/nav_icon04.png);
}

/*================================
共通パーツ
================================*/
/*タイトル*/
/*-----------------------------*/
.u-title01 {
	margin-bottom: 1rem;
	font-size: 2.4rem;
	text-align: left;
	line-height: 1.4;
	color: #6eb92b;
}
/*名前*/
/*-----------------------------*/
.u-staff_name {
	position: relative;
	z-index: 1;
	margin-bottom: 3rem;
	padding-left: 6rem;
	padding-bottom: 1rem;
	background-image: url(img/deco_home.png);
	background-position: left top 0.4rem;
	background-size: 3.8rem auto;
	border-bottom: 3px solid var(--theme-color03);
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	flex-flow: row wrap;
	gap: 0 2rem;
}
.u-staff_name::before {
	position: absolute;
	z-index: 1;
	content: "";
	left: 0;
	bottom: -3px;
	width: 5.5rem;
	height: 3px;
	background: #ee8d7a;
}
.u-staff_job {}
.u-staff_job .panel {
	width: fit-content;
	padding: 0 1rem 0.2rem;
	background: #ee8d7a;
	border-radius: 1rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
}
.u-staff_name_jp {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--theme-color01);
}
.u-staff_name_ruby {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--theme-color02);
}


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


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

	/*================================
	共通パーツ
	================================*/
	/*タイトル*/
	/*-----------------------------*/
	.u-title01 {}
	/*名前*/
	/*-----------------------------*/
	.u-staff_name {}
	.u-staff_name::before {}
	.u-staff_job {}
	.u-staff_job .panel {}
	.u-staff_name_jp {}
	.u-staff_name_ruby {}

}


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

	/*================================
	共通パーツ
	================================*/
	/*タイトル*/
	/*-----------------------------*/
	.u-title01 {
		font-size: 2.2rem;
	}
	/*名前*/
	/*-----------------------------*/
	.u-staff_name {}
	.u-staff_name::before {}
	.u-staff_job {
		width: 100%;
	}
	.u-staff_job .panel {
		font-size: 2.1rem;
	}
	.u-staff_name_jp {
		font-size: 2.6rem;
	}
	.u-staff_name_ruby {
		font-size: 1.4rem;
	}
	
}

















