html {
  font-size: 10px;
}
@media screen and (max-width: 880px) {
  html {
    font-size: 8px;
  }
}

body {
  font-family: "Shippori Mincho", serif;
  color: #3b3510;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.3rem;
}
@media screen and (max-width: 880px) {
  nav {
    display: none;
  }
}
nav a {
  color: #fff;
  margin-left: 4em;
  letter-spacing: 0.125em;
  position: relative;
  font-size: 1.3rem;
  display: block;
}
nav a:last-child::after {
  content: "";
  display: block;
  top: 110%;
  left: 0;
  width: 100%;
  border-bottom: 3px solid #bea142;
  transition: 0.5s;
}

.en {
  font-family: "Marcellus", serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 11;
  padding: 30px;
  box-sizing: border-box;
}
header h1 {
  max-width: 135px;
}
@media screen and (max-width: 880px) {
  header {
    padding: 15px;
  }
}

@keyframes tate {
  0% {
    -o-object-position: 0% 100%;
       object-position: 0% 100%;
  }
  100% {
    -o-object-position: 0% 0%;
       object-position: 0% 0%;
  }
}
@keyframes tate-reverse {
  0% {
    -o-object-position: 0% 0%;
       object-position: 0% 0%;
  }
  100% {
    -o-object-position: 0% 100%;
       object-position: 0% 100%;
  }
}
@keyframes yoko {
  0% {
    -o-object-position: 0% 0%;
       object-position: 0% 0%;
  }
  100% {
    -o-object-position: 100% 50%;
       object-position: 100% 50%;
  }
}
.animate.tate.reverse {
  animation: tate 75s infinite alternate-reverse linear;
}

.sp_nav_toggle {
  width: 30px;
  height: 20px;
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  display: none;
}
.sp_nav_toggle::before {
  content: "";
  background: #fff;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
@media screen and (max-width: 880px) {
  .sp_nav_toggle {
    display: block;
  }
}

#mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
#mv .mv_slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0.7;
  background: url("../image/top/mv/mv_filter.png") no-repeat center/cover;
  z-index: 3;
}
#mv .mv_slider li {
  display: block !important;
}
#mv .mv_slider li span {
  width: 100vw;
  height: 100vh;
  display: block;
}
#mv .mv_slider li span img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 2.5s;
}
#mv .mv_slider li span.tate img {
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}
#mv .mv_slider li span.tate img.animate {
  animation: tate 50s infinite alternate linear;
}
@media screen and (max-width: 880px) {
  #mv .mv_slider li span.tate img {
    width: 200%;
  }
}
#mv .mv_slider li span.yoko img {
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
  height: 160%;
}
#mv .mv_slider li span.yoko img.animate {
  animation: yoko 50s infinite alternate linear;
}
@media screen and (max-width: 880px) {
  #mv .mv_slider li span.yoko img {
    height: 100%;
  }
}
#mv .mv_slider li span.reverse img {
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}
#mv .mv_slider li span.reverse img.animate {
  animation: tate-reverse 50s infinite alternate linear;
}
#intro {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  margin-bottom: 25vh;
  margin-top: 40vh;
  box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1250px) {
  #intro {
    padding: 0 5vw;
  }
}
@media screen and (max-width: 880px) {
  #intro {
    padding: 0 5vw;
  }
}

.topTxt {
  color: #fff;
  max-width: 650px;
}
@media screen and (max-width: 880px) {
  .topTxt {
    width: 90vw;
    left: 50%;
    top: auto;
    bottom: 10%;
  }
}
.topTxt h1 {
  font-size: 4.2rem;
  text-align: left;
  line-height: 2;
  letter-spacing: 0.325em;
  font-weight: 400;
  margin-bottom: 25vh;
  color: #fff;
}
@media screen and (max-width: 880px) {
  .topTxt h1 {
    font-size: 3rem;
  }
}
.topTxt p {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2.66;
}

.cont_size_box {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

#header {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: -200px;
  left: 0;
  width: 100%;
  background: #292520;
  z-index: 9999;
  transition: 0.5s;
}
#header.show {
  top: 0;
}
@media screen and (max-width: 880px) {
  #header.sp_open::before {
    width: 100vw;
    height: 100vh;
    content: "";
    background: rgba(0, 0, 0, 0.8);
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
  }
}
@media screen and (max-width: 880px) {
  #header {
    padding: 15px;
  }
}
#header .logo {
  max-width: 120px;
}
@media screen and (max-width: 880px) {
  #header .logo {
    max-width: 100px;
  }
}
#header nav a {
  color: #3b3510;
  color: #fff;
}
@media screen and (max-width: 880px) {
  #header nav {
    position: fixed;
    display: block;
    top: 0;
    right: -100vw;
    width: 80vw;
    height: 100vh;
    background: #deddd9;
    z-index: 999999;
    padding: 15px;
    transition: 0.5s;
    box-sizing: border-box;
    opacity: 1;
  }
  #header nav a {
    color: #3b3510;
    margin-left: 0;
    font-size: 2rem;
    display: block;
    padding: 15px;
  }
  #header nav a + a {
    border-top: 1px solid rgba(94, 96, 99, 0.2);
  }
  #header nav a:last-child {
    background: #bea142;
    color: #fff;
  }
  #header nav a:last-child::after {
    display: none;
  }
  #header nav a.sp_close {
    margin-left: auto;
    font-size: 4rem;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    margin-bottom: 30px;
    line-height: 1;
  }
  #header nav.sp_open {
    right: 0;
  }
}
#header .sp_nav_toggle {
  border-color: #3b3510;
}
#header .sp_nav_toggle::before {
  background: #3b3510;
}

main {
  background: #deddd9;
  position: relative;
  z-index: 100;
}
main .ttlBox {
  position: relative;
  clip-path: inset(0);
  color: #fff;
  padding: 50px 0;
  min-height: 324px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin-bottom: 95px;
}
main .ttlBox img {
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
main .ttlBox .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
main .ttlBox .flex h2 {
  font-size: 2.4rem;
  width: 18%;
  text-align: left;
  letter-spacing: 0.2em;
}
main .ttlBox .flex p {
  font-size: 2.8rem;
  line-height: 2.1;
  width: 80%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 880px) {
  main .ttlBox {
    height: auto;
    min-height: inherit;
    display: block;
    padding: 25px 10px;
    box-sizing: border-box;
    margin-bottom: 40px;
  }
  main .ttlBox .flex {
    display: block;
  }
  main .ttlBox .flex h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.6rem;
    text-align: left;
  }
  main .ttlBox .flex p {
    font-size: 2.1rem;
    width: 100%;
  }
}
main #menu .menuBox p {
  text-align: right;
  margin-top: 20px;
}
main #menu .menuBox .menu_cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 95px;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .menu_cont {
    display: block;
    margin-top: 40px;
  }
}
main #menu .menuBox .menu_cont dt.en {
  width: 18%;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  padding-top: 35px;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .menu_cont dt.en {
    width: 100%;
    margin-bottom: 10px;
    padding-top: 0;
  }
}
main #menu .menuBox .menu_cont dd {
  width: 80%;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .menu_cont dd {
    width: 100%;
  }
}
main #menu .menuBox .menu_cont dd .menu_list {
  display: block;
  font-size: 2.1rem;
  padding: 30px 0;
  border-bottom: 1px solid rgba(94, 96, 99, 0.2);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .menu_cont dd .menu_list {
    padding: 20px 0;
  }
}
main #menu .menuBox .menu_cont dd .menu_list:first-child {
  border-top: 1px solid rgba(94, 96, 99, 0.2);
}
main #menu .menuBox .menu_cont dd .menu_list dt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
main #menu .menuBox .menu_cont dd .menu_list dt .price {
  flex-shrink: 0;
  margin-left: 10px;
}
main #menu .menuBox .menu_cont dd .menu_list dd {
  width: 100%;
  text-align: left;
  flex-shrink: 0;
}
main #menu .menuBox .menu_cont dd .menu_list dd .menu_detail-list {
  margin-top: 10px;
  display: block;
}
main #menu .menuBox .menu_cont dd .menu_list dd .menu_detail-list span {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  line-height: 1.7;
}
main #menu .menuBox .menu_cont dd .menu_list dd .menu_detail-list span + span {
  margin-top: 10px;
}
main #menu .menuBox .menu_cont dd .menu_list dd .menu_detail-list span .detail_price {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 20px;
}
main #menu .menuBox .menu_cont dd .soon {
  border-bottom: 1px solid rgba(94, 96, 99, 0.2);
  border-top: 1px solid rgba(94, 96, 99, 0.2);
  font-size: 2.1rem;
  padding: 20px 0;
  letter-spacing: 0.05em;
}
main #menu .menuBox .flexBox {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row-reverse;
  overflow: hidden;
  position: relative;
}
main #menu .menuBox .flexBox + .flexBox {
  margin-top: 95px;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .flexBox + .flexBox {
    margin-top: 40px;
  }
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .flexBox {
    display: block;
  }
}
main #menu .menuBox .flexBox .sliderBox {
  width: 240px;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .flexBox .sliderBox {
    width: 100%;
    margin: 30px auto;
  }
}
main #menu .menuBox .flexBox .sliderBox ul {
  width: 240px;
  left: 0;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .flexBox .sliderBox ul {
    position: static;
    width: 100%;
  }
}
main #menu .menuBox .flexBox .sliderBox ul li {
  display: block !important;
  padding: 30px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .flexBox .sliderBox ul li {
    padding: 0 2vw;
  }
}
main #menu .menuBox .flexBox .sliderBox ul li img {
  width: 240px;
  display: block;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .flexBox .sliderBox ul li img {
    width: 120px;
  }
}
main #menu .menuBox .flexBox .menu_cont {
  width: calc(100% - 400px);
  display: block;
  margin-top: 0;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .flexBox .menu_cont {
    width: 100%;
  }
}
main #menu .menuBox .flexBox .menu_cont dt.en {
  margin-bottom: 30px;
  padding-top: 0;
}
@media screen and (max-width: 880px) {
  main #menu .menuBox .flexBox .menu_cont dt.en {
    margin-bottom: 10px;
  }
}
main #menu .menuBox .flexBox .menu_cont dd {
  width: 100%;
}
main #menu .menuBox .flexBox.flex-r {
  flex-direction: row;
}
main #menu .menuBox .flexBox.flex-r .sliderBox ul {
  left: auto;
  right: 0;
}
main #info {
  margin-top: 170px;
}
@media screen and (max-width: 880px) {
  main #info {
    margin-top: 70px;
  }
}
main #info .infoBox {
  width: 80%;
  margin-left: auto;
  display: block;
}
@media screen and (max-width: 880px) {
  main #info .infoBox {
    width: 100%;
  }
}
main #info .infoBox dl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 2.1rem;
  padding: 30px 0;
  border-bottom: 1px solid rgba(94, 96, 99, 0.2);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 880px) {
  main #info .infoBox dl {
    display: block;
  }
}
main #info .infoBox dl:first-child {
  border-top: 1px solid rgba(94, 96, 99, 0.2);
}
main #info .infoBox dl dt {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  width: 8em;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 880px) {
  main #info .infoBox dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
}
main #map {
  margin-top: 170px;
}
@media screen and (max-width: 880px) {
  main #map {
    margin-top: 70px;
  }
}
main #map iframe {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 100%;
  height: 490px;
}
main #news {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto 170px;
  padding-top: 170px;
}
@media screen and (max-width: 880px) {
  main #news {
    margin-bottom: 40px;
    padding-top: 40px;
    display: block;
  }
}
main #news h2 {
  width: 18%;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (max-width: 880px) {
  main #news h2 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
main #news ul {
  width: 80%;
}
main #news ul li {
  font-size: 1.8rem;
  line-height: 1.8;
}
main #news ul li + li {
  border-top: 1px solid rgba(94, 96, 99, 0.2);
  margin-top: 20px;
  padding-top: 20px;
}
main #news ul li .date {
  display: block;
  margin-bottom: 10px;
}
main #news ul li span {
  display: block;
}
main #news ul li a {
  text-decoration: underline;
}
@media screen and (max-width: 880px) {
  main #news ul {
    width: 100%;
    border-top: 1px solid rgba(94, 96, 99, 0.2);
  }
  main #news ul li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  main #news ul li:last-child {
    border-bottom: 1px solid rgba(94, 96, 99, 0.2);
  }
}

footer #reservation {
  background: #292520;
  color: #fff;
  padding: 110px 0;
}
@media screen and (max-width: 880px) {
  footer #reservation {
    padding: 40px 0;
  }
}
footer #reservation dl {
  max-width: 935px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 880px) {
  footer #reservation dl {
    display: block;
  }
}
footer #reservation dl dt {
  font-size: 2.8rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 880px) {
  footer #reservation dl dt {
    text-align: center;
    margin-bottom: 10px;
  }
}
footer #reservation dl dd p {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
}
footer #reservation dl dd .btn {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
footer #reservation dl dd .btn a {
  width: 48%;
  text-align: center;
  display: block;
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
  padding: 15px;
}
footer #reservation dl dd .btn a.tel {
  border: 1px solid #fff;
  color: #fff;
  box-sizing: border-box;
}
footer #reservation dl dd .btn a.res {
  border: 1px solid #cbb747;
  box-sizing: border-box;
  background: #cbb747;
}
@media screen and (max-width: 880px) {
  footer #reservation dl dd .btn {
    display: block;
  }
  footer #reservation dl dd .btn a {
    width: 100%;
  }
  footer #reservation dl dd .btn a + a {
    margin-top: 20px;
  }
}
footer .lastBox {
  padding-top: 200px;
}
@media screen and (max-width: 880px) {
  footer .lastBox {
    padding-top: 100px;
  }
}
footer .lastBox h2 {
  font-size: 5rem;
  letter-spacing: 0.1em;
  margin-bottom: 170px;
}
@incude mq {
  footer .lastBox h2 {
    margin-bottom: 40px;
  }
}
footer .lastBox h2 small {
  display: block;
  font-size: 0.64em;
  font-weight: 400;
}
footer .lastBox h2 strong {
  font-weight: 400;
  display: block;
}
footer .bottomBox {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 880px) {
  footer .bottomBox {
    display: block;
  }
}
footer .bottomBox .logo {
  width: 135px;
  display: block;
}
@media screen and (max-width: 880px) {
  footer .bottomBox .logo {
    margin: 0 auto 20px;
  }
}
footer .bottomBox nav {
  justify-content: space-between;
  width: calc(100% - 300px);
  max-width: 450px;
}
footer .bottomBox nav a {
  margin: 0;
  color: #3b3510;
}
@media screen and (max-width: 880px) {
  footer .bottomBox nav {
    display: block !important;
    width: 100%;
    margin: 0 auto;
  }
  footer .bottomBox nav a {
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto;
  }
}
footer .bottomBox copyright {
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  width: 135px;
  text-align: right;
  display: block;
}
@media screen and (max-width: 880px) {
  footer .bottomBox copyright {
    text-align: center;
    width: 100%;
    margin-top: 30px;
  }
}/*# sourceMappingURL=top.css.map */