@charset "UTF-8";

/*
--------------------------------*/
body::after {
    position: absolute;
    content: '';
    top:-350px;
    right:-500px;
    width:962px;
    height:962px;
    background: url(../img/common/back.svg);
    background-repeat: no-repeat;
    z-index: -1;
}

h3 {
    font-size: 2.0rem;
    font-family: 'shippori-semi';
    padding-bottom: 43px;
}

.page-main {
    width: 100%;
    height: 145px;
    margin: 22px 0 63px;
}


@media screen and (max-width: 900px) {
    body::after {
        position: absolute;
        content: '';
        top:-25vw;
        right:-50vw;
        width:100vw;
        height:100vw;
        background: url(../img/common/back-sp.svg);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -1;
    }

    h3 {
        font-size: 17px;
        padding-bottom: 10px;
    }
}

/* サイトマップ
--------------------------------*/
.container {
    display: flex;
    justify-content: space-between;
}

dl {
    padding-bottom: 3rem;
}

dt {
    font-size: 2.0rem;
    font-weight: bold;
    padding-bottom: 1em;
}

dd {
    font-size: 1.6rem;
    line-height: 2;
}

dd a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 900px) {
    .container {
        display: block;
    }

    dt {
        font-size: 17px;
        font-weight: bold;
        padding-bottom: 0.5em;
    }

    dd {
        font-size: 15px;
        line-height: 2;
    }
}