@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Libre+Caslon+Display&family=Shippori+Mincho+B1&family=Zen+Old+Mincho&display=swap");
/* setting //////////////////////////////////////////////////*/
/*color*/
/*font-family*/
/*filler color*/
/*text-shadow*/
/*media query break point*/
/*mainBP*/
/*gHeader用*/
/*cubic-bezier*/
/*letter-spacing*/
/*// mixin //////////////////////////////////////////////////*/
/*grid settings*/
/* media query */
/* hover */
.floating-modal {
  background-color: rgba(35, 24, 21, 0.8);
  padding: 1rem 0;
  position: fixed;
  right: 0;
  bottom: 2%;
  margin: 0 auto;
  pointer-events: none;
  z-index: 5;
  width: 28rem;
  transform: translateX(101%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.floating-modal::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  left: -1px;
  background-color: #84705e;
}
.floating-modal.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-modal.inactive {
  transform: translateX(101%);
  opacity: 0.8;
  pointer-events: auto;
}
@media only screen and (max-width: 767px) {
  .floating-modal {
    padding: 1rem 0;
    width: 27rem;
    bottom: 8.5rem;
  }
}
.floating-modal__ttl {
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.floating-modal .label-new {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: #df3967;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.floating-modal__btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}
.floating-modal__btn {
  width: 90%;
  margin-inline: auto;
  display: block;
  color: #fff;
  text-align: center;
  transition: 0.3s;
  border-radius: 5rem;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  background: #61574d;
}
@media (hover: hover) and (pointer: fine) {
  .floating-modal__btn:hover {
    opacity: 0.8;
  }
}
.floating-modal__btn.mod--entry {
  background: #84705e;
}
.floating-modal__btn.mod--online {
  background: #b4995a;
}

.flo-btn {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 3px 3px 0 0;
  position: absolute;
  top: 0px;
  left: -3.5rem;
  height: 3.5rem;
  color: #fff;
  line-height: 1;
  padding: 0 1rem 0 2rem;
  gap: 0.2rem;
  z-index: 2;
  transform-origin: top left;
  transform: rotate(-90deg) translateX(-100%);
  background-color: #84705e;
  overflow: hidden;
  font-size: 1.5rem;
  transition: transform 0.5s ease, opacity 0.5s ease !important;
}
@media only screen and (max-width: 767px) {
  .flo-btn {
    font-size: 1.2rem;
    left: -3rem;
    padding: 0 0.5rem 0 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    height: 3rem;
    top: unset;
    bottom: 63px;
  }
}
.flo-btn__txt {
  line-height: 1;
}
.flo-btn__icon {
  width: 2.5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .flo-btn__icon {
    font-size: 1.5rem;
  }
}
.flo-btn__close {
  display: inline-block;
  transform: rotate(90deg);
}
.flo-btn__close:before {
  content: "›";
  line-height: 1;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
}
.flo-btn__open {
  display: none;
  transform: rotate(90deg);
}
.flo-btn__open:before {
  content: "‹";
  line-height: 1;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
}

.floating-modal .slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.floating-modal .slider:active {
  cursor: grabbing;
}
.floating-modal .slider-track {
  display: flex;
  align-items: center;
}
.floating-modal .slider-track > div {
  flex-shrink: 0;
  padding: 0 5px;
  box-sizing: border-box;
  position: relative;
}
.floating-modal .slider-track > div a {
  display: block;
  width: 100%;
  overflow: hidden;
}
.floating-modal .slider-track > div img {
  width: 100%;
  height: auto;
  display: block;
}
.floating-modal .slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 1rem 0 0;
  padding: 0 1rem;
  text-align: center;
}
.floating-modal .slider-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0;
  opacity: 1;
}
.floating-modal .slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.floating-modal .slider-dot.active {
  background-color: #84705e;
  opacity: 1;
}
/*# sourceMappingURL=../../map/common/floating-slider.css.map */