@charset "UTF-8";

/*
 * 全ページ共通のカスタムプロパティ。
 * style.css / top-style.css で重複定義されていたものをここに集約。
 * ※ --font / --mincho / --lightblue は両ファイルで値が異なるため、
 *   意図しない表示変更を避ける目的で現時点では各ファイル側に残している。
 */

:root {
  --vw: 1512;
  --vh: 982;

  --black: #000;
  --blue: #2e78ee;
  --gray: #dcdcdc;
  --white: #fff;

  --linear: linear-gradient(90deg, #27e58e 0%, #0fc4f2 25.96%, #1b34b2 100%);

  --poppins: "Poppins", sans-serif;
}

/*** スマホ 320px ~ 767px ***/
@media screen and (max-width: 768px) {
  :root {
    --vw: 375;
    --vh: 667;
  }
}
