/* ---------------------------------------------
   フォント定義
--------------------------------------------- */

/* Zen Kaku Gothic New Regular */
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("/fonts/zen-kaku-gothic-new/ZenKakuGothicNew-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Zen Kaku Gothic New Medium */
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("/fonts/zen-kaku-gothic-new/ZenKakuGothicNew-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* DM Sans Regular */
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans/DMSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* DM Sans Medium */
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans/DMSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------
   フォントクラス
--------------------------------------------- */

/* 日本語フォント：Zen Kaku Gothic New */
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 英字フォント：DM Sans */
.dm-sans-regular {
  font-family: "DM Sans", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.dm-sans-medium {
  font-family: "DM Sans", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}


