/*
@design_size：  提供デザイン画面サイズ（1920px）
@custom_size：  縮小デザイン画面サイズ
@ratio：        提供画面サイズと縮小画面サイズの比

  @custom_size_px ~ @design_size_pxは、アスペクト比を維持する

*/
html {
  font-size: 96%;
}
@media (max-width: 1920px) {
  html {
    font-size: 0.8vw;
  }
}
@media (max-width: 1250px) {
  html {
    font-size: 62.5%;
  }
}
body {
  font-size: 1.6rem;
}
