@charset "utf-8";

.title {
    height: 310px;
    background-image: url(../images/メニューbgi.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
    font-family: 'Montserrat',sans-serif;
    font-size: 32px;
    font-weight: bold;
}

.title p {
    font-size: 15px;
    font-weight: bold;
    margin-top: 15px;
}

.item-list {
    display: flex;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    overflow: scroll;
}

.item-list dl {
    margin-top: 20px;
}

.item-list dt {
    font-weight: bold;
}

.item-list dd {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.item-list .price {
    font-weight: bold;
    margin-top: 15px;
}

.item-list li {
    position: relative;
    flex-shrink: 0;
    width: 260px;
    margin-left: 75px;
}

.item-list .item-label {
    position: absolute;
    top: 0;
    left: calc(100% + 18px);
    font-size: 10px;
    white-space: nowrap;
    transform-origin: top left;
    transform: rotate(90deg);
}




.shop-item h2 {
    margin-top: 15px;
    align-items: center;
}

.shop-item h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000000;
    margin-top: 20px;
}

.item-list-2 {
    margin-top: 25px;
    display: flex;
    grid-template-columns: repeat
    (auto-fit, 220px);
    column-gap: 20px;
    row-gap: 10px;
}

.item-group dl {
    margin-bottom: 50px;
}

.item-group dt {
    font-weight: bold;
}

.item-group dd {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.footer {
    margin-top: 100px;
}

@media (max-width: 800px) {
    .item-list {
        margin-top: 45px;
        row-gap: 40px;
    }
}