.wrapper {
  width: 100vw;
  /*画面に大きさを合わせる*/
  height: 100vh;
  position: static;
  /*ラッパーの左上隅を画面左上に固定*/
  top: 0px;
  left: 0px;
}

.popup_background {
  visibility:hidden;
  z-index: 200001;
  position: fixed;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.5);
  /*半透明の黒*/
  display: table-cell;
}
/*
.popup_body{
  visibility:hidden;
}
*/

.popup_body_table {
  width: 100%;
  height: 100%;
  display: table;
}

.popup_body_table_cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.popup_body_wrapper {
  z-index: 10000;
  display: inline-block;
  background-color: #fff;
  padding: 2px;
  border-radius: 7px;
  border: 1px solid #000;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, .4);
  margin: 0 10px;
}

.popup_body {
  z-index: 100001;
  background-color: #f9ebeb;
  border-radius: 7px;
  padding: 15px 0;
}

.popup_body .title {
  color: #f34949;
  /*background-color: red;*/
  text-align: center;
  /* margin: 10px 0; */
  padding: 15px;
  font-size: 1.6rem;
}

.popup_body .title:after {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 56px;
  height: 14px;
  border-top: 14px solid #adc4cc;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  margin: 20px auto 10px;
}

.selectBox {
  background-color: #fff;
  display: table;
  margin: 0px 20px 20px;
  padding: 10px 20px;
  max-width: 300px;
  border: 1px solid #cccaca;
}

.selectBox label {
  display: table-cell;
  float: left;
  width: 200px;
  text-align: left;
  /*width: 20%;*/
}

.popup_body .decisionBtn {
  /*display: inline;*/
  margin: 20px;
  font-size: 1.8rem;
  /*border-bottom: 1px solid #cecaca;*/
  /*border: 1px solid #000;*/
}

.popup_body .decisionBtn a {
  color: #fff;
  background-color: #f93b3b;
  padding: 5px 15px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, .4);
}

.popup_body form {
  margin: 20px;
  font-size: 1.7rem;
}