/*==================================================
section cta
===================================*/
.cta {
  background: linear-gradient(to right, #141414 0%, #292929 100%);
  padding: 9rem 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .cta {
    padding: 5rem 0;
  }
}

.cta::after {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  content: "Reservation";
  color: #f5f5f5;
  opacity: 0.07;
  font-weight: 400;
  font-size: 11rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .cta::after {
    font-size: 4rem;
  }
}

.cta_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15rem;
  width: fit-content;
  max-width: 87rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .cta_wrapper {
    flex-direction: column;
    gap: 4rem;
  }
}

.cta_content--left {
  color: #fff;
}

.cta__title {
  margin-bottom: 2rem;
}

.cta__title .title_en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08rem;
}

.cta__title .title_ja {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 767px) {
  .cta__title .title_ja {
    font-size: 2rem;
  }
}

.cta__text {
  font-size: 1.4rem;
  letter-spacing: 0.04rem;
}

.cta_content--right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta_content--right .btn:nth-of-type(1) a {
  background: #38ba3d;
  color: #fff;
}

.cta_content--right .btn:nth-of-type(1) a::after {
  background: url(../img/icon_btn_white.png) no-repeat;
  background-size: contain;
}

/*==================================================
  section cta END
  ===================================*/
