@charset "UTF-8";

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

.pdf-btn {
	margin-inline: auto;
}

/* コラム１ */

.column-container {
	position: relative;
	background: #f5f5f5;
	padding: 4rem 5%;
}

.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;
}

.column1-contents {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 4rem;
	margin-top: 3rem;
}

.column1-text-container {
	inline-size: 62%;
}

.column1-img-container {
	inline-size: 20rem;
	flex-shrink: 0;
}

.column1-caption {
	margin-top: 0.5em;
	font-size: 1.2rem;
	font-weight: 400;
}

.title-box {
	text-align: center;
	inline-size: fit-content;
	margin-inline: auto;
}

.column1-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.8;
	border-bottom: 2px dotted #000;
}

/* .column1-title-top {
	display: block;
	border-bottom: 2px dotted #000;
	inline-size: 90%;
	margin-inline: auto;
}

.column1-title-bottom {
	display: block;
	font-size: 2.5rem;
	border-bottom: 2px dotted #000;
} */


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

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media screen and (width < 768px) {

/* コラム１ */

.column1-img-container {
	order: 2;
}

.column1-text-container {
    inline-size: 100%;
}

.column1-img-container {
	inline-size: 70%;
}

.column1-title {
	font-size: 1.6rem;
}

.column1-title-bottom {
	font-size: 2rem;
}

.column1-text {
    font-size: 1.4rem;
}

}

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

	.section-title:has(+.flex-container) {
		margin-bottom: 0;
	}

}

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