/*■■■■■■■■■■■■■■■■■■■■■
共通
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
html {
  font-size: 62.5%;
}
body {
  font-size: 1.5rem; /* 15px*/
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: rgba(90, 90, 90, 1)
}
header {
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.5s;
}
a {
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
}
.fixed {
  position: fixed;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1.3s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-timing-function: ease;
}
.fadeIn_left {
  opacity: 0;
  transform: translate(-30%, 0);
  transition: 1.5s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-timing-function: ease;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(30%, 0);
  transition: 1.5s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-timing-function: ease;
}
/*緊急*/
div#kinkyu {
  width: 80%;
  height: auto;
  background: rgb(223 221 212);
  /* background-image: url(/webstore/template/default/img/common/bg.jpg); */
  z-index: 99;
  /* border-radius: 10px; */
  box-shadow: 2px 2px 2px rgba(68, 68, 68, 0.7);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  transition: 0.5s;
  position: fixed;
  top: -200%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  max-width: 600px;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0, 0.99);
}
div#kinkyu.open {
  top: 50%;
  transition: 0.3s;
}
div#line {
  padding: 5%;
  border: solid 3px rgb(0, 0, 0);
}
#kinkyu p {
  font-size: 14px;
  line-height: 150%;
}
#kinkyu h1 {
  font-size: 18px;
  margin: 0 0 13px;
  font-weight: 600;
}
#kinkyu ul {
  border-top: solid 2px currentColor;
  margin: 14px 0 14px 0;
}
#kinkyu ul li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #444;
  padding: 10px 5px 10px 5px;
  line-height: 150%;
  text-align: left;
}
#kinkyu .le {
  width: 25%;
  text-align: left;
}
#kinkyu .rig {
  width: 75%;
  text-align: left;
}
a#kinclose {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border: solid 1px #000;
  width: 2em;
  height: 2em;
  line-height: 2em;
  color: #FFF;
  background: #000;
  font-weight: 600;
  transition: 0.3s;
  font-size: 18px;
  border: solid 1px #000;
}
#kinclose .material-icons {
  font-size: 2em !important;
  line-height: 100%;
  letter-spacing: 1em;
  display: block;
  /* padding: 2px; */
  transition: 0.5s;
}
a#kinclose:hover {
  /*background: rgba(214, 211, 201, 0.98);
    color: #000;
    border: 4px #000 solid;
    top: -2px;
    right: -2px;*/
}
#kinclose .material-icons:hover {
  transform: rotate(-360deg);
  -moz-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
  -o-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
}
@media screen and (max-width: 500px) {
  div#kinkyu {
    width: 85%;
    padding: 10px;
    position: absolute;
    transform: translateY(0%) translateX(-50%);
    -webkit- transform: translateY(0%) translateX(-50%);
    top: -200%;
  }
  div#kinkyu.open {
    top: 10%;
  }
  div#line {
    padding: 4%;
    border: solid 2px rgb(0, 0, 0);
  }
  #kinkyu ul li {
    display: block;
  }
  #kinkyu ul li div {
    width: 100% !important;
  }
  #kinkyu h1 {
    font-size: 16px;
    margin: 13px 0 13px;
  }
  #kinkyu p {
    font-size: 13px;
    line-height: 150%;
  }
  #kinkyu .le {
    width: 25%;
    text-align: left;
    font-weight: 600;
  }
}
/*緊急＿エンド*/
#body {}
#container {
  width: 100%;
  margin: auto;
  /*max-width: 1200px;*/
  position: relative;
}
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
/*ヘッダー*/
div#header {
  position: fixed;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
  background: #FFF;
}
div#header.scroll {
  background: rgba(255, 255, 255, 0.6);
}
div#logo {
  width: 20%;
}
#logo img {
  width: 100%;
}
#menu {
  width: 80%;
  display: flex;
  justify-content: flex-end;
}
#menu .scroll {
  height: 70px;
  transition: 0.6s;
  opacitiy: 0.7;
}
#menu2 {
  display: none;
}
#menu ul {
  display: flex;
  width: 80%;
  justify-content: flex-end;
  margin: 4% 3% 0 0;
}
#menu ul li {
  margin: 1%;
  font-size: 15px;
  letter-spacing: 0.1em;
}
/*ショップスケジュール*/
#link {
  position: fixed;
  top: 20vh;
  right: 0;
  display: block;
  z-index: 20;
}
#link a {
  color: #FFF;
  font-size: 0.9em;
  display: block;
  padding: 5px 10px;
  font-family: serif;
  letter-spacing: 0.1em;
  line-height: 130%;
  background-color: #4C2A06;
  transition: 0.3s;
}
/*スライド*/
div#slide {
  width: 100%;
  height: 700px;
  margin: 90px 0 0 0;
}
.swiper-slide {
  background-size: cover;
  background-position: center center;
}
.mainvisual {
  overflow-x: hidden;
  height: 100%;
}
.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  height: 100%;
}
.topslide {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  div#slide {
    width: 100%;
    height: 60vw;
    margin: 90px 0 0 0;
  }
}
/*ニュース*/
#news {
  border-bottom: 1px solid;
  width: 100%;
  padding: 0 0 10px 0;
}
#newsbox {
  font-size: 13px;
  letter-spacing: 1px;
  width: 50%;
  margin-left: 30px;
}
#other {
  width: 45%;
  margin: 1% 2% 1% 0;
}
.othershop {
  font-size: 12px;
  text-align: right;
  letter-spacing: 1px;
}
#news li {
  list-style: inherit !important;
}
@media only screen and (max-width: 960px) {
  /*ニュース*/
  #news {
    display: inline-block;
    margin: auto;
    text-align: center;
  }
  #newsbox {
    width: 90%;
    margin: auto;
    border-bottom: 1px solid;
    padding: 10px 0 20px 0;
  }
  #other {
    width: 90%;
    margin: auto;
    padding: 20px 10px 10px 10px;
  }
  .othershop {
    text-align: center;
  }
	#lunch h6 {
   color: #666;
}
}
/*アバウト*/
#about {
  width: 90%;
  margin: 3% 5% 10% 5%;
}
#about .profile {
  font-family: 'Noto Serif JP', serif;
  margin: 4% 0 0 0;
  text-align: center;
  width: 50%;
}
.profile h1 {
  font-size: 2rem;
  letter-spacing: 0.3em;
}
.profile .text {
  font-size: 1.4rem;
  margin: 16px 0 15px 0;
  letter-spacing: 0.2em;
  line-height: 2;
}
.profile h2 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 23px;
}
.illust {
  width: 50%;
  text-align: center;
}
.illust img {
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  /*アバウト*/
  #about {
    display: inline-block;
  }
  .profile .text {
    text-align: justify;
    letter-spacing: 0.1em;
  }
  p.text br {
    display: none;
  }
  .profile {
    width: 100% !important;
    margin: auto;
  }
  .illust {
    width: 100%;
  }
}
/*ランチ*/
#lunch {
  margin: 0 0 180px 0;
}
.lunchwrap {
  position: relative;
  width: 100%;
  height: 800px;
}
#lunch h3 {
  font-family: 'Satisfy', cursive;
  font-size: 5rem;
  line-height: 1;
  text-align: center;
  margin: 0 0 12px 0;
}
.lunchphoto {
  background-size: cover;
  height: 800px;
  position: absolute;
  width: 100%;
  background-position: center center;
}
.lunchtext {
  text-align: center;
  width: 30%;
  padding: 20px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(0%);
  -webkit- transform: translateY(-50%) translateX(0%);color: #fff;
}
.menu_b {
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%) translateX(0%);
  -webkit- transform: translateY(-50%) translateX(0%);
}
#lunch h4 {
  font-family: 'Satisfy', cursive;
  font-size: 3.0rem;
}
#lunch h5 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0px 0px 10px #353333;
  border-bottom: 1px currentColor solid;
  display: inline;
  padding: 0 5px;
}
#lunch p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 0 0 12px 0;
  text-shadow: 0px 0px 10px #353333;
  color: #fff;
}
#lunch h6 {
  font-family: 'Noto Serif JP', serif;
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  border: none;
	color: #FFF;
}
}
#lunch h6 span {
  font-size: 1.4rem;
}
@media only screen and (max-width: 960px) {
	#lunch h5 {
  text-shadow: none;
 color:#666;
}
	#lunch h6 {
    color: #666;
}
	#lunch p {
  text-shadow: none;
  color: #666;
}
  .lunchwrap {
    position: relative;
    width: 100%;
    height: auto;
  }
  .lunchphoto {
    background-size: cover;
    height: 600px;
    position: relative;
    width: 100%;
    background-position: center right;
  }
  #lunch_b {
    background-position: center left;
  }
  .lunchtext {
    width: 90%;
    padding: 20px 0;
    position: relative;
    top: 0;
    /* left: 0; */
    transform: translateY(0%) translateX(0%);
    -webkit- transform: translateY(0%) translateX(0%);
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .lunchphoto {
    height: 80vw;
  }
  #lunch h3 {
    font-size: 3.6rem;
  }
}
/*カフェ*/
#cafe h5, #sweets h5, #limited h5, #insta h5, #access h5, #recruit h5 {
  font-family: 'Satisfy', cursive;
  font-size: 4rem;
  line-height: 1;
  text-align: center;
  margin: 0 0 12px 0;
}
#cafe_header {
  margin: 0 0 40px 0;
}
#cafe_header img {
  width: 100%;
}
#drink {
  margin: 0 0 60px 0;
}
#drink_menu, #normal_menu {
  margin: 20px 10% 0 10%;
  display: inline-flex;
  flex-wrap: wrap;
  width: 80%;
}
#drink .item {
  width: 50%;
  display: inline-flex;
  flex-wrap: wrap;
  letter-spacing: 1px;
  line-height: 41px;
}
#drink .name {
  width: 70%;
  margin: 0 0 0 8%;
  font-size: 1.4rem;
}
#drink .price {
  text-align: right;
  font-size: 1.5rem;
  width: 17%;
}
#sweets .item {
  width: 50%;
  display: inline-flex;
  flex-wrap: wrap;
  letter-spacing: 1px;
  line-height: 41px;
}
#sweets .name {
  width: 52%;
  margin: 0 0 0 8%;
  font-size: 1.4rem;
}
#sweets .price {
  text-align: right;
  font-size: 1.5rem;
  width: 35%;
}
hr {
  width: 80%;
  text-align: center;
}
.item2 {
  display: inline-flex;
  width: 80%;
  margin: 0 10%;
}
.name2 {
  width: 85%;
  margin: 1% 0 0 3%;
  font-size: 1.4rem;
}
.price2 {
  font-size: 17px;
  width: 10%;
  text-align: right;
}
#limited {
  margin: 6% 0 0 0;
  background-color: #E6E6E6;
  padding: 50px 0 20px 0;
  text-align: center;
}
.limited {
  width: 75%;
  text-align: center;
  padding: 20px 0 0 0;
  margin: auto;
}
.limited img {
  width: 100%;
  margin: auto;
}
.limited_name {
  font-size: 1.4rem;
  line-height: 26px;
}
.limited_price {
  font-size: 1.5rem;
  margin: 20px;
}
@media only screen and (max-width: 768px) {
	#cafe h5, #sweets h5, #limited h5, #insta h5, #access h5, #recruit h5 {
    font-family: 'Satisfy', cursive;
    font-size: 3.0rem;
    line-height: 1;
    text-align: center;
    margin: 0 0 12px 0;
}
  #drink_menu, #normal_menu {
    margin: 20px 10% 0 10%;
    display: block;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
  }
  #drink .item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: 0.5em auto;
  }
#sweets .item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: auto;
}
}
@media only screen and (max-width: 425px) {
	  #drink .item {
    width: 100%;
    display: block;
    flex-wrap: wrap;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: 0.5em auto;
  }
	#drink .name,#sweets .name {
    width: 100%;
    margin: 0 0 0 0;
    font-size: 1.4rem;
    text-align: center;
}
	#drink .price,#sweets .price {
    text-align: center;
    font-size: 1.5rem;
    width: 100%;
}
	#sweets .item {
    width: 100%;
    display: block;
    flex-wrap: wrap;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: auto;
		    margin: 0.5em auto;
}
}
/*▼▼▼▼▼▼▼▼▼▼▼
インスタ
▼▼▼▼▼▼▼▼▼▼▼▼*/
#insta {
  margin: 50px 0 30px 0;
  text-align: center;
  font-size: 15px;
}
.insta_pecori img {
  width: 25px;
  vertical-align: middle;
  margin: 0 5px 0 0px;
}
#insta_pecori {
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
}
#insta .pecori_p {
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
  line-height: 0;
  margin: 1%;
  height: 220px;
  width: 23%;
}
/*アクセス*/
#access {
  width: 85%;
  text-align: center;
  margin: auto;
  margin-bottom: 60px;
  margin-top: 90px;
}
#shop_description {
  display: inline-flex;
  flex-wrap: wrap;
}
.map {
  width: 50%;
  margin: 0 3% 0 0;
}
.map img {
  width: 100%;
  max-width: 400px;
}
.map_info {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  width: 47%;
  text-align: left;
  line-height: 1.8;
}
#access a:hover {
  text-decoration: none;
  color: #CCC;
}
#shop_description h6 {
  font-size: 1.6rem;
  border-bottom: 1px dotted currentcolor;
  padding: 29px 0 3px 0;
  font-weight: bold;
}
.copy {
  margin: -10px 0 0 0;
}
.shosai {
  margin: 12px 0 0 0;
}
/*リクルート*/
#recruit {
  margin: auto;
  margin-bottom: 80px;
  margin-top: 100px;
  text-align: center;
}
.re_copy {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 28px;
  margin: 20px 0 20px 0;
}
.button {
  background-color: darkgray;
  width: 150px;
  margin: auto;
  font-size: 14px;
  padding: 6px;
}
#recruit a {
  color: #FFF;
}
#recruit a:hover {
  color: #333;
}
/*フッター*/
#footer {
  padding: 20px 20px 50px 20px;
  background-color: #CCC;
  text-align: center;
  overflow: auto;
}
#footer img {
  max-width: 200px;
  margin-bottom: 10px;
}
#footer hr {
  width: 100%;
}
.fleft {
  float: left;
  width: 100%;
}
.sns {
  display: inline-flex;
}
.fright {
  float: right;
  width: 100%;
  padding: 20px 0 0 0px ! important;
  text-align: left;
}
.linkbox.linkcompanu {
  width: 11%;
  margin-right: 6%;
  margin-left: 4%;
}
.linkbox.linkbrand {
  width: 8%;
  margin-right: 5%;
}
.linkbox.linkshop {
  width: 16%;
  margin-right: 2%;
}
.linkbox.linkshop2 {
  width: 20%;
  margin-right: 2%;
}
.linkbox.linkweb {
  width: 20%;
}
.sns img {
  margin: 0 4px 0 4px;
}
.linkbox {
  float: left;
  color: #000;
  font-size: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  margin-right: 4%;
}
.linkbox li a {
  color: #000;
}
.linkbox li a:hover {
  color: #FFF;
}
.linkbox li {
  margin-bottom: 8px;
}
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼
ニュース
▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.titlebloc h4 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
}
div.blogcontent {
	max-width: 650px;
	margin: auto;
}
.blogcontent p {
	line-height: 3rem;
}
.blogcontent div img {
	margin: 15px auto;
	width: 100%;
	height: auto;
}
.blogcontent p a {
	margin-top: 10px;
	margin-bottom: 10px;
	display: block;
	color: #000000;
	font-weight: bold;
}
.blogcontent p a:hover {
	opacity: 60%;
}
/*780px以下*/
@media only screen and (max-width: 780px) {
  /*ヘッダー*/
  #header {
    margin: auto;
    display: block !important;
  }
  #logo {
    text-align: center;
    margin: 20px 0 0 0;
    width: 30% !important;
  }
  #menu {
    display: none;
  }
  #menu .scroll {
    height: 70px;
    transition: 0.5s;
  }
  #menu2 {
    display: block;
    position: fixed;
    top: -40px;
    z-index: 999999;
    width: 100%;
    transition: 0.6s;
  }
  #menu2.scroll {
    top: 0px;
    transition: 0.6s;
  }
  #menu2 #navi {
    margin-bottom: 1.5em;
    /*background-color: RGBA(0, 0, 0, 0.84);*/
    /*! border-top: 1px solid #827D7D; */
    width: 100%; /* 幅を100％に */
    z-index: 100; /* 必要に応じて */
    margin-top: 0;
    /*position: fixed;*/
    top: 0px;
    /*! height: 100vh; */
    z-index: 130;
  }
  #menu2 #navi ul {
    overflow: hidden; /* 必要に応じて */
    margin: 0;
    padding: 0;
  }
  #menu2 #navi ul li {
    width: 100%; /* 幅を100％に */
    font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
    font-size: 15px;
    height: calc(100vh/8);
    letter-spacing: 3px;
  }
  #menu2 #navi ul li a {
    color: #FFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: dotted 1px #888;
    height: 100%;
    background: RGBA(0, 0, 0, 0.71);
  }
  #menu2 #navi ul li a:hover {
    color: #8FEDF1;
    background-color: #333;
    text-decoration: none;
  }
  #menu2 #navi ul {
    display: none; /* スモールデバイスでは非表示に */
  }
  #menu2 #navi a#pull {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #FFF;
    z-index: 10;
    font-weight: 600;
    background: RGBA(0, 0, 0, 0.71);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
  }
  #menu2 #navi a:hover#pull {
    color: #99DDF5;
  }
  .clearfix:after {
    content: "";
    display: block;
    clear: both;
  }
  #link {
    top: 4vh;
    font-size: 0.5em;
  }
  /*ランチ*/
  #lunch {
    margin-bottom: 60px;
  }
  /*アクセス*/
  #shop_description {
    display: inline-block;
  }
  .map, .map_info {
    width: 100%;
  }
  /*インスタ*/
  #insta .pecori_p {
    height: 180px;
    width: 48%;
  }
  /*リクルート*/
  #recruit {
    margin: 100px 30px 80px 30px;
  }
  /*フッター*/
  .fright {
    display: none;
  }
  #footer hr {
    display: none;
  }
  #footer {
    padding: 20p 20p 0px 20px;
  }
}
@media only screen and (max-width: 425px) {
  #logo {
    text-align: center;
    margin: 20px 0 0 0;
    width: 60% !important;
    max-height: 100%;
  }
}