/* happyell Contact Form 7 css */
/* Contact Form 7 スマホ横幅はみ出し対策 */
.wpcf7,
.wpcf7 form {
  max-width: 100%;
  padding : 1em;
  overflow-x: hidden;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding : 0.2em;

}

.wpcf7 textarea {
  display: block;
}

/* 送信ボタンもスマホ幅に収める */
.wpcf7 input[type="submit"],
.wpcf7 button {
  max-width: 80%;
  box-sizing: border-box;
}

/* スマホだけ送信ボタンを横幅いっぱいにする場合 */
@media screen and (max-width: 767px) {
  .wpcf7 input[type="submit"],
  .wpcf7 button {
    width: 100%;
  }
}

