/* サイトマップ専用スタイル */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
}

.sitemap-container a:visited{
    color: black !important;
}
.sitemap-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    color: #3300ff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3300ff, #6633ff);
    border-radius: 2px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sitemap-section {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sitemap-section h2 {
    color: #3300ff;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.sitemap-section h2::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3300ff, #6633ff);
    border-radius: 2px;
}

.sitemap-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sitemap-section li {
    margin: 12px 0;
    position: relative;
    padding-left: 20px;
}

.sitemap-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #6633ff;
}

.sitemap-section a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
    font-size: 15px;
}

.sitemap-section a:hover {
    color: #3300ff;
    text-decoration: none;
}

/* フッタースタイル */
.sitemap-footer {
    text-align: center;
    padding: 20px 0;
    color: #777;
    font-size: 14px;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .sitemap-container {
        margin: 30px auto;
    }
    
    .sitemap-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .sitemap-section {
        padding: 20px;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .sitemap-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .sitemap-section h2 {
        font-size: 17px;
    }
    
    .sitemap-section li {
        margin: 10px 0;
    }
}