@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コンテンツ */

.top-container {
  position: relative;
  width: 100%;
  background-image: url(../images/body-visual.jpg);
}

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

  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%;
}
}


.top-container h2 {
  text-align: center;
  padding-top: 22%;
  padding-bottom: 15%;
  letter-spacing: 0.5em;
  text-shadow: 1px 1px 2px #fffffc;
  font-size: 3vw;
  color: #888084;
}

/* ｽｸﾛｰﾙ固定セクション */
.menu-container {
  width: 100%;
  height: 100%;
  margin-top: 5%;
  display: flex;
  background-image: url(../images/main-visual.jpg);
  background-size: 100% 100%;
}

/* 固定左側部分(透過) */

.menu-container .left_contents {
  width: 30%;
  height: 185vw;
}

/* 固定左側コンテンツ */

.menu-container .left_contents .left-parentbox {
 /*  position: -webkit-sticky; 任意 */
  position: sticky;
/* position: sticky;を指定する要素の親要素にはかならず高さを指定してください。
自分が動く範囲が指定されていないとページ上部で固定されなくなる。
あと、floatになっているものも固定できない。 */
  background-image: url(../images/sec2-back.jpg);
  top: 7vw;
  padding-top: 5%;
  padding-bottom: 8%;
  z-index: 1;
}

.menu-container .left_contents .left-parentbox .left-childbox {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.menu-container .left_contents .left-parentbox .left-childbox h3 {
  width: 65%;
  padding-top: 4%;
  padding-bottom: 4%;
  margin-left: auto;
  margin-right: auto;
}

.menu-container .left_contents .left-parentbox .left-childbox h3 p {
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1.8vw;
}

.menu-container .left_contents .left-parentbox .left-childbox p {
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.6;
  font-size: 1.2vw;
}

.menu-container .left_contents .left-parentbox .left-childbox .childbox {
  padding-bottom: 10%;
  border-bottom: 1px solid #433d3c;
}

.menu-container .left_contents .left-parentbox .left-childbox .childbox + p {
  padding-top: 10%;
}


/* 右側コンテンツ部分 */

.right_contents {
  float: right;
  width: 80%;
  height: 185vw;
  background-image: url(../images/body-visual.jpg);
}

.right_contents h2 {
  width: 48%;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 13%;
}

.right_contents h2 p {
  font-size: 2vw;
  color: #fffffc;
}

.right_contents h2 p:nth-last-child(1) {
  margin-left: 43%;
  letter-spacing: 0.1em;
}


.right_contents .parent-images {
  position: relative;
  width: 100%;
}

.right_contents .parent-images p {
  position: absolute;
  width: 40%;
  height: 32vw;
  padding: 3%;
  left: 40%;
  writing-mode: vertical-rl;
  white-space: pre-wrap;
  line-height: 3;
  letter-spacing: 0.5em;
  text-align: center;
  z-index: 1;
  color: #fffffc;
  font-size: 1.2vw;
}

/* 写真たち */
.right_contents .parent-images .childbox-image1 {
  position: absolute;
  width: 100%;
  top: 26vw;
  left: -18%;
  background-color: #2b2b2b;
}

.right_contents .parent-images .childbox-image1 img {
  width: 100%;
  vertical-align: bottom;
  opacity: 0.6;
  transition: 0.5s;
} 

.right_contents .parent-images .childbox-image1 img:hover {
  opacity: 0.9;
  transition: 0.5s;
}


.right_contents .parent-images .childbox-image2 {
  position: absolute;
  width: 40%;
  top: 68vw;
  left: 35%;
}

.right_contents .parent-images .childbox-image2 img {
  width: 100%;
  filter: blur(1px);
  transition: 0.5s;
} 

.right_contents .parent-images .childbox-image2 img:hover {
  filter: blur();
  transition: 0.5s;
} 

.right_contents .childbox-image3 {
  width: 70%;
  margin-top: 90vw;
  margin-left: -8%;
}

.right_contents .childbox-image3 img {
  width: 100%;
} 


.right_contents .childbox-image4 {
  width: 50%;
  margin-top: 10vw;
  margin-left: 20%;
  
}

.right_contents .childbox-image4 img {
  width: 100%;
}


.right_contents .childbox-image5 {
  width: 50%;
  margin-top: -40vw;
  margin-left: 25%;
 
}

.right_contents .childbox-image5 img {
  width: 100%;
  box-shadow:-25px 25px 15px #433d3c;
}
/* スクロール部分終了 */

.menu-container2 {
  width: 100%;
}

.menu-container2 .childbox-image6 {
  width: 100%;
  margin-top: 5%;
  background-color: #2b2b2b;
}

.menu-container2 .childbox-image6 img {
  width: 100%;
  opacity: 0.2;
}

.menu-container2 p {
  color: #fffffc;
  text-align: center;
  font-size: 1.2vw;
}


.menu-container2 .pricebox {
  width: 30%;
  margin-top: -48vw;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.menu-container2 .pricebox p:nth-of-type(1) {
  font-size: 2.2vw;
  margin-bottom: 3%;
  letter-spacing: 0.2em;
}

.menu-container2 .price-parent {
  display: flex;
  width: 92%;
  margin-top: 8%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}


.menu-container2 .price-parent .price-child {
  width: 32%;
  height: 30vw;
}

.menu-container2 .price-parent .price-child:nth-of-type(2) {
  margin-left: 2%;
  margin-right: 2%;
  border-left: 1px solid #fffffc;
  border-right: 1px solid #fffffc;
}

.menu-container2 .price-parent .price-child p:nth-of-type(1) {
  font-size: 1.8vw;
  margin-top: 15%;
  margin-bottom: 8%;
  letter-spacing: 0.2em;
}

.menu-container2 .price-parent .price-child p:nth-of-type(2) {
  white-space: pre-wrap;
  line-height: 2.2;
  letter-spacing: 0.1em;
}


/* 酒 */
.menu-container3 {
  width: 80%;
  height: 142vw;
  margin-top: 13vw;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../images/sec2-back.jpg);
}

.menu-container3 .alcohol-box {
  display: flex;
  width: 100%;
}

.menu-container3 .alcohol-box p:nth-child(1) {
  margin: auto;
  letter-spacing: 0.4em;
  text-align: center;
  line-height: 2;
  white-space: pre-wrap;
  text-shadow: 5px 5px 5px #888084;
  font-size: 1.4vw;
}

.menu-container3 .alcohol-box .alcohol-img7 {
  width: 60%;
  margin-top: 8%;
  margin-bottom: 8%;
  vertical-align: bottom;
}

.menu-container3 .alcohol-box .alcohol-img7 img {
  width: 100%;
}

.menu-container3 .alcohol-box .alcohol-img8 {
  width: 60%;
  
}

.menu-container3 .alcohol-box .alcohol-img8 img {
  width: 100%;
}

.menu-container3 .alcohol-box p:nth-last-child(1) {
  margin: auto;
  letter-spacing: 0.4em;
  text-align: center;
  line-height: 2;
  white-space: pre-wrap;
  text-shadow: 5px 5px 5px #888084;
  font-size: 1.4vw;
}

/* アルコール値段表 */
.alcohol-price {
  width: 100%;
}

.alcohol-price h3 {
  margin-top: 12%;
  margin-bottom: 2%;
  font-size: 2.2vw;
  text-align: center;
}

.alcohol-price h3 + p {
  font-size: 1.2vw;
  text-align: center;
}

.alcohol-price .alcohol-parent {
  display: flex;
  width: 95%;
  margin-top: 8%;
  margin-left: auto;
  margin-right: auto;
}

.alcohol-price .alcohol-parent .alcohol-child {
  margin-left: auto;
  margin-right: auto;
  font-size: 1vw;
}



.alcohol-price .alcohol-parent .alcohol-child p {
  display: flex;
  white-space: pre-wrap;
  border-bottom: 1px solid #2b2b2b;
}

.alcohol-price .alcohol-parent .alcohol-child:nth-of-type(1) {
  line-height: 2.75;
}

.alcohol-price .alcohol-parent .alcohol-child:nth-last-of-type(1) {
  line-height: 2;
}


.alcohol-price .alcohol-parent .alcohol-child p .child-box1 {
  display: inline-block;
  width: 10em;
  margin-left: 0.5em;
}

.alcohol-price .alcohol-parent .alcohol-child p .child-box2 {
  display: inline-block;
  width: 23em;
  margin-left: 0.5em;
}


/* フッター */

.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;
}