@charset "utf-8";
/* Archive */
.archive{
    margin: 90px auto;
    max-width: 747px;
}
.vol:not(:last-of-type){
    margin-bottom: 120px;
}
.vol__title{
    font-weight: bold;
    font-size: 3.2rem;
    padding-bottom: 10px;
    line-height: 1.5;
}
.vol__desc{
    font-size: 1.8rem;
    font-weight: 500;
}
.vol-group__img{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.vol-group__img li{
    list-style: none;
    width: 47.792%;
    margin-top: 31px;
}
.vol__note{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.vol__note p{
    margin-left: -1em;
    font-size: 1.8rem;
}
@media (max-width: 768px){
    .vol:not(:last-of-type){
        margin-bottom: 70px;
    }
    .vol-group__img li{
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    .vol__title{
        font-size: min(6.7vw, 2.4rem);
    }
    .vol__desc{
        font-size: 1.4rem;
    }
    .archive{
        margin: 40px auto;
    }
    .vol__note{
        align-items: center;
        justify-content: center;
    }
    .vol__note p{
        font-size: 1.4rem;
        margin-left: 0;
    }
}