/* サイトマップページのcss */

@media screen and (min-width: 1280px) {
    .sitemap-inner {
        width: 1200px;
        margin: auto;
    }
}

@media screen and (max-width: 1280px) {
    .sitemap-inner {
        margin: 0 6%;
    }
}

.sitemap-inner {
    margin-top: 3%;
    margin-bottom: 5%;
}

.sitemap-media h2 {
    font-size: 22px;
    border-bottom: 1px solid #677475;
    padding-bottom: 2%;
    margin-bottom: 4%;
    color: #677475;
}

.sitemap-media a {
    font-size: 16px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 1.5%;
    padding-bottom: 1.5%;
    display: flex;
    align-items: center;
    line-height: 1.6em;
    transition: .3s;
}

.sitemap-media a:hover {
    opacity: .5;
}

.sitemap-media span {
    margin-right: 3%;
    color: #838383;
    display: block;
}

@media screen and (max-width: 786px) {
    .sitemap-inner {
        margin: 0 20px;
        margin-top: 5%;
        margin-bottom: 10%;
    }
    .sitemap-media h2 {
        font-size: 20px;
    }
    .sitemap-media a {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2%;
        padding-bottom: 2%;
        line-height: 1.5em;
    }
    .sitemap-media span {
        font-size: 14px;
    }
}