@charset "UTF-8";
body {
  font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
               'Helvetica Neue', /* Macの欧文 (OS X 10.10以前) */
               'Segoe UI',       /* Windowsの欧文 */
               "游ゴシック",     /* Windows8.1以上は游ゴシック */
               YuGothicM,
               YuGothic,         /* Macの游ゴシック */
               "メイリオ",       /* 游ゴシックが入っていないWindows */
               Meiryo,
               sans-serif;
}
/* IE8〜11はメイリオ */
@media screen\0 {
  body {
    font-family: 'Segoe UI', /* Windowsの欧文 */
                 "メイリオ", /* メイリオ */
                 Meiryo,
                 sans-serif;
  }
}

