/* =========================================
           1. Variables & Base (基本設定)
        ========================================= */
        
:root {
    --bg-base: #ffffff;
    --bg-surface: #f8f9fa;
    --primary-orange: #ff7a00;
    --text-main: #2b2b2b;
    --text-muted: #666666;
    --border-color: #e5e5e5;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* 横方向のはみ出しを強制的に隠す */
    /* なめらかスクロール */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.7;
    letter-spacing: 0.05em;
    overflow-x: hidden; /* 横方向のはみ出しを強制的に隠す */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.font-en {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
