/* =========================================
   サイトマップ (sitemap.html) 専用スタイル
========================================= */

.sitemap-section {
    background-color: #f7f9fc; /* 全体を薄いブルーグレーに */
    padding: 80px 20px 100px;
}

.sitemap-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff; /* リスト部分は白いカード状に */
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* タイトルエリア */
.sitemap-title-area {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 2px solid #eef2f6;
    padding-bottom: 30px;
}

.sitemap-title-area .en-title {
    display: block;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #0f2541;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sitemap-title-area .ja-title {
    font-size: 2.4rem;
    color: #0f2541;
    margin: 0;
    font-weight: normal;
}

/* --- サイトマップのリスト装飾 --- */

/* メインのリスト（大項目） */
.sitemap-list-main {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list-main > li {
    margin-bottom: 30px;
}

/* 大項目のリンクとテキスト */
.sitemap-link-main,
.sitemap-category {
    display: inline-block;
    font-size: 1.2rem;
    color: #0f2541;
    font-weight: bold;
    text-decoration: none;
    padding-left: 15px;
    border-left: 5px solid #4a7c8c; /* 左側にアクセントカラーの線 */
    margin-bottom: 15px;
    transition: color 0.3s;
}

.sitemap-link-main:hover {
    color: #4a7c8c;
}

/* サブリスト（中項目） */
.sitemap-list-sub {
    list-style: none;
    padding: 0 0 0 25px; /* 大項目から少し字下げする */
    margin: 0;
}

.sitemap-list-sub li {
    margin-bottom: 15px;
    position: relative;
}

/* サブリストのリンク */
.sitemap-list-sub a {
    color: #333333;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

/* リンクの左に小さな矢印アイコンを付ける */
.sitemap-list-sub a::before {
    content: "›"; /* 右向きの矢印（記号） */
    color: #4a7c8c;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 10px;
    line-height: 1;
}

.sitemap-list-sub a:hover {
    color: #4a7c8c;
    text-decoration: underline;
}

/* --- レスポンシブ対応（スマホ表示） --- */
@media (max-width: 768px) {
    .sitemap-section {
        padding: 40px 15px 80px;
    }
    
    .sitemap-container {
        padding: 40px 20px;
    }
    
    .sitemap-title-area .ja-title {
        font-size: 2rem;
    }
    
    .sitemap-link-main,
    .sitemap-category {
        font-size: 1.1rem;
    }
    
    .sitemap-list-sub a {
        font-size: 0.95rem;
    }
}