@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400&family=Zen+Old+Mincho:wght@400&display=swap');
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-size: clamp(16px, 1.111vw, 16px);
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  background-color: #0B0B0B;
  color: #FFFFFF;
  line-height: 1.875;
  font-feature-settings: "palt";
  letter-spacing: 3px;
}

@media screen and (max-width: 1024px) {
  main {
    min-height: 68svh;
  }
}
.en {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 80.55%;
}

.oneSide-margin {
  width: min(90.27vw, 1300px + (100vw - 1300px) / 2);
}

.textCenter {
  text-align: center;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  body {
    font-size: min(3.07vw, 22px);
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: min(3.07vw, 22px);
  }
  .inner {
    width: 100%;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInLoadTrigger,
.fadeUpLoadTrigger,
.fadeLeftLoadTrigger,
.fadeRightLoadTrigger {
  opacity: 0;
}

/*=================================
  ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger,
.zoomInLoadTrigger,
.zoomOutLoadTrigger {
  opacity: 0;
}

/*==================================
  じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger,
.blurLoadTrigger {
  opacity: 0;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

.bl-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .bl-btn {
    width: 84.6%;
    margin: 0 auto;
    text-align: center;
  }
}
.bl-btn a {
  font-size: min(1.38vw, 28px);
  letter-spacing: 0.05em;
  padding: 16.5px 81.5px;
  line-height: 1;
  display: block;
  border: 1px solid #FFFFFF;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .bl-btn a {
    font-size: min(5.12vw, 38px);
  }
}
.bl-btn a:hover {
  background-color: #FFFFFF;
  color: #0B0B0B;
  transition: all 0.5s;
}

.bl-btn--center {
  margin: 0 auto;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

/* 大見出し 英語（大）＋日本語（小） */
.bl-largeTtl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .bl-largeTtl {
    margin: 0 auto;
  }
}

.bl-largeTtl--center {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.bl-largeTtl__en {
  font-size: clamp(74px, 7.36vw, 106px);
  letter-spacing: 0em;
  line-height: 1;
  margin-bottom: 16px;
  color: #FAFAE2;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .bl-largeTtl__en {
    margin-bottom: 7px;
    font-size: 45px;
  }
}


.bl-largeTtl__en--center {
  text-align: center;
}

.bl-largeTtl__ja {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1;
  color: #FAFAE2;
  letter-spacing: 0em;
}
@media screen and (max-width: 1024px) {
  .bl-largeTtl__ja {
    font-size: 3.84vw;
    text-align: center;
  }
}
@media screen and (min-width: 1800px) {
  .bl-largeTtl__en {
    font-size: 106px;
  }

  .bl-largeTtl__ja { 
    font-size: 26px;
  }
}
.bl-largeTtl__ja--center {
  text-align: center;
}

/*---------------------------
ページ共通
---------------------------*/
.pageTop {
  position: fixed;
  bottom: 22px;
  right: 47px;
}
@media screen and (max-width: 1024px) {
  .pageTop {
    bottom: 18px;
    right: 15px;
  }
}
.pageTop a {
  display: block;
  width: 52px;
  height: 52px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: relative;
}
.pageTop a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 14px;
  background-color: #707070;
  border-radius: 2px;
  pointer-events: none;
}
.pageTop a::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #707070;
  border-left: 2px solid #707070;
  border-radius: 2px;
  pointer-events: none;
}

.pageTop--appear {
  opacity: 0;
  transition: all 0.5s;
}
.pageTop--appear.js-appear {
  opacity: 1;
  transition: all 0.5s;
}

/*---------------------------
ヘッダー
---------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 2.63vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .header {
    height: max(10vw, 82px);
    padding: 0;
  }
}
.header.header--top {
  transform: translateY(-100%);
  -webkit-animation-name: headerAnime;
          animation-name: headerAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0B0B0B;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateY(-100%);
  transition: all 0.8s;
}
.header.js-bgDown::after {
  transform: translateY(0);
  transition: all 0.8s;
}

@-webkit-keyframes headerAnime {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes headerAnime {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.header__logo {
  width: 14.02%;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: min(38.4%, 230px);
    top: 26px;
    left: 17px;
    position: fixed;
  }
}

@media screen and (min-width: 1800px) {
  .header__logo {
    width: 10.65%
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__nav-list .header__nav-item a {
  font-size: min(1.25vw, 18px);
  letter-spacing: 0;
  line-height: 1;
}
.header__nav-list .header__nav-item:not(:last-of-type) {
  margin-right: 2.63vw;
}
.header__nav-list .header__nav-item:nth-last-of-type(2) {
  margin-right: 3.33vw;
}
.header__nav-list .header__nav-item:last-of-type a {
  display: block;
  padding: 8px 40px;
  border: 1px solid #FFFFFF;
  transition: all 0.5s;
}
.header__nav-list .header__nav-item:last-of-type a:hover {
  transition: all 0.5s;
  background-color: #FFFFFF;
  color: #0B0B0B;
}

.spHeader-reserveBtn {
  position: fixed;
  top: 26px;
  right: max(72px, 11vw);
}
.spHeader-reserveBtn a {
  font-size: min(3.58vw, 26px);
  display: block;
  padding: 10px 30px;
  line-height: 1;
  border: 1px solid #FFFFFF;
}

.burger-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  left: 0;
  z-index: 9998;
  pointer-events: none;
}
.burger-nav::after {
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: all 0.7s;
  opacity: 0;
}

.burger-nav.panelactive {
  z-index: 9998;
  pointer-events: all;
}
.burger-nav.panelactive::after {
  transform: translateY(0);
  transition: all 0.7s;
  opacity: 1;
}

/*
.burger-nav.panelactive .burger-nav__list-wrap{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}*/
.burger-nav__list {
  padding-bottom: 7.5px;
  margin-bottom: 45px;
  position: relative;
}
.burger-nav__list::after {
  content: "";
  position: absolute;
  width: 49px;
  height: 1px;
  background-color: #0B0B0B;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.burger-nav .burger-nav-wrap {
  display: block;
  position: absolute;
  z-index: 999;
  top: calc(50% + 50px);
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  transition-delay: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: 85vh;
  overflow-y: auto;
  width: 100vw;
  height: max-content;
  min-height: 600px;
}

.burger-nav.panelactive .burger-nav-wrap {
  display: block;
  top: 55%;
  transition: all 1s;
  opacity: 1;
  transition-delay: 0.3s;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger__logo {
  position: absolute;
  bottom: -20px;
  right: 15px;
  width: 22%;
  z-index: 99;
  opacity: 0;
}

.burger-nav.panelactive .burger__logo {
  transition: all 1s;
  bottom: 90px;
  opacity: 1;
  transition-delay: 0.3s;
}

.burger-nav .burger-nav__item {
  list-style: none;
  text-align: center;
}

.burger-nav .burger-nav__item a {
  color: #0B0B0B;
  text-decoration: none;
  margin-bottom: 32px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0em;
  font-size: 18px;
  line-height: 1;
}

.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 22px;
  right: 24.5px;
  cursor: pointer;
  width: clamp(29px, 7.43vw, 43.5px);
  height: clamp(34px, 8.7vw, 51px);
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #FFFFFF;
}

.openbtn1.active span {
  background-color: #0B0B0B;
}

.openbtn1 span:nth-of-type(1) {
  top: calc(50% - 1vw);
  width: 100%;
}

.openbtn1 span:nth-of-type(2) {
  top: calc(50% + 1vw);
  width: 16px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
}

.burger-tel-wrap a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 23px 22px;
  position: relative;
  margin: 0 auto;
}
.burger-tel-wrap a::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  border: 1px solid #0B0B0B;
}
.burger-tel-wrap a::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  border: 1px solid #0B0B0B;
}

.burger-tel-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.burger-tel-icon {
  width: 21px;
  height: auto;
  margin-right: 10px;
}

.burger-telNum {
  font-size: 26px;
  color: #0B0B0B;
  line-height: 1;
  letter-spacing: 0.05em;
}

.burger-tel-explain {
  font-size: 15px;
  color: #0B0B0B;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 9px;
  text-align: center;
}

.burger-storeName {
  font-size: 30px;
  margin-top: 35px;
  color: #0B0B0B;
  text-align: center;
  line-height: 1;
}

.burger-address {
  font-size: 12px;
  text-align: center;
  line-height: 1.66;
  margin: 27px auto 10px;
  color: #0B0B0B;
}

.burger-telNum-s {
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
  color: #0B0B0B;
}

.burger-regularHoliday {
  text-align: center;
  line-height: 1;
  color: #0B0B0B;
}

/*---------------------------
フッター
---------------------------*/
.footer {
  padding: 35px 0;
  background-color: #4D4D4D;
  margin-top: 63px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 16px 7.69vw 18px;
  }
}
@media screen and (min-width: 1800px) {
.footer {
  margin-top: 90px;
}
}
.footer__infoWrap {
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .footer__infoWrap {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.footer__logo {
  width: 142px;
  height: auto;
  margin-right: 43px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 26.9%;
    margin-right: 0;
  }
}

.footer__storeName {
  font-size: min(2.36vw, 49px);
  letter-spacing: 1;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .footer__storeName {
    font-size: 8.7vw;
  }
}



.footer__address {
  font-size: min(1.38vw, 28px);
  line-height: 1.25;
  margin: 25px 0 16px;
}
@media screen and (max-width: 1024px) {
  .footer__address {
    font-size: min(3.07vw, 22px);
    line-height: 1.66;
    margin: 23px 0 13px;
  }
}

.footer__tel-wrap a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: min(1.38vw, 28px);
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .footer__tel-wrap a {
    font-size: min(3.07vw, 22px);
  }
}

.footer__tel-ttl {
  margin-right: 26px;
}
@media screen and (max-width: 1024px) {
  .footer__tel-ttl {
    font-size: min(3.07vw, 22px);
  }
}

.regularHoliday {
  font-size: min(1.38vw, 28px);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 18.7px;
}
@media screen and (max-width: 1024px) {
  .regularHoliday {
    font-size: min(3.07vw, 22px);
    margin-top: 13px;
  }
}
@media screen and (min-width: 1800px) {
  .footer__storeName {
    font-size: 34px;
  }
  .footer__address {
    font-size: 20px;
  }
  .footer__tel-wrap a {
    font-size: 20px;
  }
  .regularHoliday {
    font-size: 20px;
  }
}

.footer__navList {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__navList {
    justify-content: flex-start;
    margin-top: 60px;
  }
}
.footer__navList .footer__navItem {
  font-size: clamp(12px, 0.833vw, 18px);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .footer__navList .footer__navItem {
    font-size: min(2.56vw, 18px);
  }
}
.footer__navList .footer__navItem:not(:last-of-type) {
  margin-right: 39px;
}
.footer__navList .copyRight {
  font-size: clamp(12px, 0.833vw, 16px);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .footer__navList .copyRight {
    font-size: min(2.56vw, 18px);
  }
}

/*---------------------------
TOPページ
---------------------------*/
#splash {
  width: 100%;
  height: 100vh;
  background-color: #0B0B0B;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 998;
}
@media screen and (max-width: 768px) {
  #splash {
    height: 100svh;
  }
}

.splash__txt {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: min(2.63vw, 43px);
  opacity: 0;
  letter-spacing: 0;
  line-height: 1.57;
  -webkit-animation-name: fvTxtAnime;
          animation-name: fvTxtAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 999;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 1024px) {
  .splash__txt {
    font-size: min(11.46vw, 36px);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    line-height: 1.15;
  }
}

@media screen and (min-width: 1800px) {
  .splash__txt {
    font-size: 52px;
  }
}
@-webkit-keyframes fvTxtAnime {
  0% {
    position: fixed;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    position: fixed;
    opacity: 1;
  }
  99% {
    position: fixed;
  }
  100% {
    position: absolute;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes fvTxtAnime {
  0% {
    position: fixed;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    position: fixed;
    opacity: 1;
  }
  99% {
    position: fixed;
  }
  100% {
    position: absolute;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.splash__storeName {
  position: fixed;
  bottom: -1vw;
  left: 50%;
  font-size: 15vw;
  color: #FAFAE2;
  opacity: 0;
  letter-spacing: 0;
  line-height: 1;
  -webkit-animation-name: fvStoreNameAnime;
          animation-name: fvStoreNameAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 999;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 1024px) {
  .splash__storeName {
    bottom: -3vw;
    font-size: 17.13vw;
    letter-spacing: -0.05em;
    margin-left: -1vw;
  }
}

@-webkit-keyframes fvStoreNameAnime {
  0% {
    position: fixed;
    opacity: 0;
    transform: translate(-50%, 50%);
  }
  99% {
    position: fixed;
  }
  100% {
    position: absolute;
    opacity: 0.59;
    transform: translate(-50%, 0);
  }
}

@keyframes fvStoreNameAnime {
  0% {
    position: fixed;
    opacity: 0;
    transform: translate(-50%, 50%);
  }
  99% {
    position: fixed;
  }
  100% {
    position: absolute;
    opacity: 0.59;
    transform: translate(-50%, 0);
  }
}
.fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 100svh;
  }
}

.fv__txt {
  top: 50%;
  left: 50%;
  font-size: min(2.63vw, 43px);
  letter-spacing: 0;
  line-height: 1.57;
  z-index: 9;
  position: absolute;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 1024px) {
  .fv__txt {
    font-size: min(11.46vw, 36px);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    line-height: 1.15;
  }
}



@media screen and (min-width: 1800px) {
  .fv__txt{
    font-size: 52px;
  }
}
.fv__storeName {
  bottom: -3vw;
  left: 50%;
  font-size: 15vw;
  color: #FAFAE2;
  letter-spacing: -0.05em;
  line-height: 1;
  z-index: 9;
  position: absolute;
  opacity: 0.59;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1024px) {
  .fv__storeName {
    bottom: -3vw;
    font-size: 17.13vw;
    letter-spacing: -0.05em;
    margin-left: -1vw;
  }
}

.fvImg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.fvImg__side-l,
.fvImg__side-r {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .fvImg__side-l,
.fvImg__side-r {
    width: 100%;
    height: 50%;
  }
}
.fvImg__side-l::after,
.fvImg__side-r::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.fvImg__side-l img,
.fvImg__side-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  transform: scale(1.5);
  -webkit-animation-name: fvImSizeAnime;
          animation-name: fvImSizeAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fvImg__side-l.noLoading,
.fvImg__side-r.noLoading {
  transform: translate(0, 0);
  -webkit-animation: unset;
          animation: unset;
}

.fvImg__side-l.noLoading img,
.fvImg__side-r.noLoading img {
  -webkit-animation: unset;
          animation: unset;
  scale: 1;
}

.fvImg__side-l {
  -webkit-animation-name: fvImgLeftAnime;
          animation-name: fvImgLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 999;
  transform: translateX(-50%);
  left: 0;
  opacity: 0;

}
@media screen and (min-width: 768px) {
  .fvImg__side-l {
    height: 100vh;
    -webkit-animation-name: fvImgLeftAnime;
            animation-name: fvImgLeftAnime;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    z-index: 999;
    transform: translateX(-50%);
    left: 0;
    opacity: 0;
  }
}
@media screen and (max-width: 1024px) {
  .fvImg__side-l {
    transform: translate(0, -50%);
    -webkit-animation-delay: 2.3s;
            animation-delay: 2.3s;
  }
}
.fvImg__side-l::after {
  background-image: linear-gradient(141deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.02) 100%);
}

@-webkit-keyframes fvImgLeftAnime {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fvImgLeftAnime {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes fvImgLeftAnime {
    0% {
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
  @keyframes fvImgLeftAnime {
    0% {
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
}

@media screen and (max-width: 768px) {
.slick-slider,
.slick-list,
.slick-track{
  height: 100%;
}
}

.fvSlider--left img{
  position: relative;
  transform: scale(1.2);
}
.fvSlider--right img{
  position: relative;
  transform: scale(1.2);
}
.fvImg__side-r {
  -webkit-animation-name: fvImgRightAnime;
          animation-name: fvImgRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 999;
  transform: translateX(50%);
  right: 0;
  opacity: 0;
}
@media screen and (min-width: 768px) {
.fvImg__side-r {
  height: 100vh;
  -webkit-animation-name: fvImgRightAnime;
          animation-name: fvImgRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 999;
  transform: translateX(50%);
  right: 0;
  opacity: 0;
}
}
@media screen and (max-width: 1024px) {
  .fvImg__side-r {
    transform: translate(0, 50%);
    top: unset;
    -webkit-animation-delay: 2.3s;
            animation-delay: 2.3s;
    bottom: 0;
  }
}
.fvImg__side-r::after {
  background-image: linear-gradient(150deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.02) 100%);
}

@-webkit-keyframes fvImgRightAnime {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fvImgRightAnime {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes fvImgRightAnime {
    0% {
      opacity: 0;
      transform: translate(0, 50%);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
  @keyframes fvImgRightAnime {
    0% {
      opacity: 0;
      transform: translate(0, 50%);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
}
/*
@keyframes fvImSizeAnime{
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
*/

@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1.2); /* 拡大率 */
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2); /* 拡大率 */
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.add-animation img{
  -webkit-animation: zoomOut 5s ease-out 0s normal forwards;
          animation: zoomOut 5s ease-out 0s normal forwards;
}

.add-animation img{
  position: relative;
   transform: scale(1.2); /* 拡大率 */
  } 
/*-----------------
コンセプト
-----------------*/
.concept {
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  .concept {
    padding-top: 116px;
  }
}

@media screen and (min-width: 1800px) {
  .concept {
    padding-top: 213px;
  }
}

.conceptHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .conceptHead {
    display: block;
  }
}

.conceptHead__img {
  width: 63.76%;
}
@media screen and (max-width: 1024px) {
  .conceptHead__img {
    width: 100%;
  }
}
@media screen and (min-width: 1800px) {
  .conceptHead__img {
    aspect-ratio: 1 / 0.613;
  }
}

.bl-largeTtl--concept {
  margin-right: -30%;
}
@media screen and (max-width: 1024px) {
  .bl-largeTtl--concept {
    margin-right: auto;
    margin-left: auto;
  }
}


@media screen and (min-width: 1800px) {
  .bl-largeTtl--concept  .bl-largeTtl__en {
    font-size: 120px;
  }

  .bl-largeTtl--concept .bl-largeTtl__ja { 
    font-size: 28px;
  }
}

.conceptContent {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1800px) {
  .conceptContent {
    justify-content: flex-start;
    margin-top: 126px;
  }.bl-largeTtl--concept {
    margin-right: 107px;
  }
}


@media screen and (max-width: 1024px) {
  .conceptContent {
    margin-top: 53px;
    flex-direction: column-reverse;
  }
}

.conceptContent__img {
  width: 37.84%;
}
@media screen and (max-width: 1024px) {
  .conceptContent__img {
    width: 67.17%;
    margin-right: auto;
  }
}

@media screen and (min-width: 1800px) {
  .conceptContent__img {
    width: 39.5%;
    margin-right: 12.5%;
  }
}

.conceptContent__txt {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .conceptContent__txt {
    width: 84.61%;
  }
}

.conceptContent__txt-ttl {
  font-size: min(2.63vw, 45px);
  letter-spacing: 0;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.57;
}
@media screen and (max-width: 1024px) {
  .conceptContent__txt-ttl {
    font-size: min(6.4vw, 48px);
    margin: 50px auto 55px;
    line-height: 1.6;
    text-align: center;
  }
}

.conceptContent__txt-detail {
  font-size: min(1.25vw, 16px);
  letter-spacing: 3px;
  line-height: 2.77;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .conceptContent__txt-detail {
    font-size: min(3.5vw, 26px);
    line-height: 2.14;
    margin: 0 auto 99px;
    width: 100%;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 1800px) {
  .conceptContent__txt-detail {
    font-size: 18px
  }
}
.conceptContent__txt-bgImg {
  position: absolute;
  width: 248px;
  height: auto;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .conceptContent__txt-bgImg {
    width: 45.12%;
    margin-right: -2.82vw;
    bottom: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .oneSide-margin--concept {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1800px) {
  .oneSide-margin--concept{
    width: 90%;
  }
  .oneSide-margin--concept--under{
    width: 80%;
    margin: 0 auto;
    max-width: 1600px;
  }
}
/*-----------------
おすすめメニュー
-----------------*/
.recommend {
  padding-top: 161px;
}
@media screen and (max-width: 1024px) {
  .recommend {
    padding-top: 115px;
  }
}

.recommend__list {
  margin-top: 18.5px;
}
@media screen and (max-width: 1024px) {
  .recommend__list {
    margin-top: 70px;
  }
}
.recommend__list .recommend__item {
  padding: 35.5px 36px 35.5px 0;
  border-bottom: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .recommend__list .recommend__item {
    padding: 0;
    display: block;
    border-bottom: unset;
  }
  .recommend__list .recommend__item:not(:last-of-type) {
    margin-bottom: 67px;
  }
}

.menuImg {
  width: 42%;
}
@media screen and (max-width: 1024px) {
  .menuImg {
    width: 100%;
  }
}

.menuTxt {
  width: 48.9%;
}
@media screen and (max-width: 1024px) {
  .menuTxt {
    width: 84.61%;
    margin: 25.2px auto 0;
  }
}

@media screen and (max-width: 1024px) {
  .name-price-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.menuName {
  font-size: min(2.43vw, 45px);
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .menuName {
    font-size: min(5.89vw, 44px);
  }
}


.menuPrice {
  font-size: min(1.38vw, 30px);
  line-height: 1.75;
  margin: 23px 0;
  vertical-align: bottom;
}
@media screen and (max-width: 1024px) {
  .menuPrice {
    font-size: min(4.1vw, 30px);
  }
}

.menuPrice__tax {
  font-size: min(1.04vw, 22.5px);
  line-height: 2.33;
}
@media screen and (max-width: 1024px) {
  .menuPrice__tax {
    font-size: min(3.07vw, 22px);
  }
}


@media screen and (min-width: 1800px) {
  .menuPrice {
    font-size:20px;
  }
  .menuPrice__tax {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .menuExplain {
    font-size: min(3.07vw, 22px);
  }
}
.menuPdf-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 65.6px auto 0;
}
@media screen and (max-width: 1024px) {
  .menuPdf-btn {
    width: 84.61%;
    margin: 66.7px auto 0;
  }
}
.menuPdf-btn a {
  font-size: min(1.73vw, 18px);
  display: block;
  line-height: 1;
  letter-spacing: 0;
  padding: 25.5px 54px;
  border: 1px solid #FFFFFF;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .menuPdf-btn a {
    padding: 14px 0;
    text-align: center;
    font-size: min(4.1vw, 30px);
  }
}
@media screen and (min-width: 1800px) {
  .menuPdf-btn a {

    font-size: 25px;
  }
}
.menuPdf-btn a:hover {
  transition: all 0.5s;
  background-color: #FFFFFF;
  color: #0B0B0B;
}

/*-----------------
店舗情報
-----------------*/
.access {
  padding-top: 167px;
}
@media screen and (max-width: 1024px) {
  .access {
    padding-top: 130px;
  }
}
@media screen and (min-width: 1800px) {
  .access {
    padding-top: 207px;
  }
}

@media screen and (max-width: 1024px) {
  .oneSide-margin--access {
    width: 100%;
  }
}
.accessContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .accessContent {
    display: block;
  }
}

.accessContent__side-l {
  width: 41.32vw;
}
@media screen and (max-width: 1024px) {
  .accessContent__side-l {
    width: 84.61%;
    margin: 0 auto;
  }
}

.accessContent__storeTable {
  margin-top: 65.3px;
}
@media screen and (max-width: 1024px) {
  .accessContent__storeTable {
    margin-top: 30px;
    width: 100%;
  }
}

.storeTable__row {
  border-bottom: 1px solid #fff;
}

.storeTable__head {
  padding: 11px 0;
  width: min(10vw, 218px);
  font-size: min(1.38vw, 16px);
  letter-spacing: 3px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .storeTable__head {
    width: 32.4%;
    padding: 21px 0;
    font-size: min(3.58vw, 16px);
    line-height: 2.14;
  }
}

.storeTable__data {
  padding: 11px 70px 11px 0;
  letter-spacing: 3px;
  font-size: min(1.38vw, 16px);
  width: min(100% - 1.38vw, 100% - 218px);
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .storeTable__data {
    width: 67.6%;
    padding: 21px 0;
    font-size: min(3.58vw, 26px);
    line-height: 2.14;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 1800px) {
  .storeTable__head {
    font-size: 20px;
  }
  .storeTable__data {
    font-size: 20px;
  }
}


.accessContent__map {
  width: calc(100% - 595px);
  aspect-ratio: 1/0.908;
  max-height: 650px;
}
@media screen and (max-width: 1024px) {
  .accessContent__map {
    width: 100%;
    margin-top: 54px;
    aspect-ratio: 1/0.74;
  }
}

/*-----------------
ご予約
-----------------*/
.reserve {
  padding-top: 122px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .reserve {
    padding-top: 62px;
    width: 84.61%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1800px) {
  .reserve {
    padding-top: 207px;
  }
}
.reserve a {
  display: block;
  padding: 103px 7.75vw 135px 11.68%;
  background-color: #C4C4B1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media screen and (min-width: 1800px) {
  .reserve a {
    display: block;
    padding: 77.7px 7.75vw 41px 11.68%;
    background-color: #C4C4B1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }  
}

@media screen and (max-width: 1024px) {
  .reserve a {
    padding: 6.69vw 6.41vw 13.58vw;
    display: block;
  }
}

.reserve__side-l {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .reserve__side-l {
    margin: 0 auto;
  }
}

.reserveTtl {
  font-size: min(3.54vw, 74.5px);
  line-height: 1;
  color: #0B0B0B;
  margin-bottom: 28px;
}
@media screen and (max-width: 1024px) {
  .reserveTtl {
    font-size: min(7.69vw, 58px);
    margin-bottom: 15px;
    text-align: center;
  }
}

@media screen and (min-width: 1800px) {
  .reserveTtl {
    font-size: 51px;
  }
}

.reserveExplain {
  font-size: min(1.52vw, 25px);
  line-height: 1.5;
  color: #0B0B0B;
}

@media screen and (max-width: 1024px) {
  .reserveExplain {
    font-size: min(3.58vw, 26px);
    text-align: center;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1800px) {
  .reserveExplain {
    font-size: 22px;
  }
}  

.reserve__side-r {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .reserve__side-r {
    margin: 20px auto;
  }
}

.reserveIcon {
  width: 55px;
  height: auto;
  margin-right: 23px;
}
@media screen and (max-width: 1024px) {
  .reserveIcon {
    width: 7.69vw;
    margin-right: 3.07vw;
  }
}

.reserveNum {
  font-size: min(4.722vw, 68px);
  color: #0B0B0B;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .reserveNum {
    font-size: min(9.48vw, 72px);
  }
}
@media screen and (min-width: 1800px) {
  .reserveNum {
    font-size: 68px;
  }
}  
.reserve__decoTxt {
  position: absolute;
  bottom: -10px;
  left: 0;
  color: #FAFAE2;
  opacity: 0.78;
  font-size: 106px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .reserve__decoTxt {
    font-size: 10.76vw;
    bottom: -3px;
  }
}

/*-----------------
お問い合わせ
-----------------*/
.contact {
  padding-top: 64px;
}
@media screen and (max-width: 1024px) {
  .contact {
    padding-top: 24px;
  }
}
.contact a {
  display: block;
  padding: 70px 0 59.5px;
  border: 1px solid #FFFFFF;
  width: 100%;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .contact a {
    padding: 9.82vw 0;
    width: 84.61%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1800px) {
  .contact a {
    padding: 42px 0 31px;
  }
}
.contact a:hover {
  background-color: #FFFFFF;
}
.contact a:hover .contactTtl__en {
  color: #0B0B0B;
}
.contact a:hover .contactTtl__ja {
  color: #0B0B0B;
}

.contactTtl__en {
  font-size: min(4.16vw, 88px);
  line-height: 1;
  color: #FAFAE2;
  letter-spacing: 0;
  margin-bottom: 13px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .contactTtl__en {
    font-size: min(11.5vw, 88px);
    margin-bottom: 5.5px;
    color: #FFFFFF;
  }
}
@media screen and (min-width: 1800px) {
  .contactTtl__en {
    font-size:60px;
  }
  .contactTtl__ja{
    font-size: 29px;
  }
}
.contactTtl__ja {
  font-size: min(2.01vw, 43.5px);
  color: #FFFFFF;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .contactTtl__ja {
    font-size: min(3.84vw, 28px);
  }
}

/*---------------------------
CONTACTページ
---------------------------*/
.pageTtl {
  margin-top: 246px;
}
@media screen and (max-width: 1024px) {
  .pageTtl {
    margin-top: 149px;
  }
}

.pageTtl__ja {
  font-size: min(1.38vw, 28px);
  line-height: 1;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .pageTtl__ja {
    font-size: min(3.84vw, 28px);
  }
}

.pageTtl__en {
  font-size: min(4.166vw, 88px);
  letter-spacing: 0;
  line-height: 1;
  color: #FAFAE2;
  text-align: center;
  margin-bottom: 27px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .pageTtl__en {
    font-size: min(11.5vw, 88px);
  }
}

.contactPage-explain {
  font-size: min(1.04vw, 20.5px);
  line-height: 1.33;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contactPage-explain {
    font-size: min(3.84vw, 28px);
  }
}

.contactForm {
  margin: 68px auto 125px;
  width: 59.4%;
  min-width: 680px;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    margin: 86px auto 115px;
    width: 84.61%;
    min-width: unset;
  }
}

.formDl {
  margin-bottom: 25px;
}
.formDl.formDl-flexStart {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .formDl.formDl-flexStart {
    display: block;
  }
}

.formDt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;
  }
}

.formTtl {
  margin-right: 11px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .formTtl {
    margin-right: 10px;
    font-size: min(3.07vw, 22px);
  }
}

.formRequired {
  font-size: clamp(10px, 0.69vw, 13px);
  padding: 5px 15px;
  line-height: 1;
  color: #0B0B0B;
  border-radius: 13px;
  background-color: #C4C4B1;
}
@media screen and (max-width: 1024px) {
  .formRequired {
    font-size: min(2.56vw, 18px);
  }
}

.formDd {
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .formDd {
    width: 100%;
  }
}

input[type=text],
input[type=email],
textarea {
  padding: 10px 25px;
  background-color: #E2E2E2;
  border-radius: 4px;
  color: #0B0B0B;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 13px 20px;
    font-size: min(3.84vw, 28px);
  }
}

textarea {
  height: 131px;
}

::-moz-placeholder {
  color: #6F6F6F;
}

::placeholder {
  color: #6F6F6F;
}
@media screen and (max-width: 1024px) {
  ::-moz-placeholder {
    font-size: min(3.84vw, 28px);
  }
  ::placeholder {
    font-size: min(3.84vw, 28px);
  }
}

input[type=checkbox] {
  position: relative;
  width: 13px;
  height: 13px;
  background-color: #FFFFFF;
  border-radius: 2px;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #0B0B0B;
  border-bottom: 2px solid #0B0B0B;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 41px auto 38px;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .privacy-wrap {
    font-size: min(3.07vw, 22px);
  }
}

.form--policyLink {
  text-decoration: underline;
}

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.submitBtn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(1.38vw, 18px);
  letter-spacing: 0.05em;
  padding: 16.5px 81.5px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  line-height: 1;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .submitBtn {
    padding: 16.5px 0;
    width: 84.6vw;
    font-size: min(5.12vw, 38px);
    text-align: center;
    border: 1px solid #fff;
    display: block;
  }
}
.submitBtn:hover {
  transition: all 0.5s;
  background-color: #FFFFFF;
  color: #0B0B0B;
}

.submitBtn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.submitBtn-wrap .submitBtn {
  padding: 16.5px 0;
  width: 218px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .submitBtn-wrap .submitBtn {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .submitBtn-wrap {
    display: block;
  }
}
.submitBtn-wrap .submit {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .submitBtn-wrap .submit {
    margin: 0 auto;
    width: 100%;
  }
}
.submitBtn-wrap .submit:first-child {
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .submitBtn-wrap .submit:first-child {
    margin-bottom: 30px;
    margin-right: auto;
  }
}

.bl-btn--thanks {
  margin: 52px auto 136px;
}

input[type=button] {
  font-size: min(1.38vw, 18px);
  letter-spacing: 0.05em;
  padding: 16.5px 81.5px;
  line-height: 1;
  display: block;
  border: 1px solid #FFFFFF;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  input[type=button] {
    font-size: min(5.12vw, 38px);
  }
}
input[type=button]:hover {
  background-color: #FFFFFF;
  color: #0B0B0B;
  transition: all 0.5s;
}

.privacyPolicy-all {
  margin: 200px auto;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .privacyPolicy-all {
    width: 84.6%;
    margin: 100px auto;
  }
}

@media screen and (min-width: 768px) {
  .fvSlider {
    height: 100vh;
  }
  .slick-list {
    height: 100vh;
  }
  .slick-track{
    height: 100vh;
  }
}
/*# sourceMappingURL=style.css.map */