/* * =========================================
 * 新着情報 / お知らせ
 * =========================================
 */

/* 背景を上50px分だけ削除するための処理 */
.news::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	content: '';

	/* 背景のスタイル */
	background-color: var(--bg-color-1);
	mix-blend-mode: multiply;

	/* 上50pxを削除 */
	mask-image: linear-gradient(
		to bottom,
		transparent 0,
		transparent 50px,
		black 50px
	);
}

.news > * {
	position: relative;
	z-index: 1;
}

.news__container {
	display: flex;
	justify-content: center;
	padding-bottom: 5px;
	margin-top: -50px;
	overflow: visible;
}

.news__inner {
	width: 100%;
	padding: 24px;
	background-color: #fcfcfc;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	box-shadow: 1px 1px 3px 0 rgb(0 0 0 / 15%);
}

.news__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-top: 16px;
	padding-bottom: 8px;
	margin-bottom: 16px;
	border-bottom: 3px solid var(--color-dusty-rose);
}

.news__title {
	font-family: var(--font-family-sub1);
	font-size: 24px;
	font-weight: var(--font-weight-medium);
	font-feature-settings:
		'halt' on,
		'pwid' on;
	letter-spacing: 0.96px;
}

.news__list {
	padding-bottom: 1em;
	margin-bottom: 1em;
	list-style: none;
	border-bottom: 2px solid var(--color-dusty-rose);
}

.news__item {
	display: flex;
	gap: 24px;
	align-items: baseline;
	padding: 16px 8px;
	font-size: 16px;
	border-bottom: 1px dashed var(--color-dusty-rose);
}

.news__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.news__item:first-child {
	padding-top: 0;
}

.news__item time {
	flex-shrink: 0;
	width: 80px;
	font-family: var(--font-family-sub2);
	font-weight: var(--font-weight-medium);
}

.news__item .category {
	flex-shrink: 0;
	padding: 2px 16px;
	font-size: 14px;
	font-weight: var(--font-weight-bold);
	white-space: nowrap;
	border-radius: 1em;
}

.news__item .category.category--news {
	color: #fff;
	background-color: #eb809b;
}

.news__item .category.category--update {
	color: #d75877;
	background-color: #ffd9e2;
}

.news__item a {
	font-weight: var(--font-weight-medium);
	line-height: 140%;
	letter-spacing: 0.64px;
}

.news__more a {
	display: inline-flex;
	gap: 4px;
	align-items: center;
	padding-bottom: 2px;
	font-size: 15px;
	letter-spacing: 0.6px;
	transition: border-color 0.3s;
}

.news__more a > img {
	height: 1.2em;
}