section .flex>* {
    width: 48%;
    padding: 3rem 2rem;
    background-color: #fff;
}

h3 {
    margin-bottom: 1rem;
    border-bottom: 1px solid #b1b1b1;
    color: var(--c-font);
    font-family: "Marcellus", serif;
    font-size: clamp(2rem, 5vw, 2.4rem);
    letter-spacing: .1em;
}

h3 span {
    padding-left: .5em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0em;
}

table {
    width: 100%;
}

main table th {
    font-weight: 400;
}

main table th,
main table td {
    padding-block: .5rem;
}

section#menu {
    padding-bottom: 0;
}

#menu .flex {
    row-gap: clamp(3rem, 5vw, 6rem);
}

#menu .multiple {
    margin-bottom: 5rem;
}

#menu td {
    text-align: right;
}

#discount h3 {
    margin-bottom: 3rem;
}

#discount th {
    width: 1%;
    padding-inline: 1rem;
    background-color: #f0f0f0;
    font-size: 1.8rem;
    letter-spacing: .2em;
}

#discount td span {
    display: block;
    width: fit-content;
    margin-inline: auto;
    font-size: 4rem;
    font-weight: 100;
}

#discount th ~ td {
    padding-left: 1rem;
}

@media screen and (max-width:992px) {
    section .flex>* {
        width: 100%;
        max-width: 500px;
    }

    #discount .flex {
        gap: max(3rem, 5vw);
        justify-content: center;
    }
}