@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;
}

/* コラム */
.column-container {
	position: relative;
	background: #fff;
	padding: 6rem 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: 72%;
	text-align: center;
	padding-bottom: 0.4rem;
	margin-left: auto;
	margin-right: auto;
}

.column-title {
	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-container .text-container-flex {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 4rem;
}

.column-container .text-container-text {
	inline-size: 77%;
}

.column-container h5 {
	font-weight: bold;
	font-size: 1.6rem;
	margin-bottom: 1.2rem;
}

.column-container img {
	inline-size: 19%;
}

.column-container .kome li::before {
  color: inherit;
}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media screen and (width < 768px) {
	
	/* コラム */
	.column-container {
		padding: 3rem 2rem;
		margin-top: 6rem;
	}

	.column-container .text-container-flex {
		flex-direction: column;
	}

	.column-container .text-container-text {
		inline-size: 100%;
	}

	.column-container .column-text-container img {
		inline-size: 50%;
		margin-inline: auto;
	}
}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {

	/* ロゴマーク */
	.logo-text {
		flex: 1 0;
	}
}