@charset "utf-8";

.modal {
  display: block;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
  background-color: transparent;  /* モーダルウィンドウの背景色 */
  margin: 150px auto;
  width: 650px;
  max-width:95%; 
  position: relative;
}
.modal-title {
  color: #800000; /* モーダルウィンドウの文字の色 */
  font-size: 18px; /* モーダルウィンドウの文字の大きさ */
  font-weight: bold;
  line-height: 200%;
  text-align: center;
}

.modal-content>img{
	width: 100%;
	display: block;
	margin:;0 auto;
}

.close-button {
  color: #aaaaaa;
  float: right;
  font-size: 50px;
  font-weight: bold;
  position: absolute;
  right: -50px;
  top: -110px;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


