.labo-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}
.labo-modal__close-btn {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .labo-modal__close-btn {
    width: 13.33333vw;
    height: 13.33333vw;
    top: 6.66667vw;
    right: 6.66667vw;
  }
}
.labo-modal__close-btn::before, .labo-modal__close-btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 4px;
  margin-left: -15px;
  margin-top: -2px;
  background-color: #FFF;
  content: '';
}
@media screen and (max-width: 834px) {
  .labo-modal__close-btn::before, .labo-modal__close-btn::after {
    width: 8vw;
    height: 1.06667vw;
    margin-left: -4vw;
    margin-top: -0.53333vw;
  }
}
.labo-modal__close-btn::before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.labo-modal__close-btn::after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.labo-modal__video-container {
  width: 500px;
}
@media screen and (max-width: 834px) {
  .labo-modal__video-container {
    width: 100%;
  }
}
.labo-modal__image-container {
  position: relative;
}
@media screen and (max-width: 834px) {
  .labo-modal__image-container {
    padding: 0 2.66667vw;
  }
}
.labo-modal__image-container > img {
  width: 100%;
  height: auto;
  display: block;
}
.labo-modal__image-container > .title {
  padding-top: 10px;
  color: #FFF;
  font-size: 14px;
  line-height: 1.2;
}
.labo-modal__image-container > .page {
  padding-top: 5px;
  color: #FFF;
  font-size: 12px;
  line-height: 1.0;
}
.labo-modal__image-container > .prev,
.labo-modal__image-container > .next {
  display: block;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  background-image: url("../images/modal_arrow.png");
  background-repeat: no-repeat;
  background-size: 26px 42px;
  background-position: right 10px center;
}
.labo-modal__image-container > .prev {
  left: 0;
  transform: scale(-1, 1);
}
@media screen and (max-width: 834px) {
  .labo-modal__image-container > .prev {
    left: 0.26667vw;
  }
}
.labo-modal__image-container > .next {
  right: 0;
}
@media screen and (max-width: 834px) {
  .labo-modal__image-container > .next {
    right: 0.26667vw;
  }
}
