/* =========================
   ZO 価格表
========================= */

/* ul全体 */
.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

/* 各行 */
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

/* ホバー（軽く） */
.price-list li:hover {
    background-color: #f9fafb;
}

/* 左側（品名＋容量） */
.menutype1 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* 品名 */
.menutype1 span:first-child {
    font-weight: 500;
    color: #222;
}

/* 容量 */
.menutype1 span:last-child {
    font-size: 12px;
    color: #6b7280;
}

/* 右側（価格） */
.price-list li > span:last-child {
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
}

/* =========================
   セクション見出しとの余白
========================= */
#price h4 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 16px;
}

/* =========================
   モバイル最適化
========================= */
@media (max-width: 480px) {
    .price-list li {
        padding: 10px 8px;
        font-size: 14px;
    }

    .menutype1 span:first-child {
        font-size: 14px;
    }

    .menutype1 span:last-child {
        font-size: 11px;
    }

    .price-list li > span:last-child {
        font-size: 14px;
    }
}
.price-list li {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.15s ease;
}
#price h4 {
    border-left: 3px solid #7c8fb5;
    padding-left: 8px;
}