@charset "utf-8";

ul.sitemap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 45px;
    height: 550px;
}

li.level1 {
    /* flex-basis: 45%; */
    width: 47%;
    min-width: 250px;
    margin-bottom: 50px;
}

a.level1 {
    font-weight: bold;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    padding: 14px 12px 8px;
    background-color: var(--sub-color-1);
    display: block;
}

li.level2>a.level2:not(.form-contact>a) {
    font-weight: bold;
    display: block;
    font-size: 1.2rem;
}

ul.level3::before {
    content: "";
    width: 100%;
    height: 2px;
    border-bottom: 2px solid var(--main-color-1);
    display: block;
    margin-bottom: 10px;
}

.level3 li {
    margin-bottom: 10px;
}

.form-contact>a:before,
.level3 li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: gray;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 2px;
}

.category-info .category-info,
.category-kubun .category-kubun {
    margin-bottom: 30px;
}



@media only screen and (max-width: 640px) {
    ul.sitemap {
        gap: 0;
    }

    ul.sitemap {
        height: auto;
    }

    li.level1 {
        width: 100%;
    }
}