@charset "utf-8";
/* ホーム用 PC*/
/* 画像表示 */
.list_container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}
.list_container .list_item{
    display: flex;
    flex-direction: column;
    margin: 8px;
    text-align: center;
    max-width: 200px;
    width: calc(20% - 16px);
    align-items: center;
}
.list_container .list_item a{
    width: calc(100% - 8px);
    aspect-ratio: 5 / 8;
}
.list_container .list_item img{
    border: 1px #472720 solid;
    cursor: pointer;
    width: 100%;
}