/* ━━━ お知らせセクション ━━━ */
.section--notice {
	background: var(--c-white);
	border-radius: var(--r-card);
	box-shadow: var(--shadow-card);
	border-left: 4px solid #F59E0B;
	padding: 1.5rem 1.75rem;
	margin-bottom: 2rem;
}

/* ━━━ ヘッダー行 ━━━ */
.notice-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: .85rem;
	margin-bottom: .5rem;
	border-bottom: 1px solid var(--c-border);
}
.notice-header__title {
	font-size: 1.05rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: .4rem;
	color: var(--c-text);
	margin: 0;
}
.notice-header__icon { font-size: 1.15rem; }
.notice-header__more {
	font-size: .78rem;
	font-weight: 700;
	color: #D97706;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}
.notice-header__more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ━━━ リスト ━━━ */
.notice-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.notice-item {
	display: flex;
	align-items: baseline;
	gap: .75rem;
	padding: .65rem 0;
	border-bottom: 1px dashed var(--c-border);
}
.notice-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ━━━ 日付 ━━━ */
.notice-item__date {
	font-size: .75rem;
	font-weight: 600;
	color: var(--c-muted);
	white-space: nowrap;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
	letter-spacing: .02em;
}

/* ━━━ バッジ ━━━ */
.notice-item__badge {
	font-size: .65rem;
	font-weight: 800;
	color: #fff;
	background: #F59E0B;
	border-radius: var(--r-pill);
	padding: .15rem .6rem;
	white-space: nowrap;
	flex-shrink: 0;
	letter-spacing: .03em;
}

/* ━━━ タイトルリンク ━━━ */
.notice-item__title {
	font-size: .9rem;
	font-weight: 600;
	color: var(--c-text);
	text-decoration: none;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color .2s ease;
}
.notice-item__title:hover {
	color: var(--c-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 600px) {
	.section--notice { padding-inline: 1.25rem; }
	.notice-item { flex-wrap: wrap; gap: .3rem .5rem; }
	.notice-item__title { -webkit-line-clamp: 2; }
}
