@charset "UTF-8";

/* ====================================
	共通スタイル
 ==================================== */

.h-mt {
	margin-top: 8rem;
}

/* 補足記事：コラム */
.column-container {
	position: relative;
	background: #f5f5f5;
	padding: 5rem 3rem;
	margin-top: 10rem;
}

.column-icon {
	font-weight: 700;
	color: #fff;
	background-color: #000;
	border-radius: 50px;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.4rem;
	padding: 0.4em 2.4em;
}

.title-box {
	width: 100%;
	padding-bottom: 0.5em;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 2px dotted #000;
}

.column-title {
	font-size: 1.8rem;
	font-weight: 500;
	inline-size: fit-content;
	text-align: center;
	margin-inline: auto;
}

.column-text-container {
	margin-top: 3rem;
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 4rem;
}

.column-img {
	flex: 1 1 0;
	min-inline-size: 0;
}

/* MP4 */
.thumb-filter {
	background: url(images/bnr-filter.jpg) no-repeat center center / cover;
}

/* キャプション */
.caption-l {
	font-size: 1.2rem;
	margin-top: 0.5em;
	text-align: left;
}

/* コラム個別スタイル */
#column02 {
	padding-top: 0;
}

/* ====================================
	ホバーが有効な環境のみ
===================================== */
@media (hover:hover) and (pointer: fine) {}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media screen and (width < 768px) {
	.h-mt {
		margin-top: 4rem;
	}

	/* 補足記事：コラム */
	.column-container {
		padding: 3rem 2rem;
		margin-top: 6rem;
	}

	.column-container .column-text-container {
		flex-direction: column;
	}

	.column-text-container {
		margin-top: 3rem;
		gap: 3rem;
	}

	.supervisor {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1em;
		margin-top: 1em;
	}

	.supervisor-photo {
		inline-size: 25%;
		max-inline-size: 12rem;
	}

	.supervisor-name {
		font-size: 1.4rem;
	}
}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print,
screen and (width >=768px) {

	/* 補足記事：コラム */
	.column-text-left {
		flex: 1 1 0;
		min-inline-size: 0;
		display: flex;
		align-items: flex-start;
		gap: 0.8rem;
	}

	.column-text {
		line-height: 1.8;
		font-size: 1.6rem;
		flex: 1 1 auto;
		min-inline-size: 0;
	}

	.supervisor {
		flex: 0 0 32%;
		max-inline-size: 32%;
	}

	.supervisor-photo {
		display: block;
		inline-size: 85%;
		margin-inline: auto;
	}

	.supervisor-name {
		font-size: 1.2rem;
		text-align: center;
		margin-top: 0.6rem;
	}
}

/* ====================================
	タブレット専用スタイル（768px～1080px）
===================================== */
@media screen and (768px <=width < 1080px) {}