@charset "UTF-8";

@media screen and (max-width: 768px) {
  .container {
    overflow-x: hidden;
  }
}

/* header
---------------------------------------------- */
.site-theme-black .contentMenu__bg {
  background: url(../imgs/img_kv.jpg) center/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .site-theme-black .contentMenu__bg {
    background-image: url(../imgs/img_kv_sp.jpg);
  }
}

/* facade
---------------------------------------------- */
.facade {
  padding-top: 120px;
}

@media screen and (min-width: 769px) {
  .facade .sectionBox__img {
    width: calc(1042 / 1400 * 100%);
    margin-top: 5%;
  }
}

@media screen and (max-width: 768px) {
  .facade {
    padding-top: 50px;
  }
  /* .facade .sectionTitle {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
  } */
  .facade .sectionBox {
    width: 100%;
    row-gap: 30px;
    position: relative;
    z-index: 0;
  }
  /* .facade .sectionBoxBody {
    width: 100%;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
  } */
  .facade .sectionBox .pageCopy {
    text-align: center;
  }
}

/* architect
---------------------------------------------- */
.architect {
  margin-top: 210px;
  padding-bottom: 150px;
}
.architectBox {
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  margin-top: 80px;
}
.architectBox__img {
  width: calc(940 / 1400 * 100%);
  margin-left: calc(90 / 1400 * 100%);
}
.architectBoxBody {
  flex: 1;
}
.architectBox__name {
  border-left: 1px solid rgb(255 255 255 / .5);
  padding-left: 1.5em;
}

.architectBoxBody02 {
  flex: 1;
  column-gap: 6%;
  padding-bottom: 100px;
  position: relative;
  z-index: 0;
}

.architectLogo {
  width: 100%;
  max-width: 310px;
  position: absolute;
  top: calc(100% + -70px);
  left: 50%;
  transform: translate(-50%, 0);
}

.architectImg{
  margin-top: 100px;
}

.architectBox__img .imgSlider {
  background: url(../imgs/bg_materials.jpg) center/contain no-repeat;
}

@media screen and (max-width: 1200px) {
  .architectBox__img {
    margin-left: calc(30 / 1400 * 100%);
  }
}

@media screen and (max-width: 768px) {
  .architect {
    margin-top: 0;
    padding-bottom: 60px;
  }
  .architectBox {
    flex-direction: column;
    max-width: 400px;
    margin-top: 0;
  }
  .architectBox__img {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    margin-bottom: 40px;
  }
  .architectBoxBody {
    align-items: center;
    justify-content: center;
    flex: revert;
    width: 100%;
  }
  .architectBox__name {
    border-left: none;
    padding-left: 0;
  }

  .architectBoxBody02 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 0;
    text-align: center;
  }

  .architectLogo {
    max-width: 260px;
    margin-inline: auto;
    position: static;
    transform: translate(0, 0);
  }

  .architectImg {
    margin-top: 50px;
  }

  /* imgSlider */
  .architectBox__img .imgSlider {
    display: flex;
    background-size: cover;
    overflow: hidden;
  }
  .architectBox__img .imgSliderWrap {
    animation: horizontal-animation 30s linear infinite;
  }
  .architectBox__img .imgSlider__img {
    height: 200px;
  }
  .architectBox__img .imgSlider__img img {
    width: auto;
    height: 100%;
    max-width: none;
  }

  @keyframes horizontal-animation {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-100%);
    }
  }
}

/* entrance
---------------------------------------------- */
.entranceBody {
  /* position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1; */
  padding-block: 150px;
}
.entranceBox {
  align-items: center;
  justify-content: center;
  text-align: center;
  /* filter: drop-shadow(0 0 5px rgb(0 0 0 / 1)); */
  margin-top: 40px;
}
.entranceImg {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.entranceImg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / .1) 10%);
  z-index: 1;
}

.entranceSliderBtn {
  position: absolute;
  top: 5%;
  left: 5%;
  background-color: var(--base-color);
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.02em;
  padding: .35em .5em .3em;
  transition: .4s;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .entranceBody {
    padding-block: 30px 50px;
    /* position: static; */
    /* transform: translate(0, 0); */
  }
  .entranceBox {
    /* align-items: center; */
    /* justify-content: center; */
    margin-top: 30px;
    /* text-align: center; */
  }
  .entranceImg::before {
    content: none;
  }

  .entranceSliderBtn {
    font-size: 14px;
  }
}

/* parse
---------------------------------------------- */
.parseSection {
  position: sticky;
  top: 0;
}
.parse__textBox {
  max-width: 420px;
  color: #fff;
  margin-left: auto;
  text-align: center;
}
.parseBox__img {
  max-width: 394px;
  margin-inline: auto;
}
.parseBox__text {
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 2.3;
  margin-top: 3em;
}

.parseSection__bg {
  overflow: hidden;
}
.parseSection__bg .p-caption {
  z-index: 2;
}

.stickySpacer {
  height: 100vh;
}

.parseSection--lounge .parse__textBox {
  margin-inline: 0 auto;
}

@media screen and (min-width: 769px) {
  .parseContents {
    padding-bottom: 100vh;
    position: sticky;
    top: 0;
    z-index: 0;
  }

  .parseContentsWrap {
    position: sticky;
    top: 0;
  }

  .parseContentsBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: 1s ease-out;
    z-index: 0;
  }

  .parseSection__bg {
    height: 100%;
  }
  .parseSection__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 24 21 / .8);
    opacity: 0;
    transition: .4s;
    z-index: 1;
  }
  .parseContentsBox.is-active .parseSection__bg::before {
    opacity: 1;
  }
  .parseSection__bg img {
    height: 100%;
    object-fit: cover;
  }

  .parseBox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1280px;
    height: 100%;
    opacity: 0;
    transition: .6s .2s;
    z-index: 1;
  }
  .parseContentsBox.is-active .parseBox {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .parseBox {
    padding-block: 60px;
  }
  .parseBox__copy {
    margin-top: 0;
  }
  .parseBox__text {
    font-size: 12px;
    margin-top: 2em;
  }
}

/* corridor
---------------------------------------------- */
.corridor {
  padding-block: 200px 250px;
}

@media screen and (min-width: 769px) {
  .corridor .sectionBox__img {
    width: calc(1042 / 1400 * 100%);
  }
}

@media screen and (max-width: 768px) {
  .corridor {
    padding-block: 50px;
  }
  .corridor .sectionBox {
    row-gap: 30px;
  }
  .corridor .sectionBox .pageCopy {
    text-align: center;
  }
}

/* planting
---------------------------------------------- */
.planting__inner {
  width: 90%;
  max-width: 845px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.planting__bg {
  overflow: hidden;
}
.planting__bg img {
  min-height: 700px;
  object-fit: cover;
}

@media screen and (min-width: 769px) {
  .plantingBox__img {
    width: calc(471 / 845 * 100%);
  }
}

@media screen and (max-width: 768px) {
  .planting__inner {
    width: 100%;
    max-width: 400px;
  }
  .plantingBox.flex {
    row-gap: 10px;
    margin-top: 20px;
  }
  .plantingBox .pageCopy {
    text-align: center;
  }
  /* .plantingBox {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    transform: translate(0, 0);
  } */
  .plantingBox__img {
    width: calc(305 / 375 * 100%);
    margin-top: 0;
    margin-inline: auto;
  }
  /* .plantingBoxBody {
    justify-content: center;
    align-items: center;
    flex: revert;
    width: 100%;
    text-align: center;
  } */

  .planting__bg img {
    min-height: revert;
  }
}

/* plan
---------------------------------------------- */
.plan {
  padding-top: 200px;
}

.planIllust {
  /* display: grid; */
  /* grid-template-columns: calc(640 / 1300 * 100%) calc(660 / 1300 * 100%); */
  background: url(../../../imgs/common/bg_contents.jpg) center / 100%;
  margin-top: 80px;
  margin-inline: auto;
}
.planIllustItem {
  display: flex;
  align-items: center;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 0;
}
.planIllustItem__name {
  pointer-events: none;
  width: 110px;
  font-size: clamp(14px, 0.54rem + 0.7vw, 22px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  border-bottom: 1px solid #231815;
  padding-bottom: .5em;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

/* tabSliderArea */
.floorTabSliderArea {
  max-width: 1000px;
  margin-inline: auto;
}

.tabSliderHead {
  max-width: 800px;
  margin-inline: auto;
}
.thumSlider {
  width: calc(540 / 800 * 100%);
}
.thumSlider .swiper-wrapper {
  justify-content: space-between;
  align-items: center;
}
.thumSlider .swiper-slide {
  width: 250px;
}
.thumSlider__btn {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #000;
  /* color: #fff; */
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-bottom: 15px;
  opacity: .5;
  transition: .4s;
  text-align: center;
}
.swiper-slide-thumb-active .thumSlider__btn {
  opacity: 1;
}

.tabSliderArea .swiper-button-next,
.tabSliderArea .swiper-button-prev {
  margin: 0 !important;
  border-radius: 50%;
  background-color: #4c4948;
  position: relative;
  inset: auto;
  z-index: 0;
}
.tabSliderArea .swiper-button-next::before,
.tabSliderArea .swiper-button-prev::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 28px;
  background-color: #fff;
  z-index: 1;
}
.tabSliderArea .swiper-button-prev::before {
  left: 44%;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.tabSliderArea .swiper-button-next::before {
  left: 54%;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.tabSlider .swiper-wrapper {
  align-items: center;
  mix-blend-mode: multiply;
}
.tabSliderItem01 .tabSlider__img {
  max-width: 800px;
  margin-inline: auto;
}

.equipment {
  max-width: 1080px;
  margin-top: 80px;
  margin-inline: auto;
}
.equipmentList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px calc(29 / 1080 * 100%);
}
.equipmentList__name {
  color: var(--accent-color);
  font-size: clamp(14px, 0.71rem + 0.35vw, 18px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  margin-top: 0.5em;
}
.equipmentList__text {
  font-size: clamp(12px, 0.62rem + 0.26vw, 15px);
  line-height: 1.5;
  margin-top: 1em;
  text-align: justify;
}
.equipmentList__text .small {
  display: inline-block;
  font-size: 80%;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .plan {
    padding-top: 100px;
  }

  .planIllust {
    display: block;
    max-width: 400px;
    margin-top: 40px;
  }
  .planIllustItem {
    display: block;
  }
  .planIllustItem + .planIllustItem {
    margin-top: 50px;
  }

  .planIllustTab {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7%;
    margin-bottom: 20px;
  }
  .planIllustItem__name {
    pointer-events: revert;
    width: 60px;
    padding-bottom: 0;
    position: relative;
    inset: auto;
    z-index: 0;
  }
  .planIllustItem__name .text {
    opacity: .5;
  }
  .planIllustItem__name.is-active .text {
    opacity: 1;
  }
  .planIllustItem__name .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    aspect-ratio: 1;
    background-color: #656464;
    border-radius: 100%;
    z-index: 0;
  }
  .planIllustItem__name:first-child .icon {
    right: calc(100% + 5px);
  }
  .planIllustItem__name:last-child .icon {
    left: calc(100% + 5px);
  }
  .planIllustItem__name .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    aspect-ratio: 1;
    background-color: #fff;
    z-index: 1;
  }
  .planIllustItem__name:first-child .icon::before {
    left: 45%;
    clip-path: polygon(100% 100%, 0 50%, 100% 0);
  }
  .planIllustItem__name:last-child .icon::before {
    left: 55%;
    clip-path: polygon(0 100%, 0 0, 100% 50%);
  }

  .tabSliderHead {
    max-width: 274px;
  }
  .thumSlider {
    width: calc(210 / 274 * 100%);
  }
  .thumSlider .swiper-slide {
    width: 100px;
  }
  .thumSlider__btn {
    font-size: 18px;
    padding-bottom: 5px;
  }

  .tabSlider {
    margin-top: 30px;
  }

  .tabSliderArea .swiper-button-next,
  .tabSliderArea .swiper-button-prev {
    width: 24px;
    height: 24px;
  }
  .tabSliderArea .swiper-button-next::before,
  .tabSliderArea .swiper-button-prev::before {
    width: 8px;
    height: 11px;
  }

  .equipment {
    max-width: 400px;
    margin-top: 50px;
  }
  .equipmentList {
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
  }
}

/* gallery
---------------------------------------------- */
.gallery {
  padding-block: 200px;
}

.gallery__inner {
  max-width: 1560px;
  margin-top: 60px;
}

.galleryMovie {
  max-width: 960px;
}
.galleryBox {
  max-width: 1560px;
}
* + .galleryBox,
* + .galleryMovie {
  margin-top: 80px;
}

.galleryBox01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px calc(60 / 1560 * 100%);
}

.galleryBox02 {
  display: grid;
  grid-template-columns: calc(950 / 1560 * 100%) 1fr;
  gap: 60px calc(60 / 1560 * 100%);
}
.galleryBox02 .galleryItem--large {
  grid-area: 1/1/3/2;
}

/* gallerySlider */
.gallerySliderWrap {
}
.gallerySlider {
  max-width: 1200px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.gallerySlider .swiper-slide .photo {
}
.gallerySliderWrap .swiper-button-prev,
.gallerySliderWrap .swiper-button-next {
  width: calc(90 / 1560 * 100%);
  height: auto;
  aspect-ratio: 90 / 150;
  background-color: rgb(151 130 54 / .3);
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
}
.gallerySliderWrap .swiper-button-prev {
  transform: translateY(-50%) scaleX(-1);
}
.gallerySliderWrap .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  bottom: -80px;
}
.gallerySliderWrap .swiper-pagination-bullet {
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  background: #ccc;
  margin: 0 !important;
}
.gallerySliderWrap .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.gallerySlider .p-caption.w {
  background: rgb( 0 0 0 / .7);
  padding-block: 5px;
}

@media screen and (max-width: 768px) {
  .gallery {
    padding-block: 50px;
  }

  .gallery__inner {
    width: 100%;
    margin-top: 40px;
  }

  .galleryMovie {
    max-width: 560px;
  }
  .galleryBox {
    max-width: 560px;
  }
  * + .galleryBox,
  * + .galleryMovie {
    margin-top: 20px;
  }

  .galleryBox01 {
    grid-template-columns: 1fr;
  }

  .galleryBox02 {
    display: block;
  }
  .galleryBox02 .galleryItem:nth-child(2) {
    width: calc(200 / 320 * 100%);
    margin-top: 20px;
    margin-left: auto;
  }
  .galleryBox02 .galleryItem:nth-child(3) {
    width: calc(200 / 320 * 100%);
    margin-top: -4%;
  }

  /* gallerySlider */
  .gallerySlider {
    width: 100%;
  }
  .gallerySliderWrap .swiper-button-prev,
  .gallerySliderWrap .swiper-button-next {
    width: 30px;
    background-color: rgb(151 130 54 / .6);
  }
  .gallerySliderWrap .swiper-button-prev img,
  .gallerySliderWrap .swiper-button-next img {
    width: 10px;
  }
  .gallerySliderWrap .swiper-pagination {
    bottom: -30px;
    gap: 12px;
  }
  .gallerySliderWrap .swiper-pagination-bullet {
    width: 12px;
  }
}