@charset "UTF-8";
/* =============================================

COMMON SPACE PHOTO GALLERY

============================================= */
.commonSpace {
  color: #4d4a52;
  overflow-x: clip;
}
.commonSpace_ctns {
  padding-bottom: 8rem;
}
.commonSpace_ctns-map {
  margin-bottom: 80px;
}
.commonSpace_ctns-map-txt {
  max-width: 600px;
  width: 80%;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.commonSpace_modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.commonSpace_modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.commonSpace_modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.commonSpace_modal-inner {
  position: relative;
  z-index: 1;
  width: min(110rem, 100%);
  max-height: 100%;
  background: #fff;
  overflow: hidden;
}
.commonSpace_modal-content {
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.commonSpace_modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.commonSpace_modal-swiper {
  width: 100%;
  height: auto;
}
.commonSpace_modal-figure {
  margin: 0;
  padding-bottom: 2rem;
}
.commonSpace_modal-prev, .commonSpace_modal-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  cursor: pointer;
}
.commonSpace_modal-prev::before, .commonSpace_modal-next::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  margin: 1.2rem auto 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.commonSpace_modal-prev {
  left: 1.6rem;
}
.commonSpace_modal-prev::before {
  transform: rotate(-135deg);
}
.commonSpace_modal-next {
  right: 1.6rem;
}
.commonSpace_modal-next::before {
  transform: rotate(45deg);
}

/*モーダル中に背景スクロールさせない*/
body.is-modal-open {
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  /* =============================================

      COMMON SPACE

  ============================================= */
  .commonSpace_ctns {
    padding-bottom: 0;
    margin-bottom: 5rem;
  }
  .commonSpace_ctns-map {
    margin-bottom: 4rem;
  }
  .commonSpace_ctns-box {
    margin-bottom: 2rem;
  }
  .commonSpace_ctns-box:last-of-type {
    margin-bottom: 0;
  }
  .commonSpace_ctns-box-img {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
  }
  .commonSpace_ctns-box-img.is-open {
    max-height: 100rem;
    opacity: 1;
    visibility: visible;
    margin-top: 1.6rem;
  }
  .commonSpace_ctns-box-img img {
    display: block;
    width: 100%;
    height: auto;
  }
  .commonSpace_ctns-box button {
    border: none;
  }
  .commonSpace_ctns-box button.is-active {
    opacity: 0.8;
  }
  .commonSpace_ctns-entry {
    margin-top: 8rem;
  }
  .commonSpace_modal {
    display: none;
  }
}/*# sourceMappingURL=common-space.css.map */