@charset "UTF-8";

/* キャプション */
.caption-l {
	font-size: 1.2rem;
	margin-top: 0.5em;
	text-align: left;
}


.caption-box {
	max-inline-size: 600px;
	margin: 1em auto 0;
}

/* 匠の冷房 */

.pci-container {
	display: flex;
	flex-wrap: wrap;
	column-gap: 7rem;
	row-gap: 2rem;
}


.pci-logo {
	max-inline-size: 24rem;
	inline-size: 35%;
	margin-inline: auto;
	position: relative;
}

.pci-text {
	flex: 1 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) {

	/* 匠の冷房 */
	.pci-container {
		flex-direction: column;
	}

	.pci-logo {
		inline-size: 100%;
	}
	
	/* コラム */
	.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;
	}
}

