/**
 * ライラック株式会社
 * 全ページ共通フッター
 *
 * スマートフォン～PC大画面対応
 */

.lilac-site-footer {
	position: relative;
	width: 100%;
	margin: 0;
	padding:
		clamp(56px, 7vw, 96px)
		clamp(16px, 4vw, 48px)
		0;
	color: #4f4858;
	background:
		linear-gradient(
			135deg,
			#f8f5ff 0%,
			#ffffff 48%,
			#f1f8ff 100%
		);
	border-top: 1px solid rgba(118, 83, 166, 0.12);
	overflow: hidden;
	box-sizing: border-box;
}

.lilac-site-footer *,
.lilac-site-footer *::before,
.lilac-site-footer *::after {
	box-sizing: border-box;
}

.lilac-site-footer__inner {
	width: min(100%, 1200px);
	margin: 0 auto;
}

.lilac-site-footer__top {
	display: grid;
	grid-template-columns:
		minmax(280px, 0.85fr)
		minmax(0, 1.15fr);
	gap: clamp(44px, 6vw, 84px);
	align-items: start;
}

/**
 * ブランド
 */
.lilac-site-footer__brands {
	display: grid;
	gap: clamp(24px, 3vw, 34px);
	min-width: 0;
}

.lilac-site-footer__brand {
	min-width: 0;
	padding: clamp(22px, 3vw, 30px);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(118, 83, 166, 0.12);
	border-radius: clamp(18px, 2vw, 24px);
	box-shadow:
		0 14px 38px rgba(60, 48, 78, 0.06);
	backdrop-filter: blur(8px);
}

.lilac-site-footer__brand-label {
	margin: 0 0 18px;
	color: #756783;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.14em;
}

/**
 * ライラック株式会社ロゴ
 */
.lilac-site-footer__company-logo {
	display: block;
	width: clamp(190px, 20vw, 300px);
	max-width: 100%;
	height: auto;
	max-height: none;
	margin: 0;
	object-fit: contain;
	object-position: left center;
}

/**
 * ライフアップジョブロゴ
 */
.lilac-site-footer__lifeupjob-logo {
	display: block;
	width: clamp(210px, 23vw, 340px);
	max-width: 100%;
	height: auto;
	max-height: none;
	margin: 0;
	object-fit: contain;
	object-position: left center;
}

.lilac-site-footer__company-text {
	margin: 18px 0 0;
	color: #625b69;
	font-size: clamp(13px, 1vw, 15px);
	line-height: 1.9;
}

/**
 * ナビゲーション
 */
.lilac-site-footer__navigation {
	display: grid;
	grid-template-columns:
		repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 36px);
	min-width: 0;
}

.lilac-site-footer__menu {
	min-width: 0;
}

.lilac-site-footer__menu-title {
	margin: 0 0 20px;
	padding: 0 0 12px;
	color: #30283f;
	border-bottom: 2px solid rgba(118, 83, 166, 0.18);
	font-size: clamp(14px, 1.2vw, 16px);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.lilac-site-footer__menu-list {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lilac-site-footer__menu-list li {
	margin: 0;
	padding: 0;
}

.lilac-site-footer__menu-list a {
	position: relative;
	display: inline-block;
	max-width: 100%;
	padding: 2px 0 2px 16px;
	color: #5f5867;
	font-size: clamp(13px, 1vw, 14px);
	font-weight: 500;
	line-height: 1.7;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.lilac-site-footer__menu-list a::before {
	content: "";
	position: absolute;
	top: 0.78em;
	left: 0;
	width: 6px;
	height: 6px;
	background:
		linear-gradient(
			135deg,
			#7653a6,
			#77a9c4
		);
	border-radius: 50%;
}

.lilac-site-footer__menu-list a:hover,
.lilac-site-footer__menu-list a:focus-visible {
	color: #7653a6;
	transform: translateX(3px);
}

.lilac-site-footer__menu-list a:focus-visible {
	outline: 2px solid rgba(118, 83, 166, 0.3);
	outline-offset: 4px;
	border-radius: 3px;
}

/**
 * 会社情報
 */
.lilac-site-footer__company-information {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap:
		10px
		clamp(18px, 3vw, 36px);
	margin:
		clamp(44px, 6vw, 72px)
		auto
		0;
	padding:
		clamp(20px, 2.5vw, 26px)
		clamp(18px, 3vw, 30px);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(118, 83, 166, 0.1);
	border-radius: 18px;
	text-align: center;
}

.lilac-site-footer__company-information p {
	margin: 0;
	color: #625b69;
	font-size: clamp(12px, 1vw, 14px);
	line-height: 1.8;
}

/**
 * 最下部
 */
.lilac-site-footer__bottom {
	margin:
		clamp(28px, 4vw, 42px)
		calc(clamp(16px, 4vw, 48px) * -1)
		0;
	padding:
		20px
		clamp(16px, 4vw, 48px);
	background:
		linear-gradient(
			135deg,
			#4e3969,
			#405b78
		);
	text-align: center;
}

.lilac-site-footer__copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 12px;
	line-height: 1.7;
	letter-spacing: 0.04em;
}

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

	.lilac-site-footer__top {
		grid-template-columns: 1fr;
	}

	.lilac-site-footer__brands {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

	.lilac-site-footer__navigation {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));
	}

	.lilac-site-footer__company-logo,
	.lilac-site-footer__lifeupjob-logo {
		margin-right: auto;
		margin-left: auto;
		object-position: center;
	}

	.lilac-site-footer__brand {
		text-align: center;
	}
}

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

	.lilac-site-footer__brands {
		grid-template-columns: 1fr;
	}

	.lilac-site-footer__navigation {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

	.lilac-site-footer__menu:last-child {
		grid-column: 1 / -1;
	}
}

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

	.lilac-site-footer {
		padding:
			52px
			16px
			0;
	}

	.lilac-site-footer__top {
		gap: 38px;
	}

	.lilac-site-footer__brands {
		gap: 18px;
	}

	.lilac-site-footer__brand {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.lilac-site-footer__company-logo {
		width: min(100%, 260px);
	}

	.lilac-site-footer__lifeupjob-logo {
		width: min(100%, 300px);
	}

	.lilac-site-footer__company-text br {
		display: none;
	}

	.lilac-site-footer__navigation {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.lilac-site-footer__menu:last-child {
		grid-column: auto;
	}

	.lilac-site-footer__menu-title {
		margin-bottom: 15px;
	}

	.lilac-site-footer__menu-list {
		gap: 10px;
	}

	.lilac-site-footer__menu-list a {
		display: block;
		padding:
			11px
			14px
			11px
			30px;
		background: rgba(255, 255, 255, 0.68);
		border: 1px solid rgba(118, 83, 166, 0.09);
		border-radius: 10px;
	}

	.lilac-site-footer__menu-list a::before {
		top: 50%;
		left: 15px;
		transform: translateY(-50%);
	}

	.lilac-site-footer__menu-list a:hover,
	.lilac-site-footer__menu-list a:focus-visible {
		transform: none;
	}

	.lilac-site-footer__company-information {
		display: grid;
		gap: 7px;
		margin-top: 42px;
		padding: 20px 16px;
	}

	.lilac-site-footer__bottom {
		margin:
			30px
			-16px
			0;
	}
}

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

	.lilac-site-footer {
		padding-right: 12px;
		padding-left: 12px;
	}

	.lilac-site-footer__brand {
		padding-right: 14px;
		padding-left: 14px;
	}

	.lilac-site-footer__company-logo {
		width: min(100%, 230px);
	}

	.lilac-site-footer__lifeupjob-logo {
		width: min(100%, 270px);
	}

	.lilac-site-footer__bottom {
		margin-right: -12px;
		margin-left: -12px;
	}
}

/**
 * PC大画面
 */
@media screen and (min-width: 1600px) {

	.lilac-site-footer__inner {
		width: min(100%, 1320px);
	}

	.lilac-site-footer__company-logo {
		width: clamp(260px, 18vw, 320px);
	}

	.lilac-site-footer__lifeupjob-logo {
		width: clamp(290px, 20vw, 370px);
	}
}