
/* sitemap page */
.sitemap-container,
.sitemap-container h1,
.sitemap-container h2,
.sitemap-container h3,
.sitemap-container h4,
.sitemap-container h5,
.sitemap-container h6,
.sitemap-container li,
.sitemap-container a {
    font-family: "Roboto", "Open Sans", "Helvetica Neue", Arial, sans-serif !important; /* ゴシック体 */
}

.sitemap-container {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    margin-right: auto;
    margin-left: auto;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.sitemap-heading {
    font-size: 18px;
    font-weight: 700;
    margin: 3rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sitemap-heading i {
    color: rgb(200, 0, 42);
}
.sitemap-section ul {
    list-style: none;
    padding-left: 1rem;
}
.sitemap-section > ul > li {
    margin: 0.75rem 0;
    font-weight: 700;
    position: relative;
    padding-left: 1.2rem;
}
.sitemap-section > ul > li::before {
    content: "・"; /* Japanese dot for 1st level */
    position: absolute;
    left: 0;
    color: #000;
}

.sitemap-section ul ul {
    padding-left: 1.5rem;
    font-weight: normal;
}
.sitemap-section ul ul li {
    position: relative;
    padding-left: 1rem;
}
.sitemap-section ul ul li::before {
    content: "-"; /* dash for 2nd level */
    position: absolute;
    left: 0;
    color: #000;
}
.sitemap-section ul ul ul > li::before {
    content: "";
}
.sitemap-section > ul > li + li {
    margin-top: 1.5rem;
}
.sitemap-section a {
    color: #0066cc;
    text-decoration: none;
}
.sitemap-section a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}