@charset "utf-8";

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 999999; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(130,143,200,0.5);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 90%;
  max-width: 600px;
  padding: 50px 50px;
  background-color: #fff;
    border-radius: 40px;
}
.modalWrapper h2 {
    font-size: 26px;
    line-height: 1.8em;
      font-weight: 500;
      color: #828fc8;
      vertical-align: middle;
      font-family: var(--f_kiwi);
    margin-bottom: 10px;
}
.modalWrapper p {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.8em;
}



.closeModal {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  cursor: pointer;
    font-size: 22px;
    padding: 10px 10px;
    border: 1px solid #CCC;
    border-radius: 50%;
    background-color: #FFFFFF;
    transition: all .3s ease;
}
.closeModal:hover {
     background-color: #FAFAFA;
    transition: all .3s ease;
}




