@charset "UTF-8";
.sitemap-box {
/*	padding: 0px 10px;*/
}
/* h1 全体のスタイル */
.sitemap-box .sub-section h1 {
    text-align: center;
    margin: 40px 0px 0px 0px;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding-bottom: 50px;
    background-color: #CFEAF8;
    border-bottom: 4px solid #007BFF; /* 下線を追加 */
}

/* 英語タイトルのスタイル */
.sitemap-box .sub-section .en {
    display: block;
    font-size: 22px;
    letter-spacing: 4px;
    color: #007BFF;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 英語タイトルに影を追加 */
}

/* 日本語タイトルのスタイル */
.sitemap-box .sub-section .ja {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    position: relative;
    line-height: 1.5; /* 行間を少し広げる */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 日本語タイトルに影を追加 */
}


/* 全体のスタイル */
.sitemap {
    padding: 20px;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

.sitemap-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* 親項目のスタイル */
.sitemap-list > li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
    position: relative;
    padding-left: 20px;
}

.sitemap-list > li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007BFF;
    font-size: 20px;
    line-height: 1;
}

/* サブリストのスタイル */
.sitemap-list ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    border-left: 2px solid #ddd;
}

.sitemap-list ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.sitemap-list ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #aaa;
    font-size: 16px;
    line-height: 1;
}

/* リンクスタイル */
.sitemap-list li a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.sitemap-list li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

