* {
  margin: 0;
  padding: 0;
}

.contact-title h1 {
  border-bottom: solid 4px #68A759;
  padding-bottom: 10px;
  display: inline;
  color: #68A759;
}

.contact-module__wrapper {
  width: 60%;
  height: 100%;
  margin-left: 15%;
  padding-right: 20px;
  border-radius: 30px;
}

.contact-module__text-wrapper,
.contact-module__input-wrapper_attention,
.contact-module__input-wrapper {
  margin: 5%;
  margin-left: 10%;
  width: 80%;
}

.contact-module__input-wrapper_rightside {
  margin: 2% 5% 5% 10%;
  width: 85%;
}

.contact-module__text-wrapper textarea {
  width: 100%;
  height: 180px;
  padding: 15px;
  border: 1px solid #EFEFEF;
  resize: none;
  font-size: 100%;
  border-radius: 10px;
  background-color: #EFEFEF;
  margin-top: 10px;
}

.contact-module__input-wrapper input,
.contact-module__input-wrapper_rightside input {
  width: 100%;
  height: 50px;
  border: 1px solid #EFEFEF;
  font-size: 100%;
  border-radius: 10px;
  background-color: #EFEFEF;
  margin-top: 10px;
}

.contact-module__text-wrapper_label,
.contact-module__input-wrapper_label {
  letter-spacing: 2px;
}

.contact-module__input-wrapper_label {
  margin: auto 10px;
}

.contact-module__text-wrapper_textarea,
.contact-module__input-wrapper_input {
  width: calc(100% - 30px);
}

.contact-module__submit {
  width: 100%;
  height: 50px;
  text-align: center;
  margin: 40px auto;
}

.contact-module__submit button {
  width: 40%;
  min-width: 100px;
  height: 100%;
  background-color: #68A759;
  color: #FFFFFF;
  font-size: 1.5em;
  letter-spacing: 3px;
  cursor: pointer;
  transition: background-color .5s, color .5s, border .5s;
  border-radius: 0.8em;
  border: solid 1px #68A759;
}

.contact-module__submit button:hover {
  color: #68A759;
  background: #FFF;
  border: solid 1px #68A759;
  transition: .4s;
}

.contact-module__input-wrapper_attention {
  line-height: 1em;
  margin-bottom: 0px;
  letter-spacing: 2px;
}

.contact-module__input-wrapper_attention p {
  width: 20%;
  text-align: center;
}

.contact-module__input-wrapper_attention span {
  width: 70%;
  font-size: 0.8em;
}

.contact-module__input-wrapper_label p {
  font-size: 0.7rem;
}

/**** お問い合わせタイトル ****/
.contact-title {
  margin-top: 150px;
  text-align: center;
}

/**** 大枠 ****/
.module__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 50px;
  padding-bottom: 700px;
}

/**** 記入欄 ****/
.contact-module__flame {
  position: relative;
  height: 100%;
  background-color: #ffffff;
  color: #3b3b3b;
  font-weight: bold;
  border: 2px #3C3C3C solid;
  border-radius: 30px;
}

input::placeholder {
  color: #BEBEBE;
}

textarea::placeholder {
  color: #BEBEBE;
}

input.item {
  padding: 0 15px;
  color: #3C3C3C;
}


/**** お問い合わせ ****/
.contact-module__element__wrapper {
  width: 40%;
  margin-right: 10%;
}

.contact-module__element_flame {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  color: #3b3b3b;
  font-weight: bold;
  border: 2px #3C3C3C solid;
  border-radius: 30px;
  margin-bottom: 30px;
  padding: 8px;
  pointer-events: none;
}

.contact-module__element_flame p {
  text-align: center;
  margin-top: 16px;
}

.contact-module__element_flame a {
  text-decoration: none;
}

.contact-module__element p {
  color: #68A759;
  font-size: 22px;
  margin-top: 0;
}

.contact-module__element {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-module__element b {
  margin: 0 10px;
}


/* =====================================
            レスポンシブ対応
   ===================================== */
@media screen and (max-width: 1024px) {
  .background {
    background-image: none;
  }

  .contact-title h1 {
    font-size: 24px;
    border-bottom: 3px solid #68A759;
  }

  .module__wrapper {
    display: block;
    width: 90vw;
    margin: 0 auto;
    padding-bottom: 178px;
  }

  .contact-module__wrapper {
    width: 100%;
    margin: 0;
    padding: 48px 0 40px;
  }

  .contact-module__flame {
    padding: 16px 0;
  }

  .contact-module__submit button {
    width: 80%;
    border-radius: 10px;
  }

  .contact-module__element__wrapper {
    width: 100%;
    margin: 6px auto;
  }

  .contact-module__element_flame {
    width: auto;
    pointer-events: auto;
  }

}