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



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

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




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

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

/*タイトル*/
/*-----------------------------*/
.u-title01 {
	margin-bottom: 1rem;
	padding: 0.6rem 1.6rem;
	font-size: 2.4rem;
	text-align: left;
	line-height: 1.4;
}
.u-title01.-type01 {
	background: #fae0e3;
	color: #d23a31;
}
.u-title01.-type02 {
	background: #e6efc0;
	color: #5c8b34;
}
.u-title01.-type03 {
	background: #c4dff4;
	color: #3355a4;
}

/*名前*/
/*-----------------------------*/
.u-name {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	flex-flow: row wrap;
	gap: 0 1rem;
}
.u-name_job {
	font-size: 2.2rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.4;
	color: var(--theme-color02);
}
.u-name_jp {
	font-size: 2.2rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.4;
	color: var(--theme-color01);
}
.u-name_kana {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.4;
	color: #8a7257;
}

/*表*/
/*-----------------------------*/
.u-tbl01 {
	background: #fff;
}
.u-tbl01 tr:nth-child(even) {
	background: #e5e5e5;
}
.u-tbl01_th {
	width: 18rem;
	padding: 0.6rem 2rem;
	border: 1px solid #333;
	font-size: 2rem;
	text-align: left;
	line-height: 1.4;
}
.u-tbl01_td {
	padding: 0.6rem 2rem;
	border: 1px solid #333;
	text-align: left;
	line-height: 1.7;
}

/*ボーダー*/
/*-----------------------------*/
.u-border01 {
	border: 1px solid #d44039;
}
.u-border02 {
	border: 1px solid #5e8e34;
}
.u-border03 {
	border: 1px solid #3353a2;
}


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


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

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

	/*タイトル*/
	/*-----------------------------*/
	.u-title01 {}

	/*名前*/
	/*-----------------------------*/
	.u-name {}
	.u-name_job {}
	.u-name_jp {}
	.u-name_kana {}

	/*表*/
	/*-----------------------------*/
	.u-tbl01 {}
	.u-tbl01 tr:nth-child(even) {}
	.u-tbl01_th {}
	.u-tbl01_td {}
	
	
}


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

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

	/*タイトル*/
	/*-----------------------------*/
	.u-title01 {
		font-size: 2rem;
	}

	/*名前*/
	/*-----------------------------*/
	.u-name {}
	.u-name_job {}
	.u-name_jp {}
	.u-name_kana {}

	/*表*/
	/*-----------------------------*/
	.u-tbl01 {
		border-bottom: 1px solid #333;
	}
	.u-tbl01 tr:nth-child(even) {}
	.u-tbl01_th {
		display: block;
		width: 100%;
	}
	.u-tbl01_td {
		display: block;
		width: 100%;
		border-top: none;
		border-bottom: none;
	}

}

















