
.modal {
  display: none;
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal-content {
  background-color: #FFFFFF;  /* モーダルウィンドウの背景色 */
  margin: 15% auto;
  padding: 20px;
  border:  none;
  width: 70%;  /* モーダルウィンドウの横幅 */  
}
.modal-title {
  color: #800000; /* モーダルウィンドウの文字の色 */
  font-size: 20px; /* モーダルウィンドウの文字の大きさ */
  font-weight: bold;
  line-height: 200%;
  text-align: center;
  margin-bottom: 10px;
}
.close-button {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.btn a{
    background: #888888;
    margin-top: 50px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    padding: 1em 2em 0.8em;
    display: block;
}