div#content {
  padding-top: 130px;
}

/* デフォルトではスマホ用の3行タイトルを非表示に */
.title-stacked {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  div#content {
    padding-top: 10px;
    padding-bottom: unset;
  }
  .title-post.entry-title {
    font-size: 31px !important;
  }
}

@media (max-width: 767px) {
  div#content {
    padding-top: 10px;
    padding-bottom: unset;
  }

  /* 標準タイトルを隠し、3行構成を表示 */
  .title-standard {
    display: none !important;
  }
  .title-stacked {
    display: flex !important;
    flex-direction: column;
    gap: 0.3em;
  }
  .line-item {
    display: block;
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
