/**
 * サイトマップ強化スタイル
 */

/* コラムサイトマップの全幅レイアウト */
.column-sitemap-full-width {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* 全幅コラムセクション */
.sitemap-column-full {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

/* カテゴリセクション */
.column-category-section {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4f46e5;
    display: inline-block;
}

/* コラムリスト */
.column-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.column-item {
    margin-bottom: 0;
}

.column-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #374151;
    padding: 0.75rem;
    background: white;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    min-height: 70px;
}

.column-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #4f46e5;
}

.column-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    flex: 1;
}

.column-date {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    align-self: flex-end;
    margin-top: auto;
}

/* カテゴリ別の色分け */
.column-category-section:nth-child(1) .category-title {
    border-bottom-color: #dc2626; /* DX推進 */
}

.column-category-section:nth-child(2) .category-title {
    border-bottom-color: #10b981; /* Web戦略 */
}

.column-category-section:nth-child(3) .category-title {
    border-bottom-color: #8b5cf6; /* AI活用 */
}

.column-category-section:nth-child(4) .category-title {
    border-bottom-color: #f59e0b; /* マーケティング */
}

.column-category-section:nth-child(5) .category-title {
    border-bottom-color: #06b6d4; /* 業務効率化 */
}

.column-category-section:nth-child(6) .category-title {
    border-bottom-color: #ef4444; /* テクノロジー */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .column-sitemap-full-width {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .column-category-section {
        padding: 1rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .column-item a {
        padding: 0.75rem;
    }
    
    .column-title {
        font-size: 0.9rem;
    }
}

/* 既存のサイトマップスタイルとの統合 */
.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #4f46e5;
    padding-bottom: 0.5rem;
    display: inline-block;
}