@charset "UTF-8";

		/* ========================================
		   特集ページ専用CSS (ハイブリッドデザイン)
		   ======================================== */
		.special-main { padding-top: var(--header-height); }
		.special-page-header { text-align: center; margin-bottom: 3.5rem; }
		.page-title { font-family: var(--font-eng); font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; letter-spacing: 0.05em; color: var(--text-main); line-height: 1.1; }
		.page-subtitle { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--accent-pink); margin-top: 0.5rem; margin-bottom: 1.5rem; }
		.page-desc { font-size: 0.95rem; color: var(--text-sub); max-width: 600px; margin: 0 auto; line-height: 1.6; }

		.special-list-wrap { max-width: 1000px; margin: 0 auto; }

		/* スマホ版（バナー型） */
		.hybrid-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
		.hybrid-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: block; text-decoration: none; border: none; }
		.hybrid-img-box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
		.hybrid-img-box img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
		.hybrid-card:hover .hybrid-img-box img { transform: scale(1.05); }
		.hybrid-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%); padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }
		.hybrid-label { font-family: var(--font-eng); color: var(--accent-gold); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
		.hybrid-title { color: #fff; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 800; line-height: 1.4; margin-bottom: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
		.hybrid-desc { color: #eee; font-size: 0.85rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
		.hybrid-action { display: none; }

		/* PC版（マガジン・カード型） */
		@media (min-width: 768px) {
			.hybrid-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
			.hybrid-card { aspect-ratio: auto; display: flex; flex-direction: column; border: 1px solid #eee; background: #fff; transition: transform 0.3s; }
			.hybrid-card:hover { transform: translateY(-5px); }
			.hybrid-img-box { position: relative; height: auto; aspect-ratio: unset; }
			.hybrid-img-box img { height: auto; aspect-ratio: 16 / 9; }
			.hybrid-content { position: relative; background: none; padding: 1.5rem; flex-grow: 1; justify-content: flex-start; }
			.hybrid-label { color: #999; font-size: 0.8rem; margin-bottom: 0.5rem; letter-spacing: 0; }
			.hybrid-title { color: var(--text-main); font-size: 1.3rem; text-shadow: none; margin-bottom: 0.8rem; }
			.hybrid-desc { color: var(--text-sub); margin-bottom: 1.5rem; -webkit-line-clamp: unset; overflow: visible; }
			.hybrid-action { margin-top: auto; font-size: 0.8rem; font-weight: 700; color: var(--accent-pink); display: flex; align-items: center; gap: 5px; }
		}

		/* ページネーション */
		.pagination { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 3rem; }
		.pagination span, .pagination a { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border-radius: 4px; font-size: 0.9rem; font-family: var(--font-eng); font-weight: 700; text-decoration: none; transition: all 0.2s; }
		.page-current { background: var(--text-main); color: #fff; }
		.page-link { background: #fff; color: var(--text-sub); border: 1px solid #e0e0e0; }
		.page-link:hover { background: #f0f0f0; color: var(--text-main); }
		.page-next { background: #fff; color: var(--accent-pink); border: 1px solid var(--accent-pink); font-family: var(--font-sans); }
		.page-next:hover { background: var(--accent-pink); color: #fff; }