/**
 * ライラック株式会社
 * トップページ
 * お知らせ
 */

.lilac-home-news {
	width: 100%;
	margin: 0;
	padding:
		clamp(64px, 7.5vw, 100px)
		20px;
	background:
		linear-gradient(
			135deg,
			#ffffff 0%,
			#faf8ff 52%,
			#f4f7ff 100%
		);
	overflow: hidden;
}

.lilac-home-news__inner {
	width: min(100%, 1180px);
	margin: 0 auto;
}

.lilac-home-news__header {
	max-width: 760px;
	margin:
		0 auto
		clamp(34px, 4vw, 50px);
	text-align: center;
}

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

.lilac-home-news__title {
	margin: 0;
	color: #29233a;
	font-size: clamp(32px, 4.8vw, 50px);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
}

.lilac-home-news__description {
	margin: 20px 0 0;
	color: #686272;
	font-size: clamp(14px, 1.7vw, 16px);
	line-height: 2;
}

.lilac-home-news__layout {
	display: grid;
	grid-template-columns:
		minmax(0, 1.06fr)
		minmax(360px, 0.94fr);
	gap: clamp(30px, 5vw, 58px);
	align-items: center;
}

.lilac-home-news__visual {
	position: relative;
	min-width: 0;
}

.lilac-home-news__image {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: clamp(18px, 2.5vw, 30px);
	box-shadow:
		0 24px 60px rgba(80, 63, 124, 0.14),
		0 8px 24px rgba(80, 63, 124, 0.08);
}

.lilac-home-news__content {
	min-width: 0;
}

.lilac-home-news__list {
	display: grid;
	gap: 12px;
}

.lilac-home-news__item {
	margin: 0;
	padding: 0;
	border: 1px solid rgba(118, 83, 166, 0.13);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow:
		0 12px 30px rgba(61, 47, 91, 0.06);
	overflow: hidden;
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.lilac-home-news__item:hover {
	transform: translateY(-3px);
	border-color: rgba(118, 83, 166, 0.32);
	box-shadow:
		0 18px 38px rgba(61, 47, 91, 0.1);
}

.lilac-home-news__item-link {
	position: relative;
	display: block;
	min-height: 110px;
	padding: 21px 60px 21px 22px;
	color: inherit;
	text-decoration: none;
}

.lilac-home-news__item-link:hover,
.lilac-home-news__item-link:focus {
	color: inherit;
	text-decoration: none;
}

.lilac-home-news__item-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
}

.lilac-home-news__date {
	color: #827a8a;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.lilac-home-news__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 25px;
	padding: 4px 11px;
	border-radius: 999px;
	background: #f0eaff;
	color: #7653a6;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
}

.lilac-home-news__item-title {
	margin: 0;
	color: #302a39;
	font-size: clamp(15px, 1.7vw, 17px);
	font-weight: 700;
	line-height: 1.75;
}

.lilac-home-news__arrow {
	position: absolute;
	top: 50%;
	right: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f3effb;
	color: #7653a6;
	font-size: 17px;
	font-weight: 700;
	transform: translateY(-50%);
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.lilac-home-news__item:hover
	.lilac-home-news__arrow {
	background: #7653a6;
	color: #ffffff;
	transform: translate(3px, -50%);
}

.lilac-home-news__empty {
	padding: 32px 22px;
	border: 1px solid rgba(118, 83, 166, 0.13);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	text-align: center;
}

.lilac-home-news__empty-text {
	margin: 0;
	color: #706979;
	font-size: 15px;
	line-height: 1.8;
}

.lilac-home-news__button-wrap {
	margin-top: 24px;
}

.lilac-home-news__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	width: 100%;
	min-height: 60px;
	padding: 14px 22px;
	border: 1px solid rgba(118, 83, 166, 0.35);
	border-radius: 999px;
	background:
		linear-gradient(
			135deg,
			#f5f1ff 0%,
			#eae2ff 100%
		);
	color: #3c2d61;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	box-shadow:
		0 12px 26px rgba(93, 67, 143, 0.11);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.lilac-home-news__button:hover,
.lilac-home-news__button:focus {
	background:
		linear-gradient(
			135deg,
			#ede6ff 0%,
			#dfd2ff 100%
		);
	color: #3c2d61;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow:
		0 16px 34px rgba(93, 67, 143, 0.16);
}

.lilac-home-news__button-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #ffffff;
	color: #7653a6;
	box-shadow:
		0 6px 16px rgba(93, 67, 143, 0.1);
}

.lilac-home-news__button-text {
	flex: 1 1 auto;
	text-align: center;
}

.lilac-home-news__button-arrow {
	flex: 0 0 auto;
	color: #7653a6;
	font-size: 18px;
	transition: transform 0.25s ease;
}

.lilac-home-news__button:hover
	.lilac-home-news__button-arrow {
	transform: translateX(4px);
}

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

	.lilac-home-news__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lilac-home-news__visual {
		width: min(100%, 760px);
		margin: 0 auto;
	}

	.lilac-home-news__content {
		width: min(100%, 760px);
		margin: 0 auto;
	}

}

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

	.lilac-home-news {
		padding:
			clamp(52px, 14vw, 72px)
			16px;
	}

	.lilac-home-news__header {
		margin-bottom: 28px;
	}

	.lilac-home-news__title {
		font-size: clamp(29px, 8vw, 39px);
	}

	.lilac-home-news__description {
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.9;
	}

	.lilac-home-news__break {
		display: none;
	}

	.lilac-home-news__layout {
		gap: 28px;
	}

	.lilac-home-news__image {
		border-radius: 16px;
	}

	.lilac-home-news__list {
		gap: 10px;
	}

	.lilac-home-news__item-link {
		min-height: 104px;
		padding:
			18px
			50px
			18px
			17px;
	}

	.lilac-home-news__item-meta {
		gap: 8px;
		margin-bottom: 8px;
	}

	.lilac-home-news__arrow {
		right: 15px;
		width: 30px;
		height: 30px;
	}

	.lilac-home-news__button-wrap {
		margin-top: 20px;
	}

	.lilac-home-news__button {
		min-height: 58px;
		padding-right: 17px;
		padding-left: 17px;
	}

}

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

	.lilac-home-news__item,
	.lilac-home-news__arrow,
	.lilac-home-news__button,
	.lilac-home-news__button-arrow {
		transition: none;
	}

}