@charset "UTF-8";


/**********************************************************************
 * File: menu.css
 * Date: 3rd April 2020
 * Modified: 
 * Written by: KotaroW
 * Description:
 *      style for menu
**********************************************************************/
/***
@import url("base-x.css");
***/

h2 {
    color: #882b33;
}

#contents {
    background: #fff;
    padding-top: 3em;
}

#menu-shortcut {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    left: 0.25em;
    right: 0.25em;
    width: 100%;
    max-width: 78em;
    margin: 0.2em auto;
}

#menu-shortcut > span {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    width: 1.75em;
    height: 1.75em;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 0.25em;
    transition: all 500ms ease-in-out;
}

#menu-shortcut > span:nth-of-type(1) {
    background: #818469;
}

#menu-shortcut > span:nth-of-type(2) {
    background: #491803;
}

#menu-shortcut > span:nth-of-type(3) {
    background: #8b572a;
}

#contents section:not(:last-of-type)::after {
    content: " ";
    display: block;
    width: 100%;
    background: url(../image/bookmark.png) no-repeat right bottom;
    height: 8vw;
    background-size: contain;
}

#contents section {
    max-width: 98em;
    margin: auto;
}

#contents section#note-to-customers {
    max-width: 58em;
    padding: 0 1em;
    margin: 3em auto 4em;
}

#note-to-customers p {
    font-size: 1em;
    color: #333;
}

.menu-grid {
    max-width: 58em;
    margin: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-auto-flow: row;
    font-family: 'Lato', sans-serif;
}

#l-u-s, #d-s-u, #d-s-d {
    grid-auto-flow: column;
}     

#l-u-s {
    grid-template-rows: auto auto auto;
}

#d-s-u, #d-s-d {
    grid-template-rows: auto auto auto;
}

#d-s-d {
    grid-template-rows: auto auto auto auto auto auto auto;
}
  
.menu-grid > div {
    padding: 0.5em;
    margin: 0.5em;
}

.menu-grid > div:not(:first-of-type) {
    border-top: solid 1px #ccc;
}

.menu-grid > div > span {
    display: block;
}

.menu-grid > div > span:nth-of-type(1),
.menu-grid > div > span:nth-of-type(3),
.menu-grid > div > span:nth-of-type(4) {
    color: #590931;
    /*font-size: 1.125em;*/
    font-weight: 700;
    /*text-transform: uppercase;*/
    margin-bottom: 0.5em;
}

.menu-grid > div > span:nth-of-type(3),
.menu-grid > div > span:nth-of-type(4) {
    margin-top: 0.5em;
    font-size: 0.9em;
}
     
.menu-grid > div > span > span {
    display: inline-block;
}

.menu-grid > div > span > span:first-of-type {
    width: 80%;
}

.menu-grid > div > span > span:last-of-type {
    width: 20%;
    text-align: right;
}

.menu-grid > div > span > span > span {
    font-weight: normal;
    color: #000;
    text-transform: none;
}

h3 {
    font-family: cursive, 'Caveat';
    font-size: 3em;
    text-align: center;
}
h3 {
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.2rem;
}
     
h3 > span {
    display: block;
    color: #590931;
    font-family: 'Lato', sans-serif;
    font-size: 0.33em;
    font-weight: normal;
}

.span-column {
    grid-column: 1 / span 2;
}

#beverages .single-column {
    display: block !important;
}
     
#beverages .single-column > div > span > span:first-of-type {
    width: 60%;
}

#beverages .single-column > div > span > span:last-of-type {
    width: 40%;
}

#beverages #sparkling-water > div > span > span:first-of-type {
    width: 30%;
}

#beverages #sparkling-water > div > span > span:last-of-type {
    width: 70%;
}

@media screen and (max-width: 639px) {
    .menu-grid {
        display: block;
    }
    
    #menu-shortcut > span {
        font-size: 1.25em;
        width: 1.5em;
        height: 1.5em;
        margin: 0 0.25em;
    }
}