@charset "UTF-8";

/**
 * 固定CTAバー（PC/SP共通）
 */

/* フッターバー */
.p-footer-bar {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  pointer-events: none;
}
.p-footer-bar.is-active {
  opacity: 1;
}
html:not(.show-drawer) .p-footer-bar.is-active {
  pointer-events: auto;
}

.p-footer-bar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
  padding: 16px 24px 20px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0px 4px 30px 0px rgba(163, 157, 148, 0.3);
}

.p-footer-bar__subtext {
  margin: 0 0 4px 0;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13.735px;
  line-height: 1.3;
  letter-spacing: 1.5256px;
  color: #b2a581;
  text-align: center;
}

.p-footer-bar__heading {
  margin: 0 0 12px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 27.654px;
  line-height: 1.4;
  letter-spacing: 1.0262px;
  color: #75612c;
  text-align: center;
}

.p-footer-bar__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.p-footer-bar__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  height: 56px;
  padding: 0 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.64px;
  color: #fefdfb;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.p-footer-bar__btn--line {
  background-color: #e66d54;
}
.p-footer-bar__btn--booking {
  background-color: #79915b;
}

.p-footer-bar__btn-text {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-footer-bar__btn-arrow {
  width: 6px;
  height: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* ホバー */
@media (hover: hover) and (pointer: fine) {
  .p-footer-bar__btn--line:hover {
    background-color: #d45a42;
  }
  .p-footer-bar__btn--booking:hover {
    background-color: #6a7e4f;
  }
}

/* SP (1024px以下) */
@media screen and (max-width: 768px) {
  .p-footer-bar__inner {
    min-height: 120px;
    padding: 12px 16px 16px;
  }

  .p-footer-bar__subtext {
    margin: 0 0 4px 0;
    font-size: 13.735px;
    line-height: 1.3;
  }

  .p-footer-bar__heading {
    margin: 0 0 10px 0;
    font-size: 22.315px;
    letter-spacing: 0.8126px;
    line-height: 1.4;
  }

  .p-footer-bar__buttons {
    gap: 8px;
    width: 100%;
  }

  .p-footer-bar__btn {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    max-width: none;
    height: 48px;
    padding: 0 20px;
    font-size: 15px;
    letter-spacing: 0.5068px;
  }

  .p-footer-bar__btn-arrow {
    width: 5px;
    height: 8px;
  }
}

/* 固定CTAバー表示時のbody余白（PC/SP共通） */
body.show_footer_bar {
  padding-bottom: 160px;
}

@media screen and (max-width: 768px) {
  body.show_footer_bar {
    padding-bottom: 130px;
  }
}
