@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

img{
    width: 100%;
    vertical-align: bottom;
}

body{
  overflow-x: hidden;
}

/* header */
.header__inner {  
  padding: 0 20px; /*左右の余白確保*/
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}
/* ヘッダーのロゴ部分 */
.header__title {  
  width: 150px;
}

@media screen and (min-width: 767px){
  .header__title {
    width: 200px;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%; 
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%); 
  background-color: #fff; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}

@media screen and (min-width: 767px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}

@media screen and (min-width: 767px) {
  /*PC時非表示にする*/
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
  opacity: 0;
}

.hamburger span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/*  ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 0;
  transform: rotate(0deg);
}

.hamburger.active span:nth-child(2) {
  margin: 8px 0;
  opacity: 1;
}

.hamburger.active span:nth-child(3) {
  top: 0;
  transform: rotate(0deg);
}

/*PC時のナビゲーションメニュー、横並びにする*/
@media screen and (min-width: 767px) {
  .nav__items {
    width: 85%;
    display: flex;
    align-items: baseline;
    height: initial;
    justify-content: space-between;
  }
}

.nav-items {
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

@media screen and (min-width: 767px) {
  .nav-items {
   position: inherit;
   top: 0;
   left: 0;
   transform: translate(0, 0);
  }
}

/* ナビのリンク */
.nav-items_item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
}

@media screen and (min-width: 767px) {
.nav-items_item a {
   margin-bottom: 0;
  }
}

.nav-items_item:last-child a {
  margin-bottom: 0;
}

/* main */
h2{
    text-align: center;
    margin-bottom: 20px;
    font-family: sans-serif;
}

@media screen and (min-width: 767px){
  h2{
    margin: 50px 0;
    font-size: 1.8em;
  }
}

.shop-flex{
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 767px){ 
  .shop-flex{
    width: 1000px;
  }
}

.shop-box{
  margin-bottom: 30px;
}

@media screen and (min-width: 767px){
  .shop-box{
    display: flex;
  }
}

.shop-box img{
  margin-bottom: 15px;
}

@media screen and (min-width: 767px){
  .shop-box img{
    width: 300px;
    margin-right: 30px;
  }

  .menu-item h3{
    font-size: 1.5em;
    padding-bottom: 10px;
  }
  .menu-item td{
    font-size: 1.3em;
  }
}

table{
  border-top: 0.7px dashed rgba(201, 174, 26, 0.781);
  line-height: 1.7;
}

table tr td{
  width: 700px;
  border-bottom: 0.7px dashed rgba(201, 174, 26, 0.781);
}

/* footer */
footer{
  margin-top: 10%;
  text-align: center;
  padding: 20px;
  background-color: rgba(201, 174, 26, 0.781);
  color: #fff;
}