
/*===============================================
●共通
===============================================*/


/* テキストボックス */
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  height: 54px;
  padding: 0 10px;
  font-size: 16px;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  background-color: #ffffff;
  border: none;
  -webkit-appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 16px;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  background-color: #ffffff;
  border: none;
  -webkit-appearance: none;
}

/* 必須 */
span.must {
  display: block;
  width: 50px;
  height: 20px;
  margin-top: 5px;
  padding-top: 3px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  background-color: #CEBC36;
}

/* 個人情報保護方針 チェックボックス */
.box-form-privacy-check {
  position: relative;
  width: 90%;
  max-width: 640px;
  margin: 60px auto 0;
  text-align: left;
}

.box-form-privacy-check label {
  line-height: 1.5;
}

.box-form-privacy-check a {
  text-decoration: underline;
}

input[type="checkbox"] {
  position: absolute;
  top: 14px;
  left: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  vertical-align: top;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type="checkbox"]::before {
  background-color: #ffffff;
  border: 1px solid #CCCCCC;
  width: 18px;
  height: 18px;
  top: -2px;
  left: 5px;
  transform: translateY(-50%);
  border-radius: 3px;
}

input[type="checkbox"]:checked::after {
  border-bottom: 2px solid #333333;
  border-left: 2px solid #333333;
  height: 5px;
  width: 10px;
  top: -7px;
  left: 9px;
  transform: rotate(-45deg);
}

input[type="checkbox"]:checked::before {
  border: 1px solid #035ECC;
}




/*===============================================
●画面の横幅が813px以上(タブレット・PC)
===============================================*/
@media screen and (min-width: 813px) {



}

/*===============================================
●画面の横幅が812px以下(スマホのみ)
===============================================*/
@media screen and (max-width: 812px) {

  input[type="text"] {
    height: 40px;
  }

  textarea {
    height: 80px;
  }

  .box-form-privacy-check {
    margin: 30px auto 0;
  }

  input[type="checkbox"] {
    top: -7px;
  }

  span.must {
    display: inline-block;
    margin-left: 10px;
    width: 40px;
    height: 16px;
    margin-top: 5px;
    padding-top: 2px;
    font-size: 10px;
  }

}

.wpcf7-list-item{
  margin-left: 2em !important;
}