@charset "UTF-8";

/* --- ダークモード強制無効化 --- */
:root {
    color-scheme: light;
}

/* --- Global Variables --- */
:root {
    --primary: #007AFF;
    --primary-light: #00ffcc;
    --bg: #fff;
    --text: #1a1a1a;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-display: 'Outfit', sans-serif;
}

/* --- Base Typography & Reset Additions --- */
html {
    color-scheme: light;
    background: #ffffff;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    /* ダークモード設定を上書きして常にライトモードで表示 */
    color-scheme: light;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

main#ADVANCED_SHOP {
    width: 100%;
}
