/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 117:0 Unexpected "<"

**/
<style>
/* ブログ記事全体のベースフォントサイズ */
.blog-post {
  font-size: 16px;
  line-height: 1.8;
}

/* メインタイトル */
.blog-post-header .post-title {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

/* 投稿日 */
.post-date {
  font-size: 14px;
  color: #666;
}

/* セクション見出し（h2） */
.blog-post h2 {
  font-size: 24px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* サブセクション見出し（h3） */
.blog-post h3 {
  font-size: 20px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* 小見出し（h4） */
.blog-post h4 {
  font-size: 18px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* 本文 */
.blog-post p {
  font-size: 16px;
  margin-bottom: 1rem;
}

/* リスト */
.blog-post ul,
.blog-post ol {
  font-size: 16px;
  margin-bottom: 0.5rem;
}

/* リストの余白を調整 */
.blog-post ul,
.blog-post ol {
  margin-bottom: 0rem;  /* リスト全体の下マージン */
  margin-top: 0rem;    /* リスト全体の上マージン */
}

/* リストアイテム間の間隔を調整 */
.blog-post ul li,
.blog-post ol li {
  margin-bottom: 0.2rem;  /* リストアイテム間の間隔 */
  line-height: 1.3;      /* 行間 */
}

/* 最後のリストアイテムの下マージンを削除 */
.blog-post ul li:last-child,
.blog-post ol li:last-child {
  margin-bottom: 0;
}

/* 画像をすべて中央揃え */
.blog-post img {
  display: block; /* ブロック要素に設定 */
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* 親要素より大きくならないようにする */
  height: auto; /* アスペクト比を維持 */
}


/* モバイル対応 */
@media (max-width: 768px) {
  .blog-post-header .post-title {
    font-size: 24px;
  }
  
  .blog-post h2 {
    font-size: 22px;
    font-weight: bold;
  }
  
  .blog-post h3 {
    font-size: 22px;
  }
  
  .blog-post h4 {
    font-size: 18px;
  }
  
  .blog-post p,
  .blog-post ul,
  .blog-post ol {
    font-size: 17px;
  }
}
</style>