
        .sitemap-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .sitemap-header {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .sitemap-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/patterns/washi-pattern-light.png');
            opacity: 0.1;
            z-index: 0;
        }
        
        .sitemap-content {
            position: relative;
            z-index: 1;
        }
        
        .sitemap-title {
            font-family: 'Noto Serif JP', serif;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .sitemap-subtitle {
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: 300;
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .sitemap-body {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .sitemap-category {
            margin-bottom: 30px;
        }
        
        .sitemap-category h2 {
            color: var(--primary-color);
            font-family: 'Noto Serif JP', serif;
            font-weight: 600;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .sitemap-list {
            list-style: none;
            padding-left: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 30px;
        }
        
        .sitemap-item {
            flex: 0 0 calc(33.33% - 20px);
            margin-bottom: 15px;
        }
        
        .sitemap-link {
            display: flex;
            align-items: center;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .sitemap-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .sitemap-icon {
            margin-right: 8px;
            color: var(--primary-color);
            opacity: 0.7;
            font-size: 0.8rem;
        }
        
        @media (max-width: 992px) {
            .sitemap-item {
                flex: 0 0 calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .sitemap-header {
                padding: 40px 0;
            }
            
            .sitemap-body {
                padding: 25px;
            }
            
            .sitemap-item {
                flex: 0 0 100%;
            }
        }
    

