

.page-wrap {
	max-width: 680px;
	margin: 0 auto;
	}

	/* ========== ページヘッダー ========== */
.page-header {
	margin-bottom: 48px;
	animation: fadeUp 0.5s ease both;
	}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	color: var(--accent-light);
	text-decoration: none;
	margin-bottom: 20px;
	transition: color 0.2s;
	}

.back-link::before { content: '‹'; font-size: 1rem; }
.back-link:hover { color: var(--accent); }

.page-title {
	font-family: 'Shippori Mincho', serif;
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.4em;
	color: var(--ink);
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ink);
	position: relative;
	}

.page-title::after {
	content: '';
	position: absolute;
	bottom: -1px; left: 0;
	width: 48px;
	height: 2px;
	background: var(--accent);
	}

	/* ========== 記事カード ========== */
.article {
	position: relative;
	background: #fffdf8;
	border: 1px solid var(--rule);
	padding: 28px 32px 28px 36px;
	margin-bottom: 24px;
	box-shadow: 3px 3px 0 var(--rule);
	animation: fadeUp 0.5s ease both;
	scroll-margin-top: 40px; /* アンカージャンプ時の余白 */
	transition: box-shadow 0.2s;
	}

.article:nth-child(1) { animation-delay: 0.05s; }
.article:nth-child(2) { animation-delay: 0.10s; }
.article:nth-child(3) { animation-delay: 0.15s; }

.article::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 4px;
	height: 100%;
	background: var(--rule);
	transition: background 0.3s;
	}

	/* アンカー対象になった記事をハイライト */
.article:target::before {
	background: var(--accent);
	}

.article:target {
	box-shadow: 3px 3px 0 var(--accent-light);
	border-color: var(--accent-light);
	}

.article-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 10px;
	}

.article-date {
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	color: var(--muted);
	}

.article-tag {
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	color: var(--accent);
	border: 1px solid var(--accent-light);
	padding: 2px 8px;
	}

.article-title {
	font-family: 'Shippori Mincho', serif;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.6;
	}

.article-body {
	font-size: 0.85rem;
	line-height: 2;
	color: #3a3530;
	}

.article-body p + p {
	margin-top: 0.8em;
	}

	/* ========== アニメーション ========== */
	@keyframes fadeUp {
	from { opacity: 0; transform: translateY(14px); }
	to	 { opacity: 1; transform: translateY(0); }
	}

	/* ========== フッター ========== */
.page-footer {
	text-align: center;
	margin-top: 48px;
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	color: var(--rule);
	}

	/* ========== ANNOUNCE BOX ========== */
.announce_box {
	position: relative;
	width: 90%;
	background: var(--paper);
	border: 1px solid var(--rule);
	box-shadow: 4px 4px 0 var(--accent-light), 8px 8px 0 rgba(200,191,175,0.3);
	animation: fadeUp 0.6s ease both;
	margin: 0 auto;
	}

	@keyframes fadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to	 { opacity: 1; transform: translateY(0); }
	}

	/* 左アクセントライン */
.announce_box::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 4px;
	height: 100%;
	background: var(--accent);
	}

	/* ---- タイトル ---- */
.announce_title {
	font-family: 'Shippori Mincho', serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.35em;
	color: var(--accent);
	padding: 18px 24px 14px 28px;
	border-bottom: 1px solid var(--rule);
	display: flex;
	align-items: center;
	gap: 10px;
	}

.announce_title::before {
	content: '■';
	font-size: 0.5rem;
	color: var(--accent);
	}

	/* ---- リスト ---- */
.announce_box ul {
	list-style: none;
	padding: 0;
	}

.announce_box li {
	border-bottom: 1px dashed var(--rule);
	transition: background 0.2s;
	}

.announce_box li:last-child {
	border-bottom: none;
	}

.announce_box li:hover {
	background: rgba(139,58,42,0.04);
	}

.announce_box li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px 14px 28px;
	text-decoration: none;
	color: var(--ink);
	font-size: 0.88rem;
	line-height: 1.6;
	transition: color 0.2s, padding-left 0.2s;
	}

.announce_box li a::before {
	content: '›';
	color: var(--accent-light);
	font-size: 1.1rem;
	flex-shrink: 0;
	transition: transform 0.2s;
	}

.announce_box li a:hover {
	color: var(--accent);
	padding-left: 34px;
	}

.announce_box li a:hover::before {
	transform: translateX(4px);
	}

	/* ---- バックログリンク ---- */
.backlog {
	display: flex;
	justify-content: flex-end;
	padding: 10px 20px 14px;
	border-top: 1px solid var(--rule);
	}

.backlog a {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	color: var(--accent-light);
	text-decoration: none;
	padding: 4px 0;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s, color 0.2s;
	}

.backlog a:hover {
	color: var(--accent);
	border-bottom-color: var(--accent-light);
	}

#tag_filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.tag-btn {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	color: var(--accent);
	border: 1px solid var(--accent-light);
	padding: 4px 14px;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.tag-btn.active,
.tag-btn:hover {
	background: var(--accent);
	color: white;
	border-color: var(--accent);
}

.tag-btn--重要.active,
.tag-btn--重要:hover {
	color:white; background-color: var(--important); border-color: var(--important);
}
.tag-btn--休業.active,
.tag-btn--休業:hover {
	color:white; background-color: var(--holiday);   border-color: var(--holiday); 
}
.tag-btn--お知らせ.active,
.tag-btn--お知らせ:hover {
	color:white; background-color: var(--info);      border-color: var(--info);
}
