/**
 * 職業紹介についてページ
 * 手数料・利用料
 */

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

.lilac-employment-agency-fee__inner {
	width: min(100%, 1120px);
	margin: 0 auto;
}

.lilac-employment-agency-fee__header {
	max-width: 760px;
	margin: 0 auto clamp(44px, 6vw, 72px);
	text-align: center;
}

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

.lilac-employment-agency-fee__title {
	margin: 0;
	color: #2f2935;
	font-size: clamp(30px, 4.4vw, 46px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.02em;
	word-break: keep-all;
	overflow-wrap: normal;
}

.lilac-employment-agency-fee__lead {
	max-width: 680px;
	margin: 22px auto 0;
	color: #625b68;
	font-size: clamp(15px, 1.6vw, 18px);
	line-height: 2;
}

.lilac-employment-agency-fee__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 40px);
}

.lilac-employment-agency-fee__card {
	min-width: 0;
	padding: clamp(28px, 4vw, 42px);
	background:
		linear-gradient(
			145deg,
			#faf8ff 0%,
			#ffffff 100%
		);
	border: 1px solid #e8e1ef;
	border-radius: 26px;
	box-shadow: 0 16px 44px rgba(69, 52, 84, 0.07);
}

.lilac-employment-agency-fee__card-label {
	margin: 0 0 12px;
	color: #7653a6;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.14em;
}

.lilac-employment-agency-fee__card-title {
	margin: 0;
	color: #352d3d;
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 700;
	line-height: 1.5;
}

.lilac-employment-agency-fee__price {
	margin: 22px 0 0;
	color: #7653a6;
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.lilac-employment-agency-fee__card-text {
	margin: 24px 0 0;
	color: #68616e;
	font-size: 15px;
	line-height: 1.95;
}

.lilac-employment-agency-fee__details {
	margin-top: clamp(36px, 5vw, 60px);
	padding: clamp(28px, 4vw, 42px);
	background: #f8f6fc;
	border: 1px solid #e6deee;
	border-radius: 24px;
	text-align: center;
}

.lilac-employment-agency-fee__details-title {
	margin: 0;
	color: #3d3346;
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 700;
	line-height: 1.5;
}

.lilac-employment-agency-fee__details-text {
	max-width: 820px;
	margin: 18px auto 0;
	color: #625b68;
	font-size: 15px;
	line-height: 1.95;
}

.lilac-employment-agency-fee__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: 28px;
	padding: 12px 24px;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			#8b68b7 0%,
			#68458f 100%
		);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(92, 65, 120, 0.20);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		opacity 0.2s ease;
}

.lilac-employment-agency-fee__button:hover,
.lilac-employment-agency-fee__button:focus-visible {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(92, 65, 120, 0.26);
	opacity: 0.96;
}

.lilac-employment-agency-fee__notice {
	margin-top: clamp(28px, 4vw, 44px);
	padding: clamp(22px, 3vw, 30px);
	background:
		linear-gradient(
			135deg,
			#f6f2fb 0%,
			#f1f8fb 100%
		);
	border: 1px solid rgba(118, 83, 166, 0.16);
	border-radius: 22px;
	text-align: center;
}

.lilac-employment-agency-fee__notice-title {
	margin: 0;
	color: #4f3e5e;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	line-height: 1.5;
}

.lilac-employment-agency-fee__notice-text {
	max-width: 760px;
	margin: 12px auto 0;
	color: #625b68;
	font-size: 15px;
	line-height: 1.9;
}

@media (max-width: 760px) {

	.lilac-employment-agency-fee {
		padding-right: 16px;
		padding-left: 16px;
	}

	.lilac-employment-agency-fee__header {
		text-align: left;
	}

	.lilac-employment-agency-fee__lead {
		margin-right: 0;
		margin-left: 0;
	}

	.lilac-employment-agency-fee__grid {
		grid-template-columns: 1fr;
	}

	.lilac-employment-agency-fee__details {
		text-align: left;
	}

	.lilac-employment-agency-fee__details-text {
		margin-right: 0;
		margin-left: 0;
	}

	.lilac-employment-agency-fee__button {
		width: 100%;
	}

	.lilac-employment-agency-fee__notice {
		text-align: left;
	}

	.lilac-employment-agency-fee__notice-text {
		margin-right: 0;
		margin-left: 0;
	}

}

@media (max-width: 480px) {

	.lilac-employment-agency-fee__card {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.lilac-employment-agency-fee__details {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.lilac-employment-agency-fee__notice {
		padding: 22px 20px;
		border-radius: 18px;
	}

}