@charset "utf-8";



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


/*------------------------------
font-weight設定について
--------------------------------
〇Noto Serif JP（日本語）
通常　　　：font-weight: 300;
見出しなど：font-weight: 400;
太字　　　：font-weight: 700;
--
〇Mrs Saint Delafield（英語）
font-weight: 400;
（他の太さは使用していません）
------------------------------*/


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

/*================================
メインビジュアル
===============================*/
.mv {
	background-image: url(img/mv_img.jpg);
}

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

/*見出し*/
/*-----------------------------*/
/*u-heading01*/
.u-heading01_wrap {
	margin-bottom: 1rem;
	min-height: 11.3rem;
	background: url(../common/img/bg_logo.png)center/11.5rem auto no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}
.u-heading01 {
	font-size: 2.4rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.6;
}
.u-heading01:first-letter {
	color: var(--theme-color01);
}
/*u-heading02*/
.u-heading02_wrap {
	margin-bottom: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #a49b95;
}
.u-heading02 {
	width: 12rem;
	padding: 2px 0;
	background: var(--theme-color01);
	border-radius: 2px;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.6;
	color: #fff;
}

/*frame*/
/*-----------------------------*/
.u-frame-01 {
	width: fit-content;
	margin-inline: auto;
	padding: 6px;
	background: #fff;
	border: 1px solid #dae0cd;
}

/*名前*/
/*-----------------------------*/
.u-job {
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1.6;
	color: var(--theme-color01);
}
.u-name_jp {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.6;
}
.u-name_en {
	font-size: 1.4rem;
	line-height: 1.6;
}
.u-name_group01 {
	margin-bottom: 3rem;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	flex-flow: row wrap;
	gap: 1.6rem;
}
.u-name_group01 .u-name_item {}
.u-name_group02 {
	margin-bottom: 3rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
.u-name_group02 .u-name_item {
	display: flex;
	justify-content: center;
	align-items: baseline;
	flex-flow: row wrap;
	gap: 1.6rem;
}

/*その他*/
/*-----------------------------*/
.u-border01 {
	padding-bottom: 8rem;
	border-bottom: 1px solid #efefef;
}
.u-border02 {
	padding-bottom: 2rem;
	border-bottom: 1px solid #efefef;
}



/*================================
セクション
===============================*/

/*-----------------------------*/


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


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

	/*見出し*/
	/*-----------------------------*/
	/*u-heading01*/
	.u-heading01_wrap {}
	.u-heading01 {}
	.u-heading01:first-letter {}
	/*u-heading02*/
	.u-heading02_wrap {}
	.u-heading02 {}

	/*frame*/
	/*-----------------------------*/
	.u-frame-01 {}

	/*名前*/
	/*-----------------------------*/
	.u-job {}
	.u-name_jp {}
	.u-name_en {}
	.u-name_group01 {}
	.u-name_group01 .u-name_item {}
	.u-name_group02 {}
	.u-name_group02 .u-name_item {}

	/*その他*/
	/*-----------------------------*/
	.u-border01 {}
	.u-border02 {}

}


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

	/*見出し*/
	/*-----------------------------*/
	/*u-heading01*/
	.u-heading01_wrap {}
	.u-heading01 {}
	.u-heading01:first-letter {}
	/*u-heading02*/
	.u-heading02_wrap {}
	.u-heading02 {}

	/*frame*/
	/*-----------------------------*/
	.u-frame-01 {}

	/*名前*/
	/*-----------------------------*/
	.u-job {}
	.u-name_jp {}
	.u-name_en {}
	.u-name_group01 {}
	.u-name_group01 .u-name_item {}
	.u-name_group02 {}
	.u-name_group02 .u-name_item {}

	/*その他*/
	/*-----------------------------*/
	.u-border01 {
		padding-bottom: 6rem;
	}
	.u-border02 {}

}

















