/* ローカルフォントの定義 */

/* 夜すがら手書きフォント1.2 */
@font-face {
  font-family: "Yoru Sugara";
  src: url("../fonts/夜すがら手書きフォント1.2/yosugaraver1_2.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  
  .ttl{
    font-size: 50px;
    font-family: "Yoru Sugara", cursive; /*上で設定したフォントファミリー名*/
  }
}

/* 新しいフォントを追加する場合の例 */
/*
@font-face {
    font-family: 'Your Custom Font Name';
    src: url('../fonts/YourFont-Regular.woff2') format('woff2'),
         url('../fonts/YourFont-Regular.woff') format('woff'),
         url('../fonts/YourFont-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Your Custom Font Name';
    src: url('../fonts/YourFont-Bold.woff2') format('woff2'),
         url('../fonts/YourFont-Bold.woff') format('woff'),
         url('../fonts/YourFont-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
*/
