.subhead_area {
    background: url(../img/sitemap/subhead.jpg);
    background-position: center;
    background-size: cover;
}

.box_sitemap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.ul_sitemap {
    width: 49%;
}

.li_sitemap {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.li_sitemap:last-child {
    margin-bottom: 0;
}

.a_sitemap {
    display: flex;
    font-size: 20px;
    width: 100%;
    height: 70px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
}

.a_sitemap:hover {
    color: #dd4571;
}

.a_sitemap::after { 
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 85%;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #dd4571;
    border-right: 2px solid #dd4571;
    transform: rotate(45deg);
}

@media screen and (max-width: 850px) {
    .a_sitemap {
        font-size: 15px;
    }
}

@media screen and (max-width: 650px) {

    .box_sitemap {
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 15px;
}

    .ul_sitemap {
    width: 100%;
    margin-bottom: 15px;
}

    .ul_sitemap:last-child {
        margin-bottom: 0;
    }

    .li_sitemap {
        max-width: 410px;
        margin: 0 auto 15px auto;
    }
    .a_sitemap{
        height: 50px;
    }
    
}