/* モーダルCSS */
.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: 80%;
  max-width: 500px;
  padding: 50px 30px;
  background-color: #000;
}



.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}


/* 以下ボタンスタイル */
button {
  font-family: "ＭＳ Ｐ明朝", "細明朝体", "ヒラギノ明朝 Pro W3", "Times New Roman", Times, serif;

  padding: 10px 10px 10px 10px;
  background-color: #000;
  border: #bebebe 1px solid;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .55);
  border-radius: 5px;
  cursor: pointer;
  width: 360px;
  margin-top: 0px;
  color: #fff;
  font-size: 14px;
  ;

  text-align: center;
  text-decoration: none;
  transition: all .2s linear;
}

#openModal {
  position: absolute;
  /* top: 50%;*/
  left: 50%;
  transform: translate(-50%, -50%);
}

button :link {
  color: #fff;
}

button {
  color: #fff;
  text-decoration: none;
  width: 360px;
  padding: 10px 10px 10px 10px;
  background-color: #000;
  border-radius: 5px;
  border: #bebebe 1px solid;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .55);
  color: #fff;
  display: inline-block;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: all .2s linear;

}

button:hover {
  color: #fff;
  text-decoration: none;
  width: 360px;
  padding: 10px 10px 10px 10px;
  background-color: #a5a5a5;
  border-radius: 5px;
  border: #bebebe 1px solid;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .100);
  color: #666;
  display: inline-block;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: all .2s linear;

}

button:visited {
  color: #fff;
  text-decoration: none;
  width: 360px;
  padding: 10px 10px 10px 10px;
  background-color: #000;
  border-radius: 5px;
  border: #878787 1px solid;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .30);
  color: #999;
  display: inline-block;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: all .2s linear;
}





@media only screen and (max-width: 750px) {
  /* 00px以下と条件定義 */

  button {
    /* margin-top: 480px;*/
    width: 67%;


  }

}

/* 

@media only screen and (max-width: 690px) {
  /* 00px以下と条件定義 */


  button {
    /* margin-top: 400px;*/
  }
}



/* 
@media only screen and (max-width: 560px) {
  /* 00px以下と条件定義 */

  button {
    /* margin-top: 330px;*/
  }
}
/* 

@media only screen and (min-width: 751px) {
  /* 00px以上と条件定義 */

  button {
    /* margin-top: 100px;*/
  }
}

@media only screen and (min-width: 900px) {
  /* 00px以上と条件定義 */

  button {
    /* margin-top: 130px;*/
  }
}

@media only screen and (min-width: 1200px) {
  /* 00px以上と条件定義 */

  button {
    /* margin-top: 250px;*/
  }
}


@media only screen and (min-width: 1500px) {
  /* 00px以上と条件定義 */

  button {
   /*  margin-top: 300px;*/
  }
}

