@charset "UTF-8";
/*レスポンシブブレイクポイント*/
html {
  scroll-behavior: smooth;
}

#face {
  background: #ccd6e0;
  height: 100vh;
  background-image: url(../images/contact/top_img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  #face {
    min-height: auto;
    height: calc(100vh - 80px);
  }
}
@media (max-width: 767px) {
  #face {
    height: calc(100vh - 50px);
    max-height: 400px;
  }
}
#face.complete {
  background-image: url(../images/contact/thanks/top_img.jpg);
}
#face .face_content {
  margin-left: 25vw;
  padding: 20px;
  width: calc(100% - 25vw);
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  #face .face_content {
    margin-left: 0vw;
    padding: 20px;
    width: 100%;
  }
}
#face .face_content .face_txt {
  position: absolute;
  left: 30px;
  bottom: 30px;
  line-height: 2;
}
@media (max-width: 767px) {
  #face .face_content .face_txt {
    left: 0px;
    bottom: 0px;
    line-height: 2;
    font-size: 13px;
    text-align: justify;
    margin: 0 20px 20px;
  }
}

/*------------------------
main
------------------------*/
.h2_common span {
  font-size: 40px;
}
@media (max-width: 767px) {
  .h2_common span {
    font-size: 24px;
  }
}

/**/
.p-contactform_button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-contactform_button .p-button_submit {
  width: 9em;
  padding: 0.5em 1em;
  border: 1px solid #0693d2;
  font-size: 16px;
  color: #fff;
  background: #0693d2;
  transition: all 0.2s;
  text-align: center;
  margin: 50px 0 30px;
}
.p-contactform_button .p-button_submit:hover {
  background: #ffbc25;
  border-color: #ffbc25;
  transition: all 0.2s;
}
.p-contactform_button .p-button_clear {
  width: 9em;
  padding: 0.5em 1em;
  border: 1px solid #0693d2;
  font-size: 16px;
  color: #0693d2;
  background: #fff;
  transition: all 0.2s;
  text-align: center;
  margin: 50px 0 30px 20px;
}
/*# sourceMappingURL=contact.css.map */