@charset "utf-8";

body {

    font-family: "Permanent Marker", sans-serif;
    margin: 0 auto;
    text-align: center;
    background-color: #f5eee1;
    font-weight: 400;
    height: auto;
        background-repeat: repeat-y
    }
    
/* header共通部分____________________________________________________________________ */

header {
    max-width:100%;
    background-color: #f5eee1;
    height: 300px;
}
.gMenu {
     
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
/* メニューアイコンを画面右上に固定しています */
.gMenu .menu-icon {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 12px;
  padding-top: 5px;
  height: 12px;
}
/* メニューアイコン（三本線）の真ん中の線です */
.gMenu .menu-icon .navicon {
  background: #f5c945; /* 色は自由に変更可能です */
  display: block;
  height: 2px; /* 太さ */
  width: 31px; /* 長さ */
  position: relative;
  transition: background .4s ease-out; /* 形が変わる時のアニメーション */
}
/* メニューアイコン（三本線）の上と下の線を疑似要素で追加 */
.gMenu .menu-icon .navicon::before,
.gMenu .menu-icon .navicon::after {
  background: #116616; /* 色は自由に変更可能です */
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .4s ease-out; /* 形が変わる時のアニメーション */
  width: 100%;
}
.gMenu .menu-icon .navicon::before {top: 10px;} /* 位置を上にずらしています */
.gMenu .menu-icon .navicon::after {top: -10px;} /* 位置を下にずらしています */
/* 表示されるメニューです */
.gMenu .menu {
  width: 100%;
  background-image: url(../images/mocafelabo2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: rgba(42, 171, 94, 0.968);
  overflow: hidden;
  max-height: 0; /* ★最初は高さを0にして非表示状態に */
  transition: max-height .7s; /* 表示されるときのアニメーション */
  text-align: center;
  color: #e8e7e7;
  line-height: 1.8;
  font-weight: bold;
}
/* メニュー部分のデザインです */
.gMenu .menu li:first-of-type {
  padding-top: 40px;
  
}
.gMenu .menu li a {
  display: block;
  padding: 24px 20px;
  text-decoration: none;
  text-transform: uppercase;
}
.gMenu .menu li a:hover {
  background-color: rgba( 248, 240, 240,0.6);
  font-weight: bold;
  font-size: 16px;
  color: #000;
  background-image: url(../images/h2.png);
  background-repeat: no-repeat;
  background-position: center center;
}
/* チェックボックスは常に非表示です */
.gMenu .menu-btn {
  display: none;
}
/* ▼▼▼以下はチェックボックスがONの時の状態です▼▼▼ */
.gMenu .menu-btn:checked ~ .menu {
  max-height:700px; /* ★チェックボックスがオンの時高さを700pxにして表示させます */
  transition: max-height .6s;
}
/* メニューボタンの中央の線を非表示に */
.gMenu .menu-btn:checked ~ .menu-icon .navicon {background: transparent;}

/* メニューボタンの上下の線を45度傾けて✕印を作ります */
.gMenu .menu-btn:checked ~ .menu-icon .navicon::before {transform: rotate(-45deg);top: 0;
background: #000;}
.gMenu .menu-btn:checked ~ .menu-icon .navicon::after {transform: rotate(45deg);top: 0;
background: #000;}
/* サイトに合わせてオリジナルカスタマイズ */
.gMenu .menu-icon {
  top: 26px;
}
.gMenu .menu-icon .navicon,
.gMenu .menu-icon .navicon::before,
.gMenu .menu-icon .navicon::after {
  background: #989797;
}
/* header内のロゴ画像_____________________________ */
header img {
     height: 40vh;
    width: 40vh;
    /* border: 1px solid #0f0; */
    position: relative;
    top: 0;
    left: 20px;
}

/* 黒板の予約フォーム_______________________________________________________\\\ */
.fixed-header {
  position: fixed;
  /* 要素を固定する */
 top: 120px;
  /* 画面の最下部に固定する */
  right: 0;
  width: 60px;
  /* 画面幅いっぱいに広げる */
  color: #fff;
  /* 背景色 */
  padding: 10px;
 margin: -5px;
  /* 内部の余白 */
  z-index: 1;
  /* 他の要素より前面に表示させる */
  background-image: url(../images/kokuban.png);
  background-repeat:no-repeat;
  background-size:cover;
  /* border: 1px solid #f00; */
  display: flex;
  justify-content: space-around;
  writing-mode: vertical-lr;

}


div.fixed-header p {
  width: 100%;
  font-weight: bold;
  color: #fff;
 font-size: 16px;
 padding: 10px;
 
}

/* footer共通_________________________________________________________ */
footer {
  background-color: #f5eee1;
  width: 100%;
  margin: 0 auto;
 margin-bottom: 80px;
}

.footerimg img {
  width: 20vh;
  height: 20vh;

}


.navcontener ul {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.navcontener {
  width: 80%;
  margin: 0 auto;
  padding: 10px;
}

.footernav {
  display: flex;
  justify-content: space-between;
}

.footernav li {
  list-style-type: none;
  padding: 10px;
  margin-bottom: 20px;
}
.footernav li a {
   padding: 10px;
}
.footernav li a:hover {
  background-image: url(../images/h2.png);
  background-repeat: no-repeat;
  background-size: contain;
 background-position: center bottom;


}
.icons {
  width: 40%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.icon {
  width: 50px;
}
.icons a {
padding: 40px;
 margin-bottom: 100px;
}
.icons a:hover {
    background-image: url(../images/h2.png);
  background-repeat: no-repeat;
  background-size: contain;
 background-position: center center;
}
@media screen and (max-width:900px) {
  body {
    height: auto;
  }
  header img {
    width: 20vh;
    height: 20vh;
  }
  header {
    height: 200px;
  }

  h2 {
    font-size: 20px;
  }
.img img {
  width: 30vh;
}

h3 {
padding: 10px;
}
  p {
    font-size: 12px;
  }
.contener,.imgcontener {
  display: block;
}
.contener {
  padding: 20px;

}

.imgtext  {
  float: none;
  text-align: center;
}
.img {
  margin: 0 auto;
}
.drink img {
  width: 35vh;
}

.contener {
  margin-bottom: 90px;
  text-align: center;
  backdrop-filter: blur;
}
  .navcontener {
    width: 100%;
  }
  footer li {
  font-size: 10px;
  text-align: center;
}
.useradress {
  width: 70%;
}
footer nav {
  width: 100%;
}
nav.footernav {
  width: 100%;
}
    .navcontener {
  width: 100%;
}
.icon {
  width: 80%;
}
.icons a {
  padding: 10px;
}
div.fixed-header p  {
  font-size: 12px;
}
}

@media screen and (max-width:500px) {
    .fixed-header {
      background-size: cover;
    }
    footer li a {
  padding: 0px;
}}