@charset "UTF-8";
.form__item {
  display: flex;
  flex-wrap: wrap;
  padding: 35px 30px;
  border-bottom: solid 1px #E6E6E6;
}

.form__item:first-of-type {
  border-top: solid 1px #E6E6E6;
}

.form__item dt {
  width: 225px;
  padding-right: 20px;
  font-weight: 500;
}

.form__item dd {
  width: calc(100% - 225px);
}

.form input:not([type=submit]), .form .form textarea {
  width: 100%;
  max-width: 560px;
  padding: 1em;
  background: #FAFAFA;
  border: 1px solid #FAFAFA;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form input[type="file"] {
  display: inline-block;
  background: none;
  outline: none;
  border: none;
}

.form label {
  padding: 4px 18px;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  background: #2F81F2;
  border-radius: 4px;
}

.form .fileclear {
  display: none;
  margin: 10px 0 0;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}

.form .js-upload-filename {
  margin-left: 10px;
}

.form select {
  width: 100%;
  max-width: 560px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* デフォルトの矢印を非表示 */
  background: #FAFAFA url(/assets/img/common/icon_arrow_04.png) no-repeat center right 10px/24px;
  border: none;
  font-size: 1.4rem;
  padding: 1em;
  text-shadow: 0 0 #aaa;
}

.form select::-ms-expand {
  display: none;
  /* デフォルトの矢印を非表示(IE用) */
}

.form textarea {
  width: 100%;
  padding: 1em;
  background: #FAFAFA;
  border: 1px solid #FAFAFA;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  font-size: 1.4rem;
  background: #2F81F2;
  color: #FFF;
  border-radius: 4px;
  font-size: 1.6rem;
  padding: 25px 60px;
  min-width: 200px;
  margin: 0 10px 15px;
  transition: opacity .5s ease;
}

.form__btn.is-back {
  background: #626262;
}

.form__btn:hover {
  opacity: .7;
}

.form__required {
  color: #BE1A15;
  font-size: 1.2rem;
  position: relative;
  top: -4px;
  left: 5px;
}

.confirm .form .js-upload-filename {
  display: none;
}

.confirm .form label {
  background: none;
}

.confirm .form a {
  color: #333333;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .form__item {
    padding: 20px 0px;
  }
  .form__item dt {
    width: 100%;
    padding: 0 0 10px;
  }
  .form__item dd {
    width: 100%;
  }
  .form input:not([type=submit]), .form .form textarea {
    width: 100%;
  }
  .form__btn {
    padding: 20px 40px;
  }
}

@media screen and (min-width: 768px) {
  .form textarea {
    height: 200px;
  }
}
