@charset "utf-8";
/* CSS Document */


h2{
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #333;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2rem;
    margin-top: 6rem;
}

#sitemap{
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    max-width: 1000px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 1rem;
}
#sitemap div{
    margin: 0;
    padding: 0;
    width: calc((100% - 30px) / 4);
    background-color: #EFEFEF;
    border-radius: 4px;
}
#sitemap div p{
    margin: 0;
    display: block;
    text-align: center;
    background-color: var(--main_color);
    color: #FFFFFF;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 1.2rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}


#sitemap div ul{
    padding: 1rem;
    margin: 0;
    width: 100%;
    height: auto;
    list-style-type: none;
}
#sitemap div ul li{
    margin-bottom: 0.6rem;	
}
#sitemap div ul li a{
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
}
#sitemap div ul li a:hover{
    text-decoration: underline;
    color: #C50003;
}






























































