.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 100000;
}
.modal-content {
  background: rgba(62, 58, 57,1);
  padding: 80px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width:767px) {
  .modal-content {
    padding: 30px 0;
  }
}
.js-modal-open {
  cursor: pointer;
}
.swiper {
  max-width: 1200px;/*モーダル画面幅MAXサイズ*/
  margin: 0 auto;
}
.swiper-slide {
  position: relative;
}
.swiper-slide__img {
  width: 80%;
}
.swiper-slide__img--design {
  position: relative;
  /* width: 100%; */
  aspect-ratio: 960 / 389;
  overflow: hidden;
}
.swiper-slide__img img {
  width: 100%;
}
.swiper-slide__img--design img {
  position: absolute;
  /* top: 50%;
  left: 50%; */
  max-height: 100%;
  max-width: 100%;
  /* transform: translate(-50%, -50%); */
  object-fit: contain;
  display: block;
}

.swiper-slide__body {
  display: flex;
  gap: 16%;
  justify-content: space-between;
  width: 98%;
  margin: 40px auto 0;
}
.swiper-slide__title-area {
  width: 290px;
}
.swiper-slide__title-ja {
  margin-bottom: 0;
  font-size:26px!important;
}
.swiper-slide__title-en {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 18px!important;
}
@media screen and (max-width:991px) {
  .swiper-slide__body {
    flex-direction: column;
    gap: 10px;
    width: 90%;
  }
  .swiper-slide__title-area {
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .swiper-slide__body {
    margin-top: 20px;
  }
  .swiper-slide__title-en {
    margin-top: 4px;
  }
  .swiper-slide__title-ja {
    font-size:22px!important;
  }
  .swiper-slide__title-en {
    margin-top: 5px;
    font-size: 18px!important;
  }
}

.swiper-slide__text-area {
  flex: 1;
  display: flex;
  gap: 6%;
  margin-top: 2px;
}
@media screen and (max-width:767px) {
  .swiper-slide__text-area {
    flex-direction: column;
    gap: 10px;
  }
}
.swiper-slide__text-area > * {
  flex: 1;
}
.swiper-slide__text-ja,
.swiper-slide__text-en {
  margin-bottom: 0;
  text-align: justify;
}
.swiper-slide__text-ja {
  font-size: 13px!important;
  line-height: 2;
}
.swiper-slide__text-en {
  font-size: 11px!important;
}


/* ナビゲーションボタン */
.custom-nav {
  position: absolute;
  /* top: 33%; */
  top: min(14vw, 33%);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2000;
}
/* .custom-nav--design {
  top: min(24vw, 40%);
} */
.swiper-button-next::after,
.swiper-button-prev::after {
  content:none;
}
@media screen and (max-width:767px) {
  .custom-prev img,
  .custom-next img {
    width: 10px;
  }
}