@charset "utf-8";

/* 講師プロフィール popup（teachers_prof.php 専用） */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body.teacher-prof-page {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	max-width: 100%;
	background-color: #fff;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 14px;
	line-height: 1.65;
	color: #333;
}

#container.teacher-prof {
	margin: 0 auto;
	padding: 16px;
	max-width: 100%;
	overflow-x: hidden;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-start;
}

/* 写真：右カラム（PC）／上段（スマホ） */
#column_right.teacher-prof__photo {
	flex: 0 0 200px;
	width: 200px;
	max-width: 100%;
	margin: 0 auto;
}

#column_right.teacher-prof__photo img,
.teacher-prof__photo-img {
	display: block;
	width: 200px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border: 1px solid #d0d5d8;
	border-radius: 4px;
	object-fit: cover;
}

/* テキスト本体 */
#column_left.teacher-prof__body {
	flex: 1 1 280px;
	min-width: 0;
	width: 100%;
}

.teacher-prof__meta {
	margin: 0 0 12px;
}

.teacher-prof__meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35em 0.75em;
	margin: 0 0 6px;
}

.teacher-prof__meta-row dt {
	flex: 0 0 auto;
	margin: 0;
	font-weight: bold;
	color: #444;
	white-space: nowrap;
}

.teacher-prof__meta-row dt::after {
	content: "";
}

.teacher-prof__meta-row dd {
	flex: 1 1 auto;
	margin: 0;
	min-width: 0;
	word-break: break-word;
}

.teacher-prof__table {
	width: 100%;
	margin-top: 8px;
	border-collapse: separate;
	border-spacing: 0 6px;
	font-size: 13px;
	line-height: 1.6;
	background-color: transparent;
}

.teacher-prof__table th,
.teacher-prof__table td {
	padding: 8px 10px;
	vertical-align: top;
	text-align: left;
	background-color: #fff;
	border: 1px solid #cbcbcb;
}

.teacher-prof__table th {
	background-color: #e8eced;
	font-weight: bold;
	white-space: nowrap;
	width: 28%;
}

.teacher-prof__table td {
	word-break: break-word;
}

/* 2列行：左右セルを1行として見せる（行間は border-spacing で分離） */
.teacher-prof__table tr:not(.teacher-prof__section) th {
	border-right: none;
	border-radius: 4px 0 0 4px;
}

.teacher-prof__table tr:not(.teacher-prof__section) td {
	border-left: none;
	border-radius: 0 4px 4px 0;
}

/* 教師紹介・生徒へのメッセージ：ヘッダーと本文を1ブロックに */
.teacher-prof__section-cell {
	padding: 0;
	border: 1px solid #cbcbcb;
	border-radius: 4px;
	overflow: hidden;
	background-color: #fff;
}

.teacher-prof__section-head {
	padding: 8px 10px;
	background-color: #e8eced;
	font-weight: bold;
	text-align: center;
}

.teacher-prof__section-body {
	padding: 10px 12px;
	background-color: #fff;
	word-break: break-word;
}

/* モーダル iframe 内（狭い幅） */
@media (max-width: 740px) {
	#container.teacher-prof {
		padding: 14px;
		gap: 16px;
	}

	#column_right.teacher-prof__photo {
		order: -1;
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
	}

	#column_left.teacher-prof__body {
		flex: 1 1 100%;
		max-width: 100%;
	}

	#column_right.teacher-prof__photo img,
	.teacher-prof__photo-img {
		width: min(200px, 70vw);
	}

	.teacher-prof__table th {
		white-space: normal;
	}
}

/* スマホ：1カラム・表の見出しを上に */
@media (max-width: 520px) {
	body.teacher-prof-page {
		font-size: 13px;
	}

	#container.teacher-prof {
		padding: 10px;
	}

	.teacher-prof__table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	.teacher-prof__table,
	.teacher-prof__table tbody,
	.teacher-prof__table tr,
	.teacher-prof__table th,
	.teacher-prof__table td {
		display: block;
		width: 100%;
	}

	.teacher-prof__table tr {
		margin-bottom: 6px;
	}

	.teacher-prof__table th,
	.teacher-prof__table td {
		border-radius: 0;
	}

	.teacher-prof__table tr:not(.teacher-prof__section) th {
		border-right: 1px solid #cbcbcb;
		border-bottom: none;
		border-radius: 4px 4px 0 0;
		padding-bottom: 4px;
	}

	.teacher-prof__table tr:not(.teacher-prof__section) td {
		border-left: 1px solid #cbcbcb;
		border-top: none;
		border-radius: 0 0 4px 4px;
		padding-top: 4px;
		padding-bottom: 10px;
	}

	.teacher-prof__section-cell {
		border-radius: 4px;
	}
}
