@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/* -------------------------- */
a {
  color: #7b7978;
}
a:hover {
  color: #7b7978;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.col-12 {
  padding-right: 0;
  padding-left: 0;
}

body {
  background: #806241;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", "游ゴシック体 Pr6N M", "Yu Gothic Pr6N M", "游ゴシック Medium", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", メイリオ, Meiryo, sans-serif;
  color: #7b7978;
}

.wrap {
  position: relative;
  z-index: 2;
  background: #faf9f7;
  padding: 100px 0 0;
}
.wrap .block {
  padding-top: 60px;
  padding-bottom: 60px;
}
.wrap .wrap_inner {
  width: 80%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.max_xs {
  display: none;
}
@media only screen and (max-width: 575px) {
  .max_xs {
    display: block;
  }
}

.min_sm {
  display: none;
}
@media only screen and (min-width: 576px) {
  .min_sm {
    display: block;
  }
}

.min_md {
  display: none;
}
@media only screen and (min-width: 768px) {
  .min_md {
    display: block;
  }
}

.min_lg {
  display: none;
}
@media only screen and (min-width: 993px) {
  .min_lg {
    display: block;
  }
}

.cstm_btn {
  margin: 0 auto 0;
  position: relative;
}
.cstm_btn a {
  font-size: 0.8rem;
  text-transform: uppercase;
  border: 1px rgba(184, 182, 179, 0.4509803922) solid;
  padding: 20px 0;
  max-width: 300px;
  width: 80%;
  margin: 0 auto;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.cstm_btn a:before {
  content: "";
  position: absolute;
  top: 52%;
  right: calc(50% - 7.9rem);
  width: 23px;
  height: 1px;
  background: #7b7978;
  transition: all 0.3s ease-in-out;
}
.cstm_btn a:after {
  content: "";
  position: absolute;
  top: calc(52% - 0.2rem);
  right: calc(50% - 7.9rem);
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  width: 9px;
  height: 1px;
  background: #7b7978;
  transform: rotate(35deg);
}
.cstm_btn a > span {
  padding-right: calc(50% - 9em);
}
.cstm_btn a:hover {
  border-color: #7b7978;
}
.cstm_btn a:hover:before {
  right: calc(50% - 8.3rem);
}
.cstm_btn a:hover::after {
  right: calc(50% - 8.3rem);
}
.cstm_btn.white_btn a {
  color: #faf9f7;
}
.cstm_btn.white_btn a:before {
  background: #faf9f7;
}
.cstm_btn.white_btn a:after {
  background: #faf9f7;
}
.cstm_btn.white_btn a:hover {
  border-color: #faf9f7;
}

.site_ttl {
  margin-bottom: 20px;
  font-size: 2.9rem;
  text-transform: capitalize;
  letter-spacing: 0.3rem;
}

.site_ttl_2nd {
  line-height: 1.4;
  margin-bottom: 1em;
  letter-spacing: 0.2rem;
  word-break: keep-all;
}
.site_ttl_2nd_sm {
  font-size: 0.8em;
}
.site_ttl_2nd_md {
  font-size: 0.9em;
}
.site_ttl_2nd_lg {
  font-size: 1.1em;
}

.site_lead {
  margin-bottom: 40px;
}

.logo {
  font-family: "Great Vibes", serif;
}

.zoomout {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
.fadein {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.left_movein {
  animation: LeftAnimeMoveIn 0.8s forwards;
}

@keyframes LeftAnimeMoveIn {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.right_moveout {
  animation: RightAnimeMoveOut 0.8s forwards;
}

@keyframes RightAnimeMoveOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(300px);
  }
}
div.swiper .swiper-slide {
  height: auto;
}
div.swiper .swiper-slide .swiper-slide_img {
  height: 100%;
}

div.swiper_pagination_wrap {
  position: relative;
}
div.swiper_pagination_wrap .swiper-pagination-bullets {
  bottom: unset;
  top: 20px;
}
div.swiper_pagination_wrap .swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
  width: 25px;
  height: 25px;
  background: none;
}
div.swiper_pagination_wrap .swiper-pagination-bullets .swiper-pagination-bullet .swiper-pagination-bullet_inner {
  position: absolute;
  background-color: #806241;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}

/* ローディング切り替え用*/
body .open_bg_left, body .open_bg_right {
  display: none;
}
body .wrap {
  opacity: 0;
}
body.appear {
  background: #faf9f7;
}
body.appear .open_bg_left, body.appear .open_bg_right {
  display: block;
}
body.appear .open_bg_left {
  animation-name: PageAnimeL;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background-color: #806241;
}
@keyframes PageAnimeR {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
@keyframes PageAnimeL {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
body.appear .open_bg_right {
  animation-name: PageAnimeR;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background-color: #806241;
}
@keyframes PageAnimeR {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
@keyframes PageAnimeL {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
body.appear .wrap {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* loading */
.loading {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #806241;
  text-align: center;
  color: #faf9f7;
}
.loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading_logo > span {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
}
.loading .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.header_bl {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  letter-spacing: 0.3rem;
  color: #ffffff;
  text-align: center;
}
.header_bl_txt {
  margin-bottom: 15px;
}
.header_bl_ttl {
  font-size: 4rem;
}
.header_bl_ttl > span {
  display: block;
}
.header_bl_ttl > span:last-child {
  margin-top: -18px;
}
.header_bg {
  position: fixed;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/bg.jpg) no-repeat top center;
  background-size: cover;
}

.footer {
  position: relative;
  z-index: 2;
  background: #faf9f7;
  text-align: center;
  padding-top: 120px;
  background: #562D01;
  color: #faf9f7;
}
.footer .resavation_fixed {
  opacity: 0;
  transform: translateX(100px);
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.footer .resavation_fixed a {
  display: block;
  background: #562D01;
  padding: 1.5rem 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.9rem;
  min-width: 235px;
  z-index: 9999;
  transition: all 0.2s;
  border: solid 10px #562D01;
  border-bottom-width: 5px;
  border-top-width: 5px;
  box-shadow: 0px 0px 0px 5px #562D01;
  border: solid 1px #ffffff;
}
.footer .resavation_fixed a:hover {
  border: solid 1px #562D01;
  font-size: 0.83rem;
  padding: 1.55rem 0;
}
.footer .logo_wrap {
  letter-spacing: 0.3rem;
  margin-bottom: 60px;
}
.footer .logo_wrap .logo_sub_ttl {
  font-size: 0.6rem;
  font-weight: 200;
}
.footer .logo_wrap .logo {
  font-size: 2.7rem;
}
.footer .logo_wrap .logo > span {
  display: block;
}
.footer .logo_wrap .logo > span:last-child {
  margin-top: -10px;
}
.footer_nav {
  width: 70%;
  margin: 0 auto 120px;
}
.footer_nav a {
  text-decoration: none;
  text-transform: capitalize;
  color: #faf9f7;
}
.footer_nav_item {
  margin: 5px 10px;
  display: block;
}
.footer_cp {
  margin-top: 40px;
}

.menu_btn {
  opacity: 0;
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  height: 50px;
  width: 50px;
  z-index: 9998;
}
.menu_btn.appear {
  animation-name: PageAnimeAppear;
  animation-duration: 0.1s;
  animation-delay: 0;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.menu_btn > span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #7b7978;
}
.menu_btn > span:nth-of-type(1) {
  top: 22px;
  width: 50%;
}
.menu_btn > span:nth-of-type(2) {
  top: 29px;
  width: 30%;
}
.menu_btn.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.menu_btn.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.menues {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #806241;
  transition: all 0.3s;
}
.menues .menues_wrap .menues_list {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}
.menues .menues_wrap .menues_list li {
  list-style: none;
  text-align: center;
}
.menues .menues_wrap .menues_list li a {
  color: #faf9f7;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.2rem;
}
.menues.menues_active {
  opacity: 1;
  z-index: 999;
}
.menues.menues_active .menues_wrap {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.menues.menues_active .menues_wrap .menues_list {
  display: block;
}

.scroll_down {
  position: absolute;
  bottom: 1%;
  right: 50%;
  z-index: 999;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #ffffff;
}
.scroll_down span {
  position: absolute;
  left: 10px;
  bottom: 6px;
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@media only screen and (min-width: 993px) {
  .lead {
    margin-bottom: 120px;
  }
}
.lead .wrap_inner {
  width: 100%;
}
.lead_area {
  order: 1;
  margin-bottom: 120px;
}
@media only screen and (min-width: 993px) {
  .lead_area {
    order: 2;
    margin-bottom: 0;
  }
}
.lead_area_bl {
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 70px 0;
  margin: 0 auto;
}
.lead_area_bl else {
  writing-mode: vertical-lr;
}
.lead_area_bl_ttl {
  margin: 0 0 0 30px;
  font-size: 2.4rem;
  line-height: 1.8;
}
.lead_area_bl_ttl > span:nth-of-type(2), .lead_area_bl_ttl > span:last-of-type {
  font-size: 1.8rem;
  padding-top: 40px;
  margin: 0 -10px;
  display: block;
}
.lead_area_bl_ttl > span:last-of-type {
  margin-right: -10px;
}
.lead_area_bl_txt {
  font-size: 1.2rem;
  line-height: 1.7;
  padding-top: 80px;
}
.lead_img {
  order: 2;
  min-height: 400px;
  background: url(../images/lead.jpg) no-repeat center;
  background-size: cover;
}
@media only screen and (min-width: 993px) {
  .lead_img {
    order: 1;
  }
}

.room {
  background: #562D01;
  padding-top: 120px !important;
  color: #ffffff;
}
.room_sm, .room_lg {
  width: 100%;
}
@media only screen and (min-width: 993px) {
  .room_sm {
    width: 40%;
  }
  .room_lg {
    width: 60%;
    padding-top: 2.3rem;
  }
}
.room_btn {
  margin-top: 70px;
}
@media only screen and (min-width: 993px) {
  .room_btn {
    margin-top: 40px;
  }
}

.food {
  background: #562D01;
  color: #faf9f7;
}
.food_sm, .food_lg {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .food_lg {
    width: 50%;
    order: 1;
  }
  .food_sm {
    width: 50%;
    order: 2;
    padding-left: 3rem;
  }
}
.food_btn {
  margin-top: 50px;
}
@media only screen and (min-width: 768px) {
  .food_btn {
    margin-top: 20px;
  }
}

.design {
  background: linear-gradient(180deg, #562D01 16.15%, #faf9f7);
  color: #faf9f7;
}
.design_sm, .design_lg {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .design_sm {
    width: 30%;
  }
  .design_lg {
    width: 70%;
    padding-left: 3rem;
  }
}
.design_img {
  position: relative;
}
.design_img_lg {
  text-align: right;
}
.design_img_lg_bg {
  background-size: cover;
  background-position: center;
  background-image: url(../images/design_bg.jpg);
  width: 75%;
  height: 400px;
  margin-left: auto;
}
.design_img_sm {
  position: absolute;
  bottom: 14%;
  z-index: 99;
  width: 45%;
  height: 160px;
}
.design_img_sm_bg {
  background-size: cover;
  background-position: center;
  background-image: url(../images/design_sm.jpg);
  height: 100%;
  width: 100%;
}
.design_btn {
  margin-top: 50px;
}

.access.block {
  padding-bottom: 120px;
}
.access_lg, .access_sm {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .access_lg {
    width: 50%;
    order: 1;
  }
  .access_sm {
    width: 50%;
    order: 2;
    padding-left: 40px;
  }
}
.access_btn {
  margin-top: 40px;
}
.reservation {
  border-top-color: #806241;
  border-top-width: thin;
  border-top-style: dotted;
}
.reservation.block {
  padding-top: 120px;
  padding-bottom: 120px;
}
.reservation_lg, .reservation_sm {
  width: 100%;
}
.reservation_ttl {
  font-size: 1.7rem;
}