@charset "UTF-8";


/* -------------------------------------------
   Sitemap Page Styles (page-sitemap.php)
------------------------------------------- */

/* コンテンツエリアの枠組み */
.sitemap-content {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .sitemap-content {
        padding: 40px 20px;
    }
}

/* プラグインが出力する見出し (h2等) */
.sitemap-content h2, 
.wsp-pages-title, 
.wsp-posts-title {
    font-size: 1.3rem;
    color: #e8a798; /* テーマカラーのピンク */
    border-bottom: 2px dotted #eaddd3;
    padding-bottom: 10px;
    margin: 30px 0 20px;
    font-weight: bold;
}

/* リスト全体のスタイル */
.sitemap-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

/* リストアイテム */
.sitemap-content li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
}

/* リストの点の装飾 */
.sitemap-content li::before {
    content: "●";
    color: #eaddd3; /* 薄いベージュ */
    font-size: 0.6em;
    position: absolute;
    left: 0;
    top: 0.7em;
}

/* リンクのデザイン */
.sitemap-content a {
    color: #5a4a42;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.sitemap-content a:hover {
    color: #e8a798;
    border-bottom-color: #e8a798;
}

/* 階層がある場合のインデント（子ページなど） */
.sitemap-content ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}