@charset "UTF-8";
/* CSS Document */
.header {
  width: 56px;
  color: #FFF;
  position: absolute;
  right: 0;
  top: 56px;
  z-index: 100;
}
/*ハンバーガー*/
.openbtn {
  position: relative;
  background: #EB5A2C;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-left: 1px solid;
}
/*ボタン内側*/
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #2D2828;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #FFF;
  text-decoration: none;
  padding: 6px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  line-height: 25px;
}
#g-nav li p {
  font-size: 1.0rem;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #fff;
}
#g-nav li img {
  width: 75%;
  margin-bottom: 10px;
  margin-top: 10px;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 56px;
  height: 56px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 50%;
}
.openbtn span:nth-of-type(1) {
  top: 17px;
}
.openbtn span:nth-of-type(2) {
  top: 26px;
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
.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%;
}
.header__rotate-english {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
  margin-top: 20px;
  margin-left: 15px;
  display: flex;
}
.header h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
}
.header__since {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-family: 'Playball', cursive;
  font-size: 2.6rem;
  margin-top: 30px;
}
@media(min-width:768px) {
  .header {
    width: 56px;
    color: #2D2828;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    height: 100vh;
    background: #fff;
    border-left: 1px solid;
  }
  .header h1 {
    margin-top: 60px;
  }
  /*リストのレイアウト設定*/
  #g-nav li a {
    padding: 10px 0;
    font-size: 2.0rem;
    line-height: 29px;
  }
  #g-nav li p {
    font-size: 1.3rem;
    padding-bottom: 15px;
  }
  #g-nav li img {
    width: 65%;
    margin-bottom: 15px;
    margin-top: 152px;
  }
  #g-nav {
    width: 40%;
  }
}
.section-top {
  color: #fff;
  text-align: center;
  padding-top: 56px;
  background-color: #2D2828;
}
.section-contact__top-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /*  width: 100%;
  height: auto;*/
}
* {
  box-sizing: border-box;
}
form {
  max-width: 600px;
  width: 80%;
  margin: 24px auto;
  font-size: 14px;
}
label {
  display: block;
  margin-bottom: 4px;
}
input[type="file"] {
  margin-bottom: 32px;
}
input[type="text"], input[type="email"], input[type="number"], select, textarea {
  width: 100%;
  border: none;
  padding: 12px 8px;
  display: block;
  margin-bottom: 16px;
}
button {
  background: #2D2828;
  letter-spacing: 0.2em;
  width: 240px;
  padding: 10px;
  color: #fff;
  border-radius: 4px;
  display: block;
  margin-bottom: 16px;
  cursor: pointer;
  border: none;
  transition: 0.5s;
}
button.confirm {
  background: #666;
}
button:hover {
  opacity: 0.8;
}
button:disabled {
  background: gray;
}
@media(min-width:768px) {
  .section-contact__greeting {
    width: 60%;
    margin: 100px auto;
  }
}
.English_title_Center {
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.announcement {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  margin: 0 30px 40px;
  text-align: center;
}
.section-contact__details {
  text-align: center;
  margin: 0 15px;
  border-bottom: 1px solid;
  padding-bottom: 70px;
  letter-spacing: -1px;
}
.section-contact__details_top {
  font-size: 2.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  border-top: 1px solid;
  padding-top: 70px;
}
.section-Reservation__details-wrap {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 100px;
}
.section-Reservation__details_tel {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 3.3rem;
  letter-spacing: 2px;
  margin-top: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  text-decoration: none;
}
.Regular-holiday {
  font-size: 1.4rem;
}
.section-Reservation__details_tel span {
  font-size: 24px;
}
@media(min-width:1000px) {
  .English_title_Center {
    font-size: 3.4rem;
    padding: 60px 0 30px;
    letter-spacing: 2px;
  }
  .section-Reservation__details_tel {
    font-size: 3.8rem;
    letter-spacing: 3px;
  }
  .section-contact__details_top {
    padding-top: 50px;
  }
  .section-contact__details {
    padding-bottom: 50px;
  }
}
.Inquiry-title h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  margin-top: 80px;
  text-align: center;
}
.inquiry-form input[type="text"], .inquiry-form input[type="email"], .inquiry-form textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding-left: 10px;
  background-color: #F5F5F5;
  border: 0;
}
.inquiry-form textarea {
  height: 440px;
  padding-top: 15px;
}
.inquiry-form p label {
  display: block;
  margin-bottom: 15px;
}
.inquiry-form__submit {
  display: block;
  height: 35px;
  width: 100px;
  border-radius: 5px;
  background-color: #2D2828;
  color: #fff;
}
.form_Annotation {
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin-bottom: 30px;
}
.hotpepper_conversion_btn {
  text-decoration: none;
  background-color: #EB5A2C;
  color: #fff;
  padding: 13px 49px;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
}
@media(min-width:768px) {
  .Inquiry-title h2 {
    font-size: 2.6rem;
    letter-spacing: 2px;
  }
  .inquiry-form {
    width: 65%;
    margin: 100px auto;
  }
  .section-contact__details {
    margin: 0px;
  }
  .section-contact__details br {
    display: none;
  }
}
@media(min-width:768px) {
  main {
    margin-right: 56px;
  }
}
.footer {
  background-image: url("../images/top/footer_backimage.jpg");
  background-color: #2D2828;
  padding-top: 55px;
  padding-bottom: 150px;
  color: #fff;
  text-align: center;
}
.footer__container {
  text-align: center;
}
.footer img {
  width: 180px;
}
.conversion-scroll__bun {
  display: block;
  position: fixed;
  width: 100%;
  margin-left: 20px;
  margin-bottom: 10px;
  bottom: 0;
  z-index: 9999;
}
.footer small {
  color: #FFF;
  font-size: 1.3rem;
  margin-top: 20px;
}
@media(min-width:768px) {
  .footer {
    padding-right: 56px;
  }
  .conversion-scroll__bun {
    display: none;
  }
}