.entry_btn {
  margin-top: 60px;
}
#demo11 {
  background: rgba(255, 65, 65, 0.5);
  font-weight: bold;
}
#demo11:hover {
  background: rgba(255, 170, 170, 0.5);
}
.to-top {
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.to-top a {
  background: rgba(0, 153, 204, 0.75);
  border-radius: 100px;
  display: inline-block;
  font-size: 12px;
  width: 50px;
  line-height: 50px;
}
.to-top a:hover {
  opacity: 0.8;
}
.entry {
  font-size: 14px;
}
.entry dl {
  margin: 2px 0;
  padding: 5px 0;
  border-bottom: 1px dotted #d4f7ff;
}
.entry dl:first-of-type {
  border-top: 1px dotted #d4f7ff;
  margin-top: 10px;
}
.entry dl dt,
.entry dl dd {
  text-align: left;
  overflow: hidden;
  padding: 2px 0;
}
.entry dl dd input,
.entry dl dd textarea {
  box-sizing: border-box;
  font-size: 14px;
  width: 100%;
}
.entry dl dd input[type="radio"] {
  width: auto;
  opacity: 0;
}
.entry dl dd .statusBox {
  position: relative;
  cursor: pointer;
}
.entry dl dd .statusBox::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  background-color: #fff;
}
.entry dl dd .statusBox::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  background-color: #00A7D3;
  transition: .2s;
  opacity: 0;
}
.entry dl dd input[type="radio"]:checked + .statusBox::after {
  opacity: 1;
}
::-webkit-input-placeholder {
  font-size: 14px;
  color: #ccc;
}
::-moz-placeholder {
  font-size: 14px;
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  font-size: 14px;
  color: #ccc;
}
.required_mark {
  background: #ffffff;
  border-radius: 2px;
  color: #ff6b6b;
  font-size: 12px;
  padding: 2px;
  margin: 0 2px;
}
.entry .required_mark {
  float: right;
}
.notes .required_mark {
  float: none;
}
.submit-button {
  margin: 20px 0;
  text-align: center;
}
.submit-button input {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #00a7d2;
  font-weight: bold;
  padding: 10px;
  width: 100%;
  transition: all 0.3s;
}
.submit-button input:hover {
  background: rgba(0, 167, 210, 0.8);
  color: #ffffff;
}
.button-area {
  display: flex;
  justify-content: space-around;
}
#confirm dl dd p {
  color: #46bad8;
}
.entry-page {
  background: url(../img/bg_infra02.jpg) center center/ cover no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
}
input[disabled],
textarea[disabled],
button[disabled] {
  background: #cccccc !important;
}
button[disabled]:hover {
  opacity: 1;
} /* ----------------------------------------------------------------------------------------------------Tablet （縦） 768px ~ 991px　まで---------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .entry dl dd input,
  .entry dl dd textarea {
    padding: 10px 2px;
  }
  .entry .block_inner dl dt {
    width: 25%;
  }
  .entry .block_inner dl dd {
    width: 75%;
  }
  .required_mark {
    margin: 0 20px 0 0;
  }
  .notes .required_mark {
    margin: 0 2px;
  }
}
