/* ============================
   Tailwind ビルド済みCSSを読み込み
============================ */
@import url("../css/tailwind.min.css");

/* ============================
   店舗テーマカラー（スターライトノベル）
============================ */

/* Google Fonts 読み込み前提：
   HTML <head> に以下を入れておく
   <link href="https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap" rel="stylesheet">
*/

body {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif !important;
}

/* カラー */
.text-primary { color: #444a90 !important; }
.bg-primary { background-color: #444a90 !important; }
.text-accent { color: #f9dc62 !important; }
.bg-accent { background-color: #f9dc62 !important; }

/* 背景画像 */
.bg-main {
  background-image: url("./main.webp") !important;
  background-size: cover;
  background-position: center;
}
.bg-interior {
  background-image: url("./interior.webp") !important;
  background-size: cover;
  background-position: center;
}