@charset "UTF-8";
/**** お問い合わせ contact *** */

/* フォーム選択時の線を消す */
.contact-wrap *:focus {
  outline: none;
}

/* フォームを包むtable */
.contact-wrap table {
  margin-bottom: 40px;
  font-size: 1.6rem;
}
.contact-wrap input{
  font-weight:700;
}
.contact-wrap table td {
  padding: 10px 0px;
}
.contact-wrap table td:first-child {
  width: 220px;
  padding: 15px 0px;
}
.contact-wrap table + .button-white {
  margin: auto;
}

.contact-wrap p.contact-info {
  margin-bottom: 60px;
  text-align: center;
}
.contact-wrap p.example {
  margin-top: 9px;
}
.contact-wrap p.contact-info a {
  color:#67bb4f;
}
.contact-wrap p.contact-info a:hover {
  text-decoration:underline !important;
}
/* inputテキスト、テキストエリア共通スタイル */
.contact-wrap input[type="text"], .contact-wrap textarea {
  width: 720px;
  background-color: #fff;
  padding: 12px;
  border: 0px;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.contact-wrap input[type="text"] {
  min-height: 40px;
}

/* 郵便番号 */
.contact-wrap input[type="text"].posttal-code {
  width: 167px;
}
.contact-wrap textarea {
  height: 160px;
  font-weight: 700;
}
.contact-wrap button {
  -webkit-appearance: none;
  border: 0px;
}
.contact-wrap label.female {
  margin-right: 20px;
}

/* ラジオボタン */
.contact-wrap input[type="radio"] {
  -webkit-appearance: none;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  background: #fff;
  opacity: 1;
  margin-right: 5px;
}
.contact-wrap input[type="radio"]:checked {
  position: relative;
  background-color: #ffffff;
}
/* チェック時の丸 */
.contact-wrap input[type="radio"]:checked:before {
  content: "";
  position: absolute;
  background-color: #71bb48;
  width: 12px;
  height: 12px;
  display: block;
  top: 4px;
  left: 4px;
  border-radius: 50%;
}
/* ボタン関連 */
.contact-wrap .button-white{
  border: none;
  display: block;
  width: 240px;
  margin: auto;
  margin-bottom:20px;
  font-weight:500;
}
@media screen and (max-width: 768px) {
  .contact-wrap input[type="text"], .contact-wrap textarea {
    width: 100%;
  }
  .contact-wrap table {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact-wrap table td {
    padding: 0px 0px 20px;
    display: block;
    width: 100%;
  }
  .contact-wrap table td:first-child {
    padding: 0px 0px 5px;
    width: 100%;
  }
  .contact-wrap p.contact-info br {
    display: none;
  }
  .contact-wrap input[type="text"], .contact-wrap textarea {
    width: 100%;
  }
  /* ラジオボタン */
  .contact-wrap input[type="radio"] {
    margin: 5px 5px 5px 0px;
  }
}
