/* oEmbed img floatによる途切れ対策（描画後にスペーサーを削除） */
.wp-embed .wp-embed-featured-image.square::after {
	content: "";
	display: block;
	width: 160px;
	height: 107px;
	animation: collapseSpacer 0s 0.1s forwards;
}
@keyframes collapseSpacer {
  to {
    display: none;
  }
}