/* fontNeuePlak */
/* 
@font-face {
  font-family: '任意のWEBフォント名';
  src: url('読み込むフォントファイルのパス') format('フォーマット名');
} 
*/
/* 
body{
  font-family:'Kallisto-Bold;
} 
  700〜800 Bold
*/
/*----------------------------------------------------------------------------
  https://media.aws.locondo.jp/descentestatic/common/font/
  https://developer.mozilla.org/ja/docs/Web/CSS/@font-face/font-weight
----------------------------------------------------------------------------*/
@font-face {
  font-family: 'Kallisto-Bold';
  font-weight: 700;
  font-display: swap;
  src:  url('https://media.aws.locondo.jp/descentestatic/common/font/Kallisto-Bold.woff2') format('woff2'),
        url('https://media.aws.locondo.jp/descentestatic/common/font/Kallisto-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Kallisto-Bold';
  font-weight: 800;
  font-display: swap;
  src:  url('https://media.aws.locondo.jp/descentestatic/common/font/Kallisto-Bold.woff2') format('woff2'),
        url('https://media.aws.locondo.jp/descentestatic/common/font/Kallisto-Bold.woff') format('woff');
}

/*----------------------------------------------------------------------------*/
