/* 文字基本スタイル */
/* PC用のスタイル */
h1 { font-size: 28px; margin-bottom: 20px; }
h2 { font-size: 24px; margin-bottom: 18px; }
h3 { font-size: 20px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 14px; }
h5 { font-size: 16px; margin-bottom: 12px; }
h6 { font-size: 14px; margin-bottom: 10px; }
p { font-size: 16px; line-height: 1.6; }

/* スマートフォン用のスタイル（メディアクエリ） */
@media (max-width: 768px) {
  h1 { font-size: 24px; margin-bottom: 15px; }
  h2 { font-size: 22px; margin-bottom: 14px; }
  h3 { font-size: 20px; margin-bottom: 13px; }
  h4 { font-size: 18px; margin-bottom: 12px; }
  h5 { font-size: 16px; margin-bottom: 11px; }
  h6 { font-size: 14px; margin-bottom: 10px; }
  p { font-size: 16px; line-height: 1.4; }
}