body {
	letter-spacing: 0.05em;
	line-height:1.4;
}

/* カラム内コンテンツの高さを揃える */
.ujs-stretch-columns.wp-block-columns {
    align-items: stretch !important;
}
.ujs-stretch-columns .wp-block-column {
    align-self: stretch;
    display: flex;
}
.ujs-stretch-columns .wp-block-column > * {
    width: 100%;
	height: calc(100% - (1em + 20px + clamp(30px, 4vw, 40px)));
}

/* アーカイブウィジェットのタイトル表示制御 */
.archive__item > .heading {
	white-space: nowrap; /* 横幅のMAXに達しても改行しない */
    overflow: hidden; /* 溢れた部分を隠す */
    text-overflow: ellipsis; /* 「…」と省略 */
    -webkit-text-overflow: ellipsis; /* Safari用 */
    -o-text-overflow: ellipsis; /* Opera用 */
}

/* 自動生成目次ウィジェットのバグ消去 */
#ez-toc-height-test {
	display: none;
}

/* 投稿ページタイトル左寄せ */
.keyvisual__text_area-is-date_square > .keyvisual__text_area__inner > .heading {
	text-align: start;
}

/* パンくずリストカテゴリ名非表示*/
body.single-post .breadcrumb__list li:nth-child(3) {
    display: none;
}