@charset "UTF-8";

/* ===============================
	共通スタイル
=============================== */
/* ロゴマーク：PCI */
.logo-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem 4rem;
}

.logo-img {
	inline-size: 24rem;
	margin-inline: auto;
	position: relative;

	sup {
		position: absolute;
		top: 8rem;
		left: 50%;
		margin-left: 36%;
	}
}

/* プラズマクラスター25000の効果 */
.plasmacluster-text-container {
	border: 1px solid #707070;
	margin-top: 4rem;
	padding: 2.5rem 3rem;
	font-weight: 400;
	line-height: 1.6;
}

.plasmacluster-text-container p {
	margin-top: 1.5rem;
}

.caption__list span {
	padding-right: .5em;
	color: var(--caption-color);
}

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

	/* プラズマクラスター25000の効果 */
	.plasmacluster-text-container {
		margin-top: 2rem;
		padding: 1.5rem;
	}
}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {

	/* ロゴマーク：PCI */
	.logo-text {
		flex: 1 0;
	}
}