@charset "UTF-8";

/* 記事本文の読みやすさを向上 */
.article-content {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

/* 見出しデザイン */
.article-content h2 {
  font-size: 1.4em;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: #004d40;
  border-left: 5px solid #00796b;
  padding-left: 10px;
}

/* 強調テキスト */
.article-content strong {
  color: #00796b;
  font-weight: bold;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .article-content {
    font-size: 15px;
  }
}
