/* ==========================================================================
   Xidear デザイン層
   店舗ページ（店舗情報・新着情報・ギャラリー…）と、一覧（カテゴリー・検索・投稿者）の見た目。
   すべての単位は px と %（古い style.css の rem 縮小の影響を受けないため）。
   ========================================================================== */

:root {
	--xd-ink: #111c26;
	--xd-text: #26323d;
	--xd-sub: #5d6b78;
	--xd-line: #e3e8ee;
	--xd-soft: #f4f6f9;
	--xd-green: #12864a;
	--xd-green-2: #1fb25a;
	--xd-blue: #1f6fd0;
	--xd-red: #e5231d;
	--xd-accent: var(--xd-green);
	--xd-radius: 16px;
	--xd-shadow: 0 1px 2px rgba(16, 28, 38, .06), 0 10px 28px rgba(16, 28, 38, .10);
	--xd-shadow-hi: 0 2px 4px rgba(16, 28, 38, .08), 0 18px 40px rgba(16, 28, 38, .18);
	--xd-font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "BIZ UDPGothic", Meiryo, system-ui, sans-serif;
}

/* ── ページの土台：白い1枚の箱をやめて、カードが浮かぶ形に ───────────── */
body.page-template-page-info .site-content,
body.archive .site-content,
body.search .site-content,
body.error404 .site-content {
	background: transparent;
	box-shadow: none;
	padding: 0;
	font-family: var(--xd-font);
	color: var(--xd-text);
}
body.page-template-page-info .site-content a,
body.archive .site-content a,
body.search .site-content a,
body.error404 .site-content a { text-decoration: none; }

/* ── 店舗ページ上部のメニュー（7つのアイコン） ──────────────────────── */
ul#page_nav {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 18px;
	padding: 14px;
	background: #fff;
	border-radius: var(--xd-radius);
	box-shadow: var(--xd-shadow);
}
ul#page_nav li { float: none; margin: 0; display: block; }
ul#page_nav li a {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	margin: 0;
	border-radius: 14px;
	background-image: url('../images/icon.png');
	background-repeat: no-repeat;
	background-size: 700% 100%;
	box-shadow: 0 2px 4px rgba(16, 28, 38, .18), 0 6px 14px rgba(16, 28, 38, .14);
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
	opacity: 1;
	filter: saturate(1.05);
}
ul#page_nav li a:hover,
ul#page_nav li a:focus-visible {
	opacity: 1;
	transform: translateY(-4px) scale(1.04);
	box-shadow: 0 4px 8px rgba(16, 28, 38, .2), 0 14px 26px rgba(16, 28, 38, .22);
	filter: saturate(1.2) brightness(1.04);
	outline: none;
}
li.nav_info a          { background-position: 0% 0; }
li.nav_news a          { background-position: 16.6667% 0; }
li.nav_gallery a       { background-position: 33.3333% 0; }
li.nav_mission a       { background-position: 50% 0; }
li.nav_events a        { background-position: 66.6667% 0; }
li.nav_questionnaire a { background-position: 83.3333% 0; }
li.nav_freepage a      { background-position: 100% 0; }
/* いま開いている項目：リングと、下の印 */
ul#page_nav li.is-current a { box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--xd-ink), 0 10px 20px rgba(16, 28, 38, .25); transform: translateY(-2px); }
ul#page_nav li.is-current::after { content: ""; display: block; width: 26px; height: 4px; margin: 10px auto 0; border-radius: 4px; background: var(--xd-ink); }
ul#page_nav li:not(.is-current)::after { content: ""; display: block; height: 14px; }

/* ── 店舗名の見出し ─────────────────────────────────────────── */
.xd-store-head {
	position: relative;
	margin: 0 0 18px;
	padding: 26px 26px 24px;
	border-radius: var(--xd-radius);
	background: #fff;
	box-shadow: var(--xd-shadow);
	overflow: hidden;
}
.xd-store-head::before {
	content: "";
	position: absolute; left: 0; top: 0; right: 0; height: 6px;
	background: linear-gradient(90deg, var(--xd-green-2), var(--xd-blue) 60%, #7048e8);
}
.xd-store-head::after {
	content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(31, 178, 90, .18), rgba(31, 111, 208, .05) 70%, transparent);
}
.xd-eyebrow { margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: .22em; color: var(--xd-accent); text-transform: uppercase; }
.xd-store-head .store_name,
h1.store_name {
	position: relative; z-index: 1;
	margin: 0;
	font-family: var(--xd-font);
	font-size: 32px; line-height: 1.25; font-weight: 900; letter-spacing: -.01em;
	color: var(--xd-ink);
}
.xd-company { position: relative; z-index: 1; margin: 8px 0 0; font-size: 14px; color: var(--xd-sub); font-weight: 600; }

/* ── 店舗情報ページの本体 ──────────────────────────────────── */
.xd-hero {
	position: relative; display: block; overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: 20px;
	box-shadow: var(--xd-shadow);
	background: var(--xd-soft);
}
.xd-hero img { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; object-fit: cover; transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.xd-hero:hover img { transform: scale(1.04); }
.xd-hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 30%; background: linear-gradient(transparent, rgba(0, 0, 0, .28)); pointer-events: none; }

.xd-thumbs { display: grid; gap: 12px; margin-top: 12px; grid-template-columns: repeat(3, 1fr); }
.xd-thumbs--1 { grid-template-columns: 1fr; }
.xd-thumbs--2 { grid-template-columns: repeat(2, 1fr); }
.xd-thumbs a { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; box-shadow: var(--xd-shadow); background: var(--xd-soft); }
.xd-thumbs img { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; float: none; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.xd-thumbs a:hover img { transform: scale(1.08); }

.xd-slider, .xd-manga, .xd-video { display: block; margin-top: 14px; border-radius: 16px; overflow: hidden; box-shadow: var(--xd-shadow); background: #fff; }
.xd-manga img { display: block; width: 100%; height: auto; margin: 0; }
.youtubevideo.xd-video { position: relative; padding: 0; margin: 14px 0 0; aspect-ratio: 16 / 9; background: #000; }
.youtubevideo.xd-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.xd-sec { margin-top: 34px; }
.xd-h {
	display: flex; flex-direction: column; gap: 3px;
	margin: 0 0 16px; padding: 2px 0 2px 14px;
	border-left: 5px solid var(--xd-accent);
	font-family: var(--xd-font);
	font-size: 22px; line-height: 1.3; font-weight: 900; color: var(--xd-ink);
}
.xd-h span { font-size: 11px; font-weight: 800; letter-spacing: .24em; color: var(--xd-accent); }

.xd-prose { padding: 24px 26px; background: #fff; border-radius: var(--xd-radius); box-shadow: var(--xd-shadow); }
.xd-prose p { margin: 0 0 1.1em; font-size: 16px; line-height: 2; color: var(--xd-text); }
.xd-prose p:last-child { margin-bottom: 0; }
.xd-prose p:first-child { font-size: 17px; font-weight: 600; color: var(--xd-ink); }

.xd-dl { margin: 0; background: #fff; border-radius: var(--xd-radius); box-shadow: var(--xd-shadow); overflow: hidden; }
.xd-dl__row { display: grid; grid-template-columns: 150px 1fr; align-items: start; padding: 18px 24px; border-top: 1px solid var(--xd-line); }
.xd-dl__row:first-child { border-top: 0; }
.xd-dl dt { display: flex; align-items: center; gap: 8px; float: none; width: auto; margin: 0; font-size: 14px; font-weight: 800; color: var(--xd-accent); }
.xd-dl dd { float: none; width: auto; margin: 0; font-size: 16px; line-height: 1.8; color: var(--xd-ink); font-weight: 500; }
.xd-ico { flex: 0 0 auto; width: 20px; height: 20px; }
.xd-tel { font-size: 24px; font-weight: 900; letter-spacing: .02em; color: var(--xd-ink); border-bottom: 3px solid rgba(18, 134, 74, .35); }
.xd-tel:hover { color: var(--xd-green); border-bottom-color: var(--xd-green); }

.xd-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ── ボタン ───────────────────────────────────────────── */
.xd-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px; border-radius: 999px;
	font-family: var(--xd-font); font-size: 15px; font-weight: 800; line-height: 1.2; letter-spacing: .02em;
	color: #fff; background: var(--xd-accent);
	border: 2px solid transparent;
	box-shadow: 0 6px 16px rgba(16, 28, 38, .18);
	transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
	cursor: pointer;
}
.xd-btn:hover, .xd-btn:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(16, 28, 38, .26); outline: none; color: #fff; }
.xd-btn .xd-ico { width: 18px; height: 18px; transition: transform .16s ease; }
.xd-btn:hover .xd-ico { transform: translateX(3px); }
.xd-btn--solid { background: linear-gradient(135deg, var(--xd-green-2), #0e8a49); box-shadow: 0 8px 20px rgba(18, 134, 74, .4); }
.xd-btn--line { background: #fff; color: var(--xd-green); border-color: var(--xd-green); box-shadow: none; }
.xd-btn--line:hover, .xd-btn--line:focus-visible { background: var(--xd-green); color: #fff; }

/* ── 地図・Facebook ───────────────────────────────────── */
.xd-map { position: relative; aspect-ratio: 16 / 10; border-radius: 18px; overflow: hidden; box-shadow: var(--xd-shadow); background: var(--xd-soft); }
.xd-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; margin: 0; }
.xd-fbsec .facebook { padding: 16px; background: #fff; border-radius: var(--xd-radius); box-shadow: var(--xd-shadow); overflow: hidden; text-align: center; min-height: 140px; }
.xd-fbsec .fb-page, .xd-fbsec .fb-page span, .xd-fbsec .fb-page iframe { max-width: 100% !important; }
.xd-fbsec .fb-xfbml-parse-ignore { margin: 0; padding: 8px; }
.acf-map { height: 360px; margin-top: 28px; border-radius: 18px; overflow: hidden; box-shadow: var(--xd-shadow); }

/* ── 一覧の見出し ───────────────────────────────────────── */
.xd-archive-head {
	position: relative; overflow: hidden;
	margin: 0 0 20px; padding: 28px 28px 26px;
	border-radius: 20px; color: #fff;
	background: linear-gradient(135deg, var(--xd-accent), #0d1b2a 165%);
	background: linear-gradient(135deg, var(--xd-accent), color-mix(in srgb, var(--xd-accent) 45%, #06121e));
	box-shadow: var(--xd-shadow);
}
.xd-archive-head::before, .xd-archive-head::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .12); pointer-events: none; }
.xd-archive-head::before { width: 220px; height: 220px; right: -50px; top: -80px; }
.xd-archive-head::after { width: 130px; height: 130px; right: 120px; bottom: -70px; background: rgba(255, 255, 255, .09); }
.xd-archive-head .xd-eyebrow { color: rgba(255, 255, 255, .85); }
h1.xd-archive-title { position: relative; margin: 0; font-family: var(--xd-font); font-size: 32px; line-height: 1.25; font-weight: 900; color: #fff; letter-spacing: -.01em; }
h1.xd-archive-title small { font-size: 18px; font-weight: 700; margin-left: 4px; opacity: .9; }
.xd-count { position: relative; margin: 10px 0 0; font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, .9); }
.xd-count strong { font-size: 24px; font-weight: 900; margin-right: 2px; }
.xd-archive-desc { position: relative; margin-top: 12px; font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, .92); }

/* ── 一覧のカード ─────────────────────────────────────── */
.site-content article.xd-card {
	position: relative; display: flex; align-items: stretch;
	margin: 0 0 18px; padding: 0;
	background: #fff; border: 0; border-radius: 18px; overflow: hidden;
	box-shadow: var(--xd-shadow);
	transition: transform .22s ease, box-shadow .22s ease;
}
.site-content article.xd-card:hover { transform: translateY(-4px); box-shadow: var(--xd-shadow-hi); }
.site-content article.xd-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; z-index: 2; background: var(--xd-accent); }
.xd-card__media {
	position: relative; flex: 0 0 240px; min-height: 190px; overflow: hidden;
	display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, .85);
	background: linear-gradient(135deg, var(--xd-accent), #0d1b2a 220%);
	background: linear-gradient(135deg, color-mix(in srgb, var(--xd-accent) 80%, #fff), color-mix(in srgb, var(--xd-accent) 60%, #06121e));
}
.xd-card__media .xd-ico { width: 56px; height: 56px; opacity: .55; }
.xd-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; float: none; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.xd-card:hover .xd-card__media img { transform: scale(1.07); }
.xd-badge {
	position: absolute; left: 16px; top: 14px; z-index: 1;
	padding: 5px 12px; border-radius: 999px;
	font-size: 11px; font-weight: 900; letter-spacing: .1em; line-height: 1.2; color: #fff;
	background: var(--xd-accent);
	box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}
.xd-card__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; padding: 20px 22px 20px 24px; }
.xd-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin: 0 0 8px; font-size: 12px; font-weight: 700; color: var(--xd-sub); }
.xd-card__meta time { letter-spacing: .04em; }
.xd-card__store { color: var(--xd-accent); }
.xd-card__store::before { content: ""; display: inline-block; width: 4px; height: 4px; margin: 0 8px 2px 0; border-radius: 50%; background: currentColor; opacity: .6; }
.site-content .xd-card__title { margin: 0 0 8px; padding: 0; font-family: var(--xd-font); font-size: 20px; line-height: 1.45; font-weight: 900; letter-spacing: -.005em; }
.site-content .xd-card__title a { color: var(--xd-ink); }
.site-content .xd-card__title a:hover { color: var(--xd-accent); }
.xd-card__sum {
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
	margin: 0 0 12px; font-size: 14px; line-height: 1.85; color: var(--xd-text);
	width: auto; height: auto; white-space: normal;
}
.xd-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; padding: 0; list-style: none; }
.xd-chips li { display: inline-flex; align-items: center; gap: 6px; max-width: 100%; margin: 0; padding: 5px 12px 5px 10px; border-radius: 999px; background: var(--xd-soft); font-size: 12.5px; font-weight: 600; color: var(--xd-ink); }
.xd-chips .xd-ico { width: 15px; height: 15px; color: var(--xd-accent); }
.xd-chips span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xd-card .xd-btn { align-self: flex-start; margin-top: auto; padding: 9px 18px; font-size: 13.5px; }

/* ── ギャラリー ──────────────────────────────────────── */
.xd-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
.site-content .xd-gallery__item { position: relative; margin: 0; padding: 0; overflow: hidden; border-radius: 18px; box-shadow: var(--xd-shadow); background: var(--xd-soft); float: none; width: auto; height: auto; }
.xd-gallery__item a { display: block; aspect-ratio: 4 / 3; }
.xd-gallery__item img.cat_gallery { display: block; width: 100%; height: 100%; margin: 0; float: none; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.xd-gallery__item:hover img.cat_gallery { transform: scale(1.07); }
.xd-gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 34px 16px 14px; font-size: 14px; font-weight: 800; line-height: 1.5; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .72)); pointer-events: none; width: auto; height: auto; }

/* ── ページ送り ─────────────────────────────────────── */
.navigation { display: flex; justify-content: space-between; gap: 12px; margin: 22px 0 6px; }
.navigation .nav-previous a, .navigation .nav-next a {
	display: inline-flex; align-items: center; gap: 6px; padding: 12px 22px; border-radius: 999px;
	background: #fff; color: var(--xd-ink); font-weight: 800; font-size: 14px; box-shadow: var(--xd-shadow);
}
.navigation .nav-previous a:hover, .navigation .nav-next a:hover { background: var(--xd-ink); color: #fff; }
.local-navigation { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 22px 0; }
.local-navigation .page-numbers { min-width: 42px; height: 42px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: #fff; color: var(--xd-ink); font-weight: 800; box-shadow: var(--xd-shadow); }
.local-navigation .page-numbers.current, .local-navigation a.page-numbers:hover { background: var(--xd-ink); color: #fff; }

/* ── 何もないとき（予備ページ）・404 ───────────────────── */
body.page-template-page-info .no-results, body.archive .no-results, body.search .no-results, body.error404 .no-results {
	margin: 0 0 20px; padding: 40px 30px; text-align: center;
	background: #fff; border-radius: 20px; box-shadow: var(--xd-shadow);
	border-top: 6px solid var(--xd-accent);
}
.no-results .entry-title { margin: 0 0 12px; font-family: var(--xd-font); font-size: 24px; line-height: 1.4; font-weight: 900; color: var(--xd-ink); }
.no-results .entry-content p { margin: 0 0 14px; font-size: 15px; line-height: 1.9; color: var(--xd-sub); }
.no-results .entry-content p a { display: inline-block; margin: 0 6px; padding: 10px 20px; border-radius: 999px; background: var(--xd-green); color: #fff; font-weight: 800; box-shadow: 0 6px 16px rgba(18, 134, 74, .3); }
.no-results .entry-content p a:hover { background: var(--xd-ink); }

/* ── 小さい画面（スマホ） ─────────────────────────────── */
@media (max-width: 720px), (orientation: portrait) and (max-device-width: 980px) {
	ul#page_nav { gap: 6px; padding: 10px; margin-bottom: 14px; border-radius: 14px; }
	ul#page_nav li a { border-radius: 10px; }
	ul#page_nav li.is-current a { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--xd-ink), 0 6px 12px rgba(16, 28, 38, .25); }
	ul#page_nav li.is-current::after { width: 18px; height: 3px; margin-top: 8px; }
	ul#page_nav li:not(.is-current)::after { height: 11px; }

	.xd-store-head { padding: 20px 18px 18px; border-radius: 14px; margin-bottom: 14px; }
	.xd-store-head .store_name, h1.store_name { font-size: 24px; }
	.xd-hero { border-radius: 14px; aspect-ratio: 4 / 3; }
	.xd-thumbs { gap: 8px; margin-top: 8px; }
	.xd-thumbs a { border-radius: 10px; }
	.xd-sec { margin-top: 26px; }
	.xd-h { font-size: 19px; margin-bottom: 12px; }
	.xd-prose { padding: 18px 18px; }
	.xd-prose p { font-size: 15px; }
	.xd-prose p:first-child { font-size: 16px; }
	.xd-dl__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
	.xd-dl dd { font-size: 15px; }
	.xd-tel { font-size: 22px; }
	.xd-actions { gap: 8px; }
	.xd-actions .xd-btn { flex: 1 1 calc(50% - 8px); padding: 13px 10px; font-size: 14px; }
	.xd-actions .xd-btn--solid { flex-basis: 100%; }
	.xd-map { aspect-ratio: 4 / 3; border-radius: 14px; }

	.xd-archive-head { padding: 22px 20px 20px; border-radius: 16px; }
	h1.xd-archive-title { font-size: 24px; }
	h1.xd-archive-title small { font-size: 15px; }

	.site-content article.xd-card { flex-direction: column; border-radius: 16px; }
	.site-content article.xd-card::before { width: 100%; height: 5px; bottom: auto; }
	.xd-card__media { flex: 0 0 auto; min-height: 0; aspect-ratio: 16 / 10; }
	.xd-card__body { padding: 16px 18px 18px; }
	.site-content .xd-card__title { font-size: 18px; }
	.xd-gallery { gap: 10px; }
	.site-content .xd-gallery__item { border-radius: 12px; }
	.xd-gallery__item figcaption { font-size: 12px; padding: 24px 10px 8px; }
	.no-results { padding: 30px 18px; }
}
@media (max-width: 380px) {
	.xd-gallery { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.xd-card, .xd-btn, .xd-hero img, .xd-thumbs img, .xd-card__media img, ul#page_nav li a, .xd-gallery__item img.cat_gallery { transition: none !important; }
}

/* ── 一覧ページ上部の店舗名（店舗のバナー） ──────────────────── */
body:not(.page-template-page-info) .site-content > h3.store_name {
	display: flex; align-items: center; gap: 12px;
	margin: 0 0 14px; padding: 16px 20px;
	background: #fff; border-radius: var(--xd-radius); box-shadow: var(--xd-shadow);
	border-left: 6px solid var(--xd-green);
	font-family: var(--xd-font); font-size: 20px; line-height: 1.4; font-weight: 900; color: var(--xd-ink);
}
body:not(.page-template-page-info) .site-content > h3.store_name:empty { display: none; }
body:not(.page-template-page-info) .site-content > h3.store_name::before {
	content: ""; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px;
	background: linear-gradient(135deg, var(--xd-green-2), var(--xd-blue));
	-webkit-mask: none; mask: none;
	box-shadow: 0 4px 10px rgba(18, 134, 74, .35);
}

/* ── サイドバー：カード化 ─────────────────────────────── */
body.page-template-page-info .widget-area,
body.archive .widget-area,
body.search .widget-area,
body.error404 .widget-area { background: transparent; box-shadow: none; padding: 0; }
body.page-template-page-info .widget-area .widget,
body.archive .widget-area .widget,
body.search .widget-area .widget,
body.error404 .widget-area .widget {
	margin: 0 0 18px; padding: 18px 18px 16px;
	background: #fff; border-radius: var(--xd-radius); box-shadow: var(--xd-shadow);
	font-family: var(--xd-font);
}
.widget-area .widget-title { margin: 0 0 12px; padding: 0 0 0 10px; border-left: 4px solid var(--xd-green); font-size: 14px; font-weight: 900; letter-spacing: .06em; color: var(--xd-ink); }

/* 最近の投稿ウィジェット（旧 Newpost Catch のCSSを、テーマに取り込み） */
#npcatch { margin: 0; padding: 0; list-style: none; }
#npcatch li { margin: 0; padding: 0; }
#npcatch li a { display: flex; align-items: center; gap: 12px; padding: 10px 0; width: 100%; color: var(--xd-ink); border-top: 1px solid var(--xd-line); }
#npcatch li:first-child a { border-top: 0; }
#npcatch figure { margin: 0; padding: 0; flex: 0 0 auto; }
#npcatch img { display: block; width: 52px; height: 52px; object-fit: cover; border-radius: 10px; background: var(--xd-soft); }
#npcatch .detail { min-width: 0; }
#npcatch .title { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.5; }
#npcatch li a:hover .title { color: var(--xd-green); }

/* ── パンくず ─────────────────────────────────────────── */
.breadcrumbs {
	margin: 10px auto 12px; padding: 11px 18px;
	background: #fff; border: 0; border-radius: 14px; box-shadow: var(--xd-shadow);
	font-family: var(--xd-font); font-size: 13px; line-height: 1.6; color: var(--xd-sub); font-weight: 600;
}
.breadcrumbs a { color: var(--xd-sub); text-decoration: none; }
.breadcrumbs a:hover { color: var(--xd-green); }
.breadcrumbs a.current-item, .breadcrumbs .current-item { color: var(--xd-ink); font-weight: 800; }
body.page-template-page-info .widget-area a,
body.archive .widget-area a,
body.search .widget-area a,
body.error404 .widget-area a { text-decoration: none; }
