/**
 * 企業紹介ページ制作・運営プラン
 * 企業紹介ページとは
 */

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

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

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

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

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

.lilac-company-profile-introduction__lead {
	margin: clamp(22px, 3vw, 30px) auto 0;
	color: #665f6d;
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 2;
}

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

.lilac-company-profile-introduction__card {
	position: relative;
	min-width: 0;
	padding: clamp(28px, 4vw, 40px);
	background: #ffffff;
	border: 1px solid #ebe3f4;
	border-radius: 24px;
	box-shadow:
		0 18px 45px
		rgba(73, 54, 92, 0.08);
	overflow: hidden;
}

.lilac-company-profile-introduction__card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background:
		linear-gradient(
			90deg,
			#7653a6 0%,
			#b29ad1 100%
		);
	content: "";
}

.lilac-company-profile-introduction__card-number {
	margin: 0 0 18px;
	color: #b29ad1;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.16em;
}

.lilac-company-profile-introduction__card-title {
	margin: 0;
	color: #352e3b;
	font-size: clamp(20px, 2.2vw, 25px);
	font-weight: 700;
	line-height: 1.5;
}

.lilac-company-profile-introduction__card-text {
	margin: 18px 0 0;
	color: #6b6470;
	font-size: 15px;
	line-height: 1.9;
}

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

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

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

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

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

	.lilac-company-profile-introduction__title br {
		display: none;
	}

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

	.lilac-company-profile-introduction__card {
		padding: 28px 24px;
		border-radius: 20px;
	}
}