/* Google Fontsを使用するため、@font-faceは不要 */
/* フォントフォールバック用のCSS */
.font-loading {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
}
.font-loaded {
  font-family: "Shippori Mincho B1", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

/* Loraフォント用のフォールバック設定 */
.lora-font-loading {
  font-family: "Times New Roman", "Times", serif;
}
.lora-font-loaded {
  font-family: "Lora", "Times New Roman", "Times", serif;
}

/* 既存のローカルフォント（バックアップ用） */
/*
@font-face {
  font-family: "Shippori Mincho B1";
  src: url("/assets/font/ShipporiMinchoB1-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Shippori Mincho B1";
  src: url("/assets/font/ShipporiMinchoB1-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("/assets/font/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("/assets/font/Lora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*/