/* 下層ページKV修正 */
.c-page-header[data-has-image=true] {
    height: clamp(150px, 62.5vw, 250px);
}

.c-page-header {
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(13, 97, 149, 0.3);
      z-index: 10;
    }
    .c-page-header__title {
      z-index: 100;
    }
  }
  

  h3.wp-block-heading {
    font-size: 22px;
    letter-spacing: 0.06em;
    &::before{
        content: '';
        position: absolute;
        bottom: -1px;
        width: 10%;
        height: 1px;
        background: #0d6195;
      }
  }

  h4.wp-block-heading {
    font-size: 18px;
    letter-spacing: 0.06em;
    padding-left: 0.5em;
    border-left: solid 4px #0d6195
  }

  /* 投稿ページ 更新日、投稿者を非表示 */
  .c-meta__item.c-meta__item--modified,
  .c-meta__item.c-meta__item--author {
    display: none;
  }