.menuConts{
    margin-right: 200px;
    margin-left: 200px;
}
.selecter__wrap select{
    height: 50px;
    border-radius: 10px;
    border: solid #fff 1px;
    background-color: #383123;
    color: #fff;
    padding-left: 10px;
}
.menu__inner{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}
.selecter__wrap{
    grid-column: 1 / 2;
}
.menuConts__wrap{
    grid-column: 2 / 5;
}
.menuConts__inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.card__img img{
    aspect-ratio: 1 / 1;
    border-radius: 25px 25px 0 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.card__conts{
    background-color: #877E6E;
    border-radius: 25px;/*================================後ほど編集============================*/
}
.card__inner{
    padding: 15px;
}
.card__inner .price{
    border-bottom: 0;
}
.pagination{
    display: flex;
    grid-column: 2 / 4;
    justify-content: center;
    margin-top: 200px;
}
.number__pagination{
    display: flex;
    justify-content: space-between;
    width: 50%;
}
.prevBtn{
    border-right: solid #fff 2px;
    border-bottom: solid #fff 2px;
    width: 25px;
    height: 25px;
    transform: rotate(135deg);
}
.nextBtn{
    border-right: solid #fff 2px;
    border-bottom: solid #fff 2px;
    width: 25px;
    height: 25px;
    transform: rotate(-45deg);
}
.number__pagination a{
    font-size: 1.25em;
}
.number__pagination a::after{
    content: '';
    display: block;
    width: 100%;
    border-bottom: solid hsl(0, 0%, 100%) 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease-in-out;
}

.number__pagination a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

.number__pagination a:active{
    border-bottom: solid #fff 1px;
}