@charset "UTF-8";
/* Scss Document */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
section.contactform {
  width: 100%;
  padding: 128px 24px;
  -webkit-transition-property: padding;
  transition-property: padding;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.skelton {
  background-color: rgba(255, 255, 255, 0.85);
  max-width: 1000px;
  margin: 48px auto 0;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  -webkit-transition-property: padding;
  transition-property: padding;
  -webkit-transition-property: margin;
  transition-property: margin;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.skelton form > div {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  color: #707070;
  margin-bottom: 48px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.skelton form > div > div:first-child {
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
}

.skelton form > div > div:first-child > label {
  position: relative;
  font-size: 1.2rem;
}

.skelton form > div > div:first-child > label:after {
  content: "任意";
  font-size: 0.8rem;
  color: #ffffff;
  padding: 0px 4px 2px;
  background-color: #003e66;
  margin-left: 12px;
}

.skelton form > div > div:first-child > label.required:after {
  content: "必須";
  background-color: #f77761;
}

.skelton form > div > div:last-child {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.skelton form > div > div:last-child > input, .skelton form > div > div:last-child textarea {
  width: 100%;
}

.skelton form > div > div:last-child > div {
  width: calc(50% - 4px);
  overflow-x: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.skelton form > div > div:last-child > div > span {
  margin-right: 6px;
  font-size: 0.8rem;
}

.skelton form > div > div:last-child > div > input {
  width: 100%;
}

.skelton form > div input, .skelton form > div textarea {
  padding: 8px;
  font-size: 0.8rem;
  font-family: "Noto Sans CJK JP Bold", sans-serif;
  border: 1px solid #cccccc;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.skelton form > div:nth-child(7) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.skelton form > div:nth-child(7) a {
  color: #707070;
  text-decoration: underline;
}

.skelton form > div:nth-child(7) a:hover {
  color: #003e66;
}

input.invalid {
  background-color: rgba(247, 118, 97, 0.1);
}

.error_empty {
  position: relative;
}

.error_empty:after {
  content: "⚠入力してください！";
  position: absolute;
  top: 100%;
  font-size: 0.75rem;
  color: #f77761;
  width: 100%;
  line-height: calc(1em + 2px);
}

.error_name {
  position: relative;
}

.error_name:after {
  content: "⚠ひらがな、カタカナ、漢字以外は入力できません";
  position: absolute;
  top: 100%;
  font-size: 0.75rem;
  color: #f77761;
  width: 100%;
  line-height: calc(1em + 2px);
}

.error_furi {
  position: relative;
}

.error_furi:after {
  content: "⚠ひらがな、カタカナ以外は入力できません";
  position: absolute;
  top: 100%;
  font-size: 0.75rem;
  color: #f77761;
  width: 100%;
  line-height: calc(1em + 2px);
}

.error_tel {
  position: relative;
}

.error_tel:after {
  content: "⚠数字以外は入力できません";
  position: absolute;
  top: 100%;
  font-size: 0.75rem;
  color: #f77761;
  width: 100%;
  line-height: calc(1em + 2px);
}

.error_tel2 {
  position: relative;
}

.error_tel2:after {
  content: "⚠番号が正しいかどうかご確認ください";
  position: absolute;
  top: 100%;
  font-size: 0.75rem;
  color: #f77761;
  width: 100%;
  line-height: calc(1em + 2px);
}

.error_email {
  position: relative;
}

.error_email:after {
  content: "⚠メールアドレスが正しいかどうかご確認ください";
  position: absolute;
  top: 100%;
  font-size: 0.75rem;
  color: #f77761;
  width: 100%;
  line-height: calc(1em + 2px);
}

@media screen and (min-width: 701px) {
  .skelton {
    padding: 48px;
  }
  .skelton form > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .skelton form > div > div:first-child {
    width: calc(40% - 40px);
    text-align: right;
  }
  .skelton form > div > div:last-child {
    width: calc(60% - 40px);
  }
  .skelton form > div > div:last-child > div > span {
    margin-right: 12px;
  }
}

@media screen and (min-width: 960px) {
  section.contactform {
    padding: 150px 50px 50px;
  }
  .skelton {
    margin: 50px auto 0;
    padding: 50px;
  }
  .skelton form > div {
    margin-bottom: 50px;
  }
}
/*# sourceMappingURL=contact.css.map */