@charset "utf-8";
/*==================================================
	【各講師ページ】ページ固有のスタイル
==================================================*/
#teacher-detail .box_detail {
	display: flex;
	justify-content: space-between;
}
#teacher-detail .photo {
	width: 300px;
	max-width: 100%;
}
#teacher-detail .tbl_teacher {
	width: calc(100% - 330px);
}
#teacher-detail .tbl_teacher tr {
	border-top: 1px dotted #CCCCCC;
}
#teacher-detail .tbl_teacher tr:last-of-type {
	border-bottom: 1px dotted #CCCCCC;
}
#teacher-detail .tbl_teacher th {
	width: 47%;
	color: var(--color-secondary);
	font-size: 90%;
	padding: 23px;
}
#teacher-detail .tbl_teacher .name th {
	font-size: 155%;
}
#teacher-detail .tbl_teacher td {
	font-size: 90%;
}
#teacher-detail .tbl_teacher .name td {
	color: var(--color-secondary);
}
#teacher-detail h3 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 125%;
	border-left: 2px solid #30517c;
	background: rgba( 94, 0, 231, 0.1) url(../img/top/slash.png);
	margin: 20px 0 10px;
	padding: 10px;
}
#teacher-detail .box_welcome {
	border: 3px solid #F4F4F4;
	background: linear-gradient( to top, rgba(94, 0, 231, 0.1), rgba(255, 255, 255, 0));
	padding: 50px;
	margin-bottom: 40px;
}
#teacher-detail .box_welcome dt {
	text-align: center;
	font-weight: bold;
	font-size: 140%;
	margin-bottom: 30px;
}
#teacher-detail .box_welcome dd {
	width: 380px;
	margin: 0 auto;
}
#teacher-detail .box_welcome dd li{
	position: relative;
	font-size: 125%;
	line-height: 2.4;
}
#teacher-detail .box_welcome dd li::before {
	position: absolute;
	content: "";
	width: 10px;
	height: 5px;
	top: 0.9em;
	left: -1.5em;
	border-left: 2px solid #14aacc;
	border-bottom: 2px solid #14aacc;
	transform: rotate(-45deg);
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#teacher-detail .box_detail {
		display: block;
	}
	#teacher-detail .photo {
		margin: 0 auto 20px;
	}
	#teacher-detail .tbl_teacher {
		width: 100%;
	}
	#teacher-detail .tbl_teacher th {
		width: 40%;
	}
}
@media only screen and (max-width: 640px){  /*スマホ*/ 
	#teacher-detail .tbl_teacher th {
		font-size: 100%;
		padding: 23px 0;
	}
	#teacher-detail .tbl_teacher td {
		font-size: 100%;
	}
	#teacher-detail .tbl_teacher .name th {
		font-size: 130%;
	}
	#teacher-detail .box_welcome {
		padding: 50px 40px;
		margin-bottom: 25px;
	}
	#teacher-detail .box_welcome dd {
		width: 100%;
	}
	#teacher-detail .box_welcome dd li{
		font-size: 100%;
		line-height: 2em;
	}
	#teacher-detail .box_welcome dd li::before {
		top: 0.6em;
	}
	#teacher-detail .box_welcome p {
		font-size: 95%;
	}
}