body {
  position: relative;
}

.carouselModal {
}
.carouselModal__wrapper {
  /* display: none; */
  background-color: rgba(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1010;
  visibility: hidden;
}

.carouselModal__wrapper:hover {
  visibility: visible;
  /*opacity: 1;
  transition: all .5s;*/
}

.carouselModal__close__outer {
  width: 100%;
  max-width: 914px;
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1030;
}

.carouselModal__close {
  position: absolute;
  right: 0;
  top: 30px;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 50%;
}

.carouselModal__close:hover {
  border-color: #e6002d;
}

.carouselModal__close > span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  content: "";
}
.carouselModal__close > span::before,
.carouselModal__close > span::after {
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
  background-color: #333;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.carouselModal__close > span::before {
  transform: rotate(45deg);
}
.carouselModal__close > span::after {
  transform: rotate(-45deg);
}

.carouselModal__close:hover > span::before,
.carouselModal__close:hover > span::after {
  background-color: #e6002d;
}

.carouselModal__content {
  padding: 61px;
  width: 100%;
  max-width: 914px;
  background-color: #fff;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1020;
}

.carouselModal__content__image {
  margin-left: 36px;
  flex-basis: 50%;
}

.carouselModal__content__info {
  flex-basis: 50%;
}

.carouselModal__content__info__title {
  margin-bottom: .5em;
  padding-bottom: .2em;
  border-bottom: 1px solid #e6002d;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, Osaka, Arial, "MS PGothic", sans-serif;
}

/*@media only screen and (max-width:860px) {
	.carouselModal__close__outer {
		top: 10%;
	  }
}*/

@media only screen and (max-width:767.98px) {
  .carouselModal__content {
    width: 95%;
    padding: 20px;
    flex-direction: column-reverse;
  }

  .carouselModal__close__outer {
    top: -55px;
  }

  .carouselModal__content__image {
    margin: 0 auto;
    max-width: 376px;
    width: 100%;
  }

  .carouselModal__content__info__title {
    font-size: 1.8rem;
    margin-top: .5em;
    padding-bottom: .5em;
  }
  .carouselModal__close {
	  top: 0;
	}
}

/*@media only screen and (max-width:500px) {
	.carouselModal__close__outer {
		top: 10%;
	  }
}/*


/*.carouselModal__wrapper {
	visibility: hidden;
    transition: opacity 0.5s ease-out;
	opacity: 0;
}*/