/* トップページのメニュー表示用 */
.top-menu {
    background: #fffaf4;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px dashed #8e0000;
}

.section-title {
    text-align: center;
    color: #8e0000;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.menu-item-mini {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.menu-item-mini .name {
    font-weight: bold;
}

.menu-item-mini .price {
    color: #8e0000;
}

.more-link {
    text-align: right;
    margin-top: 15px;
}

.more-link a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}