@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}
:root {
  --hero-h: 100vh;
}
html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
section {
  display: flow-root;
}
/* ====================================== */
/* COMMON   */
/* ====================================== */
body, html {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background: #dbcdc6;
  color: #340C0C;
  font-weight: 400;
}
.en {
  font-family: "europa", sans-serif;
}
h2.en {
  text-align: center;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
.cf {
  zoom: 1;
}
.table {
  width: 100%;
  height: 100%;
  display: table;
}
.table-cell {
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}
.spOnly {
  display: block !important;
}
.pcOnly {
  display: none !important;
}
.st0 {
  fill: #808B4C;
}
.pd-sec {
  margin: 40px 20px;
  position: relative;
  z-index: 1;
}
.pd-sec img {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  margin: 0 auto 10px auto;
}
.logo:focus {
  outline: none;
}
.logo:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.6);
  outline-offset: 6px;
  border-radius: 6px;
}
.bg-purple {
  background: #522a44;
}
.bg-beige {
  background: #dbcdc6;
}

@media only screen and (min-width: 768px) {
  h2.en {
    font-size: 21px;
    text-transform: uppercase;
  }
  .pd-sec {
    margin: 80px 50px;
  }
  .spOnly {
    display: none !important;
  }
  .pcOnly {
    display: block !important;
  }
}
@media only screen and (min-width: 940px) {
  .pd-sec {
    margin: 100px auto;
    max-width: 1081px;
  }
}

/* ====================================== */
/* loading   */
/* ====================================== */
#progress-page {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#progress-page.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loader {
  width: 46px;
  height: 46px;
  animation: loaderRotate 1s linear infinite;
}

#loader svg {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes loaderRotate {
  to {
    transform: rotate(360deg);
  }
}


/* ====================================== */
/* Navi   */
/* ====================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 70px;
  overflow: hidden;
  z-index: 999;
  transition: 1s;
}
body.scrolled header {
  background: rgba(0, 0, 0, 0.18);
}
header .section-inner {
  height: 100%;
}
header .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
header .logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 20px);
  top: 15px;
  width: 130px;
  height: 32px;
  z-index: 100;
  transition: all 1.8s ease;
  opacity: 0;
}
body.loaded header .logo {
  transform: translate(-50%, 0);
  opacity: 1;
}
header .logo svg {
  width: 100%;
  height: 100%;
  fill: #dbcdc6;
}
header .NavHolder {
  position: fixed;
  z-index: 901;
  background: rgba(80, 40, 70, 0.9);
  backdrop-filter: blur(5px);
  inset: 0;
  width: 100%;
  transform: translate3d(0, -100%, 0);
  transition: margin 666ms cubic-bezier(.666, 0, .333, 1), transform 666ms cubic-bezier(.666, 0, .333, 1);
}
header .NavHolder .mainNav {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
header .NavHolder .mainNav .navlist {
  padding: 20px 50px;
}
header .NavHolder .mainNav .navlist li {
  position: relative;
  display: block;
  border-bottom: 1px dotted rgba(240, 240, 230, 0.3);
  opacity: 0;
  transition: opacity .45s ease-in-out;
}
header .NavHolder .mainNav .navlist li a {
  display: block;
  position: relative;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 300;
  overflow: hidden;
  margin: 0;
  padding: 18px 0;
  width: 100%;
  text-transform: uppercase;
  transition: color .25s ease-in-out;
  color: #d0dfdc;
  letter-spacing: 1px;
  font-weight: 400;
}
header .NavHolder .mainNav .navlist li a span {
  font-size: 0.7rem;
  color: #d0dfdc;
  letter-spacing: 1px;
  padding-left: 10px;
}
header .icon-blank {
  width: 10px;
  margin-left: 10px;
  fill: #d0dfdc;
}
.show header {
  height: 100%;
}
.show header .NavHolder {
  transform: translate3d(0%, 0, 0);
}
.show header .NavHolder::-webkit-scrollbar {
  background: #fff;
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.show header .NavHolder .mainNav .navlist li {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}
@media (max-width: 959px) {
  header .pc-logo {
    display: block;
    position: absolute;
    top: 25px;
    width: 140px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .pc-logo svg {
    width: 100%;
    fill: #d0dfdc;
  }
  header .list-right {
    position: absolute;
    top: 110px;
    width: 100%;
    max-width: 470px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.NavBtn {
  position: fixed;
  height: 50px;
  width: 50px;
  z-index: 905;
  /*  background: rgba(80,40,70,0.9);*/
  top: 0.7rem;
  right: 0.7rem;
  border-radius: 50%;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.8s ease;
  /*  border-bottom: 1px solid rgba(1, 1, 1, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0,0,0,0.2);
backdrop-filter: blur(1px);*/
}
body.loaded .NavBtn {
  transform: translateY(0);
  opacity: 1;
}
.NavBtn .nav-trigger .hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.0rem;
  cursor: pointer;
}
.NavBtn .nav-trigger .hamburger .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  transform: translate3d(0, 0%, 0);
  transition: width 222ms cubic-bezier(.215, .61, .355, 1)444ms, margin-top 222ms cubic-bezier(.215, .61, .355, 1)222ms, transform 222ms cubic-bezier(.215, .61, .355, 1)222ms;
}
.NavBtn .nav-trigger .hamburger .line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #dbcdc6;
  transform: rotate(0)translate3d(0, 0, 0);
  transition: transform 222ms cubic-bezier(.215, .61, .355, 1);
}
.NavBtn .nav-trigger .hamburger .line:nth-child(2) {
  width: 100%;
  margin-top: -1px;
  transform: translate3d(0, 50%, 0);
}
.NavBtn .nav-trigger .hamburger .line:nth-child(3) {
  width: 100%;
  margin-top: -2px;
  transform: translate3d(0, 100%, 0);
}
.NavBtn .nav-trigger .hamburger .line:nth-child(3) span {
  visibility: visible;
  transition: visibility linear 222ms;
}
.show .NavBtn .nav-trigger .hamburger .line {
  margin-top: -1px;
  width: 100%;
  transform: translate3d(0, 50%, 0);
  transition: width 222ms cubic-bezier(.215, .61, .355, 1), margin-top 222ms cubic-bezier(.215, .61, .355, 1)222ms, transform 222ms cubic-bezier(.215, .61, .355, 1)222ms;
}
.show .NavBtn .nav-trigger .hamburger .line span {
  transition: transform 222ms cubic-bezier(.215, .61, .355, 1)444ms;
  background: #d0dfdc;
}
.show .NavBtn .nav-trigger .hamburger .line:nth-child(1) span {
  transform: rotate(65deg)translate3d(0, 0, 0);
  left: 1px;
}
.show .NavBtn .nav-trigger .hamburger .line:nth-child(2) span {
  transform: rotate(-65deg)translate3d(0, 0, 0);
  left: -1px;
}
.show .NavBtn .nav-trigger .hamburger .line:nth-child(3) span {
  visibility: hidden;
  transition: visibility linear 444ms;
}

@media (min-width: 768px) {
  header {
    height: 85px;
  }
  header .logo {
    top: 21px;
    width: 180px;
    height: 50px;
  }
  .NavBtn {
    top: 1.3rem;
    right: 2rem;
  }
  .NavBtn .nav-trigger .hamburger {
    width: 3.0rem;
  }
}
@media (min-width: 960px) {
  header .NavHolder .mainNav {
    top: 0;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }
  header .NavHolder .list-right {
    width: 50%;
    margin: 0 30px;
  }
  header .NavHolder .mainNav .navlist li a:hover {
    color: #8C7373;
  }
  header .NavHolder .mainNav .lang li a:hover {
    color: #8C7373;
  }
  header .NavHolder .mainNav .navlist {
    padding: 20px 50px;
  }
  header .pc-logo {
    display: grid;
    place-items: center;
    margin-bottom: 90px;
    margin: 0 30px;
  }
  header .pc-logo svg {
    width: 70%;
    height: auto;
    fill: #d0dfdc;
  }
}
/* ====================================== */
/* FLEXBOX   */
/* ====================================== */
.flex {
  display: flex;
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .flex-pc-row {
    flex-direction: row;
  }
}
.flex_item-50 {
  flex: 1 1 48%;
}
@media only screen and (min-width: 768px) {
  .flex_item-pc-25 {
    flex: 1 1 24%;
  }
  .flex_item-pc-40 {
    flex: 1 1 39%;
  }
  .flex_item-pc-50 {
    flex: 1 1 49%;
  }
  .flex_item-pc-60 {
    flex: 1 1 59%;
  }
  .flex_item-pc-100 {
    flex: 1 1 99%;
  }
}
/* ====================================== */
/* FOOTER   */
/* ====================================== */
footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 60px;
  z-index: 0;
}
footer .logo {
  position: relative;
  margin: 0;
  width: 150px;
  height: 22px;
  display: block;
  z-index: 2;
}
footer .logo svg {
  width: 100%;
  height: 100%;
  display: block;
}
footer .foot-nav {
  position: relative;
  display: block;
  width: 100%;
  margin: 20px 0 0;
  border-top: 1px solid #dcdcdc;
  border-bottom: 2px solid #eee;
}
footer .foot-nav .col h3 {
  margin-bottom: 15px;
  font-size: 15px;
}
footer .foot-nav .col p {
  margin: 10px 0;
}
footer .foot-bottom {
  display: block;
  margin-top: 30px;
}
footer .foot-bottom p.copy {
  font-size: 12px;
  line-height: 40px;
  float: left;
  letter-spacing: 1px;
  color: #340C0C;
}
@media (min-width: 768px) {
  footer {
    padding: 80px 0;
  }
  footer .logo {
    width: 200px;
    height: 30px;
  }
  footer .foot-bottom p.copy {
    font-size: 13px;
    line-height: 42px;
  }
}
/* ====================================== */
/* HERO  */
/* ====================================== */
.fv {
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(var(--hero-h) - 30px);
}
body.loaded .fv {
  opacity: 1;
}
.fv-logo {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.8s ease;
  width: 150px;
  height: auto;
}
.fv-logo img {
  width: 100%;
}
body.loaded .fv-logo {
  transform: translateY(0);
  opacity: 1;
}
.fv-date {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.8s ease;
  transition-delay: 0.2s;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
}
body.loaded .fv-date {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .fv-date {
    font-size: 1rem;
  }
  .fv-logo {
    width: 250px;
  }
}

.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: var(--hero-h);
  min-height: var(--hero-h);
  max-height: var(--hero-h);
  opacity: 0;
}

body.loaded .hero {
  opacity: 1;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-swiper {
  position: absolute;
  inset: 0;
}

.hero-swiper picture,
.hero-swiper img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-swiper img {
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7.5s linear;
  will-change: transform;
}

.hero-swiper .swiper-slide-active img,
.hero-swiper .swiper-slide-duplicate-active img {
  transform: scale(1);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
}


.hero .hero-logo {
  transform: translateY(80px);
  transition: all 2.8s ease;
  width: 35%;
  max-width: 200px;
  margin-top: 110px;
  height: auto;
}
.hero .hero-logo img {
  width: 100%;
}
body.loaded .hero-logo {
  transform: translateY(0);
  opacity: 1;
}
.hero-date {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.8s ease;
  transition-delay: 0.2s;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
}
body.loaded .hero-date {
  transform: translateY(0);
  opacity: 1;
}

.bg-black-b {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.bg-black-b {
  width: 100%;
  height: 15%;
  background: -moz-linear-gradient(bottom, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.75) 100%);
  background: -webkit-linear-gradient(bottom, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(to top, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000'', endColorstr='#00000000, GradientType=0)
}
@media (min-width: 768px) {
  .hero .hero-logo {
    width: 200px;
  }
  .hero-date {
    font-size: 1rem;
  }
  .hero-logo {
    width: 250px;
  }
}
/* ====================================== */
/* ABOUT AREA   */
/* ====================================== */
.about {
  padding: 30px 0 150px;
  position: relative;
  color: #dbcdc6;
  /*margin-top: 80px;*/
}
.about_area {
  margin: 0 auto;
  padding-top: 80px;
}

.about_area_txt-catch {
  font-size: 18px;
  letter-spacing: 1px;
  padding: 15px 0 30px;
  line-height: 1;
  text-align: center;
}
.about_area_txt-p {
  font-size: 12px;
  line-height: 2.2;
  text-align: left;
  letter-spacing: 2px;
}
.about_area_txt-p.ta-center {
  text-align: center;
  margin-top: 50px;
}
.about_area_img {
  border-radius: 15px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .about_area {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 940px) {
  .about_area {
    padding: 80px 95px 0;
    max-width: 1180px;
  }
  .about_area .pd-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .about_area_txt-p.ta-center {
    margin-top: 0;
  }
  .about_area_img {
    width: 55%;
    max-width: 550px;
  }
  .about_area_txt {
    width: 40%;
  }
  .about_area_txt-p {
    line-height: 2.3;
    font-size: 13px;
  }
  .about_area_txt-catch {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1080px) {
  /*  .about_area {
    padding: 0;
  }*/
  .about_area_txt-p {
    line-height: 2;
  }
  /*  .about_area_txt-catch {
    padding-top: 25px;
  }*/
}
/* ====================================== */
/* CHEF AREA   */
/* ====================================== */
  .chef_area .pd-sec {
    margin: 40px 10% 0;
  }
  .chef_area_line {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }
  .chef_area_line::before {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(180, 130, 125, 0.7);
    position: absolute;
    top: 0;
  }
  .chef_area_line::after {
    content: "";
    width: 22%;
    height: 16px;
    background: #522a44;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .chef_area_line span {
    position: absolute;
    width: 20%;
    height: 1px;
    background: #b4857d;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .chef_area_img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
    padding: 50px 0 0;
  }
  .chef_area_img .img-wrap {
    margin: 0;
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }
  .chef_area_img .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .chef_area_txt-name {
    text-align: center;
    font-size: 18px;
    letter-spacing: 4px;
    padding: 30px 0 20px;
  }
  .chef_area_txt-name span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
  }
  .chef_area_txt-p {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 2px;
    padding-bottom: 30px;
  }
  .justin .chef_area_img .img-wrap {
    width: 100px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
  }
  .justin .chef_area_txt-name {
    font-size: 15px;
  }
  .justin .chef_area_txt-name span {
    margin-bottom: 5px;
    font-weight: 400;
  }

@media only screen and (min-width: 768px) {
  .chef_area .pd-sec {
    margin: 80px 50px 0;
  }
  .chef_area_img .img-wrap {
    max-width: 550px;
  }
  .chef_area_img {
    padding-top: 60px;
    max-width: 600px;
  }
  .chef_area_txt-p {
    padding-bottom: 60px;
    width: 648px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 940px) {
  .chef_area {
    padding: 0 30px;
  }
  .chef_area .pd-sec {
    margin: 100px auto 0;
  }
  .chef_area_txt-p {
    line-height: 2.3;
    font-size: 13px;
  }
}

/* ====================================== */
/* MENU AREA   */
/* ====================================== */
.menu .pd-sec {
  margin:50px 10% ;
}
.menu .chef_area_txt-p {
    padding-bottom: 10px;
}
.btn-area {
  padding: 0;
  max-width: 330px;
  margin: 0 auto;
  text-align: center;
}
.btn-premium {
  display: inline-flex;
  align-items: center;
  padding: 1.8rem 2.3rem;
  margin-bottom: 2rem;
  border: 1px solid #340C0C;
  font-size: 9px;
  font-weight: 300;
  color: #340C0C;
  text-decoration: none;
  transition: 0.5s ease;
  width: 100%;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  text-transform: uppercase;
  padding-left: calc(1.8rem + 65px);
}
.btn-premium::after {
  position: absolute;
  background: rgba(80, 40, 70, 0.9);
  width: 75px;
  height: 75px;
  content: "";
  right: -1px;
  transition: 0.5s ease;
  border-radius: 50%;
  transform: scale(.9);
}
.btn-premium:hover::after {
  transform: scale(1);
  background: #b5867e;
}
.btn-premium .btn-icon {
  font-size: 3rem;
  font-weight: 100;
  margin-right: 2.8rem;
  color: rgba(0, 10, 40, 0.1);
  line-height: 2rem;
  margin-bottom: 0;
  transition: .5s;
}
.btn-premium .btn-text {
  font-size: 0.7rem;
  color: #340C0C;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: left;
  transition: .3s;
  position: relative;
  z-index: 1;
}
.btn-premium .btn-arrow {
  display: inline-block;
  width: 9.5px;
  height: 18px;
  position: absolute;
  right: 30px;
  z-index: 1;
}
.btn-premium .btn-out {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 30px;
  z-index: 1;
}
.btn-premium .btn-out svg {
  fill: #dbcdc6;
  width: 100%;
  height: auto;
}
.btn-premium .btn-arrow::before, .btn-premium .btn-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 5px;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transform-origin: calc(100% - 0.5px) 50%;
}
.btn-premium .btn-arrow::before {
  transform: rotate(45deg);
}
.btn-premium .btn-arrow::after {
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  .menu .pd-sec {
    margin: 80px 50px;
  }
	.btn-premium {
	  padding: 1.5rem 2.3rem;
	  padding-left: calc(1.8rem + 65px);
	}
	.btn-premium::after {
	  width: 63px;
	  height: 63px;
	  right: 0px;
	}
	.btn-premium:hover {
	border: 1px solid #340C0C; 
	  background: rgba(80,40,70,0.9);
	}
	.btn-premium:hover .btn-text{color:#dbcdc6;}
	.btn-premium:hover::after {
	  transform: scale(0.9);
	  background: #dbcdc6;
	}
	.btn-premium:hover .btn-out svg {
	  fill: #340C0C;
	}
	.btn-premium .btn-out{right: 24px;}
}
@media only screen and (min-width: 940px) {
  .menu .pd-sec {
    margin: 100px auto 100px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-premium {
    padding: 20px 2.3rem;
    width: 80%;
  }
  .btn-premium::after {
    width: 58px;
    height: 58px;
  }
  .btn-premium .btn-out {
    right: 20px;
  }
}


/* ====================================== */
/* RESERVATIONOS AREA   */
/* ====================================== */
.reservations {
  color:#dbcdc6;
}
.reservations .pd-sec {
  margin:50px 10% ;
}
.reservations .chef_area_txt-p {
    padding-bottom: 10px;
}
.reservations .btn-premium {
  border: 1px solid #dbcdc6;
  color: #dbcdc6;
  width:95%;
}
.reservations .btn-premium::after {
  background: #dbcdc6;
}
.reservations .btn-premium .btn-icon {
  color: rgba(0, 10, 40, 0.1);
}
.reservations .btn-premium .btn-text {
  color:#dbcdc6;
}
.reservations .btn-premium .btn-out {
    width: 18px;
    height: 18px;
	}
.reservations .btn-premium .btn-out svg {
  fill: #522a44;
}
.reservations .btn-premium .btn-arrow::before, .reservations .btn-premium .btn-arrow::after {
  background-color: #FFF;
}
@media only screen and (min-width: 768px) {
  .reservations .pd-sec {
    margin: 80px 50px;
  }
  .reservations .chef_area_txt-p {
    padding-bottom: 30px;
}
  .reservations .btn-premium {
  padding-left: calc(1.8rem + 35px);
  }
.reservations .btn-premium .btn-out {
    width: 22px;
    height: 22px;
	right: 21px;
	}
  .reservations .btn-premium:hover {
	  background: rgba(220,205,200,0.9);
	}
  .reservations .btn-premium:hover .btn-text{color: #340C0C;}
  .reservations .btn-premium:hover::after {
	  transform: scale(0.9);
	  background: rgba(80,40,70,0.9);
	}
  .reservations .btn-premium:hover .btn-out svg {
	  fill: #dbcdc6;
	}
}
@media only screen and (min-width: 940px) {
  .reservations .pd-sec {
    margin: 100px auto 100px;
  }
}
@media only screen and (max-width: 767px) {
  .reservations .btn-premium .btn-out {
    right: 18px;
  }
}

/* ====================================== */
/* GALLERY AREA   */
/* ====================================== */
.gallery {
  /*  max-width: 800px;*/
  margin: 0 auto 100px;
  overflow: hidden;
}
.gallery .swiper {
  width: 100%;
}
.gallery .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery .swiper .swiper-slide {
  max-width: 600px;
  border-radius: 15px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.gallery .swiper .swiper-slide a {
  display: block;
  position: relative;
}
.gallery .swiper .swiper-slide.swiper-slide-active img {
  opacity: 1;
}
.gallery .thumb-swiper {
  padding-top: 40px;
  margin: 0 auto;
}
.gallery .thumb-swiper .swiper-slide {
  width: 70px;
  height: 70px;
  cursor: pointer;
  border-radius: 50%;
  /*  opacity: 0.3;*/
  overflow: hidden;
}
.gallery .thumb-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .thumb-swiper .swiper-slide-thumb-active {
  /*opacity: 1;*/
  background: rgba(80, 40, 70, 0.9);
}
.gallery .thumb-swiper .swiper-slide-thumb-active img {
  opacity: 0.4 !important;
}
.gallery .swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}
/* 共通スタイル */
.gallery .button-wrap {
  max-width: 600px;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.gallery .swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  position: absolute;
}
/* 矢印作 */
.gallery .swiper-button-next::before, .swiper-button-prev::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
/* → */
.gallery .swiper-button-next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}
/* ← */
.gallery .swiper-button-prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}
.gallery .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -15px);
}
.gallery .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -15px);
}

@media only screen and (min-width: 768px) {
.gallery .pd-sec{
  max-width: none;
}
.gallery .thumb-swiper .swiper-slide {
    width: 100px;
    height: 100px;
    transition: .5s;
    background: rgba(20, 0, 10, 1);
  }
.gallery .thumb-swiper .swiper-slide img {
    transition: .5s;
  }
 .gallery .thumb-swiper .swiper-slide img:hover {
    opacity: 0.5;
  }
.gallery .swiper-button-next {
		right: var(--swiper-navigation-sides-offset, -65px);
	}
.gallery .swiper-button-prev {
		left: var(--swiper-navigation-sides-offset, -65px);
	}
.gallery .swiper-button-next, .swiper-button-prev {
	  width: 60px;
	  height: 60px;
	}
.gallery .swiper-button-next::before, .swiper-button-prev::before{
		width: 10px;
		height: 10px;
		}
	
}
@media only screen and (max-width: 767px) {
.gallery .swiper{overflow: visible;}
}

/* ====================================== */
/* INFO AREA   */
/* ====================================== */
.info {
  overflow: hidden;
  padding-bottom: 100px;
  background: #522a44;
  color: #d0dfdc;
}
.info .pd-sec {
  position: relative;
}
.info .address {
  font-size: 0.9rem;
  line-height: 2rem;
  margin-bottom: 10px;
}
.info h3 {
  margin-bottom: 40px;
}
.info p .t {
  display: inline-block;
  font-size: 15px;
  margin-right: 5px;
}
.info p a {
  text-decoration: underline;
}
.info table {
  width: 100%;
}
.info td, .info th {
  border-top: 1px dotted rgba(215, 230, 220, 0.3);
  padding: 20px 0;
  font-weight: 400;
}
.info th {
  padding: 10px;
  font-size: 12px;
}
.info td {
  font-size: 12px;
  text-align: left;
  line-height: 1.8;
  font-weight: 300;
}
.map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.9;
  width: 100%;
}
.info .map {
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 30px;
  background: rgba(100, 210, 250, 0.3);
}
.info .icon-blank {
  width: 10px;
  margin-left: 10px;
  fill: rgba(215, 230, 220, 1);
}
@media (max-width: 767px) {
  .info tr, .info td, .info th {
    display: block;
    border-bottom: none;
  }
  .info table {
    border-bottom: 1px solid rgba(215, 230, 220, 0.3);
    width: 100%;
    margin-bottom: 30px;
  }
  .info th {
    border-top: 1px solid rgba(215, 230, 220, 0.3);
  }
  .info .reservation {
    font-size: 12px;
    margin: 60px 0;
  }
}
@media (min-width: 768px) {
  .info td, .info th {
    border-top: 1px solid rgba(215, 230, 220, 0.3);
    padding: 17px;
    font-weight: 400;
  }
  .info th {
    width: 85px;
    font-size: 12px;
    border-top: 1px solid rgba(215, 230, 220, 0.5);
  }
  .info td {
    font-size: 12px;
  }
  .info .pd-sec {
    margin: 100px auto 0;
    max-width: 600px;
  }
}
/*.info_area_top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.info_area_logo {
  position: relative;
  display: inline-block;
}
.info_area_logo-svg {
  width: 87px;
  height: 63px;
  position: relative;
}
#ez-map {
  min-height: 150px;
  min-width: 150px;
  height: 260px;
  width: 100%;
}
.info_area_box {
  border: 1px solid #444;
  border-bottom: none;
  border-right: none;
}
.info_area_box:nth-child(2n+1) {
  border-left: none;
}
.info_area_box-ttl {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 20px 0 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.info_area_box-p {
  padding: 20px 0;
  margin: 0 10px;
  font-size: 11px;
  border-top: 1px solid #cacaca;
  min-height: 150px;
  text-align: left;
}
.info_area_box-p a:not([href^=tel]) {
  background: rgba(190.60, 30, 0.9);
  color: #FFF;
  -webkit-transition: all ease .8s;
  -moz-transition: all ease .8s;
  -ms-transition: all ease .8s;
  -o-transition: all ease .8s;
  transition: all ease .8s;
  margin-top: 8px;
  display: block;
  line-height: 1;
  padding: 7px 14px 7px;
  text-align: center;
}
.info_area_box-p a.takeout:not([href^=tel]) {
  background: #eee;
  color: #253152;
}
.info_area_box-p a:hover {
  background: #eee;
  color: rgba(40, 70, 40, 0.9);
}
.info_area_icon {
  width: 30px;
  display: block;
  margin: 0 auto;
  padding-bottom: 20px;
}
.info_area_map {
  border-top: 1px solid #444;
}
.info_area_map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.8;
  width: 100%;
}
.info_area_box.last-box {
  border-left: none;
}
.pd-sec .info_area_logo-svg {
  width: 27%;
  margin: 25% auto;
}
@media only screen and (min-width: 768px) {
  .info_area_box {
    width: 25%;
    min-height: 384px;
  }
  .info_area_box:nth-child(2n+1) {
    border-left: 1px solid #444;
  }
  .info_area_box:first-child {
    border-left: none;
  }
  .info_area_box-p {
    margin: 0 30px;
    font-size: 0.8rem;
  }
  .info_area_box.last-box {
    border-left: 1px solid #444;
  }
  .pd-sec .info_area_logo-svg {
    width: 150px;
    margin: 15% auto;
  }
}
@media only screen and (min-width: 940px) {
  .info_area {
    padding: 0 30px;
  }
  .info_area_box-p {
    min-height: 120px;
  }
}
@media only screen and (min-width:1024px) {
  .info_area_box {
    width: 25%;
    min-height: 353px;
  }
}
*/
.tip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  line-height: 2;
  width: 100%;
}
.tip .bottom_line {
  position: relative;
  display: inline-block;
  border-bottom: dotted 2px #b4857d;
}
.tip .bottom_line.infoarea {
  background: #b4857d;
  color: #FFF;
  -webkit-transition: all ease .8s;
  -moz-transition: all ease .8s;
  -ms-transition: all ease .8s;
  -o-transition: all ease .8s;
  transition: all ease .8s;
  margin-top: 8px;
  display: inline-block;
  line-height: 1;
  padding: 7px 14px 2px;
}
.tip .tiptext {
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 0;
  visibility: hidden;
  width: auto; /*white-space: nowrap;*/ padding: 0.3em 0.5em;
  transition: opacity 1s;
  opacity: 0;
  color: #dbcdc6;
  border-radius: 4px;
  background-color: #b4857d;
}
.tip .tiptext::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: ' ';
  border: 5px solid transparent;
  border-top-color: #b4857d;
}
.tip:hover .tiptext {
  visibility: visible;
  opacity: 1;
}
.tip:hover .tiptext:hover {
  display: none;
}
.tip sup {
  font-size: 0.7em;
  vertical-align: top;
  position: relative;
  top: 0.8em;
  color: #b4857d;
}
/* ====================================== */
/* bottom icon box   */
/* ====================================== */
.bottom-icon {
  clip-path: inset(0 0 0 0);
  height: 55px;
  position: fixed;
  z-index: 899;
  /*background: rgba(80,40,70,0.9);*/
  width: 90%;
  border-radius: 35px;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 20px);
  opacity: 0;
  transition: all 1.8s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(1, 1, 1, 0.2);
  backdrop-filter: blur(1px);
  background: rgba(0, 0, 0, 0.2);
}
body.loaded .bottom-icon {
  transform: translate(-50%, 0);
  opacity: 1;
}
.bottom-icon ul {
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex-direction: row-reverse;
  align-items: center;
}
.bottom-icon li {
  position: relative;
  display: inline-block;
  transition: color .3s linear 0s;
  cursor: pointer;
}
.bottom-icon a {
  font-weight: 400;
  text-decoration: none;
  position: relative;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /*background: rgba(255,255,255,0.6);*/
  /*border: 1px solid rgba(1,1,1,0.05);*/
  transition: all 0.2s ease;
}
.bottom-icon a span {
  display: inline-block;
  transition: transform 0.5s ease, background 0.3s, color 0.3s;
  line-height: 0;
  color: #dbcdc6;
  font-size: 0.5rem;
  text-transform: uppercase;
}
.bottom-icon a span svg {
  width: 20px;
  height: 20px;
  fill: #dbcdc6;
  transition: all 0.5s ease;
}
.icon-text {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .bottom-icon a:hover .icon-text {
    transform: translateY(8px);
  }
}
@media screen and (min-width: 768px) {
  .bottom-icon {
    width: 60px;
    height: 60%;
    min-height: 500px;
    padding: 18px 0;
    border-radius: 30px;
    bottom: auto;
    top: 55%;
    left: auto;
    right: 1.7rem;
    transform: translate(20px, -50%);
    opacity: 0;
    clip-path: inset(0 0 0 0 round 30px);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    /*    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);*/
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  body.loaded .bottom-icon {
    transform: translate(0, -50%);
    opacity: 1;
  }
  .bottom-icon ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    /*gap: 18px;*/
    height: 100%;
    justify-content: space-evenly;
  }
  .bottom-icon li {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .bottom-icon a {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .bottom-icon a span {
    font-size: 0.7rem;
    line-height: 1;
    letter-spacing: 0.1rem;
  }
  .bottom-icon a span svg {
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
  }
  .icon-text {
    margin-top: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.08em;
    font-size: 0.48rem;
  }
}
/* ====================================== */
/*text animation*/
/* ====================================== */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-delay: 0.2s;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}





