/* ------------------------------------------------------------------------
    SAMPLE
------------------------------------------------------------------------  */
.SAMPLE {
    font-weight: 500;
    font-size: .875em;
    color: red;
    margin-top: 5px;
    line-height: 1.5em;
}

/* ------------------------------------------------------------------------
    PAGE TITLE
------------------------------------------------------------------------  */
/* BG */
#PAGE_TITLE:before {
    background-image: url("./images/page_title_sp.jpg");
}
@media screen and (min-width:769px){
    #PAGE_TITLE:before {
        background-image: url("./images/page_title_pc.jpg");
    }
}

/* ------------------------------------------------------------------------
    SITEMAP
------------------------------------------------------------------------  */
#SITEMAP{}
#SITEMAP .Category{
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
#SITEMAP .Category:first-child{
    margin-top: 0;
}
#SITEMAP .Category:nth-child(even){
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    background: var(--sub4-color);
}

/* LIST */
.Sitemap_List {
    display: flex;
    flex-wrap: wrap;
    row-gap:1em;
}
.Sitemap_List li{
    width: 100%;
    box-sizing: border-box;
}
.Sitemap_List li a{
    position: relative;
    padding-left: 1.25em;
    line-height: 1.5em;
}
.Sitemap_List li a:before{
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    transform: translateY(-50%) rotate(45deg);
    border: 0;
    border-top: solid 1px var(--base-color);
    border-right: solid 1px  var(--base-color);
    display: inline-block;
    width: 6px;
    height: 6px;
}
@media screen and (min-width:769px) and ( max-width:1023px) {
    .Sitemap_List li{
        max-width: 49.5%;
    }
}
@media screen and (min-width:1024px){
    .Sitemap_List li{
        max-width: 33.3%;
    }
}