/**
 * 特定商取引法に基づく表記
 * ご案内
 */

.lilac-sct-introduction {
	width: 100%;
	margin: 0;
	padding: clamp(64px, 8vw, 104px) 20px;
	background: #ffffff;
}

.lilac-sct-introduction__inner {
	width: min(100%, 960px);
	margin: 0 auto;
}

.lilac-sct-introduction__content {
	width: 100%;
	padding: clamp(32px, 5vw, 56px);
	background:
		linear-gradient(
			135deg,
			#fbf9ff 0%,
			#ffffff 58%,
			#f6fbff 100%
		);
	border: 1px solid #e9e1f2;
	border-radius: 24px;
	box-shadow:
		0 18px 48px
		rgba(74, 57, 94, 0.08);
	text-align: center;
}

.lilac-sct-introduction__label {
	margin: 0 0 12px;
	color: #7653a6;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.16em;
}

.lilac-sct-introduction__title {
	margin: 0;
	color: #2f2935;
	font-size: clamp(26px, 3.6vw, 38px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.03em;
}

.lilac-sct-introduction__text {
	max-width: 760px;
	margin: 24px auto 0;
	color: #5f5866;
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 2;
	letter-spacing: 0.03em;
}

.lilac-sct-introduction__note {
	max-width: 760px;
	margin: 24px auto 0;
	padding: 18px 20px;
	color: #5a5261;
	font-size: 14px;
	line-height: 1.9;
	letter-spacing: 0.02em;
	background: rgba(255, 255, 255, 0.82);
	border-left: 4px solid #9a7bc4;
	border-radius: 12px;
	text-align: left;
}

@media screen and (max-width: 767px) {

	.lilac-sct-introduction {
		padding:
			clamp(48px, 14vw, 72px)
			16px;
	}

	.lilac-sct-introduction__content {
		padding: 28px 20px;
		border-radius: 18px;
	}

	.lilac-sct-introduction__label {
		margin-bottom: 10px;
		font-size: 12px;
		letter-spacing: 0.13em;
	}

	.lilac-sct-introduction__title {
		font-size: clamp(24px, 7vw, 32px);
		line-height: 1.5;
	}

	.lilac-sct-introduction__text {
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.9;
		text-align: left;
	}

	.lilac-sct-introduction__note {
		margin-top: 18px;
		padding: 16px;
		font-size: 14px;
		line-height: 1.85;
	}

}