
:root {
    /* 企業カラー（10%ブランドカラー） */
    --primary-red: #dc3545;
    --primary-yellow: #ffc107;
    --primary-green: #28a745;
    --deep-green: #2d5016;
    --dark-navy: #212F3D;
    
    /* ニュートラルカラー（60%） */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --gray: #6c757d;
    
    /* 補完色（30%） */
    --text-dark: #2c3e50;
    --text-medium: #495057;
    
    /* 8ポイントグリッドシステム */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-xxxl: 64px;
    --space-xxxxl: 80px;
    
    /* フォントシステム（4サイズ + 2ウェイト） */
    --font-japanese: 'Noto Sans JP', sans-serif;
    --font-english: 'Inter', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    /* フォントサイズ（4つのみ） */
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    
    /* フォントウェイト（2つのみ） */
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    
    /* シャドウ */
    --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    
    /* ボーダーラジアス */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* =================
   ヘッダー（ロゴ1.5倍）
================= */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--medium-gray);
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #F5F5F1;
}
.header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transform: SCALE(0.9);
}

.logo-mekashoku {
    width: 240px;
    height: 60px;
    background-image: url('../images/top/mekashokuHeaderIcon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.header .nav {
    align-items: center;
    display: flex;
    gap: var(--space-sm);
}

.header .nav-item {
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    color: #53342e;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.img-line {
    width: 100px;
    height: 60px;
    background-image: url('../images/top/Line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 480px) {

    .logo-mekashoku {
        width: 130px;
    }
    .header .nav-item {
        padding: 8px 6px;
    }
}
/*
@media (min-width: 1024px) {
	.header .nav {
	    display: flex;
	    align-items: center;
	    gap: var(--space-sm);
	}
}
@media (max-width: 1023px) {
	.header .nav {
	    display: none;
	    align-items: center;
	    gap: var(--space-sm);
	}
}

@media (max-width: 480px) {

    .header .logo {
        transform: SCALE(0.5); 
        margin-left: -30px;
    }
}*/