.section-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h2 {
    font-family: var(--font-en);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed #555;
    padding-bottom: 10px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.menu-item .name {
    font-weight: 500;
}

.menu-item .name .sub {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
}

.menu-item .dots {
    flex-grow: 1;
    border-bottom: 1px dotted #777;
    margin: 0 10px;
    position: relative;
    top: -5px;
}

.menu-item .price {
    white-space: nowrap;
    text-align: right;
}

.note-small {
    font-size: 0.7rem;
    color: #888;
    margin-top: 10px;
    text-align: right;
}

/* 白帯のヘッダー */
/* .price-header {
    background-color: #fff;
    color: #000;
    text-align: left;
    padding: 10px 20px;
}

.price-header h1 {
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
} */

/* カテゴリタイトル */
.menu-category h3 {
    font-family: var(--font-en);
    font-size: 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
    border-bottom: 2px dotted #fff;
    /* 白い点線 */
    padding-bottom: 10px;
}

.menu-list {
    margin-bottom: 50px;
}

/* メニュー項目 */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    font-size: 0.95rem;
    color: #fff;
}

.menu-item .name .sub {
    font-size: 0.85rem;
}

/* 特殊なレイアウト（追加料金など） */
.color-note {
    font-size: 0.85rem;
    margin-top: 10px;
}

.special-parm {
    flex-direction: column;
}

.special-parm .price {
    align-self: flex-end;
}

/* 注意書き */
.caution {
    font-size: 0.7rem;
    color: #fff;
    margin-top: 15px;
    line-height: 1.5;
}

/* オプションの価格グループ */
.price-group {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.price-group span {
    display: block;
}

/* アニメーション用（共通CSSにある場合は不要） */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}