@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media(min-width:480px) {
  html {
    scroll-padding-top: 110px;
  }
}
body {
  color: #565656; /* RGB */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 2.0em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #FEF5EF;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.bottom {
  margin-top: 20px;
}
/*header*/
.header {
  position: fixed;
  top: 20px;
  width: 100%;
  z-index: 999;
}
.nav-drawer__tittle {
  display: none; /*追加*/
}
#nav-input {
  display: none;
}
.header ul {
  display: flex;
  font-size: 2.0rem;
  list-style: none;
}
.header ul li a {
  margin-left: 35px;
  font-size: 2.4rem;
  letter-spacing: 0.25rem;
  color: #333;
  text-decoration: none;
  /*追加*/
  position: relative;
  display: inline-block;
}
.header-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-content-wrapper img {
  width: 60px;
  height: 60px;
  margin-left: 24px;
  border-radius: 500px;
  object-fit: cover;
}
@media(max-width:480px) {
  /*ハンバーガーアイコン*/
  #nav-drawer {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 24px;
    background-color: #D78521;
    border-radius: 500px;
    border: solid 3px #FFF;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 22px;
    margin-top: 20px; /*?*/
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #FFF;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999; /*大きい数字にしとけば表示が上に来る*/
    display: none;
    position: fixed; /*ウィンドウ全体に対してどのように表示するか*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    opacity: 0.7;
  }
  #nav-content {
    z-index: 9999;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: #fff;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%); /*X座標を変える*/
    transition: 0.3s ease-in-out;
    /*  box-shadow: 5px 0 25px #333;*/
  }
  .header ul {
    display: block; /*flexの解除*/
  }
  .header__navigation {
    display: none; /*追加*/
  }
  .nav-drawer__tittle {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0 60px;
  }
  #nav-content ul li {
    margin-bottom: 60px;
  }
  #nav-content ul li a {
    font-size: 2.0rem;
    font-weight: 600;
    color: #FFF;
  }
  #nav-input:checked ~ #nav-close { /*checked=選ばれてたら*/
    display: block;
  }
  #nav-input:checked ~ #nav-content { /*checked=選ばれてたら*/
    transform: translateX(0%); /*隠していたものを再表示させる*/
    background-color: #D78521;
    Z-INDEX: 999;
  }
}
@media(min-width:480px) {
  .header {
    max-width: 100%;
    height: 80px;
    top: 0;
    background-color: #D78521;
    display: flex;
  }
  .header-content-wrapper {
    width: 1180px;
    margin: 0 auto;
  }
  .header ul li a {
    color: #FFF;
    line-height: 80px;
    font-size: 2.0rem;
    font-weight: 600;
  }
  .header ul li a:hover {
  opacity: 1;
  color: #094074;
}
}
/*予約ボタン*/
.reserved-button {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #FFF;
  transition: 0.5s;
  width: 100%;
  height: 80px;
  line-height: 80px;
  outline: 3px solid rgb(255, 255, 255);
  outline-offset: -15px;
  background-color: #094074;
  position: fixed;
  Z-INDEX: 800;
  bottom: 0;
  font-weight: 600;
  font-size: 2.0rem;
}
.reserved-button:hover {
  outline: 3px solid #094074;
  color: #094074;
  background: #FFF;
  border: 3px solid #094074;
  opacity: 1;
}
@media(min-width:480px) {
  .reserved-button {
    width: 280px;
    position: static;
    margin-left: 30px;
  }
}
/*FOOTER*/
.footer {
  background-color: #D78521;
  padding-bottom: 100px;
  color: #FFF;
}
.section-inquiry h2 {
  padding: 40px 0 30px;
  font-weight: 600;
  font-size: 4.0rem;
  color: #FFF;
}
.section-inquiry__lead {
  color: #FFF;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 1.8rem;
}
.mail {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.line-button, .instagram-button {
  width: 297px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #094074;
  color: #FFF;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}
.line-button:hover, .instagram-button:hover {
  color: #FFF;
  background: #8696E1;
  border: 3px solid #FFF;
  opacity: 1;
}
.line-button img, .instagram-button img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 30px;
}
.section-inquiry ul li {
  margin-bottom: 20px;
}
.section-inquiry ul li a {
  color: #FFF;
  font-weight: 600;
  text-decoration: none;
  /*追加*/
  position: relative;
  display: inline-block;
}
.section-inquiry ul li a:hover {
  opacity: 1;
  color: #094074;
}
/**/
.copyright {
  font-size: 1.5rem;
  font-weight: 300;
}
.section-inquiry__logo img {
  display: none;
}
@media(min-width:480px) {
  .footer {
    padding-bottom: 30px;
  }
  .section-inquiry h2 {
    padding-top: 60px;
  }
  .br__responsive {
    display: none;
  }
  .section-inquiry__lead {
    font-size: 2.0rem;
    margin-bottom: 30px;
  }
  .section-inquiry__wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0 60px;
  }
  .section-inquiry__content {
    margin-right: 20px;
  }
  .section-inquiry__logo img {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 500px;
  }
  .section-inquiry ul {
    display: flex;
    max-width: 846px;
    justify-content: space-between;
    margin: 0 auto 30px;
  }
  .copyright {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
.iframe{
  width: 327px;
  height: 600px;
  margin-bottom: 90px;
}
@media(min-width:480px){
  .iframe{
    width: 966px;
  }
}