@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Noto_Serif_JP;
  src: url(../font/Noto_Serif_JP/NotoSerifJP-VariableFont_wght.ttf);
}


@font-face {
  font-family: Grechen_Fuemen;
  src: url(../font/Grechen_Fuemen/GrechenFuemen-Regular.ttf);
}


body {
  width: 100%;
  font-family: Noto_Serif_JP;
  background-image: url(../images/body-visual.jpg);
  /* background-color: #2b2b2b; */
}

header {
  display:  block;/* スライドアニメ指定効果を効かすため */
  position:  relative;            /* スライドアニメ位置指定 */
  background-image: url(../images/header-visual.jpg);
  background-size: 100% 100%;
  font-family: arial;
  width: 100%;
  height: 50vw;
  animation: bugfix infinite 1s;/* ボタンアニメーション指定 */
  -webkit-animation: bugfix infinite 1s;/* ボタンアニメーション指定 */
  animation: anime1 1s ease;      /* スライドアニメーション指定 */
}

/* スライドアニメーション指定 */
@keyframes anime1 {
  0% {
      opacity:  0;                /* 透明度指定 */
      top: 50px;                  /* 位置指定 */
  }
  100% {
      opacity:  1;                /* 透明度指定 */
      top: 0;                     /* 位置指定 */
  }
}


.header-box {
  position: fixed;
  width: 100%;
  height: 7vw;
  z-index: 1000;
  background-color: rgba(43, 43, 43, 0);
}


h1 {
  display: flex;
  width: 98%;
  padding: 0 1.5%;
}

h1 a {
  display: block;
  width: 7%;
  margin-right: auto;
}

h1 a img {
  display: block;
  width: 100%;
  background-size: 100% 100%;
}

h1 p {
  width: 9.8%;
  text-align: center;
  margin-top: 2%;
  color: white;
  font-size: 1vw;
}

h1 p:nth-of-type(1) {
  letter-spacing: .5em;
  font-family: Noto_Serif_JP;
}

h1 p:nth-last-child(1) {
  margin-right: 41%;
  letter-spacing: .6em;
  font-family: Grechen_Fuemen;
}

/* ハンバーガーボタン */

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
  position: absolute;
  right: 2.3%;
  top: 10%;
  padding: 2% 1.5%;
  /* padding: 26px 11px; */
  z-index: 5;
  cursor: pointer;
  user-select: none;
}
#overlay-button span {
  
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: white;
  position: relative;
  display: block;
  transition: all .3s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  content: "";
  transition: all .3s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #c0c6c9;
}

input[type=checkbox] {
  display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);


}

#overlay {
  height: 100vh;
  width: 100vw;
  background-color: rgba(13, 0, 21, 0.5);
  z-index: 2;
  visibility: hidden;
  position: fixed;
  top: 0;
}

#overlay.active {
  transition: .4s ease-in-out;
}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
#overlay ul li {
  padding: 0.5%;
}
#overlay ul li a {
  display: block;
  line-height: 2;
  text-decoration: none;
  font-family: Noto_Serif_JP;
  font-size: 1.5em;
  color: #c0c6c9;
}

#overlay ul li a::after {
  display: block;/* 疑似要素はブロックレベル要素ではないので
  プロパティを効かすため変換する */
  content: "";/* 疑似要素で線を作る時は中身は入れない */
  width: 0%;/* :hover時に線を伸ばしたいので0%にして見えなくした */
  height: 0.09vw;/* heightを入れないと何も見えない */
  background-color: #fffffc;
  transition: 0.6s;
}

#overlay ul li a:hover::after {
  width: 100%;/* カーソルを乗せたら線が出るようにした */
  transition: 0.6s;
}

#overlay ul li a:hover {
  color: #fffffc;
  /* color: #000!important; */
  transition: 0.6s;
}



/* mainページ */

main {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  background-color: #2b2b2b;
}


/* sevtion　挨拶 */

.concept-warapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 145vw;
  margin-top: 18%;
}

/* スクロールbox */
.concept-warapper .parallax-box-1 {
  clip-path: inset(0);
  width: 78%;
  height: 34%;
  margin-top: 10%;
  padding: 1vw;
  z-index: 100;
  box-sizing:border-box;
}

.concept-warapper .parallax-box-1::after {
  content: '';
  position: fixed;
  top: 0;
  left: 10%;
  z-index: 10;
  width:100%;
  height: 100%;
  background-image: url(../images/sec1-main.jpg);
  background-size: 100% 100%;
}

/* section 挨拶　右 */

.concept-warapper h2 {
  display: flex;
  position: absolute;
  width: 14%;
  top: 10%;
  left: 84%;
  z-index: 10;
}

/* concept */
.concept-warapper h2 p:nth-of-type(2) {
  writing-mode: vertical-rl;
  margin-top: 8%;
  margin-left: 16%;
  letter-spacing: 0.5em;
  font-size: 1vw;
  color: #888084;
 
}

/* 一期一会のおもてなし */
.concept-warapper h2 p:nth-of-type(1) {
  white-space: pre-wrap;
  writing-mode: vertical-rl;
  line-height: 1.8;
  letter-spacing: .4em;
  font-size: 1.8vw;
  color: #fffff4;
  
}

.concept-warapper .section1-container {
  position: absolute;
  width: 35%;
  height: 75vw;
  top: 30%;
  left: 60%;
  z-index: 1;
  background-image: url(../images/sec1_side.jpg);
  background-size: 100% 100%;
}


/* section　挨拶　下 */

.concept-warapper .section1-container2 {
  position: absolute;
  top: 38%;
  left: 5.8%;
  z-index: 1000;
}

.concept-warapper .section1-container2 p {
  white-space: pre-wrap;
  writing-mode: vertical-rl;
  line-height: 2.2;
  letter-spacing: .2em;
  font-size: 1vw;
  color: #fffff4;
}


/* section1 ボタン */

.concept-warapper .section1-container3 {
  position: absolute;
  width: 25%;
  top: 66%;
  left: 18%;
  z-index: 1000;
}

.concept-warapper .section1-container3 a {
  display: block;
  text-decoration: none;
  line-height: 2.4;
  text-align: center;
  border-radius: 0.8vw;
  background-color: #fffff4;
  color: #2b2b2b;
  font-size: 1.4vw;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
}

.concept-warapper .section1-container3:hover a {
  background: #383c3c;
  color:  #fffff4;
  letter-spacing: 0.15em;
  transition: .6s;
}

.concept-warapper .section1-container3 a span {
  display: inline-block;
  
}

/* スクロール */

.scroll {
  position  : absolute;
  writing-mode : vertical-rl;
  top : 78%;
  left : 5%;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
}
.scroll::after {
  content : "";
  display : inline-block;
  position : absolute;
  background-color: #888084;
  right: 50%;
  bottom : -31.9vw;/*  */
  transform : translateX(-50%);
  width : 0.8px;
  height : 45vw;/* 長さ調節 */

  animation: scroll 2.8s infinite;
}
@keyframes scroll {
0% {
  transform: scale(1, 0);
  transform-origin: 0 0;
}
50% {
  transform: scale(1, 1);
  transform-origin: 0 0;
}
50.1% {
  transform: scale(1, 1);
  transform-origin: 0 100%;
}
100% {
  transform: scale(1, 0);
  transform-origin: 0 100%;
}
}


/* セクション2　メニュー */

.menu-warapper {
  position: relative;
  width: 100%;
  height: 120vw;
  background-image: url(../images/sec2-back.jpg);
}

/* えび */ 
.menu-warapper .section2-image {
  position: absolute;
  width: 80%;
  height: 38vw;
  top: -7.5%;
  left: 10%;
  z-index: 1;
  background-image: url(../images/sec2-visual.jpg);
  background-size: 100% 100%;
}

.menu-warapper .section2-image p:nth-of-type(1) {
  margin-top: 0;
  text-align: center;
  letter-spacing: 0.5em;
  font-size: 1vw;
  color: #888084;
}

.menu-warapper .section2-image p:nth-of-type(2) {
  margin-top: 2%;
  text-align: center;
  letter-spacing: .4em;
  font-size: 1.8vw;
  color: #fffff4;
}

/* ムース */
.menu-warapper .section2-image2 {
  position: absolute;
  width: 34%;
  height: 38vw;
  top: 22%;
  z-index: 10;
  background-image: url(../images/sec2-visual2.jpg);
  background-size: 100% 100%;
}
/* テーブル */
.menu-warapper .section2-image3 {
  position: absolute;
  width: 80%;
  height: 38vw;
  top: 50%;
  left: 10%;
  z-index: 100;
  background-image: url(../images/sec2-visual3.jpg);
  background-size: 100% 100%;
}

/* menu文章 */

.menu-warapper .section2-container {
  position: absolute;
  width: 56%;
  top: 26%;
  left: 40%;
}
.menu-warapper .section2-container p {
  text-align: center;
  letter-spacing: 0.5em;
  line-height: 2.2;
  white-space: pre-wrap;
  font-size: 1vw;
}

/* section2 ボタン */
.section2-container2 {
  position: absolute;
  width: 25%;
  top: 90%;
  left: 37.5%;
}

.section2-container2 a {
  display: block;
  text-decoration: none;
  line-height: 2.4;
  text-align: center;
  border-radius: 0.8vw;
  background-color: #fffff4;
  color: #2b2b2b;
  font-size: 1.4vw;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
}

.section2-container2 a:hover {
  background: #383c3c;
  color:  #fffff4;
  letter-spacing: 0.15em;
  transition: .6s;
}


/* section3 店内空間 */

.space-wrapper {
  width: 100%;
  height: 90vw;
  margin-top: 15%;
  position: relative;
}

/* section3 h2 */

.space-wrapper h2 {
  width: 50%;
  height: 8vw;
  position: absolute;
  top: 6%;
  left: 5%;
  z-index: 10;
  background-color: #2b2b2b;
}

.space-wrapper h2 p:nth-of-type(1) {
  margin-top: 2%;
  text-align: center;
  letter-spacing: 0.5em;
  font-size: 1vw;
  
  color: #888084;
}

.space-wrapper h2 p:nth-of-type(2) {
  margin-top: 3%;
  text-align: center;
  letter-spacing: .4em;
  font-size: 1.8vw;
  color: #fffff4;
}

/* スクロール写真 */
.space-wrapper .parallax-box-2 {
  clip-path: inset(0);
  width: 78%;
  height: 36vw;
  margin-top: 10%;
  margin-left: auto;;
  padding: 1vw;
  z-index: 10;
  box-sizing:border-box;
}

.space-wrapper .parallax-box-2::after {
  content: '';
  position: fixed;
  top: 0;
  left: 10%;
  z-index: 1;
  width:100%;
  height: 100%;
  background-image: url(../images/sec3-visual2.jpg);
  background-size: 100% 100%;
}


.space-wrapper .section3-container {
  display: flex;
  width: 100%;
  height: 36vw;
  margin-top: 8%;
}
/* 文章 */
.section3-container .section3-containerbox {
  width: 45%;
  margin-left: 5%;
  margin-right: 5%;
}

.section3-container .section3-containerbox p {
  margin-top: 12%;
  margin-bottom: 20%;
  text-align: center;
  letter-spacing: 0.5em;
  line-height: 2.2;
  white-space: pre-wrap;
  color: #fffffc;
  font-size: 1vw;
}

.section3-container .section3-containerbox .section3-button {
  width: 55%;
  margin-left: 20%;
}

.section3-container .section3-containerbox a {
  display: block;
  text-decoration: none;
  line-height: 2.4;
  text-align: center;
  border-radius: 0.8vw;
  background-color: #fffff4;
  color: #2b2b2b;
  font-size: 1.4vw;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
}

.section3-container .section3-containerbox a:hover {
  background: #383c3c;
  color:  #fffff4;
  letter-spacing: 0.15em;
  transition: .6s;
}


.section3-image {
  width: 40%;
  height: 26vw;
  background-image: url(../images/sec3-visual.jpg);
  background-size: 100% 100%;
}

/* スクロール右 */
.scroll2 {
  position  : absolute;

  writing-mode : vertical-rl;
  top : 75.9%;
  left : 58.4%;
  z-index: 10;
  
  transform: translateX(-50%) translateY(-50%);
}
.scroll2::after {
  content : "";
  display : inline-block;
  position : absolute;
  background-color: #888084;
  right: 50%;
  bottom : -31.9vw;/*  */
  transform : translateX(-50%);
  width : 0.8px;
  height : 31.9vw;/* 長さ調節 */

  animation: scroll 2.8s infinite;
}


/* section4 店舗情報 */

.access-wrapper {
  width: 100%;
  height: 170vw;
  
  background-image: url(../images/sec2-back.jpg);
}

.access-wrapper h2 {
  width: 50%;
  padding-top: 12%;
  margin-left: auto;
  margin-right: auto;
}

.access-wrapper h2 p:nth-of-type(1) {
  text-align: center;
  letter-spacing: 0.5em;
  font-size: 1vw;
  color: #888084;
}

.access-wrapper h2 p:nth-of-type(2) {
  margin-top: 3%;
  text-align: center;
  letter-spacing: .4em;
  font-size: 1.9vw;
  color: #202020;
}

/* センターロゴ */
.section4-rogo {
  width: 25%;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10%;
}

.section4-rogo img {
  width: 100%;
}

.access-wrapper .section4-container {
  display: flex;
  width: 90%;
  height: 20vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10%;
  
}

/* 予約問い合わせ左 */

.access-wrapper .section4-container .section4-box {
  width: 36%;
  margin-left: 3%;
  margin-right: 3%;
  border: 1px solid #888084;
  background-color: #fbfaf5;
}

.access-wrapper .section4-container .section4-box p:nth-of-type(1) {
  margin-top: 20%;
  font-size: 1.2vw;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.1em;
}

.access-wrapper .section4-container .section4-box p:nth-of-type(2) {
  font-size: 2vw;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.2em;
}

/* 予約はこちらaタグ */
.access-wrapper .section4-container .section4-box2 {
  width: 78%;
  margin-top: 6%;
  margin-left: auto;
  margin-right: auto;
  
}


.access-wrapper .section4-container .section4-box2 a {
  display: block;
  text-decoration: none;
  line-height: 2.4;
  letter-spacing: 0.08em;
  text-align: center;
  border-radius: 0.8vw;
  background-color: #383c3c;
  color: #fffffc;
  font-size: 1vw;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
}

.access-wrapper .section4-container .section4-box2:hover a {
  background: #888084;
  color:  #fffffc;
  letter-spacing: 0.2em;
  transition: .6s;
}


/* キャンセル右 */
.access-wrapper .section4-container .section4-box3 {
  width: 55%;
  border: 1px solid #383c3c;
  background-color: #fbfaf5;
}

.access-wrapper .section4-container .section4-box3 p:nth-of-type(1) {
  margin-top: 10%;
  margin-bottom: 3%;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.5em;
  font-size: 1.6vw;
}

.access-wrapper .section4-container .section4-box3 p {
  white-space: pre-wrap;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.4em;
  font-size: 0.9vw;
  color: #202020;
}

address {
  display: flex;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10%;
  font-style: normal;
  font-size: 1.2vw;
}

address .section4-listbox {
  width: 48%;
  padding: 1%;
}

address .section4-listbox:nth-of-type(2) {
  margin-top: 2.6%;
}

address .section4-listbox p {
  line-height: 1.4;
  padding-top: 2%;
  padding-bottom: 2%;
  border-bottom: 1px solid #202020;
}

address .section4-listbox p .box1 {
  display: inline-block;
  width: 20%;
  margin-right: 2em;
}

address .section4-listbox p:nth-of-type(1) {
  display: flex;
}

address .section4-listbox p:nth-of-type(3) {
  display: flex;
}

.googlemap {
  display: block;
  width: 80%;
  height: 30vw;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;

}

.access-wrapper .section4-map {
  width: 26%;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
}
.access-wrapper .section4-map a {
  display: block;
  text-decoration: none;
  line-height: 2.4;
  letter-spacing: 0.08em;
  text-align: center;
  background-color: #888084;
  color:  #fffffc;
  font-size: 1vw;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
}

.access-wrapper .section4-map:hover a {
  background: #202020 ;
  color: #fffffc;
  transition: .6s;
}

.section4-map2 {
  width: 21.5%;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1vw;
  
}

.section4-map2 a {
  line-height: 2.4;
  text-decoration: none;
  color: #433d3c;
}

.section4-map2 a::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: #433d3c;
  transition: 0.8s;
}

.section4-map2 a:hover::after {
  width: 16.5vw;
  height: 1px;
  transition: 0.8s;
}




/* フッター */

.footer-wrapper {
  display: flex;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5% 0%;
}

.footer-wrapper .footer-container {
  display: flex;
  width: 40%;
  margin-left: 5%;
}

.footer-container .footer-rogo {
  width: 25%;
}

.footer-container .footer-rogo img {
  width: 100%;

}

.footer-container .footer-resbox {
width: 70%;
margin-left: 5%;
}

.footer-container .footer-resbox p:nth-of-type(1) {
  font-size: 1.2vw;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.1em;
}

.footer-container .footer-resbox p:nth-of-type(2) {
  font-size: 2vw;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.2em;
}


.footer-container .footer-resbox2 {
  width: 90%;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
}


.footer-container .footer-resbox2 a {
  display: block;
  text-decoration: none;
  line-height: 2.4;
  letter-spacing: 0.08em;
  text-align: center;
  border-radius: 0.8vw;
  background-color: #fffffc;
  color: #2b2b2b;
  font-size: 1vw;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
}

.footer-container .footer-resbox2:hover a {
  background: #888084;
  color:  #fffffc;
  letter-spacing: 0.2em;
  transition: .6s;
}


.footer-nav {
  width: 35%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20%;
}

.footer-nav ul {
  display: flex;
}

.footer-nav ul li {
  width: calc( 100% / 6 );
  writing-mode: vertical-rl;
  list-style-type: none;
}

.footer-nav ul li a {
  letter-spacing: 0.5em;
  text-decoration: none;
  line-height: 3;
  font-size: 1vw;
  color: #fffffc;
}

.footer-nav ul li a::before {
  display: block;
  content: "";
  width: 1px;
  height: 0;
  background-color: #fffffc;
  transition: 0.7s;
}

.footer-nav ul li a:hover::before {
  width: 1px;
  height: 6vw;
  transition: 0.7s;
}




.sns-icon {
  
  width: 50%;
  height: fit-content;
  margin-left: 28.5%;
}

.sns-icon a {
  color: #fffffc;
  font-size: 2vw;
}

.sns-icon a .fa-brands {
  transition: 0.5s;
}

.sns-icon a .fa-brands:hover {
  color: #888084;
  transform: scale(1.2,1.2);
  transition: 0.5s;
}

.fa-square-instagram {
  margin-left: 3%;
  margin-right: 3%;
}


footer {
  padding: 2%;
  background-color: #433d3c;
}

footer p {
  margin-top: 3%;
  text-align: center;
  font-size: 0.9vw;
  color: #fffff4;
}