@charset "UTF-8";

#contact-wrap input,
#contact-wrap select,
#contact-wrap textarea,
#contact-wrap button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#contact-wrap .contact-inner-wrap .q-wrap {
  display: flex;
  border-bottom: 2px solid #0dabe0;
}
#contact-wrap .contact-inner-wrap .q-wrap:first-child {
  border-top: 2px solid #0dabe0;
}
#contact-wrap .contact-inner-wrap .label-area {
  padding: 25px 20px 20px;
  display: flex;
  justify-content: start;
  align-items: start;
  width: 190px;
  position: relative;
  background: #e2f8ff;
  color: #0dabe0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  #contact-wrap .contact-inner-wrap .label-area {
    width: 30%;
    padding: 12px 10px 10px;
    flex-direction: column;
  }
  #contact-wrap .contact-inner-wrap .label-area .required-txt {
    margin-left: 0;
    margin-top: 5px;
  }
}
#contact-wrap .contact-inner-wrap .label-area.last {
  flex-direction: column;
}
#contact-wrap .contact-inner-wrap .label-area.last .required-txt {
  margin-left: 0;
}
#contact-wrap .contact-inner-wrap .input-area {
  width: calc(100% - 190px);
  padding: 20px;
}
@media (max-width: 767px) {
  #contact-wrap .contact-inner-wrap .input-area {
    width: 70%;
    padding: 13px 10px 5px 10px;
  }
}
#contact-wrap .contact-inner-wrap .contact-label {
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  #contact-wrap .contact-inner-wrap .contact-label {
    font-size: 12px;
  }
}
#contact-wrap .contact-inner-wrap .required-txt {
  padding: 2px 5px;
  height: fit-content;
  color: #fff;
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  border-radius: 5px;
  background: #fb4671;
  font-weight: normal;
}
@media (max-width: 767px) {
  #contact-wrap .contact-inner-wrap .required-txt {
    margin: 5px 0 0;
    display: block;
    font-size: 10px;
  }
}
#contact-wrap .contact-inner-wrap .error-txt {
  margin-top: 4px;
  color: #fb4671;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 767px) {
  #contact-wrap .contact-inner-wrap .error-txt {
    font-size: 12px;
  }
}
#contact-wrap .contact-inner-wrap input[type=text],
#contact-wrap .contact-inner-wrap input[type=tel],
#contact-wrap .contact-inner-wrap input[type=email],
#contact-wrap .contact-inner-wrap select {
  padding: 5px;
  max-width: 390px;
  width: 100%;
  color: #333;
  font-size: 16px !important;
  border: 1px solid #ccc;
  background: #fff;
}
@media (max-width: 767px) {
  #contact-wrap .contact-inner-wrap input[type=text],
  #contact-wrap .contact-inner-wrap input[type=tel],
  #contact-wrap .contact-inner-wrap input[type=email],
  #contact-wrap .contact-inner-wrap select {
    max-width: inherit;
  }
}
#contact-wrap .contact-inner-wrap input[type=text].errored,
#contact-wrap .contact-inner-wrap input[type=tel].errored,
#contact-wrap .contact-inner-wrap input[type=email].errored,
#contact-wrap .contact-inner-wrap select.errored {
  border: 1px solid #fb4671;
}
#contact-wrap .contact-inner-wrap textarea {
  max-width: 520px;
  height: 194px;
  padding: 5px;
  width: 100%;
  color: #333;
  font-size: 16px !important;
  border: 1px solid #ccc;
  background: #fff;
}
@media (max-width: 767px) {
  #contact-wrap .contact-inner-wrap textarea {
    max-width: 100%;
  }
}
#contact-wrap .contact-inner-wrap textarea.errored {
  border: 1px solid #fb4671;
}
#contact-wrap .contact-inner-wrap .radio-group, #contact-wrap .contact-inner-wrap .checkbox-group {
  display: flex;
  align-items: center;
}
#contact-wrap .contact-inner-wrap .radio-group .wpcf7-radio, #contact-wrap .contact-inner-wrap .radio-group .wpcf7-checkbox, #contact-wrap .contact-inner-wrap .checkbox-group .wpcf7-radio, #contact-wrap .contact-inner-wrap .checkbox-group .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 767px) {
  #contact-wrap .contact-inner-wrap .radio-group .wpcf7-radio, #contact-wrap .contact-inner-wrap .radio-group .wpcf7-checkbox, #contact-wrap .contact-inner-wrap .checkbox-group .wpcf7-radio, #contact-wrap .contact-inner-wrap .checkbox-group .wpcf7-checkbox {
    flex-direction: column;
  }
}
#contact-wrap .contact-inner-wrap .radio-group label, #contact-wrap .contact-inner-wrap .checkbox-group label {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: normal;
  color: #666;
}
#contact-wrap .contact-inner-wrap .radio-group label::before, #contact-wrap .contact-inner-wrap .radio-group label::after, #contact-wrap .contact-inner-wrap .checkbox-group label::before, #contact-wrap .contact-inner-wrap .checkbox-group label::after {
  content: "";
  position: absolute;
}
#contact-wrap .contact-inner-wrap .radio-group label::before, #contact-wrap .contact-inner-wrap .checkbox-group label::before {
  top: 2px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid #666;
  border-radius: 2px;
  background: #fff;
  transition: ease-in-out 0.3s;
}
#contact-wrap .contact-inner-wrap .radio-group label::after, #contact-wrap .contact-inner-wrap .checkbox-group label::after {
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 15px;
  background: rgb(179, 29, 35);
  opacity: 0;
  transition: ease-in-out 0.3s;
}
#contact-wrap .contact-inner-wrap .radio-group label:has(input:checked)::after, #contact-wrap .contact-inner-wrap .checkbox-group label:has(input:checked)::after {
  opacity: 1;
}
#contact-wrap .contact-inner-wrap .radio-group label:has(input:checked)::before, #contact-wrap .contact-inner-wrap .checkbox-group label:has(input:checked)::before {
  background: #0075FF;
  border-color: #0075FF;
}
#contact-wrap .contact-inner-wrap .radio-group + .error-txt, #contact-wrap .contact-inner-wrap .checkbox-group + .error-txt {
  margin-top: 8px;
}
#contact-wrap .contact-inner-wrap .checkbox-group label::after {
  top: 3px;
  width: 5px;
  height: 9px;
  background: transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  left: 4px;
  border-radius: 0;
}
#contact-wrap .wpcf7-response-output {
  display: none !important;
}
#contact-wrap .wpcf7-not-valid-tip {
  display: none !important;
}
#contact-wrap .btn-wrap {
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
#contact-wrap .btn-wrap p {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  #contact-wrap .btn-wrap {
    gap: 10px;
    margin-top: 10px;
  }
  #contact-wrap .btn-wrap p {
    gap: 10px;
  }
}
#contact-wrap .contact-btn {
  display: block;
  text-align: center;
  background: #3bb9e4;
  color: #fff;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 5px;
  max-width: 216px;
  width: 100%;
  padding: 16px 10px;
  line-height: 1;
  font-size: 18px;
  box-shadow: 0 3px 0 #0c88b1;
  border: none;
}
@media (min-width: 768px) {
  #contact-wrap .contact-btn:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  #contact-wrap .contact-btn {
    width: 100%;
    max-width: 130px;
    height: 40px;
    font-size: 16px;
    padding-inline: 5px;
  }
}
#contact-wrap .contact-btn.back-btn {
  background: #9f9f9f;
  box-shadow: 0 3px 0 #5f5f5f;
}
