@charset "UTF-8";
/*============================
general
============================*/

/*============================
#site_header
============================*/


/*============================
#site_common
============================*/
 
/*============================
#site_footer
============================*/


/*============================
Liquid
============================*/

@media (max-width:1200px)  {


/*============================
#site_header
============================*/

/*============================
#site_common
============================*/

/*============================
#site_footer
============================*/

/*============================
Smartphone
============================*/

@media (max-width:769px){


/*============================
#site_header
============================*/

/*============================
#site_common
============================*/

  #fixed_area .inner .reservation_block .reservation_timeBlock  .reservation_tel li {
    font-size: min(calc(24/750*100vw),24px);
    letter-spacing: min(calc(8/750*100vw),8px);
  }
  #fixed_area .inner .reservation_block .reservation_timeBlock  .reservation_tel li:nth-of-type(1) {
    letter-spacing: 0;
  }

  #fixed_area .inner .reservation_block .reservation_timeBlock  .reservation_tel li span {
    letter-spacing: min(calc(8/750*100vw),8px);
  }
  #fixed_area .reservation_linkBlock li a p {
  letter-spacing: 0;
}
  #fixed_area .reservation_linkBlock li p:after {
    top:50%;
    right:8%;
  }
  #fixed_area .reservation_linkBlock li p:hover:after {
    top:50%;
    right:10%;
  }
  #fixed_area .reservation_linkBlock li p span {
    font-size: min(calc(24/750*100vw),24px);
    font-weight: 200;
    letter-spacing: 0;
  }
  
/*============================
#site_footer
============================*/
#site_footer {
  padding: 15px 0;
}
#site_footer .footer_inner {
  width: 100%;
  margin: 0 auto;
  padding:0;
  display: flex;
  justify-content: space-between;
}
#site_footer .footer_main {
}

#site_footer .footer_sns {
  margin: 0 0 15px;
  padding-left: calc(40/750*100%);
}
#site_footer .footer_sns ul li {
  width: 30px;
}
#site_footer .copy_wrap {
  padding: 15px calc(40/750*100%) 0;
}
#site_footer .copy {
  font-size:  min(calc(22/786*100vw),22px);
  text-align: left;
  line-height: 166%;
  margin-top: min(calc(100/786*100vw),100px);
}


}  


/* ---------------------------------------------
 アニメーション
--------------------------------------------- */
/* アニメーション共通 */
.io {
  transition: all 1s ease;
}

.io_slideShow {
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
.io_slideShow.is_active {
  -webkit-animation: slideShow .8s ease-in-out forwards;
  animation: slideShow .8s ease-in-out forwards;
}

@-webkit-keyframes slideShow {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

@keyframes slideShow {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.io_slideShow_ver {
  overflow: hidden;
  -webkit-clip-path:  inset(0 0 100% 0);
  clip-path:  inset(0 0 100% 0);
}
.io_slideShow_ver.is_active {
  -webkit-animation: slideShow_ver .8s ease-in-out forwards;
  animation: slideShow_ver .8s ease-in-out forwards;
}

@-webkit-keyframes slideShow_ver {
  0% {
    /* 上端を100%クリップして画面外（非表示）にする */
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    /* 全方向のクリップを解除して完全表示 */
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

.io_slideShow_ver_down {
  overflow: hidden;
  -webkit-clip-path:  inset(0 0 100% 0);
  clip-path:  inset(0 0 100% 0);
}
.io_slideShow_ver_down.is_active {
  -webkit-animation: slideShow_ver_down .8s ease-in-out forwards;
  animation: slideShow_ver_down .8s ease-in-out forwards;
}

@-webkit-keyframes slideShow_ver_down {
  0% {
    /* 上端を100%クリップして画面外（非表示）にする */
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    /* 全方向のクリップを解除して完全表示 */
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}



/* fade-in
-------------------- */
.io_fadeUp {
  opacity: 0;
  transition-delay: .5s !important;
}

.io_fadeUp.is_active {
  opacity: 1;
}


/* fade-up
-------------------- */
.io_fadeUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.io_fadeUp.is_active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* fade-down
-------------------- */
.io_fadeDown {
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.io_fadeDown.is_active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}




/* -----------------------------------------
  ディレイ
----------------------------------------- */
.anime-delay-100 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.anime-delay-200 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.anime-delay-300 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.anime-delay-400 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.anime-delay-500 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}

.anime-delay-600 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.anime-delay-700 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}

.anime-delay-800 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
  transition-delay: 0.8s !important;
}

.anime-delay-900 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.anime-delay-1000 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
  transition-delay: 1s !important;
}


.anime-delay-1100 {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
  transition-delay: 1.1s !important;
}

.anime-delay-1200 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.anime-delay-1300 {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}

.anime-delay-1400 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
  transition-delay: 1.4s !important;
}

.anime-delay-1500 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.anime-delay-1600 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}

.anime-delay-1700 {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
  transition-delay: 1.7s !important;
}

.anime-delay-1800 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
  transition-delay: 1.8s !important;
}

.anime-delay-1900 {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}

.anime-delay-2000 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
  transition-delay: 2s !important;
}
.anime-delay-2100 {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
  transition-delay: 2.1s !important;
}
.anime-delay-2200 {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
  transition-delay: 2.2s !important;
}
