@import url('https://fonts.googleapis.com/css2?family=Modern+Antiqua&family=Montserrat:wght@100;300;400;500&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  color: #fff;
  font-family: vdl-v7mincho, YuMincho, "Yu Mincho", 游明朝体, "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 300;
}


#header {
  background-color: black;
  position: fixed;
  right: 0;
  height: 100vh;
  padding: 30px 0 0 50px;
  width: 20%;
}

.header-title {
  width: 87px;
  margin-bottom: 60px;
}

.header-ul li {
  font-size: 14px;
  margin-bottom: 37px;
}

.header-ul li a {
  position: relative;
  /*疑似要素使用のため*/
  text-decoration: none;
  /*標準時の下線を削除*/
}

.header-ul li a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  /*初期位置は10px下*/
  left: 0;
  width: 100%;
  height: 1px;
  background: white;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.header-ul li a:hover::after {
  visibility: visible;
  opacity: 1;
  bottom: -4px;
  /*ホバー時は下に4pxの位置へ*/
}

.header-ul li:not(:last-child) {
  margin-bottom: 37px;
}

.header-sns img {
  width: 20px;
  height: 20px;
  margin-top: 30px;
  margin-right: 12px;
}


.header-sns a {
  transition: 0.8s;
}

.header-sns a:hover {
  opacity: 0.7;
}

/* header SP */
.menu {
  background-color: black;
  width: 100%;
  position: fixed;
  display: none;
  z-index: 1000;
  border-bottom: solid 1px gray;
}

.menu h1 {
  text-align: center;
  padding: 13px 0;
}

.header-title-sp {
  width: 87px;
  height: 25px;
}

.header-ul-sp li a {
  position: relative;
  padding: 15px 40px;
  display: inline-block;
  width: 100%;
}

.header-ul-sp li a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 20px;
  top: calc(50% - 2px);
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(-50%);
  color: inherit;
}

.header-ul-sp li {
  border-bottom: solid 1px white;
}

.header-sns-sp {
  padding: 10px 0 10px 30px;

}

.header-sns-sp img {
  width: 20px;
  height: 20px;
}

.header-sns-sp a {
  display: inline-block;
  margin-right: 12px;
}


/* ハンバーガーメニュー */
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: white;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}


/* main */

#main {
  position: relative;
  width: 80%;
}

#main h1 {
  position: absolute;
  writing-mode: vertical-rl;
  font-weight: bold;
  top: 40%;
  left: 20%;
  font-size: 20px;
  letter-spacing: 8px;
  line-height: 40px;
  white-space: nowrap;
}

#main img {
  width: 100%;
  height: auto;
  background-size: cover;
}

/* message */
.wrapper {
  width: 80%;
  background-color: black;
}

.container {
  padding: 85px 0;
}

.message-item {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.container-h1 {
  font-weight: bold;
  border-bottom: 3px solid white;
  padding-bottom: 30px;
  margin-bottom: 60px;
  display: inline-block;
  font-size: 22px;
}

.message-item p {
  font-size: 14px;
  text-align: left;
  line-height: 2;
}

/* SPACE */

.space-item {
  display: grid;
  grid-template-columns: 2fr 2fr;
  width: 80%;
}

.space-item img {
  object-fit: cover;
  width: 100%;
  height: 300px;
}


/* FOOD / DRINK */
.item-container {
  padding-top: 60px;
}

.food-item {
  width: 80%;
}

.food-title {
  text-align: center;
}

.food-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 80%;
  margin: 0 auto;
  border-bottom: 1px solid white;
  padding-bottom: 60px;
}

.food-item img {
  width: 100%;
  margin-bottom: 12px;
  object-fit: cover;
  border-radius: 50%;
}

.food-item p {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: left;
  display: inline-block;
}

.flex-img {
  text-align: center;
}


/* STORY */
.story-title {
  text-align: center;
}

.story-item {
  width: 80%;
  margin: 0 auto;
  border-bottom: 1px solid white;
  padding-bottom: 60px;
}

.story-item01 {
  display: flex;
  gap: 35px;
}

.story-item01 img {
  max-width: 100%;
  padding-bottom: 20px;
}


.story-item01 p {
  font-size: 14px;
  line-height: 2;
}

.story-p {
  margin-bottom: 17px;
}

.item02 {
  margin-top: 75px;
}

/* SHOP */
.shop-container {
  text-align: center;
  margin: 0 auto;
}

.shop-inner {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

.address p {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;
}

.map {
  width: 60%;
  position: relative;
  padding-top: 15%;
  margin-left: 20px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* footer */
footer {
  background-color: black;
  font-size: 12px;
  font-family: "Noto Sans JP", Arial, Verdana, 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  text-align: center;
  width: 80%;
  padding-top: 320px;
  padding-bottom: 75px;
}

footer a {
  color: blue;
}

/* SP */
@media only screen and (max-width: 960px) {
  .story-item01 {
    justify-content: center;
    flex-wrap: wrap;
  }

}


@media only screen and (max-width: 800px) {
  header {
    display: none;
  }

  #main {
    width: 100%;
  }

  #main img {
    width: 100%;
  }

  .menu {
    display: block;
  }

  #g-nav {
    display: none;
  }

  .wrapper {
    width: 100%;
  }

  #space {
    width: 100%;
  }

  .space-item {
    width: 100%;
  }

  .img07 {
    width: 100%;
  }

  footer {
    width: 100%;
  }

  .food-item {
    flex-direction: column;
    align-items: center;
  }


  .flex-img {
    max-width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 640px) {
  .shop-inner {
    flex-wrap: wrap;
  }

  .map {
    width: 100%;
    position: relative;
    padding-top: 80%;
    margin-top: 20px;
    margin-left: 0;
  }

  .space-item {
    grid-template-columns: 1fr;
  }

  #main h1 {
    font-size: 8px;
  }

  .food-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .food-item img {
    margin-bottom: 35px;
  }
}