/* =============================================================================


     contact


============================================================================= */
.contact {
  padding: 80px 0;
}

.contact-container {
  margin: auto;
  max-width: 940px;
}

.contact-txt {
  font-size: 2rem;
}

.contact-container form {
  margin: auto;
  max-width: 674px;
  padding: 120px 0;
}

.contact-item-ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact-item-ttl .re {
  background: #f00;
  border-radius: 4px;
  color: #fff;
  font-size: 1.6rem;
  margin-left: 0.5em;
  padding: 0.1em 0.15em;
}

.contact-item-ttl._accept {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  text-align: center;
}

.contact-item + .contact-item {
  margin-top: 48px;
}

.contact-input-box {
  margin-top: 20px;
}

.contact-input-box._name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact-input-box._name > span {
  max-width: calc(50% - 10px);
  width: 325px;
}

.contact-input-box._name > span + span {
  margin-left: 20px;
}

.contact-input-box._email {
  display: block;
}

.contact-input-box._email > span + span {
  display: block;
  margin-top: 20px;
}

.contact-span {
  font-size: 2rem;
  margin-top: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
}

.check-box-head {
  font-size: 2rem;
  margin: 40px auto 0;
  text-align: center;
}

.check-box-head:hover {
  opacity: 0.7;
}

.check-privacy {
  border: 1px solid #000;
  border-radius: 4px;
  font-size: 1.4rem;
  height: 200px;
  line-height: 2;
  margin: 16px auto 0;
  max-width: 920px;
  overflow: auto;
  padding: 20px 28px;
  width: 90%;
}

.form-btn-contents {
  margin: 60px auto 0;
  max-width: 920px;
  width: 90%;
}

.form-btn-box._n {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-btn-box._n .form-btn {
  width: calc(50% - 20px);
}

/* =============================================================================


     form


============================================================================= */
input,
textarea {
  background: #ffffd4;
  border: 1px solid #000;
}

.form-btn {
  height: 50px;
}

.form-btn input {
  background: #fad856;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
}

.form-btn input:hover {
  background: #3dc3ea;
  color: #fff;
}

.form-btn input:disabled {
  background: #ccc;
  color: #fff;
  pointer-events: none;
}

input {
  height: 50px;
}

textarea {
  height: 230px;
}

.contact input[type="checkbox"] {
  display: none;
}

.contact input[type="checkbox"] + span,
.contact input[type="checkbox"] + input[type="hidden"] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.contact input[type="checkbox"] + span:hover,
.contact input[type="checkbox"] + input[type="hidden"] + span:hover {
  opacity: 0.7;
}

.contact input[type="checkbox"] + span:before,
.contact input[type="checkbox"] + input[type="hidden"] + span:before {
  background: #ffffd4;
  border: 1px solid black;
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
}

.contact input[type="checkbox"] + span:after,
.contact input[type="checkbox"] + input[type="hidden"] + span:after {
  border-bottom: 3px solid black;
  border-left: 3px solid black;
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}

.contact input[type="checkbox"]:checked + span::after,
.contact input[type="checkbox"]:checked + input[type="hidden"] + span::after {
  opacity: 1;
}

.contact input[type="checkbox"]:checked + span + span::after {
  opacity: 1;
}

@media (max-width: 750px) {
  .contact {
    padding: 60px 0;
  }
  .contact-txt {
    font-size: 1.4rem;
  }
  .contact-container form {
    padding: 60px 0 0;
  }
  .contact-item-ttl {
    font-size: 1.6rem;
  }
  .contact-item-ttl .re {
    font-size: 1.2rem;
  }
  .contact-item + .contact-item {
    margin-top: 32px;
  }
  .contact-input-box._name > span {
    max-width: calc(50% - 4px);
  }
  .contact-input-box._name > span + span {
    margin-left: 8px;
  }
  .contact-input-box._email > span + span {
    margin-top: 12px;
  }
  .contact-span {
    font-size: 1.4rem;
  }
  .check-box-head {
    font-size: 1.6rem;
  }
  .check-privacy {
    font-size: 1.2rem;
    width: 100%;
  }
  .check-privacy {
    padding: 16px 16px;
  }
  .form-btn-contents {
    margin-top: 40px;
  }
}


/*# sourceMappingURL=contact.css.map*/