/*
* single.css - 投稿詳細ページ専用CSS
*/
/*
* テーマのスタイル打ち消し
*/
:root {
  :where(.wp-block-heading) {
    padding-bottom: 0;
    margin-block-end: var(--wp--preset--spacing--30);
  }
  h2 {
    font-size: var(--wp--preset--font-size--x-large);
  }
  :where(h3,h4) {
    font-size: var(--wp--preset--font-size--large);
  }
  :where(h5,h6) {
    font-size: var(--wp--preset--font-size--medium);
  }
  .wp-block-image :where(figcaption) {
    margin-top: 1.25em;
    margin-bottom: 0;
    font-size: var(--wp--preset--font-size--xx-small);
    color: var(--wp--preset--color--custom-gray-02, #606060);
  }
}

.ys-single__thumbnail {
  padding: 24px;
  background-color: var(--wp--preset--color--custom-white, #fff);
  margin-block-start: var(--wp--preset--spacing--40);
}

.ys-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

