/* contact */
.contact {
    margin-top: 170px;
}

.contact-logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 25px;
}

.contact h1 {
    text-align: center;
    font-size: 1.8em;
    color: #902863;
    padding: 10px;
    font-weight: bold;
}

.contact-text {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
}

.contact-parking {
    text-align: justify;
    font-size: 16px;
    line-height: 30px;
    padding-top: 30px;
    width: 600px;
    margin: 0 auto;
}

/* 営業時間*/
.open {
    margin-top: 170px;
}

.open h1 {
    text-align: center;
    font-size: 1.8em;
    color: #902863;
    padding: 10px;
    font-weight: bold;
}

.open-logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 25px;
}

.open-text {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
}

/* 営業時間の表 */
table {
    border-collapse: collapse;
    width: 70%;
    text-align: center;   
    margin: 30px auto  60px auto;
}

td, th {
    border: 1px solid #902863;
    padding: 10px;
    vertical-align: middle;
    font-family: 'Zen Maru Gothic', sans-serif;
}

thead {
    background-color: #90286392;
    color: #F8F7F0;
}

tbody tr:nth-child(odd) {
    background-color: #F8F7F0;
}
  
tbody tr:nth-child(even) {
    background-color: #fff;
}
 

/* メニューリスト */
.menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.menu-list-container {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    border-bottom: 2px solid #902863;
    padding-top: 10px;
    width: 60%;
}

.menu-list-item {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    font-family: 'Zen Maru Gothic', sans-serif;
}
  
.menu-price {
    display: inline-block;
    text-align: right;
    margin-left: auto;
    vertical-align: top;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.menu-list-caption {
    font-size: 14px;
    text-align: justify;
    width: 60%;
    padding-top: 10px;
    padding-bottom: 20px;
    line-height: 24px;
    font-family: 'Zen Maru Gothic', sans-serif;
}


/* google map */
.map-container {
    text-align: center;
    padding-top: 30px;
}  


/* 店舗紹介イメージ */
.restaurant {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 70px;
}
  
.restaurant-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}
  
.restaurant-img img {
    width: 23%;
    height: 80%;
    object-fit: cover;
}



  
/* タブレット用 */
/* 768〜1280pxの表示 */
@media screen and (min-width: 768px) and (max-width: 1280px) {

    /* タブレット用店舗紹介イメージ */
    .restaurant {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .restaurant-img {
        flex-wrap: wrap;
    }

    .restaurant-img img {
        width: 48%;
        height: 300px;
        padding-bottom: 30px;
    }

    /* タブレット・スマホの時だけ改行 */
    .br-sp {
        display: inline-block;
    }
}

/* スマホ用 */
/* 767px以下の表示 */
@media screen and (max-width: 767px) {

    /* スマホ用contact */
    .contact {
     margin-top: 120px;
    }
    
    .contact h1 {
        font-size: 1.5em;
    }

    .contact-parking {
        text-align: justify;
        font-size: 16px;
        line-height: 30px;
        padding-top: 30px;
        width: 80%;
        margin: 0 auto;
    }

    /* スマホ用営業時間 */
    .open {
        margin-top: 120px;
    }
    table {
        width: 90%;
    }

    /* タブレット・スマホの時だけ改行 */
    .br-sp {
        display: inline-block;
    }

    /* スマホ用メニューリスト */
    .menu-list-container {
        width: 80%;
    }

    .menu-list-caption {
        width: 80%;
    }

    /* スマホ用google map */
    .map-iframe {
        width: 80%;
        height: 300px;
    }

    /* スマホ用店舗紹介イメージ */
    .restaurant-img {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .restaurant-img img {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }    /* スマホ用メニューリスト */
    .menu-list-container {
        width: 80%;
    }

    .menu-list-caption {
        width: 80%;
    }

    /* スマホ用google map */
    .map-iframe {
        width: 80%;
        height: 300px;
    }

    /* スマホ用店舗紹介イメージ */
    .restaurant-img {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .restaurant-img img {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

    /* スマホ用footer　トップページ以外の高さ調整したもの */
    .footer-style {
        height: 260px;
    }
}
  