@charset "UTF-8";
.contact-mailForm {
  /*==================================================
  入力フィールド
  ================================================== */
}
.contact-mailForm select,
.contact-mailForm textarea,
.contact-mailForm input[type=tel],
.contact-mailForm input[type=text],
.contact-mailForm input[type=email],
.contact-mailForm input[type=url] {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  max-width: 100%;
  padding: 8px;
  border: 1px solid #dfdfdf;
  box-sizing: border-box;
}
.contact-mailForm textarea {
  width: 100%;
  min-height: 150px;
  padding: 8px !important;
}
.contact-mailForm {
  /*==================================================
  button
  ================================================== */
}
.contact-mailForm input[type=button],
.contact-mailForm input[type=submit],
.contact-mailForm button[type=button] {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  padding: 20px 5vw;
  border-radius: 50rem;
  line-height: 1;
  font-weight: 600;
  border: none;
  -webkit-appearance: none;
  transition: opacity 0.4s ease;
  background: #094aef;
  background: linear-gradient(90deg, #094aef 0%, #2ea4ff 100%);
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .contact-mailForm input[type=button],
  .contact-mailForm input[type=submit],
  .contact-mailForm button[type=button] {
    font-size: 25px;
    font-size: 3.2552083333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .contact-mailForm input[type=button],
  .contact-mailForm input[type=submit],
  .contact-mailForm button[type=button] {
    font-size: 15.625px;
  }
}
.contact-mailForm input[type=button]:hover,
.contact-mailForm input[type=submit]:hover,
.contact-mailForm button[type=button]:hover {
  opacity: 0.8;
  cursor: pointer;
}
.contact-mailForm input[type=button][disabled],
.contact-mailForm input[type=submit][disabled],
.contact-mailForm button[type=button][disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.contact-mailForm {
  /*==================================================
  check button  radio button 
  ================================================== */
}
.contact-mailForm input[type=radio] + label,
.contact-mailForm input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.contact-mailForm input[type=radio],
.contact-mailForm input[type=checkbox] {
  display: none;
  margin: 0;
}
.contact-mailForm input[type=radio] + label,
.contact-mailForm input[type=checkbox] + label {
  padding: 0 0 0 24px;
}
.contact-mailForm input[type=radio] + label::before,
.contact-mailForm input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;
}
.contact-mailForm input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}
.contact-mailForm input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}
.contact-mailForm input[type=radio]:checked + label::after,
.contact-mailForm input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  display: block;
}
.contact-mailForm input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3b72ff;
  border-radius: 8px;
}
.contact-mailForm input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #3b72ff;
  border-bottom: 3px solid #3b72ff;
  transform: rotate(-45deg);
}
.contact-mailForm ::-moz-placeholder {
  color: #ccc;
}
.contact-mailForm ::placeholder {
  color: #ccc;
}

/*==================================================
table
================================================== */
.contact-form-table {
  width: 100%;
  table-layout: fixed;
}
.contact-form-table-wrp {
  background: #fff;
  border: solid 1px #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.contact-form-table th, .contact-form-table td {
  font-weight: 700;
  vertical-align: middle;
}
.contact-form-table th {
  width: 35%;
  padding: 15px 3%;
  background: #bcedff;
  background: linear-gradient(-45deg, #bcedff 0%, #e8f9ff 75%);
  position: relative;
  z-index: 1;
}
.contact-form-table th::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0.2));
  background-size: 20px 20px;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.contact-form-table td {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-form-table tr:not(:last-child) th, .contact-form-table tr:not(:last-child) td {
  border-bottom: solid 1px #ddd;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  line-height: 1.5;
  text-align: center;
  background: #e74c3c;
  color: #fff;
  padding: 4vw;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .sec-error-text {
    font-size: 30px;
    font-size: 3.90625vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .sec-error-text {
    font-size: 18.75px;
  }
}

/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  line-height: 1;
  color: #fff;
  padding: 4px;
  float: right;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .optional-mark,
  .required-mark {
    font-size: 22px;
    font-size: 2.8645833333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .optional-mark,
  .required-mark {
    font-size: 13.75px;
  }
}

.optional-mark {
  background: #3498db;
}

.required-mark {
  background: #e74c3c;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  font-weight: 500;
  color: #e74c3c;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .error-text {
    font-size: 24px;
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .error-text {
    font-size: 15px;
  }
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 3vw;
}

/* リキャプチャ */
.contact-recaptcha-wrap {
  display: table;
}
.contact-recaptcha-wrap iframe {
  height: 78px;
}/*# sourceMappingURL=contact.css.map */