@charset "UTF-8";

/* コラム共通 */

.column-container {
	position: relative;
	max-inline-size: 1200px;
	/* margin: 8rem auto 0; */
	padding: 4rem 5%;
	background: #f5f5f5;
}

.column-index {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	inline-size: fit-content;
	padding: .4em 2.5em;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	background: #000;
	border-radius: 50px;
}

.column-title-wrap {
	text-align: center;
}

.column-title {
	display: inline;
	padding: 0 .2em .2em;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2.4;
	border-bottom: 2px dotted #000;
}


/* コラム１ */
#column01 .text-container {
	font-size: 1.5rem;
}

/* 注意文 */
.border-caption-box {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.border-caption-box p {
	text-align: center;
  padding: .3em;
  border: 1px solid #000;
}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print,
screen and (width >=768px) {

	/* コラム共通 */

	.flex-container.half-custom {
		justify-content: space-between;
	}

	.flex-container.half-custom>.flex-item {
		width: 50%;
	}

	.flex-container.half-custom>.flex-item:has(.img-container) {
		width: 47%;
	}

	.column-container {
		padding: 6rem 3%;
	}

	.column-index {
		font-size: 1.6rem;
	}

	.column-title {
		font-size: 2rem;
	}

	/* コラム１ */
	#column01 .flex-container {
		column-gap: 4%;
		margin-top: 3rem;
	}

	#column01 .flex-container>div:first-of-type {
		inline-size: 56%;
	}

	#column01 .flex-container>div:last-of-type {
		inline-size: 40%;
	}

	#column01 .text-container {
		font-size: 1.6rem;
	}
}