@charset "UTF-8";

/* mapArea
---------------------------------------------- */
.mapArea {
  padding-block: clamp(60px, 4.54rem + 3.88vw, 120px) clamp(90px, 6.33rem + 7.12vw, 200px);
}

.mapImg {
  max-width: 1200px;
}

.mapImg__img--narrow {
  max-width: 1000px;
  margin-top: 100px;
  margin-inline: auto;
}

.mapBtn {
  max-width: 420px;
  margin-top: 80px;
  margin-inline: auto;
}

.mapBtn__btn {
  background-color: #0d0d0d;
  color: #fff;
  font-size: 20px;
}
.mapBtn__btn .text {
  position: relative;
  z-index: 0;
}
.mapBtn__btn .text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 34px;
  aspect-ratio: 1;
  background: url(../../img/common/icon_map.svg) center/contain no-repeat;
  z-index: 0;
}

.mapSlider {
  max-width: 1760px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.conceptBox__inner {
  width: 90%;
  max-width: 1600px;
  height: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
.conceptBox__inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: calc(640 / 1920 * 100%);
  height: 100%;
  background: linear-gradient(90deg, rgba(0 0 0 / 0) 0%, rgba(0 0 0 / .45) 100%);
  z-index: 1;
}

.conceptBox__img {
  height: 100%;
}
.conceptBox__img img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: 30% top;
}

.conceptBox__textBox {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: 10%;
  right: 10%;
  font-family: "Shippori Mincho", serif;
  /* filter: blur(10px); */
  /* opacity: 0; */
  /* transform: translateY(8%); */
  transition: .8s .4s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 2;
}
/* .conceptBox.is-active .conceptBox__textBox {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
} */

.conceptBox__copy {
  color: #fff;
  font-weight: 500;
  /* font-size: clamp(24px, 0.83rem + 1.39vw, 40px); */
  font-size: clamp(16px, 0rem + 2.09vw, 40px);
  letter-spacing: 0.2em;
  line-height: 2;
}

.conceptBox__text {
  display: flex;
  align-items: center;
  gap: 1.5em;
  color: #F5F5F5;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 2;
  margin-top: 2em;
}
.conceptBox__text::before {
  content: '';
  display: block;
  width: 1px;
  height: 100px;
  background-color: rgb(255 255 255 /.6);
}

.mapSlider .minute {
  /* filter: blur(10px); */
  /* opacity: 0; */
  /* transform: translateY(-10%); */
  position: absolute;
  bottom: 3%;
  left: 5%;
  color: #fff;
  /* font-size: clamp(40px, -0.01rem + 5.21vw, 100px); */
  font-size: clamp(20px, -2.01rem + 5.21vw, 80px);
  letter-spacing: 0;
  line-height: 1;
  z-index: 2;
  transition: .8s .5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mapSlider .minute .num {
  font-size: 200%;
}
/* .conceptBox.is-active .minute {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
} */

.mapSlider .swiper-button-prev,
.mapSlider .swiper-button-next {
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 !important;
  transform: translateY(-50%);
  /* background-color: rgb(51 51 51 / .1); */
}
.mapSlider .swiper-button-prev::before,
.mapSlider .swiper-button-next::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 40%;
  width: 24px;
  height: 24px;
  border-top: 1px solid var(--color-accent02);
  border-right: 1px solid var(--color-accent02);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
}
.mapSlider .swiper-button-prev::before {
  left: 60%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .mapImg {
    max-width: 1560px;
  }

  .mapImg__img--narrow {
    margin-top: 30px;
  }

  .mapBtn {
    max-width: 280px;
    margin-top: 50px;
  }

  .mapBtn__btn {
    font-size: 14px;
  }
  .mapBtn__btn .text::before {
    width: 24px;
  }

  .conceptBox__inner::before {
    width: calc(240 / 320 * 100%);
  }
  .conceptBox__inner {
    width: calc(320 / 375 * 100%);
  }
  .conceptBox__textBox {
    right: 5%;
  }
  .conceptBox__text {
    font-size: 12px;
    margin-top: 1em;
  }
  .conceptBox__text::before {
    content: none;
  }
  .mapSlider .swiper-button-prev,
  .mapSlider .swiper-button-next {
    width: calc(27.5 / 375 * 100%);
  }
  .mapSlider .swiper-button-prev::before,
  .mapSlider .swiper-button-next::before {
    width: 10px;
    height: 10px;
  }
}