@charset "UTF-8";

/* フォント・色設定 */
body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  background-color: #fffdf9;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
  padding: 20px;
}

/* ヘッダー */
h1 {
  font-size: 2em;
  color: #004d40;
  margin-bottom: 1em;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.3em;
}

h2, h3 {
  color: #00695c;
}

/* 強調文字 */
strong {
  color: #00796b;
}

/* ブログ内リンク */
a {
  color: #00695c;
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  body {
    font-size: 15px;
    padding: 15px;
  }

  h1 {
    font-size: 1.6em;
  }
}