@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat');

*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -box-sizing: border-box;
}
/*
/* =============================================
 HEADER CSS
============================================= */

/* ================ container ================ */

.header {
    background-color: #ecdec6;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    position: fixed;
    z-index: 110;
    top: 0;
    color: #330706;
}

.logo{
    width: 200px;
    position: relative;
    z-index: 1000;
}

.logo img{
    max-height: 40px;
}

/* ===== hamburger ===== */


.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: absolute;
  width: 44px;
  height: 30px;
  right: 10px;
  top: 15px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #776252;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 13px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* Hover Action */
.menu-trigger:hover span:nth-of-type(1) {
  top: 5px;
}
.menu-trigger:hover span:nth-of-type(3) {
  bottom: 5px;
}


/* ===== Overlay ===== */

#modal-overlay {
    background-color: #ecdec6;
    display: none;
    height: 120%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

#close{
    color: #776252;
    font-weight: bold;
    position: absolute;
    z-index: 110;
    background-color: #FFF;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    display: block;
    top: 10px;
    right: 10px;
}



/* ===== Menu ===== */

#modalWindow.menu-container {
    margin: 0;
    display: none;
}

#modalWindow.menu-container .menu {
    max-height: 80vh;
    -webkit-transform: translate(-50%, 0);
    background: #fff;
    height: auto;
    left: 50%;
    position: fixed;
    top: 90px;
    transform: translate(-50%, 0);
    width: 86%;
    max-width: 400px;
    z-index: 100;
}

.menu-container .menu h2{
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 3px;
    background-color: #ceb287;
    color: #FFF;
}

/* メニュー */
.menu_list{
    margin: 5px auto 10px;
    /* 200421追加 */
    color: #330706;
}
.menu_list li{
    display: inline-block;
    width: 49%;
    text-align: center;
    padding: 3px 0;
    font-size: 13px;
}
.menu_list li span{
    display: none;
}
/* 店舗一覧 */
.menu_shop li{
    line-height: 20px;
    padding: 10px 5px;
    border-bottom: dotted 1px #DDD;
}
.menu_shop li:last-child{
    border-bottom: none;
}

.menu_shop li h3 span{
    font-size: 12px;
}

.menu_shop li h3{
    font-size: 14.5px;
    float: left;
}

.menu_shop li p{
    float: right;
    font-size: 11px;
}
.menu_shop li p a{
    border: 1px solid #EEE;
    padding: 4px 6px;
    border-radius: 4px;
}
.menu_shop li p a:nth-of-type(2){
    margin-left: 5px;
}
.menu_shop img{
    max-height: 20px;
    margin-right: 6px;
}

.menu_list a{
    color: #330706;
}

/* ================ text ================ */



/* ============================ MD ============================ */

@media only screen and (min-width: 768px) {
    .header_inner{
        max-width: 1100px;
        margin: 0 auto;
    }
    .logo{
        width: auto;
        float: left;
    }
    #modalWindow.menu-container{
        float: right;
        display: block;
    }
    .menu_list li{
        width: auto;
        font-size: 10px;
        padding: 0 20px;
        /* 200421追加 */
        border-left: solid 1px #DDD;
    }
    .menu_list li:first-child{
        border-left: none;
    }
    .menu_list li span{
        display: block;
        font-size: 13px;
        font-weight: bold;
        /* 200421追加 */
        color: #330706;
        font-family: 'Montserrat',游ゴシック体, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック","ヒラギノ角ゴ ProN" , sans-serif;
    }
    .menu-container .menu h2{
        display: none;
    }
    #modalWindow.menu-container .menu {
        position: relative;
        width: 100%;
        max-width: 100%;
        transform:translate(0);
        -webkit-transform:translate(0);
        background-color: #ecdec6;
        top: 0;
        left: 0;
        letter-spacing: -0.003em;
    }

    .menu-trigger,
    #close{
        display: none;
    }

    ul, ul li {
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .sp {
      display: none;
    }

    .menu {
      font-size: 16px;
      line-height: 1em;
      letter-spacing: 0em;
    }

    .logo img {
      height: auto;
      max-height: 40px;
      margin: 0;
      padding: 0;
    }
    img {
      vertical-align: top;
    }

    /* ================ container ================ */

    /* ================ text ================ */


}
/* ============================ PC ============================ */

@media only screen and (min-width: 1024px) {
    /* ================ container ================ */


    /* ================ text ================ */


}

/* ============================ SP ============================ */

@media only screen and (max-width: 1023px) {


}
