.tsuki-info-box {
	background: #fff;
	border: 1px solid #e0e4e8;
	border-radius: 16px;
	padding: 40px 50px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	text-align: center;
	color: var(--info-text-color);
}

/* タイトル */
.tsuki-info-box .info-title {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	color: var(--info-text-color);
}

/* 本文全体は中央 */
.tsuki-info-box .info-body {
	margin: 1.5em 0;
}

/* 🔴 リストだけ完全に左寄せ */
.tsuki-info-box .info-body ul,
.tsuki-info-box .info-body ol {
	text-align: left;
	margin: 1em auto;
	padding-left: 1.5em;
	max-width: 100%;
}

/* li まで指定するのが Gutenberg 的に重要 */
.tsuki-info-box .info-body ul li,
.tsuki-info-box .info-body ol li {
	text-align: left;
}

/* 区切り線 */
.tsuki-info-box .wp-block-separator {
	border: none;
	height: 2px;
	background: linear-gradient(
		to right,
		transparent,
		var(--info-text-color),
		transparent
	);
	margin: 2.5em 0;
}

/* フッター */
.tsuki-info-box .info-footer {
	margin-top: 1.5rem;
	font-style: italic;
	color: var(--info-text-color);
}

.tsuki-info-box .info-footer em {
	color: var(--info-text-color);
}

