@charset "utf-8";

/* (1) .pf-content 配下で .entry-header が .entry-content を含む場合 */
div.pf-content header.entry-header:has(div.entry-content) {
	all: unset;
	display: contents;
}

/* (2) .pf-content 配下で .entry-header が .entry-content を含む場合に、h1.entry-title を非表示 */
div.pf-content header.entry-header:has(div.entry-content) h1.entry-title {
	display: none;
}

/* (3) .pf-content 配下で .entry-header が .entry-content を含まない場合 */
div.pf-content header.entry-header:not(:has(div.entry-content)) {
	display: none;
}