/* =============================================================================
   Menu list page — page-id-2855
   ============================================================================= */

/* ── ページ全体のベース ── */
.page-id-2855 .p-page__content {
	max-width: 1120px;
	margin-inline: auto;
	padding: 4rem 1.5rem 8rem;
}

/* ── リスト: 3カラムグリッド ── */
.page-id-2855 .p-postList.-type-card {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	background: #1a1714;
	border: 1px solid #1a1714;
}

/* ── カードアイテム ── */
.page-id-2855 .p-postList__item {
	background: #0a0a0a;
	position: relative;
}

/* ── リンク ── */
.page-id-2855 .p-postList__link {
	display: flex !important;
	flex-direction: column;
	text-decoration: none !important;
	color: inherit !important;
	height: 100%;
}

/* ── サムネイル ── */
.page-id-2855 .c-postThumb {
	overflow: hidden;
	background: #0a0a0a;
}

.page-id-2855 .c-postThumb__figure {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #0a0a0a;
}

.page-id-2855 .c-postThumb__img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	display: block !important;
	opacity: 0.72;
	transition:
		transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		opacity 0.7s ease;
	transform-origin: center;
}

.page-id-2855 .p-postList__link:hover .c-postThumb__img {
	transform: scale(1.07);
	opacity: 0.92;
}

/* ── カード本文エリア ── */
.page-id-2855 .p-postList__body {
	padding: 1.75rem 1.75rem 2.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #1e1c1a;
	position: relative;
}

/* ── ゴールドアクセントライン（ホバーで伸びる）── */
.page-id-2855 .p-postList__body::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background: #c9a227;
	transition: width 0.55s ease;
}

.page-id-2855 .p-postList__link:hover .p-postList__body::before {
	width: 100%;
}

/* ── タイトル ── */
.page-id-2855 .p-postList__title {
	font-family: 'Shippori Mincho', serif !important;
	font-size: clamp(1rem, 2vw, 1.15rem) !important;
	font-weight: 400 !important;
	letter-spacing: 0.3em;
	color: #e7e5e4;
	line-height: 1.4;
	margin: 0 0 0.9rem !important;
	transition: color 0.3s ease;
}

.page-id-2855 .p-postList__link:hover .p-postList__title {
	color: #c9a227;
}

/* ── 抜粋テキスト ── */
.page-id-2855 .p-postList__excerpt {
	font-size: 0.76rem !important;
	line-height: 1.9 !important;
	letter-spacing: 0.06em;
	color: #4a4540;
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.page-id-2855 .p-postList__excerpt p {
	margin: 0 !important;
}

/* ── 表示矢印（ホバー時に表示）── */
.page-id-2855 .p-postList__body::after {
	content: '→ VIEW';
	display: block;
	margin-top: 1.25rem;
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	color: #c9a227;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-id-2855 .p-postList__link:hover .p-postList__body::after {
	opacity: 1;
	transform: translateX(0);
}

/* ── モバイル (767px以下) ── */
@media (max-width: 767px) {
	.page-id-2855 .p-page__content {
		padding: 2rem 0 5rem;
	}

	.page-id-2855 .p-postList.-type-card {
		grid-template-columns: 1fr !important;
	}

	.page-id-2855 .p-postList__body {
		padding: 1.25rem 1.5rem 1.75rem;
	}

	.page-id-2855 .p-postList__body::after {
		margin-top: 0.9rem;
		opacity: 1;
		transform: translateX(0);
	}
}

/* ── タブレット (768px–1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {
	.page-id-2855 .p-page__content {
		padding: 3rem 1.5rem 6rem;
	}
}
