/**
 * 運営会社についてページ
 * 会社概要
 */

.lilac-company-profile {
	width: 100%;
	margin: 0;
	padding: clamp(72px, 8vw, 112px) 20px;
	background: #f8f7fb;
}

.lilac-company-profile__inner {
	width: min(100%, 1040px);
	margin: 0 auto;
}

.lilac-company-profile__header {
	margin: 0 0 42px;
	text-align: center;
}

.lilac-company-profile__label {
	margin: 0 0 12px;
	color: #7b5ba7;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.5;
}

.lilac-company-profile__title {
	margin: 0;
	color: #30283f;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.lilac-company-profile__description {
	max-width: 680px;
	margin: 20px auto 0;
	color: #615b69;
	font-size: clamp(15px, 1.5vw, 17px);
	line-height: 1.9;
}

.lilac-company-profile__content {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(118, 83, 166, 0.13);
	border-radius: 24px;
	box-shadow:
		0 18px 50px rgba(60, 48, 78, 0.07);
}

.lilac-company-profile__list {
	margin: 0;
}

.lilac-company-profile__item {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	min-height: 78px;
	border-bottom: 1px solid #ece9f1;
}

.lilac-company-profile__item:last-child {
	border-bottom: 0;
}

.lilac-company-profile__term,
.lilac-company-profile__detail {
	margin: 0;
	padding: 24px 28px;
}

.lilac-company-profile__term {
	display: flex;
	align-items: center;
	color: #4d405f;
	background: #f5f1fa;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.7;
}

.lilac-company-profile__detail {
	display: flex;
	align-items: center;
	color: #514b59;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.9;
	overflow-wrap: anywhere;
}

.lilac-company-profile__link {
	color: #6c4d99;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition:
		color 0.2s ease,
		opacity 0.2s ease;
}

.lilac-company-profile__link:hover,
.lilac-company-profile__link:focus-visible {
	color: #4f3674;
	opacity: 0.82;
}

.lilac-company-profile__link:focus-visible {
	outline: 3px solid rgba(118, 83, 166, 0.25);
	outline-offset: 4px;
	border-radius: 4px;
}

/**
 * タブレット
 */
@media screen and (max-width: 800px) {

	.lilac-company-profile {
		padding:
			clamp(60px, 9vw, 84px)
			20px;
	}

	.lilac-company-profile__item {
		grid-template-columns: 210px minmax(0, 1fr);
	}

	.lilac-company-profile__term,
	.lilac-company-profile__detail {
		padding: 22px 24px;
	}
}

/**
 * スマートフォン
 */
@media screen and (max-width: 600px) {

	.lilac-company-profile {
		padding: 52px 16px 64px;
	}

	.lilac-company-profile__header {
		margin-bottom: 30px;
	}

	.lilac-company-profile__label {
		font-size: 12px;
	}

	.lilac-company-profile__content {
		border-radius: 18px;
	}

	.lilac-company-profile__item {
		display: block;
		min-height: 0;
	}

	.lilac-company-profile__term {
		padding: 15px 18px;
		font-size: 13px;
	}

	.lilac-company-profile__detail {
		padding: 17px 18px 20px;
		font-size: 14px;
		line-height: 1.8;
	}
}