@charset "UTF-8";
/* mordalWindow ********************************************************/
.modal-checkbox {
  display: none;
}

.is-mordal {
  cursor: pointer;
}

/* 背景を暗くする */
.blackWrap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  z-index: 999;
  cursor: pointer;
  transition: all 0.1s ease-out 0.1s;
}

/* モーダルウィンドウ */
.mordalWindow {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 800px;
  padding: 25px 40px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.1s ease-out 0.1s;
}

@media only screen and (max-width: 736px) {
  .mordalWindow {
    padding: 25px 30px;
  }
}

/* チェック時オーバーレイとコンテンツを表示 */
.modal-checkbox:checked ~ .blackWrap {
  visibility: visible;
  opacity: 0.7;
  transition: all 0.3s ease-out;
}

.modal-checkbox:checked ~ .mordalWindow {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-out;
}

/* バツマーク */
.modal_close {
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  position: absolute;
  right: -5px;
  top: -54px;
}

.modal_close:hover {
  opacity: 0.7;
}

/* 見出し */
.mordalWindow__heading {
  margin-bottom: 1em;
  font-family: noto-sans-cjk-jp, "Noto Sans JP", sans-serif;
  color: #2990c7;
  line-height: 1.2;
  text-align: left;
}
