html, body {
    scroll-behavior: auto !important;
}
/* --- CSS Custom Properties (CSS変数) --- */
:root {
    --color-primary: #1e2c54; /* アクセントカラー */
    --color-background: #ffffff; /* 背景色 */
    --color-text: #333333; /* 基本テキストカラー */
    --color-text-light: #ffffff; /* 明るいテキストカラー */
    --color-loader-bg: #5985eb; /* ローディング画面背景色 */
    --font-family-base: 'Noto Sans JP', sans-serif;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --content-width: 1100px;
    --spacing-unit: 8px;
}

/* --- Base Styles --- */
html { 
    scroll-behavior: smooth; 
}

body { 
    line-height: 1.7; 
    font-family: var(--font-family-base); 
    color: var(--color-text); 
    background-color: var(--color-background); 
}

a { 
    color: var(--color-primary); 
    text-decoration: none; 
}

h1, h2, h3, h4 { 
    font-weight: var(--font-weight-bold); 
}
