@charset "UTF-8";
/* アイコンフォント icomoon（トップページのみで使用・13 箇所）
 *
 * 2026-08-11: public_html/css/font-style.css から icomoon 部分だけを取り出してテーマ内へ移した。
 * ⚠ 元ファイルには Noto Sans JP の @font-face もあり、サブセットしていない woff2 を
 *    3 本（Light/Bold/Black 計 883KB）トップページだけで読ませていた。
 *    Noto Sans JP は Google Fonts 側（unicode-range 付きサブセット）に一本化したので、
 *    ここでは icomoon だけを持つ。元ファイルはテーマ外なので参照をやめただけで残っている。
 */

@font-face {
  font-display: block;
  font-family: 'icomoon';
  src:
    url('https://casefactory.jp/fonts/icomoon.ttf') format('truetype'),
    url('https://casefactory.jp/fonts/icomoon.woff') format('woff'),
    url('https://casefactory.jp/fonts/icomoon.svg?#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

#content.icomoon-loaded {
    [class^="fa-"], [class*=" fa-"] {
      /* use !important to prevent issues with browser extensions that change fonts */
      font-family: 'icomoon' !important;
      speak: never;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
    
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    .fa-file:before {
      content: "\e904";
    }
    .fa-envelope:before {
      content: "\e905";
    }
    .fa-download:before {
      content: "\e900";
    }
    .fa-phone:before {
      content: "\e901";
    }
    .fa-square-check:before {
      content: "\e902";
    }
    .fa-circle-xmark:before {
      content: "\e903";
    }
}
