@media only screen and (min-width: 1200px){
    .zen-menu__intro{
        margin-inline: -40px;
    }
    .zen-menu__intro>p{
        text-align: right;
    }
}
.zen-menu__intro{
    margin-top: 60px;
    padding: 35px 40px;
    border-radius: 30px;
    background: #F5F5F5;
    border: 1px solid #91181D;
}
@media only screen and (min-width: 1200px){
    .zen-menu__intro{
        margin-top: 97px;
    }
}
.zen-menu__intro>p{
    font-size: 14px;
}
.zen-menu__intro-heading{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin: 0 0 25px;
    font-size: 24px;
    color: #91181D;
}

.zen-menu__intro--desc{
    font-size: 18px;
    line-height: 40px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #000;
}

.zen-menu__intro--content{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}
.zen-menu__intro--content ul{
    padding: 0;
    margin: 0;
    line-height: 30px;
    list-style: none;
}
.zen-menu__intro--content ul li{
    position: relative;
    padding-left: 20px;
}
.zen-menu__intro--content ul li:before{
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 30px;
}
.menu-choice-table table.text-primary{
    margin-left: 15px;
}

/* ====================================================
   予約ボタン追加対応 (ヘッダー & CTAエリア)
==================================================== */

/* --- ヘッダー予約ボタン --- */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .site-header__nav {
        gap: 20px;
    }
}
.site-header__reserve a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #91181D;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.site-header__reserve a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin: 0;
}
.site-header__reserve a:hover {
    background: #ffffff;
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.site-header.header-sticky .site-header__reserve a {
    background: #ffffff;
    color: #91181D;
}
@media only screen and (max-width: 991px) {
    .site-header__reserve {
        margin-top: 15px;
    }
    .site-header__reserve a {
        padding: 12px 28px;
        font-size: 16px;
        background: #ffffff;
    }
}

/* --- CTAエリア (zen-map__phone) ボタン --- */
.zen-map__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 94%;
    max-width: 960px;
    margin: 0 auto;
}
.zen-map__phone .zen-map__buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    width: 100%;
    max-width: 440px;
    height: 72px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: #ffffff;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
@media (min-width: 48em) {
    .zen-map__phone .zen-map__buttons a {
        height: 76px;
        width: 100%;
        max-width: 440px;
    }
}
.zen-map__phone .zen-map__buttons a:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}
.zen-map__phone .zen-map__buttons a.btn-reserve {
    font-size: 20px;
    letter-spacing: 1px;
}
.zen-map__phone .zen-map__buttons a.btn-tel {
    font-size: 28px;
    letter-spacing: 2px;
}
.zen-map__phone .zen-map__buttons a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 12px;
}
@media only screen and (max-width: 767px) {
    .zen-map__buttons {
        flex-direction: column;
        gap: 14px;
        width: 90%;
    }
    .zen-map__phone .zen-map__buttons a,
    .zen-map__phone .zen-map__buttons a:is(.btn-reserve, .btn-tel) {
        width: 100%;
        max-width: 100%;
        height: 58px;
        flex: none;
    }
    .zen-map__phone .zen-map__buttons a.btn-reserve {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .zen-map__phone .zen-map__buttons a.btn-tel {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .zen-map__phone .zen-map__buttons a img {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }
}