@charset "UTF-8";
.page-title {
  border-bottom: 1px solid #ccc;
}

.form_content {
  padding-top: 0;
}

.ttl {
  font-size: 2.6rem;
  margin: 0 0 2.5rem;
}

.form_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 30px 0;
  margin-top: 60px;
  /* デフォルトのラジオボタン */
  /* チェック前のラジオボタン */
  /* チェック後のラジオボタン */
}
.form_table th {
  width: 30%;
  text-align: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
.form_table td {
  width: 70%;
  padding: 1.75rem 1.75rem;
  border-bottom: 1px solid #ccc;
}
.form_table input, .form_table select, .form_table textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #999;
  padding: 0 10px;
  height: 45px;
  border-radius: 0;
  font-family: "Noto Sans JP";
  letter-spacing: 0.05em;
  border-radius: 3px;
  color: #333;
}
.form_table textarea {
  padding: 10px 12px;
  height: 215px;
}
.form_table .wpcf7-list-item.first {
  margin: 0;
}
.form_table .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
.form_table input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
.form_table .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #747373;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 7px;
  margin-top: auto;
  width: 1.2em;
  display: inline-block;
}
.form_table input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #747373; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 5px #fff; /* 中心の色のスタイル */
}
.form_table .radio_content input {
  width: auto;
  height: auto;
}
.form_table .zip_box {
  margin-bottom: 1.5rem;
}
.form_table .zip_box input {
  width: 230px;
  margin-left: 5px;
}
.form_table .addr_wrapper {
  display: flex;
}
.form_table .pref_select select {
  width: 230px;
}
.form_table .place select {
  width: 240px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url(../img/common/arrow_down_gray.svg) no-repeat right 12px center;
  background-size: 12px 7px;
  color: #333;
}
.form_table .place_list {
  margin-left: 15px;
}
.form_table .place_list li {
  font-size: 1.4rem;
}
.form_table .date {
  margin-top: 10px;
}
.form_table .date input {
  width: 100px;
}
.form_table .date select {
  width: 150px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url(../img/common/arrow_down_gray.svg) no-repeat right 12px center;
  background-size: 12px 7px;
  color: #333;
}
.form_table .date span {
  margin: 0 5px;
}
.form_table .hissu {
  font-size: 1.3rem;
  background: #ebebe4;
  color: var(--primary-color);
  display: inline-block;
  padding: 2px 4px 0px;
  margin-left: 10px;
}

.form_btn {
  width: 370px;
  margin: 6rem auto 0;
  position: relative;
}
.form_btn input {
  height: initial;
  width: 100%;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Noto Sans JP";
  border: 1px solid #ccc;
  color: #333;
  background: #e0e0e0;
  background: linear-gradient(0deg, rgb(224, 224, 224) 0%, rgb(255, 255, 255) 100%);
  padding: 15px 0 19px;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 3px;
  transition: 0.3s;
}
.form_btn input:hover {
  background: #d9d7d7;
  background: linear-gradient(0deg, rgb(217, 215, 215) 0%, rgb(250, 250, 250) 100%);
}
.form_btn .wpcf7-spinner {
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -75px;
}

@media (max-width: 960px) {
  .ttl {
    font-size: 2.4rem;
  }
  .form_table {
    border-collapse: collapse;
  }
  .form_table th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
  }
  .form_table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 2rem 0;
  }
  .form_btn {
    margin-top: 2rem;
  }
}
@media (max-width: 568px) {
  .form_content {
    padding-top: 10%;
  }
  .ttl {
    font-size: 2.2rem;
  }
  .lead {
    text-align: left;
  }
  .form_table {
    margin-top: 2.5rem;
  }
  .form_table .wpcf7-list-item {
    display: block;
    margin: 1rem 0 0;
  }
  .form_table th {
    font-size: 1.7rem;
    padding: 1rem 0;
  }
  .form_table td {
    padding: 1.75rem 0;
  }
  .form_table .zip_box input {
    width: 120px;
  }
  .form_table .place select {
    width: 140px;
  }
  .form_table .date input {
    width: 60px;
  }
  .form_table .date select {
    width: 120px;
  }
  .form_table .date span {
    margin: 0 2px;
  }
  .form_btn {
    width: 100%;
  }
  .form_btn input {
    font-size: 1.8rem;
    width: 80%;
    margin: 0 auto;
  }
  .form_btn .wpcf7-spinner {
    left: -26px;
  }
}
/*===============================================
 *	[ハイフンなしで入力！]を非表示
===============================================*/
#autozip {
  display: none !important;
}/*# sourceMappingURL=contact.css.map */