.SpModal {
  display: none;
}

/* .modalInSlider {
  text-align: center;
} */
.heightspace {
  height: 25vh;
}

/* .swiperModalButton {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
  align-items: center;
} */

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* padding: 30px; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(133, 133, 133, 0.9);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  max-width: 800px;
  /* padding: 20px; */
  text-align: center;
}

.modal__content a {
  font-size: 20px;
}

.modal_inner {
  filter: drop-shadow(0px 0px 4px #ddd);
  /* background: #FFF; */
  /* width: 100%; */
  /* margin: 0 auto; */
  /* border-radius: 2px; */
  /* padding: 20px 0px; */
  /* display: flex; */
  /* justify-content: flex-start; */
  /* align-items: center; */
}

/* 閉じるボタン */
.modal__close-btn {
  background: #ddd;
  position: absolute;
  right: 0;
  top: -35px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__close-btn:hover {
  opacity: 0.8;
}

/* 閉じるボタンのX */
.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #313131;
  line-height: 1;
  width: 2rem;
  height: 0.2rem;
  background: currentColor;
  border-radius: 0.1rem;
  position: relative;
  transform: rotate(45deg);
}

.lineClose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

/* .swiper-slide p {
  margin-block-start: 0em;
  margin-block-end: 0em;
} */


.swiper-slide img {
  /* height: auto; */
  width: 100%;
}



/* button {
  color: rgb(255, 255, 255);
  background-color: #edae2f;
  font-size: 22px;
  border: 1px solid;
  display: block;
  width: fit-content;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
} */




@media (max-width: 767px) {
  .SpModal {
    display: block;
  }
}