@charset "utf-8";

/* menu
====================================================*/
.menu {
    padding: 50px;
}
@media screen and (max-width: 960px) {
    .menu {
        padding: calc(50 * (100svw / 750)) calc(40 * (100svw / 750));
    }
}

.menu__ttl {
    margin: 0 auto;
    text-align: center;
}

.menu__txt {
    margin: 50px auto 0;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .menu__txt {
        margin-top: calc(50 * (100svw / 750));
    }
}

.menu__block {
    margin-top: 50px;
}
@media screen and (max-width: 960px) {
    .menu__block {
        margin-top: calc(50 * (100svw / 750));
    }
}

.menu__name {
    margin-bottom: 20px;
    border-bottom: 1px solid #999999;
    white-space: nowrap;
}
@media screen and (max-width: 960px) {
    .menu__name {
        margin-bottom: calc(20 * (100svw / 750));
    }
}



.menu__price {
    font-size: 19px;
    line-height: 38px;
}
@media screen and (max-width: 960px) {
    .menu__price {
        font-size: calc(24 * (100svw / 750));
        line-height: calc(48 * (100svw / 750));
    }
}

.menu__price dl {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__price dl::after {
    content: "";
    width: 100%;
    height: 1px;
    border-top: 1px dotted #999999;
    position: absolute;
    top: 53%;
    left: 0;
    transform: translateY(-50%);

}

.menu__price dt {
    width: fit-content;
    padding-right: 4px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.menu__price dd {
    width: fit-content;
    padding-left: 4px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 960px) {
    .menu__price dt {
        padding-right: calc(4 * (100svw / 750));
    }
    .menu__price dd {
        padding-left: calc(4 * (100svw / 750));
    }
}