@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#teacher .box_grid {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(4, 24%);
	gap: 15px 0;
	margin-bottom: 35px;
}
#teacher .box_grid a {
	display: block;
	background: #F4F4F4;
	padding: 20px;
}
#teacher .box_grid p {
	text-align: center;
	font-size: 90%;
	margin-top: 10px;
}
#teacher .box_instructor {
	border: 1px solid var(--color-secondary);
	padding: 15px;
}
@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) {  /* タブレット以下 */
}
@media only screen and (max-width: 640px){ /* スマホ */
	#teacher .box_grid {
		grid-template-columns: repeat(2, 47%);
		gap: 20px 0;
		margin-bottom: 35px;
	}
	#teacher .box_grid p {
		font-size: 100%;
	}
	#teacher .box_instructor .sec {
		font-size: 110%;
	}
}