/* 投稿・固定記事の共通表示アニメーション。トップページでは読み込まない。 */
html.gl-entry-motion-ready .article-header .post-thumbnail {
	opacity: 0;
	transform: none;
	transition: opacity 0.5s ease;
}

html.gl-entry-motion-ready .entry-content h2,
html.gl-entry-motion-ready .entry-content h3 {
	opacity: 0;
	transform: translateY(15%);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

html.gl-entry-motion-ready .article-header .post-thumbnail.is-gl-entry-visible {
	opacity: 1;
}

html.gl-entry-motion-ready .entry-content :is(h2, h3).is-gl-entry-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html.gl-entry-motion-ready .article-header .post-thumbnail,
	html.gl-entry-motion-ready .entry-content h2,
	html.gl-entry-motion-ready .entry-content h3 {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
