/* ------------------------------
 * ポップアップ表示
 * ------------------------------ */

#layer {
  z-index: 10;
  display: none;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.20;
}

#popup_layer {
  z-index: 10;
  display: none;
  position: absolute;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
}

#popup {
  z-index: 10;
  display: none;
  position: relative;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
  background-color: white;
  border-radius: 5px;
  text-align: center;
  overflow-y: auto;
}

#message {
  color: #000000;
  z-index: 10;
  position: relative;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
  word-break : break-all;
}

#close {
  z-index: 10;
  display: none;
  position: absolute;
  right: calc( 15% - 55px );
  top: 15%;
}

@media only screen and (max-width: 767px) {
  #popup_layer {
    left: 10%;
    top: 10%;
    width: 80%;
    height: 70%;
  }

  #popup {
    left: 10%;
    top: 10%;
    width: 80%;
    height: 70%;
  }

  #message {
    left: 10%;
    top: 10%;
    width: 80%;
    height: 70%;
  }

  #close {
    right: calc( 10% - 55px );
    top: 10%;
  }
}

/* ------------------------------
 * メンテナンス表示
 * ------------------------------ */

table.systemInfo-table {
  margin: 0 0 20px 0;
  width: 100%;
  font: inherit;
  vertical-align: baseline;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 12px;
}

tr.systemInfo-table td{
  padding: 5px 5px 5px 5px;
  background-color: #e2e2e2;
  color: #333;
  border: 1px solid #999;
  font: inherit;
  vertical-align: baseline;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}

td.systemInfo-td2 > a{
  text-decoration: underline;
}

