﻿@charset "utf-8";
/* CSS Document */
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}
body.about, body.menu, body.access, body.contact {
  width: 100%;
  max-width: 1920px;
  color: #707070;
  line-height: 1.5;
  font-size: 14px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  position: relative;
  box-sizing: border-box;
}
img {
  border: 0;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  img {
    text-align: center;
    width: 100%;
  }
}
#wrapper.menu {
  background-image: url("../images/bg_bottom.png");
  background-position: left bottom;
  z-index: 10;
  width: 100%;
  max-width: 1920px;
}
nav ul {
  width: 100%;
  height: 80px;
  /*position: relative;*/
}
nav ul li {
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
}
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
  padding-left: 3%;
  padding-top: 30px;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px; /*線の太さ*/
  width: 25px; /*長さ*/
  border-radius: 3px;
  background: #707070;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 9999; /*最前面*/
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
/*中身*/
#nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .2s ease-in-out;
}
#nav-content.open {
  display: block;
  /*opacity: 1;*/
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background-color: #fff; /*rgba(255, 255, 255, 1);/*背景色*/
  overflow: hidden; /*ブラー効果でボヤけた部分を非表示*/
}
/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1; /*重なり順序を一番下にしておく*/
}
/*チェックが入ったら表示する内容*/
.hamburger-top {
  height: 40px; /*×ボタンと被らないように*/
}
.category {
  text-align: center;
  margin-top: 2rem;
  background-color: #fff;
  width: 100%;
	
}
.category-title {
  padding: 0.5rem;
  margin: 0 auto;	
}
.category-title a {
  color: #333;
  text-decoration: none;
}

.category li {
  font-size: 24px;
  font-weight: bold;
  padding: 20px 10px 20px 0;
  color: #734e30;
  margin: 0 auto;
}

.category li.menu,.category li.access {
  font-size: 24px;
  font-weight: bold;
  padding: 20px 40px 20px 0;
  color: #734e30;
  margin: 0 auto;
}

/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg); /*打ち消す*/
  transform: translateY(-8px) rotate(45deg); /*打ち消す*/
  opacity: 0;
}
#nav-open.active span:after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
}
@media screen and (min-width: 768px) {
  #nav-open, .category {
    display: none;
  }
}
header {
  width: 100%;
  max-width: 1920px;
  background-color: #000000;
  opacity: 0.7;
  height: 80px;
  position: fixed;
  background-image: url("../images/img-logo.png"), url("../images/YUMMY-BURGER.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left 65px top 15px, left 145px top 25px;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  header {
    width: 100%;
    z-index: 20;
  }
}
#pc_nav {
  width: 100%;
}
#pc_nav ul {
  width: 75%;
  padding-left: 25%;
  box-sizing: border-box;
  float: right;
}
#pc_nav ul li {
  padding-bottom: 0;
  float: left;
  padding-right: 35px;
  padding-top: 40px;
}
#pc_nav ul li:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  #pc_nav {
    display: none;
  }
}
.sp-slides {
  width: 100%;
  max-width: 1920px;
  height: 500px;
  margin: 0 auto;
  padding-top: 0;
  background-color: #000;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sp-slides-container {
    width: 100%;
    max-width: 767px;
    height: 350px;
    padding-bottom: 20px;
  }
}

/*----------ここからabout.html----------*/
#wrapper.about {
  width: 100%;
  max-width: 1920px;
  background-image: url("../images/plasterwall_06.jpg");
  background-position: left 0 top 0;
  background-repeat: repeat;
  padding-bottom: 0;
  box-sizing: border-box;
}
main.about {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
#about_container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
section.about {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  section.about {
    width: 100%;
    max-width: 767px;
    margin: 0 auto;
  }
}
.about_box {
  max-width: 350px;
  margin: 0 auto;
}
section.about h2 {
  width: 100%;
  max-width: 35.102%;
  margin: 0 auto;
  padding: 40px 32.44%;
}
@media screen and (max-width: 767px) {
  section.about h2 {
    width: 98%;
    min-width: 340px;
    padding: 20px 1%;
    margin: 50px auto 2px;
    box-sizing: border-box;
  }
}
section.preference {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.preference_box {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
section.preference h2 {
  width: 430px;
  margin: 0 auto;
  padding: 5px 28.0612% 0;
}
@media screen and (max-width: 767px) {
  section.preference h2 {
    width: 100%;
    max-width: 340px;
    padding: 5px 0;
    display: inline-block;
    text-align: left;
  }
}
.about_box, .preference_box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
div.pic, div.paragraph {
  width: 100%;
  max-width: 350px !important;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .pic, .paragraph {
    padding: 0;
    margin: 0 auto;
  }
}
.menu_box, .contact_box {
  width: 100%;
  max-width: 980px;
  box-sizing: border-box;
  padding-top: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  section.about_box .pic {
    width: 100%;
    max-width: 767px;
    margin: 0 auto;
  }
}
.paragraph h3 {
  font-size: 20px;
  font-weight: bold;
  padding-top: 5px;
  padding-bottom: 20px;
  color: #707070;
}
.paragraph p {
  color: #707070;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .paragraph h3 {
    padding-top: 20px;
    width: 100%;
    max-width: 767px;
  }
}
.preference h2 img {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .preference h2 img {
    padding: 10px 0;
  }
}
#bottom_line {
  width: 100%;
  max-width: 1920px;
  max-height: 200px;
}
@media screen and (max-width: 767px) {
  #bottom_line {
    height: auto;
  }
}

.page_top a:hover {
  text-decoration: none;
  opacity: 0.8;
}
p.page_top.about, p.page_top.contact, p.page_top.access, p.page_top.contact {
  position: fixed;
  right: 15%;
  bottom: 160px;
}

p.page_top.menu{
	 position: fixed;
  right: 3%;
  bottom: 160px;
	
}
@media screen and (max-width: 767px) {
  p.page_top.menu {
    position: fixed;
    right: 5%;
    bottom: 150px;
  }
  p.page_top.about {
    position: fixed;
    right: 3%;
    bottom: 160px;
  }
  p.page_top.contact {
    position: fixed;
    right: 3%;
    bottom: 145px;
  }
  p.page_top.access {
    position: fixed;
    right: 3%;
    bottom: 145px;
  }
}
footer {
  width: 100%;
  max-width: 1920px;
  text-align: center;
  padding: 15px;
  background-color: #000000;
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    max-width: 767px;
    box-sizing: border-box;
  }
}
footer img {
  margin: 0 auto;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  footer img {
    max-width: 224px;
    margin: 0 auto;
  }
}

footer img:hover,footer i {
	opacity: 0.7;
}

footer p.notice {
  color: #ffffff;
  padding-top: 10px;
  padding-bottom: 15px;
}
p#animation {
  font-size: 14px;
  font-weight: 200;
}
.fab {
  color: #ffffff;
  margin-right: 15px;
}
/*/----------ここからaccess.html----------/*/
body.access {
  background-image: url("../images/plasterwall_06.jpg");
  width: 100%;
  max-width: 1920px;
}
#wrapper.access {
  background-image: url("../images/plasterwall_06.jpg");
  background-repeat: repeat;
  background-position: left 0 top 0, left 0 bottom 0;
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
}
@media screen and (max-width:767px) {
  body.access, #wrapper.access {
    width: 100%;
    max-width: 767px;
    min-width: 350px;
    box-sizing: border-box;
  }
}
main#access {
  margin: 0 auto 50px;
  width: 100%;
  max-width: 1920px;
  min-height: 500px;
  padding-bottom: 30px;
  box-sizing: border-box;
}
@media screen and (max-width:767px) {
  main#access, #access container {
    width: 100%;
    max-width: 767px;
    min-width: 350px;
    padding-bottom: 30px;
    margin-bottom: 0;
    box-sizing: border-box;
  }
}
#access_container {
  width: 100%;
  max-width: 980px;
  box-sizing: border-box;
  display: flex;
  padding-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 30px;
}
.access pc_nav ul li.access {
  padding-top: 50px;
}
#access_container h2 {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  padding: 10px 200px 50px;
}
@media screen and (max-width: 767px) {
  #access_container h2 {
    width: 100vw;
    max-width: 159px;
    padding: 20px 0 25px;
    margin: 15px auto 0;
  }
}
.access.sp-slides-container {
  width: 100vw;
  max-width: 1920px;
  max-height: 500px;
}
@media screen and (max-width: 767px) {
  .sp-slides {
    width: 100%;
    max-width: 797px;
    max-height: 300px;
  }
}
.access_box {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  height: auto;
  background-color: #ffffff;
  box-sizing: border-box;
}
#address {
  width: 100%;
  max-width: 1920px;
}
#address p {
  padding: 10px 0 10px 4%;
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
}
/*/----------ここからmenu.html----------/*/
#wrapper.menu {
  background-image: url("../images/plasterwall_06.jpg");
  background-position: left 0 top 0;
  background-repeat: repeat;
  padding-bottom: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 1920px;
}
main.menu {
  width: 100%;
  max-width: 1920px;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  body.menu, #wrapper.menu, main.menu {
    width: 100%;
    max-width: 767px;
    min-width: 350px;
    box-sizing: border-box;
  }
}
.menu #menu_container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .menu #menu_container {
    width: 100%;
    max-width: 767px;
    padding-top: 30px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
section#monthly_special {
  width: 100%;
  max-width: 350px;
  height: 500px;
  padding: 20px 86px 50px;
  max-height: 36px;
  margin: 0 auto 450px;
}
@media screen and (max-width: 767px) {
  #monthly_special img, #regular_menu img, #side_menu img, #drink_menu img {
    padding-top: 10px;
  }
}
section#monthly_special h2 {
  width: 100%;
  max-width: 350px;
  padding: 20px 0 50px;
}
section#monthly_special img, section#monthly_special p {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  color: #707070;
  line-height: 1.5;
}
section#monthly_special span {
  padding-bottom: 15px;
  font-weight: 600;
  color: #707070;
}
@media screen and (max-width: 767px) {
  section#monthly_special h2 {
    padding-bottom: 35px;
    min-width: 350px;
    margin: 0 auto;
  }
  #drink_menu h2 {
    min-width: 110px;
    margin: 0 auto;
  }
}

section#regular_menu, section#side_menu, section#drink_menu {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  section#regular_menu, section#side_menu, section#drink_menu {
    width: 100%;
    max-width: 767px;
    box-sizing: border-box;
  }
}
section#regular_menu h2, section#side_menu h2, section#drink_menu h2 {
  width: 107px;
  padding: 40px 350px 30px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  section#regular_menu h2, section#side_menu h2, section#drink_menu h2 {
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 20px 120px 30px;
    margin: 50px auto 0;
    box-sizing: border-box;
  }
}
section#regular_menu figure, section#side_menu figure, section#drink_menu figure {
  max-width: 100%;
  width: 350px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  section#regular_menu figure, section#side_menu figure, section#drink_menu figure {
    width: 100%;
    max-width: 350px;
    padding: 0;
    margin: 0 auto;
  }
}
figcaption h3 {
  font-weight: 600;
  padding: 2px 0;
  color: #707070;
}
figcaption p {
  font-size: 14px;
  color: #707070;
  line-height: 1.5;
}
/*/----------ここからcontact.html----------/*/
#wrapper.contact {
  width: 100%;
  max-width: 1920px;
  background-image: url("../images/plasterwall_05.jpg");
  background-position: left 0 top 0;
  background-repeat: repeat;
  padding-bottom: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  body.contact, #wrapper.contact {
    width: 100%;
    max-width: 767px;
    box-sizing: border-box;
  }
}
main.contact {
  width: 100%;
  max-width: 980px;
  padding: 30px 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  main.contact {
    width: 100%;
    max-width: 767px;
    box-sizing: border-box;
    padding-left: 1%;
  }
}
main div#contact_container {
  width: 100%;
  max-width: 500px;
  padding-left: 1%;
  margin: 0 auto 0;
}
@media screen and (max-width: 767px) {
  main div#contact_container {
    width: 100%;
    max-width: 767px;
    box-sizing: border-box;
  }
}
#contact_container p {
  margin-top: 20px;
  padding: 10px 0 10px;
}
#contact_container input[type="text"] {
  width: 200px;
  margin-top: 5px;
  padding: 5px;
}
#contact_container input[type="email"] {
  width: 300px;
  margin-top: 5px;
  padding: 5px;
}
#contact_container textarea {
  width: 300px;
  margin-top: 5px;
  padding-top: 10px;
}
#contact_container h2 {
  width: 100%;
  max-width: 350px;
}
@media screen and (max-width: 767px) {
  #contact_container h2 {
    width: 100%;
    max-width: 160px;
    height: auto;
    padding-top: 60px;
  }
}
#contact_container p.comment {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  #contact_container p.comment {
    font-size: 18px;
  }
}
/*送信ボタン--------*/
.btn-square {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #e63a13; /*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #e21013;
  border-radius: 3px;
  outline: none;
}
.btn-square:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
  border-bottom: none; /*線を消す*/
  outline: none !important;
}
.btn-square:hover {
  opacity: 0.8;
}