@charset "UTF-8";
/* CSS Document */


/*--  form  --*/

@media screen and (min-width: 981px) {
  #form .cont-inner {
    width: 700px;
    padding: 20px 0 160px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 980px) {
  #form .cont-inner {
    padding-bottom: 160px;
  }
}

#form form .form_box_name span {
  color: #00B7BD;
}
#form form input,
#form form textarea,
#form form select {
  background: #F2FBFD;
  border: 1px solid #E3E3E3;
  border-radius: 10px;
  padding: 16px;
  width: 100%;
  margin: 5px 0 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 980px) {
  #form form input,
  #form form textarea,
  #form form select {
    padding: 10px;
    margin: 0 0 15px;
  }
}
#form form input::placeholder,
#form form textarea::placeholder,
#form form select::placeholder {
  color: #E3E3E3;
  font-size: 16px;
}
@media screen and (max-width: 980px) {
  #form form input::placeholder,
  #form form textarea::placeholder,
  #form form select::placeholder {
    font-size: 14px;
  }
}
#form form .form_box--inner {
  display: flex;
  justify-content: space-between;
}
#form form .form_box--inner input {
  flex-basis: 49%;
}
#form form select {
  cursor: pointer;
}
#form form .pri {
  text-align: center;
  margin-bottom: 30px;
}
#form form .send-img {
    transition: .4s;
    opacity: 0.2;
    display: block;
    border: none;
    margin: 0 auto;
    width: 280px;
    background-color: transparent;
    position: relative;
}
#form form .send-img img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

#form form .send-img .img-default {
    opacity: 1;
    z-index: 1;
}

/* ホバー画像は初期非表示 */
#form form .send-img .img-hover {
    opacity: 0;
    z-index: 2;
}
#form form .send-img:not(:disabled):hover .img-default {
    opacity: 0;
}
#form form .send-img:not(:disabled):hover .img-hover {
    opacity: 1;
}

/* 無効化されてるボタンのホバー画像は出ないように */
#form form .send-img:disabled .img-hover {
    display: none;
}

/*-- thanks --*/

#thanks .cont-inner {
  padding-top: 0;
}