.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}
.modal-box {
background-color: #fff;
margin: 22% auto;
width: 33%;
animation-name: modalopen;
animation-duration: 1s;
position: relative;
padding: 40px 60px;
text-align: center;
}
.modalClose{
position: absolute;
top: 0;
right: 1.2rem;
font-size: 4rem;
}
.modalOpen {
  /* text-align: inherit; */
  margin: 0 2.8% 10px 0;
}
.modalOpen:last-child {
  margin-right: 0;
}
.modalOpen p {
  font-size: 18px;
  text-decoration: underline;
  white-space: nowrap;
  font-family: 'AudiTypeExtendBold', 'DFHSBold'!important;
}
.modal-box p {
  font-size: 18px;
  line-height: 2!important;
}

@media screen and (max-width: 900px) {
  .modal-box {
    width: 60%;
    padding: 40px 40px;
  }
}

@media screen and (min-width: 641px) {
  .pc_tel {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .pc_tel {
    display: none;
  }
}