@charset "UTF-8";
/*foundation/global内の_index.scss*/
/*=========================
variables
=========================*/
/** メディアクエリ **/
/*foundation/global内の_index.scss*/
/*=========================
mixin
=========================*/
/** メディアクエリ **/
/** グラデーション **/
/* ---------------------------------------
	contact
-----------------------------------------*/
.form-flex {
  margin-bottom: 1.5em;
}
@media (min-width: 77.5em) {
  .form-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.form-flex label {
  margin-bottom: 0.3em;
}
@media (min-width: 77.5em) {
  .form-flex label {
    -webkit-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
            flex-basis: 30%;
  }
}
.form-flex input, .form-flex textarea {
  width: 100%;
  padding: 0.3em 0.5em;
  border-radius: 0.3em;
  border: none;
  margin-top: 0.3em;
}
@media (min-width: 77.5em) {
  .form-flex input, .form-flex textarea {
    -webkit-flex-basis: 70%;
        -ms-flex-preferred-size: 70%;
            flex-basis: 70%;
  }
}

.confirmation-wrap {
  margin-top: 3em;
  text-align: right;
}

.confirmation {
  width: 100%;
  padding: 3rem;
  border: 1px solid #0a0a0a;
  border-radius: 0.3em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.confirmation:hover {
  background: #0a0a0a;
  color: #fff;
}
@media (min-width: 77.5em) {
  .confirmation {
    width: 70%;
  }
}
.confirmation.back {
  margin-top: 1em;
}/*# sourceMappingURL=contact.css.map */