@charset "UTF-8";

/* ===============================
	共通スタイル
=============================== */
/* ロゴマーク */
.logo-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem 4rem;
}

.logo-img {
	inline-size: 24rem;
	margin-inline: auto;
	position: relative;
}

/* キャプション */
.caption-l {
	font-size: 1.2rem;
	margin-top: 0.5em;
	text-align: left;
}

.caption-box {
	max-inline-size: 600px;
	margin: 1em auto 0;
}


/* コラム */

.column {
	position: relative;
	padding: 6rem 5%;
	background-color: #fff;
	margin-top: 10rem;
}

.column-contents__container {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 4rem;
	gap: 5rem;
}

.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;
}

.column-title {
	text-align: center;
}

.column-title span {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2.2;
	border-bottom: 2px dotted #000;
	padding-bottom: 3px;
	inline-size: fit-content;
	text-align: center;
	margin-inline: auto;
}


.column-text_container {
	inline-size: 44%;
	line-height: 2;
}

.column-img_container {
	inline-size: 50%;
	max-inline-size: 43rem;
}


/* 動画サムネイル */

.thumb-takumi {
	background: url(images/bnr-takuminoreibou.jpg) no-repeat center center / cover;
}

.thumb-dry-x {
	background: url(images/bnr-hyouketsudry.jpg) no-repeat center center / cover;
}


/* ====================================
	スマートフォン専用スタイル
===================================== */
@media screen and (width < 768px) {

	/* コラム */
	.column-contents__container {
		flex-direction: column;
		align-items: center;
	}

	.column-text_container {
		inline-size: 100%;
		font-size: 1.4rem;

	}

	.column-img_container {
		inline-size: 100%;
		max-inline-size: none;
	}
}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {

	/* ロゴマーク */
	.logo-text {
		flex: 1 0;
	}
}