@charset "utf-8";
/* ========================================
   たいわゴルフクラブ - サイトマップページ専用CSS
   ファイル名: sitemap.css
   説明: サイトマップページ（sitemap.html）のスタイル定義
   ======================================== */

/* ========================================
   パンくずリスト
   説明: ページ上部のナビゲーション表示
   ======================================== */

.breadcrumb {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
    padding: 10px 0;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-size: 13px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '|';
    margin: 0 15px;
    color: #666;
    font-weight: normal;
}

.breadcrumb a {
    color: #003d82;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.breadcrumb a:hover {
    background-color: #003d82;
    color: #ffffff;
    transform: translateY(-1px);
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 600;
}

/* ========================================
   ページコンテンツ
   ======================================== */

.sitemap-page {
    padding: 60px 0 40px;
    background: #ffffff;
}

.sitemap-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sitemap-page .wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
}

/* ========================================
   ページタイトル
   ======================================== */

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #003d82;
    margin: 0 0 15px 0;
    text-align: center;
}

.sitemap-description {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.6;
}

/* ========================================
   サイトマップカテゴリー
   ======================================== */

.sitemap-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sitemap-category {
    padding: 30px;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f8ff 100%);
    border-radius: 8px;
    border-left: 4px solid #003d82;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.08);
}

.sitemap-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 61, 130, 0.15);
}

/* ========================================
   カテゴリータイトル
   ======================================== */

.category-title {
    font-size: 18px;
    font-weight: 700;
    color: #003d82;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #007bff;
    display: flex;
    align-items: center;
}

.category-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #003d82, #007bff);
    margin-right: 10px;
    border-radius: 2px;
}

/* ========================================
   サイトマップリスト
   ======================================== */

.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-list li {
    margin: 0 0 10px 0;
    padding: 0;
}

.sitemap-list li:last-child {
    margin-bottom: 0;
}

.sitemap-list a {
    display: block;
    padding: 10px 0;
    color: #003d82;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding-left: 12px;
    position: relative;
}

.sitemap-list a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.sitemap-list a:hover {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.08);
    padding-left: 16px;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

@media (max-width: 768px) {
    .sitemap-page .wrap {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .sitemap-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .sitemap-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sitemap-category {
        padding: 20px;
    }

    .category-title {
        font-size: 16px;
    }

    .sitemap-list a {
        font-size: 14px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .sitemap-page .wrap {
        padding: 20px 15px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .sitemap-description {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .sitemap-categories {
        gap: 15px;
    }

    .sitemap-category {
        padding: 15px;
        border-left-width: 3px;
    }

    .category-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .category-title::before {
        width: 3px;
        height: 16px;
        margin-right: 8px;
    }

    .sitemap-list a {
        font-size: 13px;
        padding: 7px 0;
    }

    .breadcrumb li {
        font-size: 12px;
    }

    .breadcrumb li:not(:last-child)::after {
        margin: 0 10px;
    }
}
