@charset "utf-8";

/* ------------------------------
 講師のご紹介（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	/* 検索結果一覧 */
	.teacherResults {
		display: flex;
		flex-wrap: wrap;
		gap: 52px
	}
	.teacherResults > li {
		width: 246px;
	}
}
/* ------------------------------
 講師のご紹介（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* 検索結果一覧 */
	.teacherResults > li {
		margin-bottom: 40px;
	}
	.teacherResults > li > .teacherBox > img {
		display: block;
		width: 246px;
		height: 246px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ------------------------------
 講師詳細（PC）
------------------------------ */
.cms_block.teacherDetailBlock::after {
	content: none;
}
.teacherDetailBlock .w1-4 img {
	border-radius: 50%;
}
.teacherDetailBlock h1 {
	margin-bottom: 12px;
	font-size: 3.2rem;
	line-height: 1;
	font-weight: bold;
}
.teacherDetailBlock h1 span {
	margin-left: 10px;
	display: inline-block;
	font-size: 1.6rem;
	font-weight: normal;
	vertical-align: middle;
}
.teacherDetailBlock .f18 {
	margin-top: 22px;
	padding-top: 23px;
	border-top: 1px solid #b3b3b3;
}
@media print, screen and (min-width: 768px) {
	.teacherDetailBlock {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}
/* ------------------------------
 講師詳細（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.teacherDetailBlock .w1-4 {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
	.teacherDetailBlock .w1-4 img {
		width: 246px;
		height: 246px;
	}
	.teacherDetailBlock h1 {
		font-size: 2.8rem;
		text-align: center;
	}
	.teacherDetailBlock h1 span {
		display: block;
		margin-top: 10px;
		margin-left: 0;
	}
	.teacherDetailBlock h1 + p {
		text-align: center;
	}
	.teacherDetailBlock .f18 {
		margin-top: 12px;
		padding-top: 13px;
	}
}