/*モーダルウインドウ start*/
.modal {
  xdisplay: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left:0;
  width: 100%;
  z-index: 22;
}
.modal__bg {
  background: rgba(255, 255, 255, 0.7);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 4px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  /*width: 600px;*/
}
.modal__content p {
  margin-bottom: -6px;
}
.modal__content img {
  width: 700px;
}
.modal__content a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.modal__content a.js-modal-close {
  position: absolute;
/*top: 0;*/
  top: -32px;
  right: 0;
  width: 32px;
  height: 32px;
  font-size: 26px;
  font-weight: 700;
  background: #fff;
  display: flex;
  color: #666;
  justify-content: center;
  align-items: center;
}
/*モーダルウインドウ end*/