/* 記念誌に掲載するコンテンツ セクション */
.contents-section {
	background: #f7f7ef;
}

.contents-title {
	font-size: 2em;
	font-weight: bold;
	color: #222;
	text-align: center;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}

.contents-subtitle {
	font-size: 1.12em;
	color: #00A0E9;
	margin-bottom: 22px;
	letter-spacing: 0.03em;
}

.contents-lead {
	text-align: center;
	color: #444;
	font-size: 1.02em;
	margin-bottom: 38px;
	line-height: 1.9;
}

.contents-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 44px;
	margin: 0 auto 38px auto;
	align-items: stretch;

}

.contents-list {
	display: grid;
	/* FlexboxからGridに変更 */
	grid-template-columns: 1fr;
	/* 1列に設定 */
	grid-auto-rows: 1fr;
	/* 各行の高さを均等に引き伸ばす */
	gap: 14px 0;
}

.contents-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px 0;
	margin: 0;
	/* margin-bottom, -top, -left, -right をまとめて0に */
	gap: 0;
}

/* 青ラベル（■アイコン含む） */
.contents-label {
	display: flex;
	align-items: center;
	gap: 0 3px;
	color: #00A0E9;
	font-weight: bold;
	padding: 0.14em 0.8em;
	font-size: 1.2em;
	letter-spacing: 0.01em;
	margin-right: 0;
	min-width: 6.5em;
	text-align: left;
	/* text-align: center; との重複を left に統一 */
	flex-shrink: 0;
	border-bottom: 2px solid #b3e0f8;
	width: 100%;
	/* 後から追加された width: 100%; を採用 */
	margin-bottom: 10px;
}

.contents-label .label-dot {
	margin-right: 7px;
	/* label-dotのmargin-right:4pxと7pxの重複を7pxに統一 */
}

.label-dot {
	/* 親セレクタがあるため、こちらの単独の定義は不要 */
	color: #00A0E9;
	font-weight: bold;
	/* margin-rightは上の.contents-label .label-dotで定義済み */
	font-size: 1.1em;
}

.contents-item-text {
	margin-top: 2px;
	font-size: 1em;
	color: #222;
	line-height: 1.8;
	width: 100%;
}

.contents-sample {
	margin: 44px auto 0 auto;
	max-width: 90rem;
	text-align: center;
}

.contents-sample-title {
	font-weight: bold;
	color: #00A0E9;
	background: #fff;
	border: 2px solid #00A0E9;
	padding: 7px 0;
	margin-bottom: 18px;
	font-size: 1.08em;
}

.contents-sample-img {
	width: 100%;
	max-width: 90rem;
	margin-bottom: 18px;
	border-radius: 7px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	background: #fff;
}

.contents-sample-btn-wrap {
	text-align: center;
}

.contents-sample-btn {
	display: inline-block;
	background: #222;
	color: #fff;
	font-weight: bold;
	padding: 12px 32px;
	border-radius: 6px;
	font-size: 1em;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	margin-top: 8px;
}

.contents-sample-btn:hover {
	background: #fff;
	color: #222;
	border: 1px solid #222;
}

@media (max-width: 900px) {
	.contents-grid {
		grid-template-columns: 1fr;
		gap: 18px 0;
	}

	.contents-title {
		font-size: 1.3em;
	}

	.contents-sample-img {
		max-width: 98vw;
	}
}

@media (max-width: 600px) {
	.contents-section {
		padding: 32px 0 20px 0;
	}

	.contents-title {
		font-size: 1.1em;
	}

	.contents-inner {
		padding: 0 4px;
	}

	.contents-sample-title {
		font-size: 1em;
		padding: 5px 0;
	}
}