: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: fixed;
    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;
}

.header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    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;
}

.header .logo-container {
    width: 240px;
    height: 60px;
    background-image: url('../images/main/tsuginohi_logo_20250718_fin.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--radius-sm);
}

.header .nav {
    align-items: center;
    gap: var(--space-sm);
}

.header .nav-item {
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.header .nav-item:hover {
    background: var(--light-gray);
    color: var(--deep-green);
}

.header .nav-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a71e2a 100%);
    color: var(--white) !important;
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-light);
    margin-left: var(--space-sm);
}

.header .nav-cta:hover {
    background: linear-gradient(135deg, #a71e2a 0%, var(--primary-red) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

@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);
	}
}
