@charset "utf-8";
/* CSS Document */
#body2 {
  font-family: '源ノ角ゴシック Code JP EL', '源ノ角ゴシック Code JP N';
  width: 950px;
  margin: 0 auto;
  text-align: center;
}
h2.come {
  font-weight: bold;
  font-size: 2em;
  margin: 0 auto;
  margin-top: 50px;
  color: #313233;
  text-align: center;
}
p.coment {
  font-weight: bold;
  font-size: 1.2em;
  margin: 20px 0;
  text-align: center;
  color: #e83929;
}
/* Animation webkit */
@-webkit-keyframes myfirst {
  0% {
    margin-left: -235px
  }
  90% {
    margin-left: 100%;
  }
  100% {
    margin-left: 100%;
  }
}
/* Animation */
@keyframes myfirst {
  0% {
    margin-left: -235px
  }
  70% {
    margin-left: 100%;
  }
  100% {
    margin-left: 100%;
  }
}
.kumo {
  background-image: url("../img/kumo.png");
  width: 170px;
  height: 104px;
  margin-left: -235px;
  position: absolute;
  animation: myfirst 24s;
  -webkit-animation: myfirst 24s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}
#kumo1 {
  top: 250px;
}
#kumo2 {
  top: 500px;
  animation-delay: 12s;
  -webkit-animation-delay: 12s;
}
#form {
  height: 1000px;
  background: url("../img/kakeziku.jpg");
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 15px #000;
}
form {
  font-weight: bold;
  margin: 50px auto;
  width: 500px;
  padding-top: 40px;
  color: #313233;
  position: relative;
}
label, input, textarea {
  display: block;
}
input, textarea {
  width: 500px;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 10px;
  font-family: '源ノ角ゴシック Code JP EL', '源ノ角ゴシック Code JP N';
  font-size: 1em;
  color: #313233;
  transition: border 0.5s;
  -webkit-transition: border 0.5s;
  -moz-transition: border 0.5s;
  -o-transition: border 0.5s;
  border: solid 3px #c6cacc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input:focus, textarea:focus {
  border: solid 3px #c6cacc;
}
textarea {
  height: 100px;
  resize: none;
  overflow: auto;
}
input[type="submit"] {
  background-color: #313233;
  color: white;
  height: 50px;
  cursor: pointer;
  margin-top: 30px;
  font-size: 1.29em;
  font-family: '源ノ角ゴシック Code JP EL', '源ノ角ゴシック Code JP N';
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
input[type="submit"]:hover {
  background-color: #e83929;
}
label {
  font-size: 1.5em;
  margin-top: 20px;
  padding-left: 20px;
  text-align: left;
}
.formgroup, .formgroup-active, .formgroup-error {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 10.5%;
  transition: background-image 0.7s;
  -webkit-transition: background-image 0.7s;
  -moz-transition: background-image 0.7s;
  -o-transition: background-image 0.7s;
  width: 566px;
  padding-top: 2px;
}
.formgroup-active {
  background-image: url("../img/ok.png"); /*画像スマイルにする*/
}
.formgroup-error {
  background-image: url("../img/no.png"); /*画像アングリ-にする*/
  color: #e83929;
}
h3.text {
  font-weight: bold;
  font-size: 1.5em;
  margin-top: 100px;
  color: #e83929;
}
p.text {
  font-weight: bold;
  font-size: 1.2em;
  ;
  color: #e83929;
  margin-top: 30px;
}
.nono {
  text-align: center;
  padding-top: 10px;
}
@media screen and (max-width:480px) {
  /*画面幅が480pxまでの時*/
  body1, .wrap {
    width: 100%;
    text-align: center;
  }
}