/* 1. フォントを定義する */
@font-face {
  font-family: 'LINESeedJP';
  src: url('../fonts/LINESeedJP-Rg.woff2') format('woff2');
  font-weight: 400; /* Regularの場合 */
  font-style: normal;
  font-display: swap; /* 読み込み中もテキストを表示させる設定 */
}

/* 2. 適用する */
body {
  font-family: 'LINESeedJP', sans-serif;
}