@charset "UTF-8";

.modal_bg{
  width: 100vw;
  height: 100vh;
  position: fixed;
  top:0px;
  left:0px;
  z-index:10;
  transition:0.5s;
  background-color:rgba(0,0,0,.8)
}
.modal_box{
  position: fixed;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  background-color: #fff;
  opacity: 0;
  z-index: -1;
  transition:0.5s;
  overflow: scroll;
  text-align: center;
}


.modal_box.is-active{
  opacity: 1;
  z-index:11;
  transition:0.5s;
}

.modal_box img{
  width: 100%;
  height: auto;
  margin-bottom: 65px;
}

.modal_close{
  margin: 20px auto 80px;
  display: block;
  width: 60%;
  text-align: center;
  padding: 10px;
  text-decoration: underline;
  text-decoration-color: #0081ff;
  color: #0081ff;
  font-size: 20px;
}
