@charset "UTF-8";

#demitas_form h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #999;
}

#demitas_form h3 span {
  font-size: 1.6rem;
  padding: 0 15px 0 0;
}

form .msg, #invalid_msg {
  color: #f00;
  font-weight: bold;
  margin: 5px 0;
}

form input[type=text] {
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
  border: 1px solid #c1c1c1;
}

.step1 {
  margin: 0 0 35px 0;
}

.step1 ul {
  display: flex;
  flex-wrap: nowrap;
}

.step1 li {
  width: 16%;
}

.step1 label {
  display: inline;
}

.step1 label+label {
  display: inline-block;
  padding: 5px 0 0 10px;
}

.step2 {
  margin: 0 0 35px 0;
}

.step2 #block_shape > div {
  display: flex;
  align-items: top;
}

.step2 th, .step2 td {
  padding: 5px 0;
}

.step2 input {
  width: 150px;
}

.xy_img {
  width: 300px;
  text-align: center;
}

.step2 th {
  width: 32px;
}

.step3 {
  margin: 0 0 35px 0;
}

.step3 input {
  margin: 5px 0;
  width: 150px;
}

.step4 {
  margin: 0 0 35px 0;
}

.step4 input {
  margin: 5px 0;
  width: 550px;
}

.note {
  display: block;
  margin-bottom: 7px;
}

.btnArea {
  margin-top: 35px;
  text-align: center;
  position: relative;
}

.blink {
  -webkit-animation:blink 1.5s ease-in-out infinite alternate;
  -moz-animation:blink 1.5s ease-in-out infinite alternate;
  animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
  0% {opacity:0;}
  100% {opacity:1;}
}
@-moz-keyframes blink{
  0% {opacity:0;}
  100% {opacity:1;}
}
@keyframes blink{
  0% {opacity:0;}
  100% {opacity:1;}
}