/*!
 * article.css … 記事・固定ページ本文の補助スタイル
 *
 * post.css に無かった見出し（h1・h4〜h6）や引用・画像まわりを補います。
 * post.css のあとに読み込みます。
 */

.post__body h1 {
  font-size: 28px;
  font-family: var(--ff-shippori);
  font-weight: 500;
  line-height: 1.6;
  margin: 60px 0 30px;
}
@media (768px <= width) {
  .post__body h1 {
    font-size: 36px;
  }}

.post__body h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--clr-lightblue);
}
@media (768px <= width) {
  .post__body h4 {
    font-size: 20px;
  }}

.post__body h5,
.post__body h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin: 32px 0 12px;
  color: var(--clr-blue);
}

.post__body h2 + h3,
.post__body h3 + h4,
.post__body h4 + h5 {
  margin-top: 32px;
}

.post__body blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background-color: #f9f7f4;
  border-left: 4px solid var(--clr-lightYellow4);
}

.post__body figure {
  margin: 32px 0;
}
.post__body figure img,
.post__body img {
  max-width: 100%;
  height: auto;
}

.post__body ul,
.post__body ol {
  margin: 24px 0;
}
.post__body li + li {
  margin-top: 8px;
}

.post__body a {
  color: var(--clr-blue);
  text-decoration: underline;
}
.post__body a:hover {
  text-decoration: none;
}

.post__body hr {
  border: 0;
  border-top: 1px solid var(--clr-lightYellow3);
  margin: 48px 0;
}

.post__body figcaption,
.post__body .wp-caption-text {
  font-size: 14px;
  color: var(--clr-gray1);
  margin-top: 8px;
}

/* 専用テンプレートを持たない固定ページの本文（page.php の .mainstage） */
.mainstage h2 {
  font-size: 24px;
  font-family: var(--ff-shippori);
  font-weight: 500;
  line-height: 1.8;
  margin: 60px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-lightblue);
}
@media (768px <= width) {
  .mainstage h2 {
    font-size: 30px;
  }}
.mainstage h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--clr-lightblue);
}
.mainstage h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.mainstage p {
  margin-bottom: 1.5em;
}
.mainstage ul,
.mainstage ol {
  margin: 24px 0 24px 1.5em;
}
.mainstage ul li {
  list-style: disc;
}
.mainstage ol li {
  list-style: decimal;
}
.mainstage li + li {
  margin-top: 8px;
}
.mainstage a {
  color: var(--clr-blue);
  text-decoration: underline;
}
.mainstage a:hover {
  text-decoration: none;
}
.mainstage img {
  max-width: 100%;
  height: auto;
}
.mainstage table {
  width: 100%;
  margin: 32px 0;
}
.mainstage table th,
.mainstage table td {
  border: 1px solid var(--clr-lightYellow3);
  padding: 10px;
}
.mainstage table th {
  background-color: var(--clr-lightYellow2);
}