@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --w-site: 1440px; /* サイト横幅 */
  --w-sp: 768px; /* ブレイクポイント */
  --ease: cubic-bezier(.215, .61, .355, 1); /* 標準イージング */
  --font-main: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", arial, "BIZ UDPGothic",
    "Noto Sans JP", meiryo, sans-serif;
  --font-en: "Bebas Neue", sans-serif;

  /* 色一覧 */
  --color-black: #000000;
  --color-gray-light: #D9D9D9;
  --color-gray-dark: #A4A4A4;
  --color-white: #FFFFFF;
}

/* デバイス毎の表示切り替え */
@media (width < 768px) {
  .pc {
    display: none !important;
  }
}

@media (768px <= width) {
  .sp {
    display: none !important;
  }
}
