/* hero
********************************************** */
.hero{
  background-color: #e1d4ba;
}
.hero-img {
  -webkit-mask-image: url(./SVG/hero-frame.svg);
          mask-image: url(./SVG/hero-frame.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position-x: 50%;
  -webkit-mask-position-y: 27vh;
  -webkit-mask-position-y: 27svh;
  -webkit-mask-size: 24vw;
          mask-size: 24vw;
  display: block;

  overflow: hidden;
}
@media screen and (max-width: 75em) {
  .hero-img {
    -webkit-mask-size: auto 25vh;
            mask-size: auto 25vh;
  }
}

.hero-img img,
.hero-img picture {
  pointer-events: none;
}

.hero-img img {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* Añadir esta línea */
}
@media screen and (max-width: 47.9375em) {
  .hero-img img {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

.hero-scroll {
  position: absolute;
  top: 91vh;
  left: 0;
  right: 0;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: opacity .8s ease-out, filter .8s ease-out;
  transition: opacity var(--transit-default), filter var(--transit-default);
}
@media screen and (max-width: 75em) {
  .hero-scroll {
    top: 67vh;
  }
}

.hero-deco-en {
  top: 40vh;
  transition: opacity .8s ease-out, filter .8s ease-out;
  transition: opacity var(--transit-default), filter var(--transit-default);
}

.hero--scroll_off {
  display: none;
}

.ipad .hero,
.ipad .hero--scroll_off {
  height: 100vh;
  height: 100lvh;
}
.ipad .hero-img img {
  transform: scale(0.8) translateY(-10vh);
}
.ipad .hero--scroll_off {
  position: relative;
  display: block;
}
.ipad .hero--scroll_off::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #f8f4eb 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, var(--is-wht-bg-body) 0%, rgba(255, 255, 255, 0) 100%);
}

/* home_news
********************************************** */
.home_news {
  position: fixed;
  right: 3.2291666667vw;
  bottom: 3.2291666667vw;
  z-index: 9990;
  color: #bea976;
  color: var(--clr-main);
  font-size: 0.875rem;
}
@media screen and (min-width: 48em) {
  .home_news {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: -8px;
  }
}
@media screen and (max-width: 47.9375em) {
  .home_news {
    bottom: 34px;
    left: 24px;
    right: 24px;
  }
}

.home_news .icon-star {
  width: 17px;
  height: 17px;
  margin-left: 24px;
  margin-right: 24px;
}
@media screen and (max-width: 47.9375em) {
  .home_news .icon-star {
    display: none;
  }
}

/* --- news_list --- */
.news_list--ttl {
  flex-shrink: 0;
}
@media screen and (max-width: 47.9375em) {
  .news_list--ttl {
    margin-bottom: 1em;
  }
}

.news_list .post {
  margin-top: -16px;
  margin-bottom: -16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 47.9375em) {
  .news_list .post {
    display: block;
  }
}

.news_list .post--ttl {
  max-width: 400px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news_list .post--ttl a {
  color: #bea976;
  color: var(--clr-main);
}

.news_list .post--txtarea {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 47.9375em) {
  .news_list .post--txtarea {
    gap: 16px;
  }
}

.news_list .post--img {
  display: none;
}
/* ##############################################################################

    KEYFRAMES

############################################################################## */
.js-fade,
.js-fade-point,
.js-fade-wrap > .js-fade2 {
  opacity: 0 !important;
}
.js-fade,
.js-fade-point,
.js-fade-wrap > .js-fade2 {
  filter: blur(8px);
  translate: 0 30px;
  transition: .8s ease-out;
  transition: var(--transit-default);
  transition-property: opacity, filter, translate;
}

.js-fade.is-active,
.js-fade-point.is-active,
.js-fade-wrap.is-active > .js-fade2 {
  opacity: 1 !important;
}

.js-fade.is-active,
.js-fade-point.is-active,
.js-fade-wrap.is-active > .js-fade2 {
  filter: blur(0);
  translate: 0 0;
  pointer-events: auto;
}

@-webkit-keyframes line_ani {
  0% {
    opacity: 0;
    top: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100%;
  }
}

@keyframes line_ani {
  0% {
    opacity: 0;
    top: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100%;
  }
}
@-webkit-keyframes star_ani {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@keyframes star_ani {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@-webkit-keyframes circle_ani {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-365deg);
  }
}
@keyframes circle_ani {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-365deg);
  }
}
@-webkit-keyframes btn_ani {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes btn_ani {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes slide_floor_arts_img {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@keyframes slide_floor_arts_img {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@-webkit-keyframes slide_floor_arts_next {
  0% {
    -webkit-mask-position: -100% 0;
            mask-position: -100% 0;
  }
  100% {
    -webkit-mask-position: 100% 0;
            mask-position: 100% 0;
  }
}
@keyframes slide_floor_arts_next {
  0% {
    -webkit-mask-position: -100% 0;
            mask-position: -100% 0;
  }
  100% {
    -webkit-mask-position: 100% 0;
            mask-position: 100% 0;
  }
}

/* header
**************************************** */
.header{
  top: 0;
  width: 100%;
}
.header--logo {
  position: fixed;
  top: 5.7291666667vw;
  left: 0;
  right: 0;
  z-index: 999;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media screen and (max-width: 47.9375em) {
  .header--logo {
    top: 15vh;
  }
  .header--logo.bg_none {
    top: 3vh;
  }
}

.header--logo span {
  position: absolute;
  display: inline-block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

html:not(.ipad) .header--logo {
  transition: none;
}

.header--logo a,
.footer--logo a {
  display: block;
  padding: 16px;
  margin-top: -16px;
}

.header--logo a:hover,
.footer--logo a:hover {
  opacity: 0.7;
}

.header--logo svg {
  width: max(8.3333333333vw, 78px);
  aspect-ratio: 297/198;
  height: auto;
}

.subpage .header--logo {
  position: absolute;
}
.subpage .header--logo svg {
  width: max(6.7708333333vw, 76px);
}
.subpage:not(.is-white) .header--logo svg {
  fill: #fff;
}

@media screen and (max-width: 75em) {
  .header--logo img {
    width: auto;
    max-height: 40px;
  }
}
/* gnav_btn
********************************************** */
.gnav_btn {
  font-family: 'CormorantGaramond-Regular';
  position: fixed;
  top: 1.2291666667vw;
  left: 3.2291666667vw;
  z-index: 9999;
  margin: -16px;
  padding: 16px;
  transition: .8s ease-out;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
@media screen and (max-width: 47.9375em) {
  .gnav_btn {
    top: 34px;
    left: 24px;
  }
}

.gnav_btn:hover .gnav_btn--txt {
  color: #ffffff;
  color: var(--clr-link);
}
.gnav_btn:hover .gnav_btn--lines span {
  background-color: #000;
  /* background-color: var(--clr-link); */
}
#header-nav .gnav_btn:hover .gnav_btn--lines span {
  background-color: #e1d4ba;
}

.gnav_btn--lines {
  position: relative;
  height: 30px;
  width: 50px;
}

.gnav_btn--lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  color:#201d1b;
  background-color: #201d1b;
  /* background-color: var(--clr-main, #1d7fb7); */
  transition: .8s ease-out;
  transition: var(--transit-default, all 0.4s ease-out);
  box-sizing: border-box;
}
#header-nav .gnav_btn--lines span {
  background-color: #e1d4ba;
  color: #e1d4ba;
}
.gnav_btn--txt {
  position: relative;
  height: 1em;
  overflow: hidden;
  margin-left: 20px;
  color: #bea976;
  color: var(--clr-main);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 47.9375em) {
  .gnav_btn--txt {
    font-size: 0.75rem;
  }
}
.gnav_btn--txt::before, .gnav_btn--txt::after {
  display: block;
  transition: .8s ease-out;
  transition: var(--transit-default);
}
.gnav_btn--txt::before {
  content: "Menu";
}
.gnav_btn--txt::after {
  content: "Close";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.gnav_btn--lines span:nth-of-type(1) {
  top: 0;
}

.gnav_btn--lines span:nth-of-type(2) {
  top: calc(50% - 0.5px);
}

.gnav_btn--lines span:nth-of-type(3) {
  bottom: 0;
}

.gnav_btn.is-gnav_open .gnav_btn--txt::before,
.gnav_btn.is-gnav_open .gnav_btn--txt::after {
  color: #fff;
  color: var(--clr-wht);
}
.gnav_btn.is-gnav_open .gnav_btn--txt::before {
  opacity: 0;
}
.gnav_btn.is-gnav_open .gnav_btn--txt::after {
  opacity: 1;
}
.gnav_btn.is-gnav_open .gnav_btn--lines span {
  background-color: #fff;
  background-color: var(--bg-wht);
}
.gnav_btn.is-gnav_open .gnav_btn--lines span:nth-of-type(1) {
  transform: translateY(9px) rotate(-35deg);
}
.gnav_btn.is-gnav_open .gnav_btn--lines span:nth-of-type(2) {
  opacity: 0;
}
.gnav_btn.is-gnav_open .gnav_btn--lines span:nth-of-type(3) {
  transform: translateY(-9px) rotate(35deg);
}

/* reserve_btn
********************************************** */
.reserve_btn {
  font-family: 'CormorantGaramond-Regular';
  font-size: 1.5rem;
  position: fixed;
  top: 2%;
  right: 8.2291666667vw;
  z-index: 9999;
}
.reserve_btn.ct1 {
  right: 3.2291666667vw;
  top: 1.5vw;
}
.reserve_btn.ig {
  right: 3.2291666667vw;
}
@media screen and (max-width: 47.9375em) {
  .reserve_btn {
    top: 1.5%;
    right: 24vw;
    display: grid;
    align-items: center;
    justify-items: center;
    place-items: center;
    min-height: 20px;
  }
}

.reserve_btn a {
  display: block;
  margin: -16px;
  padding: 16px;
  color:#201d1b;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
#header-nav .reserve_btn a {
  color: #e1d4ba;
}
#header-nav .reserve_btn a.nav-link {
  padding-top: 18px;
}
@media screen and (max-width: 47.9375em) {
  .reserve_btn a {
    font-size: 1.2rem;
  }
  #header-nav .reserve_btn a {
    /* display: none; */
  }
  
  #header-nav .reserve_btn a.nav-link{
    margin-top: -2.5vw;
  }
}

.reserve_btn a span {
  letter-spacing: 0.12em;
}
@media screen and (max-width: 47.9375em) {
  .reserve_btn a span {
    display: none;
  }
}

.header.is-gnav_open .reserve_btn a {
  color: #fff;
  color: var(--clr-wht);
}

/* gnav
********************************************** */
.gnav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: .8s ease-out;
  transition: var(--transit-default, all 0.4s ease-out);
  width: 100%;
  margin: 0;
  z-index: 9995;
  -webkit-overflow-scrolling: touch;
  background-color: #201d1b;
  background-image: url(../images/common/gnav--bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: .8s ease-out;
  transition: var(--transit-default);
  opacity: 0;
}

.gnav a {
  color: #fff !important;
  color: var(--clr-wht) !important;
}

.gnav a {
  display: block;
}

.gnav--inner {
  width: 100%;
  height: 100%;
  padding-top: 10vh;
  padding-bottom: 10vh;
  transition: .8s ease-out;
  transition: var(--transit-default);
  opacity: 0;
  overflow: auto;
  filter: blur(8px);
}

.gnav.is-gnav_open {
  pointer-events: auto;
  opacity: 1;
}
.gnav.is-gnav_open .gnav--inner {
  transition-delay: 0.2s !important;
}
.gnav.is-gnav_open .gnav--inner {
  opacity: 1;
  filter: blur(0);
}

.gnav--main_ttl {
  margin-top: -20px;
  padding: 20px;
}
@media screen and (min-width: 48em) {
  .gnav--main_ttl {
    margin-bottom: 36px;
  }
}

.gnav--main_ttl a::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 582px;
  margin-left: auto;
  margin-right: auto;
  background: url(../images/common/gnav--ttl.svg) center no-repeat;
  background-size: contain;
  aspect-ratio: 582/118;
  transform: translateX(3.5%);
}

.gnav--main_ttl span {
  display: block;
  margin-top: -0.3em;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.32em;
  opacity: 0.5;
}
@media screen and (max-width: 47.9375em) {
  .gnav--main_ttl span {
    font-size: 0.5375rem;
  }
}

.gnav--menu {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(126, 112, 80, 0.5);
  border-bottom: 1px solid rgba(126, 112, 80, 0.5);
}
@media screen and (min-width: 48em) {
  .gnav--menu {
    display: flex;
    justify-content: space-around;
  }
}
@media screen and (max-width: 47.9375em) {
  .gnav--menu {
    padding-bottom: 20px;
  }
}

.gnav--menu-child {
  position: relative;
  display: block;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .gnav--menu-child {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.gnav--ttl {
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 1;
  transition: 0.4s ease-out;
}
@media screen and (min-width: 48em) {
  .gnav--ttl {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 47.9375em) {
  .gnav--ttl {
    padding: 0.7em;
    font-size: 1.5rem;
  }
}
.gnav--ttl::before {
  content: "";
  display: block;
}

.gnav--ttl .icon-star {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 47.9375em) {
  .gnav--ttl .icon-star {
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 47.9375em) {
  .gnav--menu-child:not(:first-child) .gnav--ttl .icon-star {
    display: none;
  }
}
.gnav_sub {
  display: block;
  width: 100%;
}
@media screen and (max-width: 47.9375em) {
  .gnav_sub {
    display: none;
  }
}

.gnav_sub--menu {
  position: relative;
  line-height: 2.5;
}
@media screen and (max-width: 47.9375em) {
  .gnav_sub--menu {
    padding-bottom: 24px;
    line-height: 1;
  }
}

.gnav_sub--link {
  color: #fff !important;
  color: var(--clr-wht) !important;
}
.gnav_sub--link:hover {
  color: #000 !important;
  /* color: var(--clr-main) !important; */
}

.gnav--cta {
  padding-top: 2.0833333333vw;
  padding-bottom: 2.0833333333vw;
  border-bottom: 1px solid rgba(126, 112, 80, 0.5);
}
@media screen and (max-width: 47.9375em) {
  .gnav--cta {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.gnav--cta ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 7vw;
}
@media screen and (max-width: 47.9375em) {
  .gnav--cta ul {
    gap: 24px 0;
  }
}

.gnav--cta li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (max-width: 47.9375em) {
  .gnav--cta li {
    width: 50%;
  }
}

.gnav--cta a {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 47.9375em) {
  .gnav--cta a {
    font-size: 1.5rem;
  }
}
.gnav--cta a:hover {
  opacity: 0.5;
}

.gnav--cta-ttl {
  margin-bottom: 1em;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.gnav--foot_nav {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 47.9375em) {
  .gnav--foot_nav {
    font-size: 0.8125rem;
  }
}

.gnav--foot_nav a {
  padding: 1em 1.5em;
}
.gnav--foot_nav a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 75em) {
  .gnav--bg {
    display: none;
  }
}
.gnav--bg-item {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #aaa;
  transition: .8s ease-out;
  transition: var(--transit-default);
  pointer-events: none;
  background-position: center;
  background-size: cover;
}

.gnav--bg-item.active {
  opacity: 1;
}

@media screen and (max-width: 47.9375em) {
  .gnav--menu a {
    padding: 1em;
  }
}