/* アクセント用にセクションの背景に横線 */
.background-svg-gray {
    background-image: url('data:image/svg+xml,<svg width="35" height="6" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="3" x2="35" y2="3" stroke="%23cccccc" stroke-width="0.2"/></svg>');
}

/* コピーライト中央寄せ */
.c-row--between {
  justify-content: center;
}  

/* フッターウィジットエリア上下部にある余白の除去 */
.l-footer--default .l-footer-widget-area {
  padding-bottom: var(--_padding1);
  padding-top: calc(var(--_padding1)* .5);
}

/* 見出しの下線の除去 */
.smb-section__title::after {
  display: none;
}

/* ヘッダーとメインビジュアルの間にある余白の除去 */
.l-contents__main .c-section:first-child {
  padding-top: 0;
}

.l-contents__main .c-section:last-child {
  padding-bottom: 0;
}

.l-contents__inner:first-child {
  padding-top: 0;
}

/* 投稿記事文末の左側に表示されるタグを非表示 */
.c-entry__body .c-entry-tags {
	display:none;
}
  
/* 著者名削除 */
li.c-meta__item.c-meta__item--author {
  display: none;
}