@charset "utf-8";
/* CSS Document */
body {
  font-family: "Zen Kaku Gothic New";
  color: var(--text-color);
  background-color: var(--white);
  letter-spacing: 0.08em;
  font-weight: bold;
  font-size: 1.1em
}
:root {
  /*color*/
  --not-use: #fff;
  --cream: #FFF7EB;
  --green: #9DD52D;
  --brown: #573001;
  --white: #FFFDFD;
  --red: #CB4829;
  /*style guide*/
  --text-color: var(--brown);
  --main-color: var(--green);
  --base-color: var(--cream);
  --white-color: var(--white);
  --acsent-color: var(--red);
  /*margin*/
  --title-margin: 0 0 80px 0;
  --section-margin: 240px auto;
  --section-padding: 160px 0;
}
.h2-title {
  font-size: 2.2em;
  font-weight: bold;
}
.icon {
  position: absolute;
  z-index: 1;
  width: 400px;
  left: 2%;
  top: 2%;
  text-align: center
}
.icon img {
  width: 100%;
}
#nav {
  position: fixed;
  z-index: 999;
  right: -120%;
  top: 0;
  width: 25%;
  height: 65vh;
  border-left: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  background-color: var(--white);
  border-radius: 0 0 0 80px;
  /*動き*/
  transition: all 0.6s;
}
#nav-list {
  position: relative
}
.nav-media-icon {
  color: #666;
}
.nav-media-icon a:hover {
  color: #B3B3B3;
  transition: .3s ease-in-out;
}
#nav.panelactive {
  right: 0;
}
#nav.panelactive #nav-list {
  position: fixed;
  z-index: 999;
  width: 30%;
  height: 65vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
}
#nav li {
  list-style: none;
}
#nav li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1em
}
#nav li a:hover {
  color: #B3B3B3
}
.open-hbm {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  right: 2%;
  top: 2%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.fa-xmark {
  width: 50px;
  height: 50px;
}
.header1 {
  display: flex;
  width: 100%;
  height: 60px;
  position: relative;
  background-color: transparent;
  justify-content: center;
  place-items: center
}
.ul-nav {
  display: flex;
  align-items: center;
}
.ul-nav li {
  padding-left: 20px
}
.top-video-container {
  text-align: right;
  position: relative;

}
.top-view-video {
  width: 90%;
  height: 96vh;
  border-radius: 0 0 0 100px;
  object-fit: cover;
  margin: var(--title-margin);
}
.top-information {
  position: absolute;
  width: 60%;
  height: 80px;
  right: 0;
  bottom: 0;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  border: 2px solid #fff;
  color: #fff;
  border-radius: 60px 0 0 60px;
  text-align: center;
}
.top-information-inner {
  width: 100%;
  height: 100%;
  display: flex;
  margin: auto;
}
.business-time-content {
  width: 50%;
  margin: auto;
  border-right: 2px dashed #fff;
}
.tel-number-content {
  width: 50%;
  margin: auto
}
/*-----アニメーション-----*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgDUextend::before {
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
}
@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
.title {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}
.title span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}
.title.-visible, .title.-visible span {
  transform: translate(0, 0);
}
.fadein-top-information {
  opacity: 0;
}
.fadein-top-information.active {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: all .3s cubic-bezier(.58, .4, .21, .89);
}
.underfadein {
  opacity: 0;
  transform: translateY(30px);
}
.underfadein.active-under {
  opacity: 1;
  transform: translateY(0);
  transition: all .4s cubic-bezier(.58, .4, .21, .89);
}

.underfadein-fast {
  opacity: 0;
  transform: translateY(30px);
}
.underfadein-fast.active-underfast {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(.58, .4, .21, .89);
}
.leftfadein {
  opacity: 0;
  transform: translateX(-30px);
}
.leftfadein.active-left {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s cubic-bezier(.58, .4, .21, .89);
}
.img-leftfadein {
  overflow: hidden;
  transform: translate(-120%, 0);
  animation-delay: 2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}
.img-leftfadein > span {
  display: block;
  transform: translate(120%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}
.img-leftfadein.-visible, .img-leftfadein.-visible > span {
  transform: translate(0, 0);
}
.img-leftfadein-delay {
  overflow: hidden;
  transform: translate(-120%, 0);
  animation-delay: 2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s;
}
.img-leftfadein-delay > span {
  display: block;
  transform: translate(120%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s;
}
.img-leftfadein-delay.-visible, .img-leftfadein-delay.-visible > span {
  transform: translate(0, 0);
}
.img-rightfadein {
  overflow: hidden;
  transform: translate(120%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
}
.img-rightfadein span {
  display: block;
  transform: translate(-120%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
}
.img-rightfadein.-visible, .img-rightfadein.-visible span {
  transform: translate(0, 0);
}
/*-----アニメーション終わり-----*/



#menu-section {
  background-color: var(--base-color);
  padding: var(--section-padding);
}
.menu-title {
  text-align: center;
  margin: var(--title-margin)
}
.menu-tab-container {
  padding-bottom: 2em;
  width: 88%;
  background-color: var(--white);
  margin: 0 auto;
  border-radius: 0 0 80px 80px
}
.tab-item {
  width: calc(100%/4);
  padding: 15px 0;
  background-color: var(--base-color);
  text-align: center;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab-item:hover {
  opacity: 0.75;
  cursor: pointer
}
input[name="tab-item"] {
  display: none;
}
.tab-content {
  display: none;
  padding: 1em 1em 0;
  clear: both;
  overflow: hidden;
}
#burger-tab:checked ~ #burger-tab-content, #set-tab:checked ~ #set-tab-content, #side-tab:checked ~ #side-tab-content, #drink-tab:checked ~ #drink-tab-content {
  display: block;
}
.menu-tab-container input:checked + .tab-item {
  background-color: var(--white);
  color: var(--acsent-color);
  border-bottom: 2px dashed var(--acsent-color);
}
.tab-content-description {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin: auto;
}
.tab-content-box {
  width: 25%;
}
.takeout-mark {}
.takeout-mark img {
  width: 10%;
}
.tab-content-img {
  margin: auto;
  text-align: center;
}
.tab-content-img img {
  width: 80%;
}
.tab-content-text {
  text-align: center;
  font-weight: bold
}
.tab-content-end {
  align-items: flex-end;
  margin-top: 20px;
}
.takeout-text {
  margin: 60px 0 0 0;
  text-align: center;
  color: var(--acsent-color);
  font-weight: bold
}
@media(max-width:1200px) {
  .h2-title {
    font-size: 1.7em
  }
  .takeout-text {
    font-size: .75em
  }
  .tab-content-text {
    font-size: .7em;
  }
  .philosophy-text {
    font-size: .8em
  }
}
#philosophy-section {
  width: 90%;
  
  margin: var(--section-margin)
}
.philosophy-title-box {
  position: relative;
  height: auto;
  text-align: center;
  justify-content: center;
  margin: 0px 0px 100px 0px;
  width: 100%;
  max-width: 100%;
}
.philosophy-title-background-img {
  justify-content: center;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -55%);
  margin: 0 0 0 0;
  padding: 0px;
  position: absolute;
  width: 80%;
  z-index: -1;
}
.philosophy-title-background-img img {}
.philosophy-title {
  margin: var(--title-margin);
	
}
.philosophy-text {
  line-height: 2;
	text-align: center
}
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
  vertical-align: bottom
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 5px; /*スライド左右の余白調整*/
}
.slider {
  height: auto;
  margin: var(--section-margin)
}
#feature-section {
  width: 90%;
  margin: auto
}
.feature-title {
  margin: var(--title-margin)
}
.feature-title-box {
  height: auto;
  justify-content: center;
  margin: 0px 0px 180px 0px;
  width: 100%;
  max-width: 90%;
  position: relative
}
.feature-title-background-img {
  align-items: flex-start;
  justify-content: center;
  top: 0%;
  left: 0%;
  transform: translate(-5%, -55%);
  margin: 0 0 0 0;
  padding: 0px;
  position: absolute;
  width: 80%;
  z-index: -1;
}
.philosophy-title-background-img img {}
.philosophy-title {
  margin: var(--title-margin)
}
.feature-container {
  display: flex;
  flex-direction: row;
  height: auto;
  margin: 0 auto 160px auto;
}
.feature-img-leftbox {
  width: 50%;
}
.feature-img-leftbox img {
  width: 100%;
}
.feature-img-rightbox {
  width: 50%;
}
.feature-img-rightbox img {
  width: 100%;
}
.feature-text-title {
  font-size: 1.6em;
  margin-bottom: 20px;
}
.title-border {
  position: relative;
  display: block
}
.title-border::after {
  position: absolute;
  content: " ";
  margin: 6px 0;
  width: 100%;
  display: block;
  border-bottom: 2px dashed var(--acsent-color);
}
.counter {
  color: var(--acsent-color);
  font-size: 1.2em;
  margin-right: 20px;
}
.feature-text-rightbox {
  width: 50%;
  margin-left: 10%;
}
.feature-text-leftbox {
  width: 50%;
  margin-right: 10%;
}
.feature-text {
  margin-top: 5%;
}
.sp {
  display: none
}
@media(max-width:1200px) {
  .feature-text-title {
    font-size: 1.3em
  }
  .feature-text {
    font-size: .8em
  }
}
@media(max-width:599px) {
  .feature-container {
    flex-direction: column
  }
  .pc {
    display: none
  }
  .sp {
    display: block
  }
  .feature-img-leftbox {
    width: 80%;
    margin: auto
  }
  .feature-img-leftbox img {
    width: 100%;
  }
  .feature-img-rightbox {
    width: 80%;
    margin: auto
  }
  .feature-img-rightbox img {
    width: 100%;
  }
  .feature-text-rightbox {
    width: 80%;
    margin: auto
  }
  .feature-text-leftbox {
    width: 80%;
    margin: auto
  }
}
#access-section {
  width: 90%;
  margin: auto
}
.access-title {
  text-align: center;
  margin: var(--title-margin)
}
.access-title-box {
  height: auto;
  justify-content: center;
  margin: 0px 0px 180px 0px;
  width: 100%;
  position: relative
}
.access-title-background-img {
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  margin: 0 0 0 0;
  padding: 0px;
  position: absolute;
  width: 70%;
  z-index: -1;
}
.access-container {
  display: flex;
  flex-direction: row;
  height: 500px;
  margin: 0 0 160px 0;
  position: relative;
}
.access-text {
  background-color: var(--base-color);
  width: 70%;
  border-radius: 0px 80px 0px 80px;
  position: relative
}
.shop-name {
  font-size: 1.7em;
  font-weight: bold
}
.access-text-flex {
  display: flex;
  margin-top: 20px;
  width: 100%;
  font-size: .9em
}
.access-text-flex p {
  margin-top: 10px
}
.access-text-inner {
  position: absolute;
  top: 35%;
  left: 30%;
  transform: translateY(-50%) translateX(-30%);
  width: 80%;
}
.access-topic-box {
  width: 40%
}
.access-text-box {
  margin-left: 10%;
  width: 100%
}
.access-text-box p {}
.access-map {
  width: 50%;
}
.access-map iframe {
  position: absolute;
  width: 50%;
  height: 90%;
  top: 100px;
  right: 0px;
  border-radius: 80px 0px 80px 0px
}
@media(max-width:1200px) {
  .access-container {
    display: block
  }
  .access-text {
    width: 80%;
  }
  .access-text-inner {
    width: 80%;
    background-color: var(--base-color);
    padding: 40px;
    border-radius: 0px 80px 0px 80px;
  }
	.access-map iframe{
		right: 50px;
		height: 60%;
		width: 70%;
		top: 25%;
	}
}

@media(max-width:599px){
	.access-text-inner{
		width: 100%;
	}
	.shop-name{
		font-size: 1em
	}
	.access-text-flex{
		font-size: .5em
	}
}
#footer-section {
  background-color: var(--base-color);
}
.footer-logo {
  width: 300px;
  margin: 2% 0 80px 2%;
}
.footer-center-area {
  text-align: center;
}
.footer-ul {
  display: inline-flex
}
.footer-li {
  margin: 0;
  padding: 0 45px;
  display: inline-block;
}
.footer-media-icon {
  margin: 80px 0 30px 0;
  font-size: 30px;
	font-size: 2em
}
.back-to-top {
  margin: 0 0 10px;
}

@media(max-width:1200px){
	.footer-ul{
		
	}
	.footer-logo {
		width: 200px
	}
	.footer-li{
		font-size: .8em
	}
	
	.back-to-top{
		font-size: .8em
	}
	.credit{
		font-size: .7em
	}
	.footer-media-icon{
		font-size: 1.5em
	}
}

@media(max-width:599px){
	.footer-logo {
		width: 200px
	}
	.footer-ul{
		flex-direction: column
	}
	.footer-li{
		margin:20px 0 0 0;
	}
	.footer-media-icon{
		margin: 40px 0 15px 0;
		font-size: 1.5em
	}
}