@charset "UTF-8";

/* WordPress管理画面から入稿されたコンテンツを、静的HTMLと同じスタイルで表示するためのCSS */

.thumnnail img {
  height: auto;
}

/* 記事本文コンテナの基本スタイル */
.article-body h2,
.article-body h3:first-of-type {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  margin-top: 56px;
}

.article-body h3 {
  margin-top: 56px;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

.article-body p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 2;
}

.article-body p a {
  text-decoration: underline;
}

.article-body p a:hover {
  text-decoration: none;
}

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 481px) {

  .article-body h2,
  .article-body h3:first-of-type {
    font-size: 19px;
  }

  .article-body h3 {
    font-size: 16px;
  }

  .article-body p {
    font-size: 14px;
  }
}