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

@font-face {
  font-family: "Noto Serif JP";
  src: url("../font/NotoSerifJP-Regular.otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../font/NotoSerifJP-Medium.otf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../font/NotoSerifJP-SemiBold.otf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amiri";
  src: url("../font/Amiri-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amiri";
  src: url("../font/Amiri-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
html.iphone {
  --pagetop-bottom: 120px;
  --menu-toggle-pb: 200px;
  --footer-pb: 40vw;
}

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

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

@media screen and (max-width: 450px) {
  html.responsive {
    --paddingWrap: 4vw;
  }
}

/*=============================================
 * body
 *=============================================*/
body {
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  color: #000;
}
body.navOpen .menu_toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
body.navOpen main::after {
  opacity: 0.8;
  visibility: visible;
  z-index: 7;
}
@media screen and (max-width: 767px) {
  body {
    text-align: justify;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
  }
  body.has_nav .hamburger, body.navOpen .hamburger {
    transform: translateX(0);
  }
}

/*=============================================
 * 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-NotoSerifJP {
  font-family: "Noto Serif JP", serif;
}

.fnt-amiri {
  font-family: "Amiri", serif;
}

/*=============================================
 * <main>
 *=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}
main::after {
  content: '';
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  position: absolute;
  inset: 0;
  z-index: -1;
}

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;
  transform: translateZ(0);
}

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

@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: 100%;
    margin-top: 10vw;
    text-align: center;
    opacity: 1;
    visibility: visible;
    position: relative;
    bottom: auto;
    right: auto;
    z-index: 99;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #pagetop img {
    filter: brightness(0) saturate(100%);
  }
  #pagetop.white img {
    filter: none;
  }
}
.ttl-style-1 {
  text-align: center;
}
.ttl-style-1 .en {
  display: block;
  font-weight: 700;
  font-size: 4vw;
  letter-spacing: 0;
  color: #dbd4c9;
}
.ttl-style-1 .jp {
  display: block;
  font-weight: 500;
  font-size: 7vw;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.ttl-style-1 .jp small {
  font-size: 6vw;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .ttl-style-1 {
    text-align: left;
  }
  .ttl-style-1 .en {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1;
  }
  .ttl-style-1 .jp {
    font-size: 45px;
    line-height: 70px;
  }
  .ttl-style-1 .jp small {
    font-size: 35px;
  }
}

.btn-style-1 {
  width: 100%;
  min-height: 60px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 20px;
  box-sizing: border-box;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  z-index: 0;
}
.btn-style-1:hover {
  text-decoration: none;
}
.btn-style-1::before {
  content: "";
  width: 8px;
  height: 100%;
  background: #454746;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn-style-1::after {
  content: "";
  width: 20px;
  height: 100%;
  background: url("../img/shared/arrow4.png") center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 15px;
}
.btn-style-1.white {
  border-color: #fff;
  color: #fff;
}
.btn-style-1.white::before {
  background: #fff;
}
.btn-style-1.white::after {
  filter: brightness(1) invert(1);
}
@media screen and (min-width: 768px) {
  .btn-style-1 {
    max-width: 440px;
    min-height: 80px;
    font-size: 20px;
    transition: 0.5s ease-out;
  }
  .btn-style-1:hover {
    border-color: #454746;
    color: #fff;
  }
  .btn-style-1:hover::before {
    width: 100% !important;
  }
  .btn-style-1:hover::after {
    filter: brightness(1) invert(1);
  }
  .btn-style-1::before {
    width: 10px;
    transition: 0.5s ease-out;
  }
  .btn-style-1::after {
    width: 28px;
    right: 25px;
    transition: 0.5s ease-out;
  }
  .btn-style-1.white:hover {
    border-color: #fff;
    color: #000;
  }
  .btn-style-1.white:hover::after {
    filter: none;
  }
}

.btn-popup .btn-style-1::after {
  width: 27px;
  background-image: url("../img/shared/icon_popup.png");
}

.btn-reserve a {
  width: 100%;
  max-width: 70vw;
  min-height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
  padding: 10px 20px;
  box-sizing: border-box;
  background: #333333;
  border-left: 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  z-index: 0;
}
.btn-reserve a:hover {
  text-decoration: none;
}
.btn-reserve a::before {
  content: "";
  width: 9px;
  height: 100%;
  background: #df1014;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn-reserve a > span {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.btn-reserve a > span::before {
  content: "";
  width: 23px;
  height: 26px;
  display: block;
  background: url("../img/shared/icon_calendar.png") center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .btn-reserve a {
    max-width: 359px;
    min-height: 90px;
    font-size: 22px;
  }
  .btn-reserve a:hover::before {
    width: 100%;
  }
  .btn-reserve a::before {
    width: 10px;
    transition: 0.5s ease-out;
  }
  .btn-reserve a > span::before {
    width: 27px;
    height: 29px;
  }
}

.menu-style + .menu-style {
  margin-top: 30px;
}
.menu-style .menu-ttl {
  padding: 5px;
  background: #000;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
}
.menu-style .menu-detail {
  margin-top: 5px;
}
.menu-style .menu-detail dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dotted #000;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .menu-style + .menu-style {
    margin-top: 50px;
  }
  .menu-style .menu-ttl {
    font-size: 18px;
  }
  .menu-style .menu-detail dl {
    font-size: 15px;
    line-height: 25px;
  }
}

.popup-menu {
  padding: 10vw 0;
  background: #fff;
  text-align: left;
}
.popup-menu h2.ttl {
  font-weight: 500;
  font-size: 6vw;
  letter-spacing: 0.08em;
  text-align: center;
}
.popup-menu .set {
  margin-top: 10vw;
}
@media screen and (min-width: 768px) {
  .popup-menu {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0 80px;
  }
  .popup-menu .wrap {
    width: 100%;
    max-width: 1060px;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .popup-menu h2.ttl {
    font-size: 30px;
    line-height: 50px;
  }
  .popup-menu .set {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-top: 50px;
  }
  .popup-menu .set .gr {
    width: 49%;
    max-width: 480px;
  }
}

/*=============================================
 * <header>
 *=============================================*/
.mainnav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.mainnav .nav-link {
  min-width: 43px;
  padding-left: 30px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: relative;
}
.mainnav .nav-link:hover {
  cursor: pointer;
  text-decoration: none;
}
.mainnav .nav-link:hover::before {
  opacity: 1;
  visibility: visible;
}
.mainnav .nav-link::before {
  content: "";
  height: 20px;
  border-left: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 4px;
  opacity: 0;
  visibility: hidden;
}
.mainnav .nav-link.active::before {
  opacity: 1;
  visibility: visible;
}
.mainnav .nav-link.txt-vertical {
  padding-top: 30px;
  padding-left: 0;
}
.mainnav .nav-link.txt-vertical::before {
  left: 50%;
}
@media screen and (min-width: 768px) {
  .mainnav {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .mainnav .nav-link {
    min-width: 35px;
  }
}

.subnav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.subnav .nav-link {
  display: inline-block;
  padding: 0 20px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.subnav .nav-link:hover {
  cursor: pointer;
  opacity: 0.7;
  text-decoration: none;
}
.subnav li + li {
  position: relative;
}
.subnav li + li::before {
  content: "";
  border-left: 1px solid #000;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .subnav.vertical {
    display: block;
    margin-left: 30px;
    padding: 0 30px;
    border-left: 1px solid #000;
  }
  .subnav.vertical .nav-link {
    min-width: 18px;
    padding: 15px 0px;
  }
  .subnav.vertical li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    line-height: 1;
  }
  .subnav.vertical li + li::before {
    border-left: 0;
    border-top: 1px solid #000;
    top: 0;
    bottom: auto;
    left: 5px;
    right: 5px;
  }
}

.header-nav .btn-link {
  text-align: center;
}
.header-nav .btn-link a {
  display: inline-block;
  padding: 5px 50px 0 30px;
  box-sizing: border-box;
  border: 1px solid #000;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  position: relative;
}
.header-nav .btn-link a:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.7;
}
.header-nav .btn-link a::before {
  content: "";
  width: 14px;
  height: 100%;
  background: url("../img/shared/icon_open1.png") center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .header-nav .btn-link.vertical a {
    width: 39px;
    min-height: 235px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    padding: 5px 5px 50px;
  }
  .header-nav .btn-link.vertical a::before {
    width: 100%;
    height: 14px;
    top: auto;
    bottom: 35px;
    left: 0;
    right: auto;
  }
}

header {
  position: relative;
}
header h1 {
  opacity: 0.8;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
header .logo {
  text-align: center;
}
header .logo img {
  width: 80vw;
}
header .hdblk {
  padding-top: 20vw;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
header .hdblk .set2 {
  margin-top: 10vw;
}
@media screen and (min-width: 768px) {
  header h1 {
    padding: 16px 52px 0;
    font-size: 14px;
    text-align: left;
  }
  header .logo {
    text-align: left;
  }
  header .logo img {
    width: auto;
  }
  header .mainnav .nav-link {
    font-size: 18px;
  }
  header .tel dt {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  header .tel .tel-number {
    margin-top: 3px;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 1;
  }
  header .tel .tel-number::before {
    content: "";
    width: 18px;
    height: 25px;
    display: inline-block;
    margin: 0 5px -3px 0;
    background: url("../img/shared/icon_phone1.png") 0 0/contain no-repeat;
  }
  header .btn-reserve a {
    width: 237px;
    min-height: 68px;
    font-size: 16px;
  }
  header .btn-reserve a > span::before {
    width: 17px;
    height: 19px;
  }
  header .contactbox {
    display: -ms-flexbox;
    display: flex;
    -moz-column-gap: 23px;
         column-gap: 23px;
    margin-top: 30px;
  }
  header hr {
    max-width: 360px;
    margin: 31px auto 0;
    border: 0;
    border-top: 1px solid #000;
  }
  header .bnr {
    margin-top: 33px;
    border: 3px solid #fff;
  }
  header .header-nav {
    margin-top: 28px;
  }
  header .header-nav .subnav {
    margin-top: 24px;
  }
  header .header-nav .btn-link {
    margin-top: 17px;
  }
  header .header-nav .btn-link a {
    padding: 1px 55px 1px 35px;
  }
  header .nav-lang {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
  header .nav-lang a {
    min-width: 143px;
    display: inline-block;
    padding: 6px 5px;
    box-sizing: border-box;
    border: 1px solid #585858;
    border-top: 0;
    background: #2e2823;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
  }
  header .nav-lang a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  header .nav-lang li + li {
    margin-left: -1px;
  }
  header .hdblk {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    padding-top: 0;
  }
  header .hdblk .set1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-top: 10px;
    padding: 0 50px;
    box-sizing: border-box;
  }
  header .hdblk .set1 .gr1 {
    text-align: center;
  }
  header .hdblk .set1 .gr2 .header-nav {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  header .hdblk .set1 .gr2 .header-nav hr {
    border-top: 0;
    border-left: 1px solid #000;
  }
  header .hdblk .set2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-top: 0;
  }
}

.menu_toggle {
  width: 100%;
  padding: 5vw var(--paddingWrap) var(--menu-toggle-pb);
  box-sizing: border-box;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease, height 0s !important;
}
.menu_toggle .logo {
  margin-top: 10vw;
  text-align: center;
}
.menu_toggle .logo img {
  width: 70vw;
}
.menu_toggle .tel {
  margin-top: 7vw;
  text-align: center;
}
.menu_toggle .tel dt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.menu_toggle .tel .tel-number {
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1;
}
.menu_toggle .tel .tel-number::before {
  content: "";
  width: 21px;
  height: 27px;
  display: inline-block;
  margin: 0 5px -3px 0;
  background: url("../img/shared/icon_phone1.png") 0 0/contain no-repeat;
}
.menu_toggle .btn-reserve {
  margin-top: 7vw;
}
.menu_toggle hr {
  margin-top: 10vw;
  border: 0;
  border-top: 1px solid #000;
}
.menu_toggle .bnr {
  margin-top: 10vw;
  text-align: center;
}
.menu_toggle .bnr img {
  width: 70vw;
}
.menu_toggle .mainnav {
  margin-top: 15vw;
}
.menu_toggle .subnav {
  margin-top: 10vw;
}
.menu_toggle .nav-lang {
  display: -ms-flexbox;
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.menu_toggle .nav-lang a {
  display: block;
  padding: 5px 20px;
  border: 1px solid #000;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.menu_toggle .nav-lang a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.menu_toggle .header-nav .btn-link {
  margin-top: 5vw;
}
@media screen and (max-width: 767px) {
  .menu_toggle {
    height: 100vh;
    min-height: 100%;
    float: right;
    display: block;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .menu_toggle {
    width: 1100px;
    min-height: 756px;
    padding: 20px 131px;
  }
  .menu_toggle .logo {
    -ms-flex-order: 1;
        order: 1;
    margin-top: 0;
  }
  .menu_toggle .logo img {
    width: 345px;
  }
  .menu_toggle .tel {
    margin-top: 15px;
  }
  .menu_toggle .tel dt {
    font-weight: 700;
    font-size: 19px;
  }
  .menu_toggle .tel .tel-number {
    margin-top: 10px;
    font-size: 37px;
  }
  .menu_toggle .tel .tel-number::before {
    width: 25px;
    height: 35px;
    margin: 0 5px -3px 0;
  }
  .menu_toggle .btn-reserve {
    margin-top: 30px;
  }
  .menu_toggle .btn-reserve a {
    min-height: 84px;
  }
  .menu_toggle .contactbox {
    -ms-flex-order: 2;
        order: 2;
  }
  .menu_toggle hr {
    margin: 31px -50px 0;
  }
  .menu_toggle .bnr {
    margin-top: 40px;
  }
  .menu_toggle .bnr img {
    width: auto;
  }
  .menu_toggle .mainnav {
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-top: 0;
  }
  .menu_toggle .mainnav .nav-link {
    font-size: 25px;
  }
  .menu_toggle .subnav {
    margin-top: 20px;
  }
  .menu_toggle .subnav .nav-link {
    padding: 0 25px;
    font-size: 21px;
  }
  .menu_toggle .nav-lang {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
  .menu_toggle .nav-lang a {
    min-width: 150px;
    box-sizing: border-box;
    font-size: 20px;
    text-align: center;
  }
  .menu_toggle .header-nav {
    -ms-flex-order: 3;
        order: 3;
  }
  .menu_toggle .header-nav .btn-link {
    margin-top: 28px;
  }
  .menu_toggle .header-nav .btn-link a {
    padding: 6px 70px 7px 40px;
    font-size: 21px;
  }
  .menu_toggle .header-nav .btn-link a::before {
    width: 18px;
    right: 25px;
  }
  .menu_toggle .set {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-top: 90px;
  }
  .menu_toggle .set .gr2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

.hamburger {
  background: #464746;
  position: fixed;
  z-index: 103;
  top: 0;
  right: 0;
  width: 100px;
  height: 50px;
  line-height: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  margin: 0;
  overflow: visible;
}
.hamburger::after {
  content: "MENU";
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
}
.hamburger .hamburger-box {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}
.hamburger .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger .hamburger-inner, .hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger .hamburger-inner::before {
  top: -10px;
}
.hamburger .hamburger-inner::after {
  bottom: -10px;
}
.hamburger.is-active {
  width: 50px;
  background: transparent;
  top: 10px;
  right: 10px;
}
.hamburger.is-active::after {
  display: none;
}
.hamburger.is-active .hamburger-box {
  width: 40px;
  height: 40px;
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  height: 3px;
  background-color: #a3a3a3;
}
@media screen and (min-width: 768px) {
  .hamburger {
    width: 140px;
    height: 70px;
    transform: translateX(100%);
    transition: 0.5s ease-out;
  }
  .hamburger:hover {
    opacity: 0.7;
  }
  .hamburger::after {
    font-size: 20px;
  }
  .hamburger .hamburger-box {
    width: 32px;
    height: 32px;
  }
  .hamburger.is-active {
    width: 60px;
    top: 9px;
    right: 34px;
  }
  .hamburger.is-active::after {
    display: none;
  }
  .hamburger.is-active .hamburger-box {
    width: 50px;
    height: 50px;
  }
  .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    height: 3px;
    background-color: #a3a3a3;
  }
}

/** Vortex Reverse **/
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-755deg);
  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 {
  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;
  transform: rotate(-110deg);
}

/*=============================================
 * nav-fixed
 *=============================================*/
.nav-fixed {
  background: rgba(255, 255, 255, 0.8);
  height: 90px;
  position: absolute;
  z-index: 99;
  left: 0;
  right: 0;
  top: -90px;
  box-shadow: 0px 4px 10px 0px rgba(99, 81, 43, 0.25);
}
.nav-fixed.fixed {
  position: fixed;
  top: 0;
}
.nav-fixed a {
  position: relative;
  text-decoration: none;
}
.nav-fixed a::before {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background: #8f1309;
  bottom: 0;
  transition: all 0.5s ease;
  width: 0;
}
.nav-fixed a.active:before, .nav-fixed a:hover:before {
  width: 100%;
}
.nav-fixed nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .nav-fixed {
    height: 0;
    display: none;
  }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
  padding: 20vw 0 var(--footer-pb);
  background: url("../img/shared/bg2.jpg");
  color: #fff;
}
footer .logo img {
  width: 70vw;
}
footer .tel {
  margin-top: 7vw;
}
footer .tel dt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
}
footer .tel .tel-number {
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1;
}
footer .tel .tel-number::before {
  content: "";
  width: 21px;
  height: 27px;
  display: inline-block;
  margin: 0 5px -3px 0;
  background: url("../img/shared/icon_phone1.png") 0 0/contain no-repeat;
  filter: brightness(1) invert(1);
}
footer .btn-reserve {
  margin-top: 7vw;
}
footer .shopinfo {
  margin-top: 7vw;
}
footer .shopinfo p + p {
  margin-top: 7vw;
}
footer .shopinfo .link-map {
  padding-bottom: 5px;
  position: relative;
}
footer .shopinfo .link-map:hover {
  text-decoration: none;
}
footer .shopinfo .link-map:hover::before {
  border-bottom-color: transparent;
}
footer .shopinfo .link-map::before {
  content: "";
  border-bottom: 1px solid;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}
footer .btn-copy {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 5px;
}
footer .btn-copy:hover {
  text-decoration: none;
}
footer .btn-copy::after {
  content: "";
  width: 11px;
  height: 11px;
  display: inline-block;
  margin: 0 0 0 5px;
  background: url("../img/shared/icon_link.png") 0 0/contain no-repeat;
}
footer .cookies_link, footer address {
  margin-top: 3vw;
  font-size: 12px;
  letter-spacing: 0.1em;
}
footer .cookies_link::after {
  content: "";
  width: 11px;
  height: 11px;
  display: inline-block;
  margin: 0 0 0 5px;
  background: url("../img/shared/icon_open.png") 0 0/contain no-repeat;
}
footer .set1 {
  text-align: center;
}
footer .set1 .gr2 {
  margin-top: 10vw;
}
footer .set1 .gr2 .bnr img {
  width: 70vw;
}
footer .set2 {
  margin-top: 10vw;
}
footer .set2 .ttl {
  padding-top: 10vw;
  font-weight: 500;
  font-size: 6vw;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  z-index: 0;
}
footer .set2 .ttl::after {
  content: "";
  border-top: 1px solid;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: -20vw;
  right: -20vw;
  z-index: -1;
}
footer .set2 .gr1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 3vw;
}
footer .set2 .gr1 dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 500;
}
footer .set2 .gr1 dl + dl {
  margin-top: 5px;
}
footer .set2 .gr1 dl dt {
  -ms-flex: 0 0 30px;
      flex: 0 0 30px;
}
footer .set2 .gr1 dl dd {
  -ms-flex: 0 1 100%;
      flex: 0 1 100%;
  padding-left: 10px;
  box-sizing: border-box;
}
footer .set2 .map {
  margin-top: 5vw;
  height: 480px;
  overflow: hidden;
}
footer .set2 .map iframe {
  width: 120%;
  height: 132%;
  margin: -22% -10% 0%;
}
iframe {
  width: 100%;
  height: 100%;
}
footer .set3 {
  margin-top: 10vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 85px 0 70px;
  }
  footer .logo img {
    width: auto;
  }
  footer .tel {
    margin-top: 0;
  }
  footer .tel .tel-number {
    margin-top: -4px;
    font-size: 28px;
  }
  footer .tel .tel-number::before {
    width: 25px;
    height: 35px;
    margin: 0 5px -3px 0;
  }
  footer .btn-reserve {
    margin-top: 0;
  }
  footer .btn-reserve a {
    width: 237px;
    min-height: 67px;
    font-size: 16px;
  }
  footer .btn-reserve a > span::before {
    width: 17px;
    height: 19px;
  }
  footer .contactbox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -moz-column-gap: 18px;
         column-gap: 18px;
    margin-top: 40px;
  }
  footer .shopinfo {
    margin-top: 35px;
  }
  footer .shopinfo p {
    line-height: 28px;
    letter-spacing: 0;
  }
  footer .shopinfo p + p {
    margin-top: 12px;
  }
  footer .shopinfo .link-map {
    padding-bottom: 5px;
  }
  footer .shopinfo .link-map::before {
    left: 15px;
    right: 15px;
  }
  footer .btn-copy {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 25px;
  }
  footer .btn-copy::after {
    width: 11px;
    height: 11px;
    margin: 0 0 0 5px;
  }
  footer .cookies_link, footer address {
    margin-top: 0;
    font-size: 13px;
    line-height: 25px;
  }
  footer .cookies_link::after {
    margin: 0 0 0 5px;
  }
  footer .mainnav {
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  footer .mainnav a {
    display: block;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
  }
  footer .mainnav a + a {
    margin-top: 10px;
  }
  footer .mainnav li {
    width: 50%;
    padding: 0 5px;
    box-sizing: border-box;
  }
  footer .subnav {
    margin-top: 26px;
  }
  footer .subnav li + li::before {
    border-left-color: #fff;
  }
  footer .subnav img {
    filter: brightness(1) invert(1);
  }
  footer .ft-nav .btn-link {
    margin-top: 17px;
    text-align: center;
  }
  footer .ft-nav .btn-link a {
    display: inline-block;
    padding: 1px 55px 1px 35px;
    border: 1px solid #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    position: relative;
  }
  footer .ft-nav .btn-link a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  footer .ft-nav .btn-link a::before {
    content: "";
    width: 14px;
    height: 100%;
    background: url("../img/shared/icon_open1.png") center/contain no-repeat;
    position: absolute;
    top: 0;
    right: 20px;
    filter: brightness(1) invert(1);
  }
  footer #socialbuttons {
    margin: 0;
  }
  footer .set1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
        align-items: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
    text-align: left;
  }
  footer .set1 .gr1 {
    width: 500px;
  }
  footer .set1 .gr2 {
    width: 470px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
    margin-top: 10px;
  }
  footer .set1 .gr2 .bnr {
    margin-top: 36px;
  }
  footer .set1 .gr2 .bnr img {
    width: auto;
  }
  footer .set2 {
    margin-top: 50px;
  }
  footer .set2 .ttl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding-top: 0;
    font-size: 35px;
    line-height: 55px;
    text-align: left;
    white-space: nowrap;
  }
  footer .set2 .ttl::after {
    -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    border-top: 1px solid;
    position: relative;
    left: auto;
    right: auto;
  }
  footer .set2 .gr1 {
    display: block;
    margin-top: 14px;
  }
  footer .set2 .gr1 .inner {
    display: -ms-flexbox;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  footer .set2 .gr1 dl + dl {
    margin-top: 0;
  }
  footer .set2 .gr1 dl dt {
    -ms-flex-preferred-size: 43px;
        flex-basis: 43px;
  }
  footer .set2 .gr1 dl dd {
    padding-left: 10px;
  }
  footer .set2 .map {
    height: 400px;
    margin-top: 33px;
  }
  footer .set2 .map iframe {
    width: 120%;
    height: 127%;
    margin: -7% -10% 0%;
  }
  footer .set3 {
    margin-top: 62px;
  }
  footer .set3 .gr1, footer .set3 .gr2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  footer .set3 .gr2 {
    margin-top: 20px;
  }
}

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

.ft_fixed_shared {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row;
      flex-flow: row;
  background: #fff;
  text-align: center;
}
.ft_fixed_shared li {
  box-sizing: border-box;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.ft_fixed_shared li:last-child, .ft_fixed_shared li:nth-child(3) {
  border-right: 0;
}
.ft_fixed_shared li a {
  display: block;
  position: relative;
}
.ft_fixed_shared li.reserve {
  position: relative;
}
.ft_fixed_shared li.reserve::before {
  content: "";
  width: 100%;
  border-top: 6px solid #df1014;
  position: absolute;
  top: 0;
  left: 0;
}

/* 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: #000;
    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: #000;
    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: #000;
    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: -35px;
  display: block;
  width: 18px;
  height: 22px;
  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: "";
  width: 100%;
  height: 100%;
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
  background: url("../img/shared/arrow5.png") 0 0/contain no-repeat;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev {
  right: 60px;
}
.slick-prev:before {
  transform: scaleX(-1);
}

.slick-next {
  right: 0;
}

/* Dots */
.slick-dots {
  position: absolute;
  top: 15px;
  left: 15px;
  display: -ms-flexbox;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 0;
}
.slick-dots li {
  width: 8px;
  height: 50px;
  position: relative;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: transparent;
  outline: none;
  border-radius: 0;
  border: 1px solid #454746;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active button {
  background: #454746;
}
@media (hover: hover) {
  .slick-dots li:hover button {
    background: #454746;
  }
}
@media screen and (min-width: 768px) {
  .slick-dots {
    -moz-column-gap: 7px;
         column-gap: 7px;
    top: 18px;
    left: 19px;
  }
  .slick-dots li {
    width: 10px;
    height: 79px;
  }
}