@charset "utf-8";
/*
フォント
*/
/* Latin: Gabarito */
@font-face {
  font-family: "Gabarito Latin";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gabarito-Regular.woff2") format("woff2"),
    url("../fonts/Gabarito-Regular.woff") format("woff");
  font-display: swap;
  /* 英数と基本記号のみを担当させる（見出しで英数を確実にラテンに） */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Gabarito Latin";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Gabarito-Bold.woff2") format("woff2"),
    url("../fonts/Gabarito-Bold.woff") format("woff");
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
/* JP: Zen Kaku Gothic New（日本語全般を担当） */
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ZenKakuGothicNew-Medium.woff2") format("woff2"),
    url("../fonts/ZenKakuGothicNew-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ZenKakuGothicNew-Bold.woff2") format("woff2"),
    url("../fonts/ZenKakuGothicNew-Bold.woff") format("woff");
  font-display: swap;
}
.gabarito {
  font-family: "Gabarito Latin", "Zen Kaku Gothic New", system-ui, sans-serif;
}
body {
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, "Segoe UI",
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-synthesis-weight: none;
  font-synthesis-style: none;
}