@charset "UTF-8";

#calculation {
  background: #ffffef;
  padding: 1em 0;
  text-align: center;
  width: 100%;
  position: relative;
}
#calculation input[type="number"] {
  width: 25% !important;
  border: 5px solid #dbffff;
  display: initial;
}
#calculation input[type="number"] + span {
  margin: 0 1%;
}
#calculation #send {
  background-color: #89c4ff;
  border-radius: 20px;
  padding: 0.5em 1em;
  width: 50%;
  font-weight: bold;
  color: #fff;
}
#calculation p {
  margin-bottom: 0;
}
#calculation p.calculation_title {
  margin-bottom: 1.6rem;
}

/*診断結果*/
#calculation .resultarea p {
  background: #ffffef;
  padding: 1em 0;
  text-align: center;
  width: 100%;
}
#calculation .resultarea p span {
  font-weight: bold;
  color: #29ABE2;
  font-size: 1.2em;
}

/*ローディング表示*/
#wrap_loading {
  display: none;
}
#wrap_loading .loading {
  display: table;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #fff;
  padding: 3% 0;
  opacity: 0.8;
}
#wrap_loading .loading .loadingMsg {
  text-align: center;
  font-size: 3.2vw;
  color: #222;
  font-weight: bold;
  display: block;
  animation: beating 1s linear 0s infinite;
}
@keyframes beating {
  0% {
    opacity: 1;
  }
  100% {
    opacity: .2;
  }
}

/*管理画面表示*/
#wpbody .wrap {
  background-color: #fff;
  padding: 20px;
}
#wpbody .wrap form ul {
  margin-bottom: 0;
}
#wpbody .wrap form .form-table {
  margin-top: 0;
}
#wpbody .wrap form ul li {
  margin-bottom: 0;
  display: inline-block;
  width: 300px;
}
#wpbody .wrap form ul li:first-child,
#wpbody .wrap form ul li:nth-child(2) {
  width: 200px;
}
#wpbody .wrap form ul li input[readonly] {
  border: none;
  box-shadow: none;
  background: #fff;
  width: 100%;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}
#wpbody .wrap form textarea {
  resize: both;
  overflow: scroll;
  width: 450px;
}
#wpbody .wrap form table input {
  width: 300px;
}
#wpbody .wrap form table th input {
  width: 200px;
}
#wpbody .wrap form table td input[type=checkbox] {
  width: initial;
}
#wpbody .wrap form table.form-table th,
#wpbody .wrap form table.form-table td {
  padding: 5px 2px;
}
#wpbody .wrap #gosei_form {
  width: 800px;
}
.inline-block {
  display: inline-block;
}
.button.button-success {
  color: rgb(255, 255, 255);
  background-color: rgb(34, 141, 58);
  border-top-color: rgb(37, 156, 65);
  border-right-color: rgb(37, 156, 65);
  border-bottom-color: rgb(37, 156, 65);
  border-left-color: rgb(37, 156, 65);
}
.button.button-warning {
  color: rgb(255, 255, 255);
  background-color: rgb(147, 25, 37);
  border-top-color: rgb(158, 27, 40);
  border-right-color: rgb(158, 27, 40);
  border-bottom-color: rgb(158, 27, 40);
  border-left-color: rgb(158, 27, 40);
}
