@charset "UTF-8";
:root {
  --pagetop-bottom: 90px;
  --menu-toggle-pb: 90px;
  --footer-pb: 54px;
}

@font-face {
  font-family: "Noto Serif JP";
  src: url("../font/NotoSerifJP-Regular.otf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../font/NotoSerifJP-Light.otf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../font/CormorantGaramond-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Playwrite SK";
  src: url("../font/PlaywriteSK-VariableFont_wght.ttf");
  font-display: swap;
}
@-webkit-keyframes fadeInBlur {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInBlur {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
html.iphone {
  --pagetop-bottom: 120px;
  --menu-toggle-pb: 200px;
  --footer-pb: 93px;
}

html:not(.responsive) {
  min-width: 1000px; /* viewport */
}

@media screen and (max-width: 767px) {
  html.responsive {
    --paddingWrap: 5vw;
    --paddingWrap-negative: calc(var(--paddingWrap) * -1);
  }
}

/*=============================================
 * body
 *=============================================*/
body {
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  background: #e6e4dc;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: 0.15em;
  color: #000;
}
@media screen and (max-width: 767px) {
  body {
    text-align: justify;
  }
  body.navOpen .menu_toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
    line-height: 35px;
  }
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-CormorantGaramond {
  font-family: "Cormorant Garamond", serif;
}

.fnt-PlaywriteSK {
  font-family: "Playwrite SK", sans-serif;
}

/*=============================================
 * <main>
 *=============================================*/
main {
  --body-border-w: 6px;
  clear: both;
  width: 100%;
  padding: var(--body-border-w);
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
  position: relative;
}
main::before {
  content: "";
  border: var(--body-border-w) solid #d0c4b2;
  border-bottom: 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  main {
    --body-border-w: 10px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: 1000px;
}

.bg-parallax {
  position: relative;
  z-index: -1;
}
.bg-parallax .img-parallax {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.bg-parallax .img-parallax img {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.copy.copied {
  pointer-events: none;
  cursor: default;
}

#pagetop {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 0;
  border-radius: 99px 99px 0 0;
  -webkit-transform: none;
          transform: none;
  position: relative;
  bottom: auto;
  left: auto;
}

.fadeInBlur {
  -webkit-animation-name: fadeInBlur;
          animation-name: fadeInBlur;
}

.bg-light {
  background: #e6e4dc;
}

.bg-dark {
  background: #d0c4b2;
}

.txt-white {
  color: #fff;
}

@media all and (-ms-high-contrast: none) {
  p.btn a img, header .nav-fl a img {
    transition: opacity 0s ease !important;
    -moz-transition: opacity 0s ease !important;
    -webkit-transition: opacity 0s ease !important;
  }
  .btn-over img,
  .over-img img,
  img.over,
  img:not(.btn):not(.non-over),
  button img {
    opacity: 1;
    transform: translateX(0) translateZ(0);
    -moz-transform: translateX(0) translateZ(0);
    -webkit-transform: translateX(0) translateZ(0);
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
  }
}
@media screen and (max-width: 767px) {
  html.responsive .wrap {
    width: auto;
    padding: 0 var(--paddingWrap);
  }
  .txt:not(.except) br:not(.except):not(.sp) {
    display: none;
  }
  .pc {
    display: none !important;
  }
  #pagetop {
    width: 90px;
    margin-top: 10vw;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
.ttl-default {
  font-weight: 300;
  font-size: 4vw;
  line-height: 2.5;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 768px) {
  .ttl-default {
    font-size: 20px;
    line-height: 55px;
  }
}

.btn-style-1 {
  width: 100%;
  min-height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 0;
}
.btn-style-1:hover {
  background: #d0c4b2;
  border-color: transparent;
  text-decoration: none;
}
.btn-style-1::after {
  content: "";
  width: 8px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 9.5 14.5'%3E%3Cg%3E%3Cpath fill-rule='evenodd' stroke='rgb(0,0,0)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M1.1000,0.634 L8.364,6.998 L1.1000,13.362 '/%3E%3C/g%3E%3Cpath fill='none' stroke='rgb(0,0,0)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' d='M1.1000,0.634 L8.364,6.998 L1.1000,13.362 '/%3E%3C/svg%3E") center/contain no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}
.btn-style-1.white:hover {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .btn-style-1 {
    max-width: 380px;
    min-height: 70px;
    font-size: 18px;
  }
  .btn-style-1 .en {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    letter-spacing: 0.15em;
  }
}

.btn-popup .btn-style-1::after {
  width: 23px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 24.5 14.5'%3E%3Cpath fill-rule='evenodd' stroke='rgb(0, 0, 0)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M3.500,0.500 L23.500,0.500 L23.500,10.500 L3.500,10.500 L3.500,0.500 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(0, 0, 0)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M0.500,3.500 L20.500,3.500 L20.500,13.500 L0.500,13.500 L0.500,3.500 Z'/%3E%3C/svg%3E");
}
.btn-reserve .btn-style-1 {
  width: 70%;
  padding: 5px 10px;
  font-size: 12px;
}
.btn-reserve .btn-style-1::before {
  content: "";
  width: 15px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
  background: url("../img/shared/icon_calendar.png") center no-repeat;
}
.btn-reserve .btn-style-1::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .btn-reserve .btn-style-1 {
    width: 200px;
    min-height: 46px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .btn-reserve .btn-style-1 {
    width: 220px;
  }
}

.btn-map .btn-style-1 {
  width: 70%;
  padding: 5px 10px;
  font-size: 12px;
}
.btn-map .btn-style-1::before {
  content: "";
  width: 14px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  background: url("../img/shared/icon_map.png") center no-repeat;
}
.btn-map .btn-style-1::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .btn-map .btn-style-1 {
    max-width: 220px;
    min-height: 46px;
    font-size: 18px;
  }
  .btn-map .btn-style-1::before {
    width: 14px;
    height: 20px;
  }
}

dl.tel dt {
  font-size: 11px;
  letter-spacing: 0.05em;
}
dl.tel .tel-number {
  font-family: "Playwrite SK", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
dl.tel .tel-number::before {
  content: "";
  width: 15px;
  height: 20px;
  display: inline-block;
  margin: 0 5px -2px 0;
  background: url("../img/shared/icon_tel.png") 0 0/contain no-repeat;
}
@media screen and (min-width: 768px) {
  dl.tel dt {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.15em;
  }
  dl.tel .tel-number {
    font-size: 21px;
  }
  dl.tel .tel-number::before {
    width: 18px;
    height: 24px;
    margin: 0 5px -2px 0;
  }
}

.menu-style-1 {
  margin-top: 40px;
}
.menu-style-1 .menu-ttl {
  padding-bottom: 5px;
  border-bottom: 1px solid;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
.menu-style-1 .menu-sttl {
  margin-top: 10px;
}
.menu-style-1 .menu-sttl2 {
  margin-top: 10px;
  text-align:center;
  font-size:13px;
}
.menu-style-1 .menu-detail {
  margin-top: 5px;
}
.menu-style-1 .menu-detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid;
}
.menu-style-1 .menu-detail dl dt {
  margin-right: 5px;
}
.menu-style-1 .menu-detail dl dd {
  text-align: right;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .menu-style-1 {
    margin-top: 42px;
  }
  .menu-style-1 .menu-ttl {
    padding-bottom: 11px;
    font-size: 18px;
  }
  .menu-style-1 .menu-detail {
    margin-top: 7px;
  }
  .menu-style-1 .menu-detail dl {
    padding: 10px 0 2px;
  }
}

.mainnav .nav-link {
  display: inline-block;
  padding: 10px 0;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.15em;
  position: relative;
}
.mainnav .nav-link:hover, .mainnav .nav-link.active {
  text-decoration: none;
}
.mainnav .nav-link:hover::before, .mainnav .nav-link.active::before {
  opacity: 1;
  visibility: visible;
}
.mainnav .nav-link::before {
  content: "";
  width: 37px;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 59.5 12.5'%3E%3Cpath fill-rule='evenodd' stroke='rgb(0, 0, 0)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' opacity='0.6' fill='none' d='M0.818,10.944 C0.818,10.944 46.621,-4.111 55.415,3.783 C58.457,6.644 56.705,6.495 55.415,8.259 '/%3E%3C/svg%3E") left center/contain no-repeat;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: -5px;
}
@media screen and (min-width: 768px) {
  .mainnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .mainnav .nav-link {
    padding: 0;
    font-size: 14px;
  }
  .mainnav .nav-link::before {
    width: 100%;
    min-width: 52px;
    height: 13px;
    background-position: center bottom;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    top: auto;
    bottom: 3px;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .mainnav {
    -webkit-column-gap: 27px;
       -moz-column-gap: 27px;
            column-gap: 27px;
  }
  .mainnav .nav-link {
    font-size: 16px;
  }
  .mainnav .nav-link::before {
    min-width: 58px;
  }
}

.subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5vw;
     -moz-column-gap: 5vw;
          column-gap: 5vw;
  margin-top: 10vw;
}
.subnav .nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.15em;
}
.subnav .nav-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.subnav .nav-news .nav-link::before {
  content: url("../img/shared/icon_news.png");
  display: inline-block;
  margin-right: 5px;
  line-height: 1;
}
.subnav .nav-map .nav-link::before {
  content: url("../img/shared/icon_map.png");
  display: inline-block;
  margin-right: 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .subnav {
    min-width: 200px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin: 5px 0 0 auto;
  }
  .subnav .nav-link {
    font-size: 14px;
  }
  .subnav .nav-news .nav-link::before {
    margin-right: 5px;
  }
  .subnav .nav-map .nav-link::before {
    margin-right: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .subnav {
    min-width: 220px;
  }
  .subnav .nav-link {
    font-size: 15px;
  }
}

/*=============================================
 * <header>
 *=============================================*/
header h1 {
  width: 77%;
  margin: 0 auto;
  padding-top: 5vw;
  opacity: 0.5;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.15em;
}
header .logo {
  text-align: center;
}
header .logo img {
  width: 50vw;
}
header .contactbox {
  margin-top: 10vw;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  header .btn-intagram img {
    width: 25px;
  }
}
@media screen and (min-width: 768px) {
  header h1 {
    width: auto;
    height: 580px;
    font-size: 12px;
    cursor: vertical-text;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    word-wrap: break-word;
    position: absolute;
    top: 245px;
    right: 50px;
    z-index: 3;
  }
  header .logo {
    text-align: left;
  }
  header .logo img {
    width: 234px;
  }
  header .nav {
    margin-top: 19px;
  }
  header dl.tel {
    margin-left: 20px;
  }
  header dl.tel dt {
    font-size: 10px;
    line-height: 15px;
  }
  header dl.tel .tel-number {
    margin-top: 3px;
    font-size: 15px;
  }
  header dl.tel .tel-number::before {
    width: 13px;
    height: 18px;
    margin: 0 5px -2px 0;
  }
  header .btn-reserve {
    margin-left: 25px;
  }
  header .contactbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0;
  }
  header .hdblk {
    padding: 29px 15px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header .hdblk .set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .hdblk .set .gr2 {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1200px) {
  header dl.tel {
    margin-left: 22px;
  }
  header dl.tel .tel-number {
    font-size: 16px;
  }
  header .hdblk {
    padding-left: 68px;
    padding-right: 51px;
  }
}

.menu_toggle {
  width: 100%;
  display: block;
  margin-top: 0;
  padding: 100px 0 var(--menu-toggle-pb);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #e6e4dc;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .menu_toggle {
    height: 100vh;
    min-height: 100%;
    float: right;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease, height 0s !important;
    transition: 0.5s ease, height 0s !important;
  }
  .menu_toggle .set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .menu_toggle {
    padding: 11px 15px 10px;
    background: #d0c4b2;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: 0.8s ease-out;
    transition: 0.8s ease-out;
  }
  .menu_toggle.fixed {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .menu_toggle .nav {
    margin-top: 13px;
  }
  .menu_toggle .subnav {
    grid-area: 2/1/3/3;
    margin-top: -2px;
  }
  .menu_toggle .btn-reserve .btn-style-1:hover {
    background: #fff;
  }
  .menu_toggle .set .inner {
    display: grid;
    grid-template-columns: 1fr auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .menu_toggle {
    padding-left: 42px;
    padding-right: 44px;
  }
}

.hamburger {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  margin: 0;
  overflow: visible;
  z-index: 1;
}
.hamburger::before {
  content: "";
  background: #e6e4dc;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  inset: -1px;
  z-index: -1;
}
.hamburger::after {
  content: "Menu";
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.15em;
}
.hamburger .hamburger-box {
  width: 28px;
  height: 20px;
  display: block;
  position: relative;
}
.hamburger .hamburger-inner {
  display: block;
  top: 50%;
}
.hamburger .hamburger-inner, .hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger .hamburger-inner::before {
  top: -6px;
}
.hamburger .hamburger-inner::after {
  bottom: -6px;
}
.hamburger.is-active::before {
  opacity: 1;
}
.hamburger.is-active::after {
  content: "close";
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/** Vortex Reverse **/
.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-740deg);
          transform: rotate(-740deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-140deg);
          transform: rotate(-140deg);
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
  padding-top: 1px;
  padding-bottom: var(--footer-pb);
  background: #d0c4b2;
  position: relative;
}
footer::before {
  content: "";
  width: 100vw;
  height: 30vw;
  background: url("../img/shared/footer_deco.png") 0 0/contain no-repeat;
  opacity: 0.8;
  position: absolute;
  bottom: calc(-16vw + var(--footer-pb));
  left: calc(var(--body-border-w) * -1);
}
footer .wrap {
  z-index: 1;
}
footer .deco {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
footer .deco img {
  width: 30vw;
}
footer .logo {
  text-align: center;
}
footer .logo img {
  width: 60vw;
}
footer address, footer .cookies_link {
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0.15em;
}
footer .cookies_link a {
  display: inline-block;
  text-underline-offset: 3px;
}
footer .cookies_link a::after {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-left: 3px;
  background: url("../img/shared/icon_print.png") center/contain no-repeat;
}
footer .btn-copy > span {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer .btn-copy > span:hover {
  text-decoration: none;
}
footer .btn-copy > span::after {
  content: "";
  width: 9px;
  height: 13px;
  display: inline-block;
  margin-left: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 12.5 18.5'%3E%3Cpath fill-rule='evenodd' stroke='rgb(15, 15, 15)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M0.500,7.500 L11.500,7.500 L11.500,17.500 L0.500,17.500 L0.500,7.500 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(15, 15, 15)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M6.500,3.499 L6.500,11.499 '/%3E%3Cpath fill-rule='evenodd' stroke='rgb(15, 15, 15)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M2.472,5.239 L5.760,1.472 L9.527,4.760 '/%3E%3C/svg%3E") 0 0/contain no-repeat;
}
footer #socialbuttons {
  margin-top: 5vw;
}
footer .btn-reserve {
  margin-top: 5vw;
}
footer .contactbox {
  margin-top: 10vw;
}
footer .shopinfo {
  margin-top: 15vw;
}
footer .shopinfo .txt-link {
  display: inline-block;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 5px;
}
footer .shopinfo .txt-link:hover {
  text-decoration: none;
}
footer .shopinfo .txt-link img {
  display: inline-block;
  margin-right: 5px;
}
footer .shopinfo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  text-align: left;
}
footer .shopinfo dl + dl {
  margin-top: 20px;
}
footer .shopinfo dl dt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 90px;
          flex: 1 0 90px;
}
footer .shopinfo dl dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
footer .shopinfo dl.dl-map .txt-link img {
  width: 10px;
}
footer .shopinfo dl.dl-seats .txt-link {
  margin-left: 10px;
}
footer .shopinfo dl.dl-seats .txt-link img {
  width: 8px;
}
footer .set1 .gr1 {
  text-align: center;
}
footer .set2 {
  margin-top: 15vw;
  text-align: center;
}
footer .set2 .gr2 {
  margin-top: 15vw;
}
@media screen and (min-width: 768px) {
  footer {
    padding-bottom: 0;
  }
  footer::before {
    width: 750px;
    height: 218px;
    bottom: -145px;
    left: -60px;
  }
  footer .wrap {
    width: 100%;
    max-width: 1480px;
    padding: 0 10px !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .deco {
    margin: 19px 0 -70px;
  }
  footer .deco img {
    width: auto;
  }
  footer .logo {
    text-align: left;
  }
  footer .logo img {
    width: 200px;
  }
  footer address, footer .cookies_link {
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  footer address {
    margin-left: 25px;
  }
  footer #socialbuttons {
    margin: 6px 0 0 auto;
  }
  footer .btn-reserve {
    margin: 0 0 0 58px;
  }
  footer .contactbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 23px;
  }
  footer .shopinfo {
    margin-top: 38px;
  }
  footer .shopinfo .txt-link {
    margin-left: 15px;
    text-underline-offset: 5px;
  }
  footer .shopinfo .txt-link img {
    width: auto;
    margin-right: 7px;
  }
  footer .shopinfo dl {
    line-height: 25px;
  }
  footer .shopinfo dl + dl {
    margin-top: 25px;
  }
  footer .shopinfo dl dt {
    -ms-flex-preferred-size: 138px;
        flex-basis: 138px;
  }
  footer .shopinfo dl.dl-seats .txt-link {
    margin-left: 15px;
  }
  footer .shopinfo dl.dl-seats .txt-link img {
    width: auto;
  }
  footer .mainnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  footer .mainnav .nav-link {
    font-size: 13px;
    letter-spacing: 0;
  }
  footer .set1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .set1 .gr1 {
    text-align: left;
  }
  footer .set1 .gr2 {
    min-width: 536px;
    margin-top: 25px;
    padding: 0 17px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .set2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: -6px;
    padding-right: 19px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
  }
  footer .set2 .gr1 {
    text-align: right;
  }
  footer .set2 .gr2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 44px;
  }
}
@media screen and (min-width: 1100px) {
  footer .logo img {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  footer .wrap {
    padding: 0 35px !important;
  }
  footer .mainnav {
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
  }
  footer .mainnav li:last-child {
    margin-left: 7px;
  }
  footer .mainnav .nav-link {
    font-size: 15px;
    letter-spacing: 0.15em;
  }
  footer .set1 .gr2 {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  footer dl.tel .tel-number {
    font-size: 15px;
  }
  footer dl.tel .tel-number::before {
    width: 13px;
    height: 17px;
  }
  footer .btn-reserve {
    width: 175px;
    margin-left: 20px;
    font-size: 12px;
  }
}

/*=============================================
 * ft_fixed
 *=============================================*/
#ft_fixed {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.ft_fixed_shared {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #d0c4b2;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.ft_fixed_shared li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.ft_fixed_shared li:not(:last-child)::before {
  content: "";
  border-left: 1px solid #000;
  opacity: 0.5;
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 0;
}
.ft_fixed_shared li a {
  display: block;
  position: relative;
}

/* iPhone X */
@media only screen and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  footer::after {
    height: 36px;
    content: "";
    background: #d0c4b2;
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 7;
  }
  #ft_fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}
/* iPhone XR */
@media only screen and (min-device-width: 414px) and (min-device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  footer::after {
    height: 36px;
    content: "";
    background: #d0c4b2;
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 7;
  }
  #ft_fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}
/* iPhone 11 */
@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min-device-pixel-ratio: 3), only screen and (-webkit-min-device-pixel-ratio: 4.770833333333333), only screen and (min-resolution: 458dpi), only screen and (min-resolution: 3dppx) {
  footer::after {
    height: 36px;
    content: "";
    background: #d0c4b2;
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 7;
  }
  #ft_fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}
@media screen and (min-width: 768px) {
  footer::after, #ft_fixed {
    display: none;
  }
}
/*=============================================
 * key
 *=============================================*/
/*=============================================
 * slick
 *=============================================*/
/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/shared/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: -30px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 1;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}
.slick-prev:before, .slick-next:before {
  content: "";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-family: "fontello";
  font-size: 20px;
  line-height: 30px;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: block;
  background-color: #b83a00;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev {
  left: 0;
}
.slick-prev:before {
  content: "\f104";
}

.slick-next {
  right: 0;
}
.slick-next:before {
  content: "\f105";
}

/* Dots */
.slick-dots {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
  position: absolute;
  bottom: 15px;
  right: 5px;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  opacity: 0.6;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button::before {
  content: "0";
}
.slick-dots li:nth-child(n+10) button::before {
  content: none;
}
.slick-dots li.slick-active button {
  font-size: 20px;
  opacity: 1;
}
@media (hover: hover) {
  .slick-dots li:hover button {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .slick-dots {
    bottom: 22px;
    right: 22px;
  }
  .slick-dots li button {
    font-size: 28px;
  }
  .slick-dots li.slick-active button {
    font-size: 38px;
  }
}