@charset "UTF-8";
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  background-color: #FFE8E0;
  font-family: "Noto Serif JP", "YuMincho", serif;
  color: #6D2209;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
}

.br-switch_on {
  display: none;
}
@media screen and (min-width: 800px) {
  .br-switch_on {
    display: block;
  }
}

.br-switch_off {
  display: block;
}
@media screen and (min-width: 800px) {
  .br-switch_off {
    display: none;
  }
}

.text-hidden-on {
  font-size: 0;
}
@media screen and (min-width: 1120px) {
  .text-hidden-on {
    display: static;
  }
}

@media screen and (min-width: 1120px) {
  .text-hidden-off {
    font-size: 0;
  }
}

.burger__btn {
  position: fixed;
  top: 15px;
  right: 15px;
  background-color: #FFF;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  z-index: 999;
}
.burger__btn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 3px;
  border-radius: 2px;
  background: #D04A1E;
  width: 23px;
}
.burger__btn span:nth-of-type(1) {
  top: 15px;
}
.burger__btn span:nth-of-type(2) {
  top: 23px;
}
.burger__btn span:nth-of-type(3) {
  top: 31px;
}
@media screen and (min-width: 1120px) {
  .burger__btn {
    display: none;
  }
}

.burger__btn.active span:nth-of-type(1) {
  top: 18px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 24px;
}
.burger__btn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.burger__btn.active span:nth-of-type(3) {
  top: 30px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 24px;
}

.nav__menu {
  position: fixed;
  top: 0;
  left: 110%;
  background-color: #D04A1E;
  color: #FFF;
  height: 100vh;
  width: 100%;
  font-size: 0rem;
  min-height: 650px;
  z-index: 990;
  transition: all 0.5s;
}
.nav__menu ul {
  list-style: none;
}
.nav__menu::before {
  content: "";
  display: inline-block;
  background-image: url("../img/header_sp1.png");
  background-size: cover;
  height: 10px;
  width: 100%;
  vertical-align: top;
}
.nav__menu::after {
  content: "";
  display: inline-block;
  background-image: url("../img/nav-bottom.png");
  background-size: cover;
  height: 15px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.nav__menu.active {
  left: 0;
  transition: all 0.5s;
}

body.active {
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 1120px) {
  .menu__top {
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 97;
  }
}

.menu__top__deco {
  display: block;
  content: "";
  height: 10px;
  background-image: url("../img/header_sp1.png");
  background-size: cover;
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 99;
}
@media screen and (min-width: 1120px) {
  .menu__top__deco {
    display: none;
  }
}

.menu__top__deco__pc {
  display: none;
}
@media screen and (min-width: 1120px) {
  .menu__top__deco__pc {
    display: block;
    content: "";
    background-image: url("../img/header_pc1.png");
    background-size: cover;
    height: 25px;
    max-width: 1120px;
  }
}

.menu__top__logo {
  display: block;
  text-align: center;
  height: 60px;
  width: 100%;
  background-color: #D04A1E;
  position: fixed;
  top: 10px;
  left: 0px;
  z-index: 98;
}
.menu__top__logo img {
  margin: 5px auto;
  height: 50px;
  opacity: 0.7;
}
@media screen and (min-width: 1120px) {
  .menu__top__logo {
    display: none;
  }
}

.menu__top__title {
  background-image: url("../img/header_sp2.png");
  background-size: cover;
  width: 100%;
  height: 80px;
  z-index: 98;
  margin-top: 60px;
}
@media screen and (min-width: 1120px) {
  .menu__top__title {
    margin-top: 0;
    max-width: 1120px;
    background-color: #FFF;
    background-image: url("../img/header_pc2.png");
    height: 150px;
  }
}

.menu__top__title__bg {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu__top__title__bg h1 {
  font-size: 2.4rem;
  font-weight: 700;
  display: inline-block;
  padding: 10px 50px;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 1120px) {
  .menu__top__title__bg {
    height: 150px;
  }
  .menu__top__title__bg h1 {
    font-size: 3rem;
    padding: 20px 100px;
  }
}

.wave__bottom {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.wave__bottom svg {
  display: block;
  width: calc(134% + 1.3px);
  height: 50px;
}
.wave__bottom .shape-fill {
  fill: #FDF4E9;
}
@media screen and (min-width: 1120px) {
  .wave__bottom {
    max-width: 1120px;
  }
  .wave__bottom svg {
    height: 100px;
  }
}

.wave__top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave__top svg {
  display: block;
  width: calc(134% + 1.3px);
  height: 50px;
}
.wave__top .shape-fill {
  fill: #FDF4E9;
}
@media screen and (min-width: 1120px) {
  .wave__top svg {
    height: 100px;
  }
}

.pc__footer {
  display: none;
}
@media screen and (min-width: 1120px) {
  .pc__footer {
    content: "";
    display: inline-block;
    background-image: url("../img/footer.png");
    background-size: cover;
    height: 100px;
    width: 100%;
    vertical-align: bottom;
  }
}

footer {
  width: 100%;
  padding: 15px 45px 5px 45px;
  background-color: #D04A1E;
  color: #FFF;
  text-align: center;
  position: fixed;
  bottom: 0;
  z-index: 80;
}
footer img {
  width: 32px;
}
footer p {
  font-size: 1.4rem;
  line-height: 150%;
  margin-top: 5px;
}
footer ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 2px;
}
@media screen and (min-width: 1120px) {
  footer {
    display: none;
  }
}

.nav__menu__content {
  margin-left: 60px;
}

.nav__menu__list {
  margin-top: 50px;
}
.nav__menu__list li {
  line-height: 200%;
  font-size: 2rem;
}

.nav__menu__reserve {
  margin-top: 30px;
}
.nav__menu__reserve p {
  font-size: 1.6rem;
}
.nav__menu__reserve span {
  font-size: 2.4rem;
}
.nav__menu__reserve li {
  margin-bottom: 20px;
}
.nav__menu__reserve li:last-child {
  margin-bottom: 30px;
}

.nav__menu__access {
  margin-bottom: 30px;
}
.nav__menu__access address {
  padding: 0px;
}
.nav__menu__access p {
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.nav__menu__access img {
  display: inline-block;
  width: 30px;
  margin: 0px 15px 10px 15px;
}
.nav__menu__access span {
  display: block;
  font-size: 1.5rem;
  line-height: 150%;
}

.nav__menu__map {
  margin: 0px 0px 35px 0px;
  width: 250px;
  padding: 10px;
  background-color: #EFCA0A;
  border: 2px solid #FFF;
  border-radius: 10px;
}
.nav__menu__map p {
  font-size: 1.8rem;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}
.nav__menu__map p::before {
  content: url("../img/googlemap-hm.png");
  display: inline-block;
  transform: scale(0.1);
  position: absolute;
  top: -118px;
  left: -100px;
}

.wrap {
  display: block;
}
@media screen and (min-width: 1120px) {
  .wrap {
    max-width: 1440px;
    display: grid;
    grid-template-columns: 320px 3fr;
    margin: 0 auto;
    background-color: #D04A1E;
  }
}

.side-menu {
  display: none;
}
@media screen and (min-width: 1120px) {
  .side-menu {
    width: 320px;
    text-align: center;
    display: block;
    background-color: #D04A1E;
    height: 100vh;
    font-size: 2rem;
    color: #FFF;
    font-weight: 500;
    position: sticky;
    top: 0px;
  }
  .side-menu ul {
    margin: 50px 0px;
    list-style: none;
  }
  .side-menu li {
    line-height: 100%;
    margin-bottom: 30px;
  }
}

.side-menu__image img {
  height: 50vh;
  margin-top: 40px;
}

.side-menu__instagram {
  margin-bottom: 40px;
}
.side-menu__instagram img {
  width: 30px;
}

small {
  font-size: 14px;
  font-weight: 300;
}

.side {
  width: 100%;
  background-image: url("../img/bg-tile.png");
  background-repeat: repeat;
  background-color: #FFE8E0;
}/*# sourceMappingURL=common.css.map */