.sitemap__section:nth-child(n + 2){
    margin-top: 50px;
}
.sitemap__ttl {
    background: transparent linear-gradient(96deg, #72B6A9 0%, #BDE0D3 50%, #ECECC7 100%) 0% 0% no-repeat padding-box;
    border-radius: 5px;
    padding: 10px 15px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.sitemap__list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sitemap__item {
    width: 470px;
    font-weight: bold;
    padding: 20px 0;
    border-top: 1px solid var(--border2);
}
.sitemap__link {
    position: relative;
    display: block;
}
.sitemap__link::before {
    content: "";
    background-image: url(../img/arrow_right_green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px;
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    right: 0;
    border: 1px solid var(--border2);
    border-radius: 50%;
}
.sitemap__link:hover:before {
    background-image: url(../img/arrow_right_white.svg);
    background-color: #72B6A9;
    border: 1px solid #72B6A9;
}

@media screen and (max-width:560px) {

    .sitemap__ttl {
        border-radius: 0.89vw;
        padding: 1.79vw 2.68vw;
        font-size: 5vw;
    }
    .sitemap__list {
        margin-top: 7.14vw;
    }
    .sitemap__item {
        padding: 3.57vw 0;
    }
    .sitemap__link::before {
        background-size: 1.43vw;
        width: 6.79vw;
        height: 6.79vw;
    }
    .sitemap__section:nth-child(n + 2) {
        margin-top: 8.93vw;
    }
}