@charset "UTF-8";
/*======================================================= 
 モーダルウィンドウのスタイル
=======================================================*/
/* モーダル */
.modalArea {
    display: none;
    position: fixed;
    z-index: 999; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30,30,30,0.9);
  }
  .modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 90%;
    max-width: 500px;
    padding: 30px 25px 25px;
    background-color: #fff;
    border-radius: 5px;
  }
  .modal h2{
    text-align: center;
  }
  .modal p{
    font-size: 14px;
    font-weight: bold;
    color: #000;
  }
  .modal-btn{
    width: 100%;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
  }
  .mailModal{
    display: block;
    background-color: #0275a6;
    padding: 10px;
    border-radius: 5px;
    border-bottom: 5px solid #066077;
    text-decoration: none;
  }
  .mailModal{
    color: #fff;
  }
  .mailModal i{
    padding-right: 5px;
  }
  .close {
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    line-height: 1;
  }
  .modal-item{
    font-size: 14px;
    font-weight: bold;
    background-color: #fff;
    border: 2px solid #efefef;
    text-align: center;
    padding: 10px 0;
    margin: 5px auto;
  }