@charset "UTF-8";
.inner {
  width: 90%;
  margin: 0 auto;
}

/* ハンバーガー
================================================================ */
.trigger {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: #ffecd4;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 10000;
}
.bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #606060;
  position: absolute;
  left: 10px;
}
.bar1 {
  top: 14px;
}

.bar2 {
  top: 24px;
}

.bar3 {
  top: 34px;
}
/* bodyにopenクラスがついた時 */
.bar {
  transition: 0.4s ease-in-out;
}
.open .bar1 {
  top: 24px;
  rotate: 135deg;
  /* transform: rotate(45deg); */
}
.open .bar2 {
  opacity: 0;
}
.open .bar3 {
  top: 24px;
  rotate: -135deg;
}

/* =============================== メニューバー ========================  */
.nav {
  width: 100vw;
  height: 100dvh;
  background-color: rgba(173, 173, 173, 0.5);
  position: fixed;
  right: -100vw;
  top: 0;
  z-index: 9000;
}
.nav {
  transition: 0.4s ease-in-out;
}

/* body にopenクラスがついた時 */
.open .nav {
  right: 0;
}
.menubar_opacity {
  transition: 0.6s ease-in-out;
}
.open .menubar_opacity {
  right: 0;
}
.nav ul {
  padding-top: 5%;
  padding-bottom: 5%;
  width: 60%;
  max-width: 650px;
  margin: 0 0 0 auto;
  color: #fe8f39;
  background-color: #fff;
  flex-direction: column;
  text-align: center;
  translate: 100% 0;
  transition: 0.4s 0.2s ease-in-out;
}
.nav ul li img {
  width: 40%;
  display: block;
  margin: 20px auto;
}
.open .nav ul {
  translate: 0 0;
}
.nav ul li {
  padding: 10px;
  font-size: calic(18rem / 16);
  text-transform: uppercase;
}

.nav ul li:hover {
  text-decoration: underline;
}
.nav ul li p {
  margin-top: -12px;
  font-weight: 400;
}
@media (max-width: 700px) {
  .nav ul {
    width: 80%;
  }
}
/* ============================ アクセス ===========================*/
.access h2 {
  width: 40%;
  margin: 0 auto;
  padding: 30px 0 30px 0;
}
.access ul {
  margin: auto;
}
.access_flex {
  display: flex;
}

.access_flex p {
  margin: 10px 0 10px 0;
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
}
.access_content {
  padding-left: 10px;
}
.access_flex-title {
  font-weight: 600;
  padding-right: 10px;
}
@media (max-width: 599px) {
  .access_flex p {
    font-size: clamp(1rem, 2vw + 1rem, 1rem);
  }
}
/* ============================ お問合せ ===========================*/
.contact h2 {
  width: 40%;
  margin: 0 auto;
  padding: 50px 0 50px 0;
}
.contact_tell-mail {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 50px;
}
.contact_tell {
  display: flex;
}

.contact_tell img {
  width: 50px;
  height: 50px;
}

.contact_tell p {
  font-size: clamp(1.5rem, 2vw + 1rem, 1.5rem);
  font-weight: bold;
  color: #a9a9a9;
  padding-left: 10px;
}
.contact_mail {
  display: flex;
}

.contact_mail img {
  width: 50px;
  height: 40px;
}
.contact_mail p {
  font-size: clamp(1.5rem, 2vw + 1rem, 1.5rem);
  font-weight: bold;
  color: #a9a9a9;
  padding-left: 10px;
}

.bokking {
  width: 300px;
  height: 50px;
  margin: auto;
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  font-weight: bold;
  border: 2px solid #fe8f39;
  text-align: center;
}

.bokking:hover {
  background-color: #fe8f39;
  color: #fff;
  transition: all 0.3s ease;
}
@media (max-width: 670px) {
  .contact_tell-mail {
    display: block;
  }
  .contact_tell {
    justify-content: center;
    margin-bottom: 30px;
  }
  .contact_mail {
    justify-content: center;
  }
}

/* ============================ footer ===========================*/
.fotter_background {
  margin-top: 50px;
  background-color: #ffb66e;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.fotter_background ul li {
  margin: 10px;
  color: #fff;
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  font-weight: bold;
  width: 150%;
}
.footer_logo {
  width: 25%;
  background-color: #fff;
  padding: 10px;
}
@media (max-width: 670px) {
  .footer_logo {
    width: 50%;
  }
}
