/**
 * 企業紹介ページ制作・運営プラン
 * 企業の魅力を伝える内容
 */

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

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

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

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

.lilac-company-profile-features__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-features__lead {
	margin: clamp(20px, 3vw, 28px) auto 0;
	color: #6a6370;
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 2;
}

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

.lilac-company-profile-features__item {
	display: flex;
	align-items: flex-start;
	gap: clamp(18px, 2.5vw, 26px);
	min-width: 0;
	padding: clamp(26px, 3vw, 36px);
	background:
		linear-gradient(
			145deg,
			#ffffff 0%,
			#fbf9ff 100%
		);
	border: 1px solid #ece5f4;
	border-radius: 24px;
	box-shadow:
		0 16px 40px
		rgba(73, 54, 92, 0.07);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.lilac-company-profile-features__item:hover {
	border-color: #d8c8e8;
	box-shadow:
		0 20px 48px
		rgba(73, 54, 92, 0.12);
	transform: translateY(-4px);
}

.lilac-company-profile-features__icon {
	flex: 0 0 auto;
	display: flex;
	width: 58px;
	height: 58px;
	justify-content: center;
	align-items: center;
	border-radius: 18px;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			#7653a6 0%,
			#a88dca 100%
		);
	box-shadow:
		0 10px 24px
		rgba(118, 83, 166, 0.2);
}

.lilac-company-profile-features__icon span {
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
}

.lilac-company-profile-features__body {
	min-width: 0;
}

.lilac-company-profile-features__item-title {
	margin: 0;
	color: #352e3b;
	font-size: clamp(19px, 2.1vw, 24px);
	font-weight: 700;
	line-height: 1.5;
}

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

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

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

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

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

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

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

	.lilac-company-profile-features__item {
		gap: 16px;
		padding: 24px 20px;
		border-radius: 20px;
	}

	.lilac-company-profile-features__icon {
		width: 50px;
		height: 50px;
		border-radius: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.lilac-company-profile-features__item {
		transition: none;
	}
}