@charset "utf-8";

/* 内容 */
#article {
    padding: 4rem 0;
    margin: 0 auto;
    width: var(--main-width);
    max-width: 768px;
}

#article .img {
    width: 100%;
    background-position: center;
    background-size: cover;
    height: 450px;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

#article h1 {
    margin-bottom: .5rem;
}

#article .liverty_name {
    margin: .5rem 0;
    font-weight: bold;
}

#content {
    margin: 6rem 0 10rem;
}

#content a{
    text-decoration: underline;
}

#article .next_prev {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
}

#article .next_prev .prev,
#article .next_prev .next {
    width: 45%;
    font-size: 1.25rem;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
}

#article .next_prev .prev {
    text-align: left;
    justify-content: start;
}

#article .next_prev .prev a {
    padding-left: 2rem;
}

#article .next_prev .next {
    text-align: right;
    justify-content: end;
}

#article .next_prev .next a {
    padding-right: 2rem;
}

@media only screen and (max-width: 640px) {
    #article .img {
        height: 220px;
        margin-bottom: 1rem;
    }

    #article .next_prev {
        display: block;
    }

    #article .next_prev .prev {
        margin-bottom: 2rem;
    }

    #article .next_prev .prev,
    #article .next_prev .next {
        width: 100%;
    }
}