/**
 * 企業紹介ページ制作・運営プラン
 * 制作・運営サービス
 */

.lilac-company-profile-service {
	width: 100%;
	margin: 0;
	padding: clamp(72px, 9vw, 120px) 20px;
	background:
		linear-gradient(
			180deg,
			#faf8ff 0%,
			#f4f9ff 100%
		);
}

.lilac-company-profile-service__inner {
	width: min(100%, 1180px);
	margin: 0 auto;
}

.lilac-company-profile-service__header {
	width: min(100%, 820px);
	margin: 0 auto clamp(42px, 6vw, 70px);
	text-align: center;
}

.lilac-company-profile-service__label {
	margin: 0 0 12px;
	color: #7653a6;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.18em;
}

.lilac-company-profile-service__title {
	margin: 0;
	color: #2f2935;
	font-size: clamp(30px, 4.4vw, 46px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.02em;
}

.lilac-company-profile-service__lead {
	margin: clamp(20px, 3vw, 28px) auto 0;
	color: #6a6370;
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 2;
}

.lilac-company-profile-service__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 30px);
}

.lilac-company-profile-service__card {
	position: relative;
	min-width: 0;
	padding: clamp(30px, 4vw, 42px);
	background: #ffffff;
	border: 1px solid #e8e0f1;
	border-radius: 26px;
	box-shadow:
		0 18px 46px
		rgba(73, 54, 92, 0.08);
	overflow: hidden;
}

.lilac-company-profile-service__card::after {
	position: absolute;
	right: -34px;
	bottom: -34px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background:
		rgba(178, 154, 209, 0.12);
	content: "";
}

.lilac-company-profile-service__number {
	position: relative;
	z-index: 1;
	display: inline-flex;
	min-width: 54px;
	min-height: 32px;
	margin: 0 0 20px;
	padding: 6px 14px;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	color: #7653a6;
	background: #f2ecf8;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.12em;
}

.lilac-company-profile-service__card-title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #352e3b;
	font-size: clamp(21px, 2.3vw, 26px);
	font-weight: 700;
	line-height: 1.5;
}

.lilac-company-profile-service__card-text {
	position: relative;
	z-index: 1;
	margin: 16px 0 0;
	color: #6b6470;
	font-size: 15px;
	line-height: 1.9;
}

.lilac-company-profile-service__list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.lilac-company-profile-service__list li {
	position: relative;
	margin: 0;
	padding-left: 24px;
	color: #514b56;
	font-size: 14px;
	line-height: 1.8;
}

.lilac-company-profile-service__list li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background:
		linear-gradient(
			135deg,
			#7653a6 0%,
			#a98bca 100%
		);
	content: "";
	transform: translateY(-50%);
}

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

	.lilac-company-profile-service__grid {
		grid-template-columns: 1fr;
		max-width: 760px;
		margin: 0 auto;
	}
}

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

	.lilac-company-profile-service {
		padding:
			clamp(56px, 14vw, 80px)
			16px;
	}

	.lilac-company-profile-service__header {
		margin-bottom: 34px;
	}

	.lilac-company-profile-service__lead {
		text-align: left;
	}

	.lilac-company-profile-service__card {
		padding: 28px 22px;
		border-radius: 20px;
	}
}