/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  --default-font-family: 
    /* iOS/macOS向け */
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    /* Android向け */
    "Noto Sans JP",
    "Noto Sans CJK JP",
    /* Windows向け */
    "Yu Gothic",
    "BIZ UDPGothic",
    /* Windows 8.1以前向け */
    "Meiryo",
    /* フォールバック */
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

body {
  font-family: var(--default-font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Android向けのフォントレンダリング設定 */
  -webkit-text-size-adjust: 100%;
}
