/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 01 2026 | 18:11:41 */
/* =========================================
   サイト全体共通設定 (Global CSS)
   ========================================= */

/* 1. 日本語フォント(Noto Sans JP)の読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* 2. フォントファミリーの優先順位定義 */
/* Kanit(英数) を先に書き、その後に Noto Sans JP(日本語) を書くことで自動的に使い分けられます */
body, h1, h2, h3, h4, h5, h6,
p, span, a, li, div,
input, button, select, textarea,
.elementor-widget-heading-title,
.elementor-widget-text-editor {
    font-family: 'Kanit', 'Noto Sans JP', sans-serif !important;
}

/* 3. サイト全体の文字詰め（カーニング）を美しくする */
body {
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased; /* 文字を滑らかに */
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   ブランドアクセント (任意)
   ========================================= */

/* テキスト選択時の色（ブランドカラーのピンクに） */
::selection {
    background: #FF3399;
    color: #FFFFFF;
}

/* スクロールバーのデザイン（Webkitブラウザ用） */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #1A1B41; /* つまみは紺色 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00CFFF; /* ホバーで水色 */
}

/* =========================================
   英数字もNoto Sans JPを強制するクラス
   ========================================= */
.eiji, .eiji * {
    font-family: 'Noto Sans JP', sans-serif !important;
}