@charset "utf-8";
/* CSS Document */
body {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/back.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
header {
  width: 100%;
}
header img {
  max-width: 100%;
}
.wrapper {
  max-width: 80%;
  margin: 0 auto;
  justify-content: center;
}
h2 {
  color: #fff;
  padding: 2% 20%;
}
#topimg {
  max-width: 100%;
  width: 80%;
  justify-content: center;
  align-items: center;
  margin-left: 10%;
}
.text {
  font-family: 'メイリオ', 'Meiryo', sans-serif;
  max-width: 100%;
  width: 70%;
  border: 1px solid #5F161D;
  box-shadow: 4px 4px 1px #561B24;
  margin: 20px auto;
  padding: 50px;
  color: #fff;
  font-size: clamp(12px, 1.8vw, 16px);
  background-color: rgba(255, 255, 255, 0.20);
  text-shadow: 1px 2px 5px #4C2E30;
}
.text img {
  width: 90%;
}


.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: rgba(95, 22, 29, 0.80); /* 背景透明度80% */
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /* メニューオープン時は真ん中の線を透明にする */
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* 初期状態では画面外 */
  z-index: 80;
  background-color: rgba(95, 22, 29, 0.80); /* 背景透明度80% */
  transition: all 0.5s; /* アニメーション設定 */
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; /* メニューを画面内へ */
}
.nav-wrap {
  position: relative;
}
.scroll-nav {
  width: 100%;
  background: ; /* メニューの背景色 */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* 慣性スクロール */
}
.scroll-nav ul {
  max-width: 600px; /* メニューの最大幅 */

  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  list-style: none;
  padding-right: 25px; /* 右側の固定分余白を空ける */
}
.scroll-nav ul li {
  float: left;
  width: 120px; /* メニューの個別の幅 */
  text-align: center;
}
.scroll-nav ul li:hover {
  background: #222; /* マウスホバー時の背景色 */
}
.scroll-nav ul li a {
  display: inline-block;
  color: #fff; /* メニューの文字色 */
  text-decoration: none;
}
.next-btn { /* 右側に固定する部分 */
  position: absolute;
  top: 0;
  right: 0;
  width: 25px; /* 固定部分の幅 */
  height: 40px; /* メニューの高さに合わせる */
  line-height: 40px;
  background: #fff;
  color: #555;
}
.scroll-nav ul li {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}
.scroll-nav ul li + li {
  border-left: none;
}
iframe {
  width: 80%;
  border: 0;
  margin-left: 10%;
  "

}
a.btn_res {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
  width: 120px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  color: #5F161D;
  background: #fff;
  transition: 0.3s ease-in-out;
}
a.btn_res::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #5F161D;
  transition: 0.2s;
}
a.btn_res:hover {
  background: #5F161D;
  color: #fff;
}
a.btn_res:hover::before {
  top: 0;
  left: 0;
}
.bold {
  max-width: 100%;
  font-weight: 800;
  color: #5F161D;
  font-size: clamp(16px, 1.8vw, 21px);
  text-shadow: none;
  background: #fff;
  padding: 5px 20px;
  margin: 20px 0;
}
.link {
  color: #fff;
  border-bottom: dotted 2px #F30100;
  text-decoration: none;
  margin: 0 auto 20px 20px;
}
.line {
  width: 100%;
  border-bottom: dotted 2px #fff;
}

.jumpsite{
	width: 800px;
	margin: 10px auto;
	  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
}

.jumpsite img{
	width: 35%;
	margin-right: 10px;
}

.text .icon{
	width: 20%;
}

footer {
  width: 100%;
  height: 40px;
  background-color: #000;
  color: #fff;
  margin-top: 10px;
  padding-top: 10px;
  text-align: center;
  font-size: clamp(8px, 1.8vw, 16px);
}
@media only screen and (max-width: 770px) {
  .nav-wrap {
    display: none;
  }
  .text {
    font-family: 'メイリオ', 'Meiryo', sans-serif;
    max-width: 100%;
    width: 90%;
    border: 1px solid #5F161D;
    box-shadow: 4px 4px 1px #561B24;
    margin: 20px auto;
    padding: 10px;
    color: #fff;
    font-size: clamp(12px, 1.8vw, 16px);
    background-color: rgba(255, 255, 255, 0.20);
    text-shadow: 1px 2px 5px #4C2E30;
  }
	
	.text .dmenu{width: 100%;
margin: 0 auto;}
	
  .drinkmenu {
    width: 100%;
    padding: 10px;
  }
  .drinkimg {
    width: 100%;
    padding: 10px;
    margin: auto;
  }
  .drinkimg img {
    margin: auto;
  }
}
@media only screen and (min-width: 771px) { /* PCサイズでの指定 */
  .wrapper {
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
    justify-content: center;
  }
  .scroll-nav ul {
    padding: 0;
  }
  .scroll-nav ul li {
    width: 120px; /* メニューの個別の幅 */
  }
  .next-btn {
    display: none; /* 右側の固定部分を非表示 */
  }
  iframe {
    width: 700px;
    height: 450px;
    border: 0;
    margin-left: 10%;
    "

  }
	
	.text .dmenu{width: 50%;
margin: 0 auto;}
  .drinkmenu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .drinkimg {
    width: 45%;
    padding: 10px;
  }
}