/* --- メニューページヒーロー --- */
.menu-page-hero {
    background-color: var(--main-color);
    color: white;
    padding: 100px 0 40px;
    text-align: center;
}
.page-title {
    font-size: 40px;
    margin-bottom: 10px;
}
.page-subtitle {
    font-size: 18px;
    font-weight: 300;
}

/* --- メニューコンテンツ --- */
.menu-content {
    padding: 50px 20px;
}
.content-title {
    font-size: 28px;
    color: var(--main-color);
    margin: 30px 0 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

/* --- メインタブスタイル (店内/テイクアウト) --- */
.main-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #ddd;
    margin-bottom: 30px;
}
.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #777;
    transition: color 0.3s;
}
.tab-btn:hover {
    color: var(--text-color);
}
.tab-btn.is-active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

/* --- サブタブスタイル (ランチ/夜カフェ) --- */
.sub-tabs {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.sub-tab-btn {
    /* 共通のボタンデザインを定義 */
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition: color 0.3s;
}
.sub-tab-btn.is-active {
    color: var(--text-color);
    background-color: #f4f4f4;
    border-radius: 5px 5px 0 0;
}

/* --- タブコンテンツの表示/非表示 --- */
.tab-content, .sub-tab-content {
    display: none;
    padding: 10px 0;
}
.tab-content.is-active, .sub-tab-content.is-active {
    display: block;
}

/* --- メニューリスト --- */
.menu-time, .menu-note {
    font-size: 14px;
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 15px;
}
.menu-list {
    border-top: 1px solid #ddd;
}
.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}
.menu-item-left {
    flex-grow: 1;
    padding-right: 20px;
}
.menu-item-left h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}
.menu-item-left p {
    font-size: 14px;
    color: #777;
}
.menu-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    white-space: nowrap;
}

/* --- ラベル/付箋スタイル --- */
.menu-label {
    display: inline-block;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 5px;
    line-height: 1;
}
.night-ok { background-color: #A34A20; color: white; }
.sold-out { background-color: #e74c3c; color: white; }
.uber { background-color: #2ecc71; color: white; }
.store { background-color: #3498db; color: white; }

/* --- 注文リンク --- */
.order-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.order-links .btn {
    flex: 1;
    text-align: center;
}

/* --- スマホ対応 (メニューページ) --- */
@media (max-width: 768px) {
    .main-tabs {
        flex-direction: column;
    }
    .sub-tabs {
        flex-wrap: wrap;
    }
    .menu-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    .menu-price {
        margin-top: 5px;
    }
    .order-links {
        flex-direction: column;
        gap: 10px;
    }
}