@charset "UTF-8";
/* CSS Document */

/*==============================
コンテンツ設定
==============================*/

/*ページビジュアル*/
#pageVisual{
	background: url(../img/about/staff/bg_main.webp) no-repeat center center / cover;
}

/*ページビジュアル  見出し英語*/
#pageVisual .pageNav h2::after{
	content: "STAFF";
}

/*スタッフ全体*/
#staff{
	background: #333;
}

/*スタッフ 見出し*/
#staff h2{
	color: #fff;
}

/*スタッフ 見出し 英語*/
#staff h2::after{
	content: "STAFF";
}

.staffBox{
	margin: 85px auto 0;
	max-width: 920px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.staffBox li{
	max-width: calc((100% - 60px) / 2);
}

.staffBox li dt{
	margin: 0 0 40px 0;
	padding: 0 0 5px 0;
	color: #fff;
	font-size: 2rem;
	line-height: 1.6;
	text-align: center;
	border-bottom: 1px solid #fff;
}

/*==============================
レスポンシブ設定
==============================*/


/*768px以下の場合*/
@media screen and (max-width:768px){

	.staffBox{
		margin: 60px auto 0;
		gap: 30px;
	}

	.staffBox li{
		max-width: calc((100% - 30px) / 2);
	}

	.staffBox li dt{
		margin: 0 0 20px 0;
		font-size: 1.6rem;
	}


}

/*430px以下の場合*/
@media screen and (max-width:430px){

	/*ページビジュアル*/
	#pageVisual{
		background: url(../img/about/staff/bg_main_sp.webp) no-repeat center center / cover;
	}

	.staffBox{
		margin: 40px auto 0;
		width: 300px;
		gap: 20px;
	}

	.staffBox li{
		max-width: 100%;
	}

	.staffBox li dt{
		margin: 0 0 15px 0;
	}




}




































