@charset "UTF-8";

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 30000;
}

#modal #modalClose {
  position: absolute;
  display: flex;
  align-content: center;
  align-items: center;
  justify-items: center;
  color: white;
  right: 10px;
  top: 10px;
}

#modal #modalClose p {
  line-height: 1;
  font-size: 20px;
}

#modal #modalClose img {
  width: 29px;
  height: 29px;
}

#modal #modalWindow {
  position: absolute;
  top: 62px;
  left: 12px; right: 12px;
  bottom: 12px;
  padding: 14px;
  background-color: #d7c9c0;
  font-size: 9vw;
  overflow: scroll;
}

#modal #modalTitle {
  color: #cd2929;
  border-bottom: #cd2929 1px solid;
  text-align: center;
  line-height: 1.31;
  font-size: 9vw;
}

#modal #modalMessage {
  font-size: 5.6vw;
}

.showModalOnly {
  display: none;
}

#modalMessage .showModalOnly {
  display: block;
}

@media screen and (min-width: 600px) {
  #modal #modalWindow {
    max-width: 900px;
    margin: auto;
  }
  #modal #modalTitle {
    font-size: 24px;
  }
  #modal #modalMessage {
    font-size: 20px;
  }
}