@charset "UTF-8";
/* ==========================================================================
modal
========================================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #F5F7EC;  /* モーダルウィンドウの背景色 */
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888888;
  width: 40%;  /* モーダルウィンドウの横幅 */
}
@media screen and (max-width: 768px){
  .modal-content {
    width: 90%;  /* モーダルウィンドウの横幅 */
  }
}
.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;
}
