@charset "utf-8";
.map {
  width: 100%;
  overflow: hidden;
}
.map__inner {
  width: 100%;
  max-width: 100%;
  height: 450px;
}

.map__inner iframe {
  border: none;
  aspect-ratio: 1367/450;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  width: 100%;
}

/* --------------------
cta
----------------------- */
.cta {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .cta {
    height: 320px;
  }
}

.cta__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .cta__inner {
    flex-direction: row;
  }
}

.cta__inner::after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: url(../images/noise.svg) repeat center center/cover;
}

.cta__button {
  width: 100%;
  height: 320px;
}

.cta__button-link {
  padding-top: 47px;
  padding-right: 47px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--brown-color);
}

@media screen and (min-width: 1000px) {
  .cta__button-link {
    padding-left: 47px;
    padding-top: 0;
  }
}

.cta__button-link::before,
.cta__button-link::after {
  position: absolute;
  content: "";
}

.cta__button-link::before {
  top: 0;
  right: 0;
  width: 47px;
  height: 320px;
  background: #b39872;
  border-left: 1px solid #a7967e;
}

.cta__button-link::after {
  width: 17px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  background: url(../images/arrow-icon.svg) no-repeat center center / contain;
}

.cta__button-text-wrap {
  position: relative;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .cta__button-text-wrap {
    text-align: left;
  }
}

.cta__button-text-wrap::before {
  content: "";
  position: absolute;
  top: -83px;
  transform: translateX(-50%);
  left: 50%;
  width: 73px;
  height: 73px;
  background: url(../images/cta-reservation-icon.svg) no-repeat center center /
    contain;
}

@media screen and (min-width: 1000px) {
  .cta__button-text-wrap::before {
    top: 50%;
    transform: translateY(-50%);
    left: -113px;
    width: 93px;
    height: 93px;
  }
}

.cta__button-text-en {
  font-family: var(--ff-space);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 58px;
  color: var(--white-color);
}

@media screen and (min-width: 1000px) {
  .cta__button-text-en {
    font-size: 48px;
  }
}

@media screen and (min-width: 1300px) {
  .cta__button-text-en {
    font-size: 58px;
  }
}

.cta__button-text-ja {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 34px;
  color: var(--white-color);
}

.cta__button-contact {
  width: 100%;
  height: 320px;
}

.cta__button-contact-link {
  padding-right: 47px;
  padding-top: 47px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--title-color);
}

@media screen and (min-width: 1000px) {
  .cta__button-contact-link {
    padding-left: 47px;
    padding-top: 0;
  }
}

.cta__button-contact-link::before,
.cta__button-contact-link::after {
  position: absolute;
  content: "";
}

.cta__button-contact-link::before {
  width: 47px;
  height: 320px;
  background: #8e73c2;
  top: 0;
  right: 0;
  border-left: 1px solid #a7967e;
}

.cta__button-contact-link::after {
  width: 17px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  background: url(../images/arrow-icon.svg) no-repeat center center / contain;
}

.cta__button-text-wrap2::before {
  content: "";
  background: url(../images/cta-contact-icon.svg) no-repeat center center /
    contain;
}

/* --------------------
sponsor
---------------------- */
.footer__sponsor {
  padding-bottom: 76px;
  width: 100%;
  max-width: 100%;
}

.footer__sponsor-heading {
  text-align: center;
  padding-block: 54px 68px;
  background: #f3f5f6;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--ff-space);
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--title-color);
}

.footer__sponsor-container {
  margin-top: -44px;
  padding-block: 18px 11px;
  width: 100%;
}

.footer__sponsor-swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
}

.footer__sponsor-swiper-slide {
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  width: clamp(
    176px,
    calc(176px + (237 - 176) * ((100vw - 375px) / (1366 - 375))),
    237px
  );
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.footer__sponsor-swiper-slide img {
  aspect-ratio: 217/52;
  width: clamp(
    156px,
    calc(156px + (217 - 156) * ((100vw - 375px) / (1366 - 375))),
    217px
  );
  object-fit: contain;
}
/* --------------------
footer
---------------------- */

.footer {
  padding-top: 80px;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer {
    padding-top: 120px;
  }
}

.footer::before {
  pointer-events: none;
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.54);
}

.footer__bg-image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.footer__bg-image img {
  aspect-ratio: 1366 / 658;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100vw;
}

.footer__inner.l-inner {
  position: relative;
  z-index: 3;
  max-width: calc(1176px + 40px * 2);
  margin-inline: auto;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__inner.l-inner {
    padding-right: 47px;
  }
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

@media screen and (min-width: 768px) {
  .footer__container {
    gap: 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
}

.footer__logo-link {
  border-radius: 10px;
  overflow: hidden;
  max-width: 180px;
}

.footer__logo-link img {
  aspect-ratio: 180/86;
  object-fit: contain;
  max-width: 180px;
  border-radius: 10px;
}

.footer__sns {
  margin-top: 31px;
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.footer__sns-instagram img {
  aspect-ratio: 30/30;
  width: 30px;
}

.footer__sns-facebook img {
  aspect-ratio: 30/30;
  width: 30px;
}

.footer__company {
  margin-top: 62px;
}

.footer__company-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.95;
  color: var(--white-color);
}

.footer__company-text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.95;
  color: var(--white-color);
  text-decoration: none !important;
}

.footer__contents {
  margin-top: 5px;
  display: flex;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .footer__contents {
    justify-content: flex-end;
    min-width: 347px;
  }
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__link-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 20px;
  color: var(--white-color);
}

.footer__dropdwon-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__dropdown-link-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.95;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer__dropdown-link-text::before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--white-color);
}

.footer__copylight {
  margin-top: 80px;
  padding-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .footer__copylight {
    margin-top: 180px;
  }
}

.footer__copylight-text {
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.12;
  color: var(--white-color);
}

/* ------------------------
fixedbutton
-------------------------- */
.top-fixed-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.top-fixed__button-reservation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  position: relative;
  background: var(--brown-color);
  border: 1px solid #a7967e;
  transition: all 0.3s ease;
  padding-right: 30px;
}

@media screen and (min-width: 768px) {
  .top-fixed__button-reservation {
    width: 280px;
  }
}

.top-fixed__button-reservation:hover {
  background: var(--white-color);
  opacity: 1;
}

.top-fixed__button-reservation::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 30px;
  height: 70px;
  background: #52412a;
  border-left: 1px solid #a7967e;
}

.top-fixed__button-reservation::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 9px;
  content: "";
  width: 11px;
  height: 11px;
  background: url(../images/arrow-icon.svg) no-repeat center center / contain;
}

.top-fixed__button-reservation-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  font-size: 16px;
  font-size: clamp(12px, 3.2vw, 16px);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 24px;
  color: var(--white-color);
  transition: all 0.3s ease;
}

@media screen and (min-width: 560px) {
  .top-fixed__button-reservation-text {
    flex-direction: row;
  }
}

.top-fixed__button-reservation:hover .top-fixed__button-reservation-text {
  color: #52412a;
}

.top-fixed__button-reservation-text::before {
  content: "";
  width: 21px;
  height: 21px;
  background: url(../images/ball-icon.svg) no-repeat center center / contain;
  transition: all 0.3s ease;
}

.top-fixed__button-reservation:hover
  .top-fixed__button-reservation-text::before {
  background: url(../images/ball-icon-b.svg) no-repeat center center / contain;
}

.top-fixed__button-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  position: relative;
  background: var(--title-color);
  border: 1px solid #a391d6;
  transition: all 0.3s ease;
  padding-right: 30px;
}

@media screen and (min-width: 768px) {
  .top-fixed__button-contact {
    width: 280px;
  }
}

.top-fixed__button-contact:hover {
  background: var(--white-color);
  opacity: 1;
}

.top-fixed__button-contact::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 30px;
  height: 70px;
  background: #281253;
  border-left: 1px solid #a391d6;
}

.top-fixed__button-contact::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 9px;
  content: "";
  width: 11px;
  height: 11px;
  background: url(../images/arrow-icon.svg) no-repeat center center / contain;
}

.top-fixed__button-contact-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  font-size: clamp(12px, 3.2vw, 16px);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 24px;
  color: var(--white-color);
  transition: all 0.3s ease;
}

@media screen and (min-width: 560px) {
  .top-fixed__button-contact-text {
    flex-direction: row;
  }
}

.top-fixed__button-contact:hover .top-fixed__button-contact-text {
  color: var(--title-color);
}

.top-fixed__button-contact-text::before {
  content: "";
  width: 21px;
  height: 17px;
  background: url(../images/mail-icon.svg) no-repeat center center / contain;
  transition: all 0.3s ease;
}

.top-fixed__button-contact:hover .top-fixed__button-contact-text::before {
  background: url(../images/mail-icon-p.svg) no-repeat center center / contain;
}
