/**
 * 特定商取引法に基づく表記
 * 表示内容
 */

.lilac-sct-content {
	width: 100%;
	margin: 0;
	padding: clamp(72px, 9vw, 120px) 20px;
	background: #f8f6fb;
}

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

.lilac-sct-content__header {
	max-width: 780px;
	margin: 0 auto clamp(40px, 5vw, 64px);
	text-align: center;
}

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

.lilac-sct-content__title {
	margin: 0;
	color: #2f2935;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.03em;
}

.lilac-sct-content__description {
	max-width: 680px;
	margin: 20px auto 0;
	color: #625b69;
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 2;
	letter-spacing: 0.02em;
}

.lilac-sct-content__table-wrap {
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e7e0ed;
	border-radius: 24px;
	box-shadow:
		0 20px 54px
		rgba(65, 48, 82, 0.08);
}

.lilac-sct-content__table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
}

.lilac-sct-content__table th,
.lilac-sct-content__table td {
	padding: 24px 28px;
	border-bottom: 1px solid #ece6f1;
	vertical-align: top;
	text-align: left;
}

.lilac-sct-content__table tr:last-child th,
.lilac-sct-content__table tr:last-child td {
	border-bottom: 0;
}

.lilac-sct-content__table th {
	width: 28%;
	color: #403747;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.02em;
	background: #f5f1f9;
}

.lilac-sct-content__table td {
	width: 72%;
	color: #5c5562;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.95;
	letter-spacing: 0.02em;
	background: #ffffff;
	overflow-wrap: anywhere;
	word-break: normal;
}

.lilac-sct-content__table a {
	color: #684792;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition:
		color 0.2s ease,
		text-decoration-color 0.2s ease;
}

.lilac-sct-content__table a:hover,
.lilac-sct-content__table a:focus-visible {
	color: #4e3370;
	text-decoration-color: transparent;
}

.lilac-sct-content__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lilac-sct-content__list li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 20px;
}

.lilac-sct-content__list li:last-child {
	margin-bottom: 0;
}

.lilac-sct-content__list li::before {
	position: absolute;
	top: 0.78em;
	left: 0;
	width: 7px;
	height: 7px;
	background: #9a7bc4;
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.lilac-sct-content__supplement {
	margin: 12px 0 0;
	color: #77707d;
	font-size: 14px;
	line-height: 1.85;
}

.lilac-sct-content__link {
	margin: 14px 0 0;
}

.lilac-sct-content__notice {
	margin: clamp(32px, 5vw, 48px) 0 0;
	padding: clamp(24px, 4vw, 36px);
	background:
		linear-gradient(
			135deg,
			#ffffff 0%,
			#faf7fd 100%
		);
	border: 1px solid #e5dcec;
	border-left: 5px solid #8d6ab8;
	border-radius: 18px;
}

.lilac-sct-content__notice-title {
	margin: 0;
	color: #3e3545;
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
}

.lilac-sct-content__notice-text {
	margin: 14px 0 0;
	color: #625b69;
	font-size: 15px;
	line-height: 1.95;
	letter-spacing: 0.02em;
}

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

	.lilac-sct-content {
		padding:
			clamp(52px, 14vw, 80px)
			16px;
	}

	.lilac-sct-content__header {
		margin-bottom: 32px;
	}

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

	.lilac-sct-content__title {
		font-size: clamp(25px, 7vw, 34px);
		line-height: 1.5;
	}

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

	.lilac-sct-content__table-wrap {
		overflow: visible;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.lilac-sct-content__table,
	.lilac-sct-content__table tbody,
	.lilac-sct-content__table tr,
	.lilac-sct-content__table th,
	.lilac-sct-content__table td {
		display: block;
		width: 100%;
	}

	.lilac-sct-content__table tr {
		margin: 0 0 18px;
		overflow: hidden;
		background: #ffffff;
		border: 1px solid #e7e0ed;
		border-radius: 16px;
		box-shadow:
			0 12px 30px
			rgba(65, 48, 82, 0.06);
	}

	.lilac-sct-content__table tr:last-child {
		margin-bottom: 0;
	}

	.lilac-sct-content__table th,
	.lilac-sct-content__table td {
		padding: 18px 18px;
		border: 0;
	}

	.lilac-sct-content__table th {
		font-size: 14px;
		line-height: 1.7;
		background: #f4eff8;
		border-bottom: 1px solid #e9e1ef;
	}

	.lilac-sct-content__table td {
		font-size: 14px;
		line-height: 1.9;
	}

	.lilac-sct-content__supplement {
		font-size: 13px;
		line-height: 1.8;
	}

	.lilac-sct-content__notice {
		margin-top: 28px;
		padding: 22px 18px;
		border-left-width: 4px;
		border-radius: 14px;
	}

	.lilac-sct-content__notice-title {
		font-size: 20px;
	}

	.lilac-sct-content__notice-text {
		font-size: 14px;
		line-height: 1.9;
	}

}