@charset "utf-8";

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

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  padding: 30px;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0;
  right: 18px;
  cursor: pointer;
  font-size: 30px;
}

.modalContents h4 { 
font-size: 24px; 
text-align: center; 
}

.modalContents p { 
font-size: 16px; 
text-align: left !important; 
line-height: 32px !important;
padding: 10px 0 0;
}
/* ------------------------------------------------------------ mobile */
@media only screen and (max-width:640px){
.modalContents h4 { 
font-size: 20px; 
}
.modalContents p { 
font-size: 16px; 
line-height: 27px !important;
}
}