@charset "UTF-8";
.p-contact {
  padding-bottom: 135px;
  padding-top: 75px;
}

.col-md-4,
.col-md-8,
.col-md-6 {
  flex: unset;
  padding: 0;
}

.col-md-4 {
  align-items: center;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 23px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.row {
  align-items: flex-start;
  border-bottom: solid 1px #e8e4db;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding-block: 40px;
}

.row label {
  font-size: 16px;
  letter-spacing: normal;
  line-height: 1.3125;
  margin-bottom: 0;
}

.row > .formTh > .requiredText {
  background-color: #0075ff;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  padding: 3px 7px;
  text-align: center;
}

.row > .formTh > .anyText {
  background-color: #9f9f9f;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  padding: 3px 7px;
  text-align: center;
}

.row > .formTd > textarea {
  height: 180px;
}

.row > .formTd > input,
.row > .formTd > textarea,
.row > .formTd > div > div > select {
  background-color: #f8f8f8;
  border: solid 1px #e8e4db;
  border-radius: 4px;
  box-sizing: border-box;
  color: inherit;
  font: inherit;
  max-width: 860px;
  padding: 24px 30px;
  vertical-align: top;
  width: 100%;
}

.row > .formTd > div > div > select {
  appearance: none;
  width: 300px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/arrow-down.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 20px;
}

.row > .formTd > input::-moz-placeholder, .row > .formTd > textarea::-moz-placeholder {
  color: #5a5a5a;
}

.row > .formTd > input::placeholder,
.row > .formTd > textarea::placeholder {
  color: #5a5a5a;
}

:focus-visible {
  outline: #0075FF auto 1px;
}

.privacy-policy-check {
  margin-top: 20px;
}

.privacy-policy {
  background: #ffffff;
  border: solid 1px #e8e4db;
  height: 155px;
  margin-inline: auto;
  margin-top: 60px;
  overflow-y: scroll;
  padding: 30px 20px;
  width: 100%;
}

.privacy-policy__item + .privacy-policy__item {
  margin-top: 68px;
}

.privacy-policy__title {
  align-items: center;
  border-bottom: 1.5px solid #d0d0d0;
  color: #464646;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  gap: 28px;
  letter-spacing: 1.08px;
  padding: 0 0 15px 0;
}

.privacy-policy__title::before {
  background: #343434;
  border-radius: 4px;
  content: "";
  display: inline-block;
  height: 13px;
  width: 13px;
}

.privacy-policy__text {
  color: #464646;
  font-size: 14px;
  letter-spacing: normal;
  line-height: 2.2;
  margin-top: 36px;
}
.privacy-policy__text a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.privacy-policy__text a:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.privacy-policy__text.privacy-policy__text02 {
  margin-top: 20px;
  padding-right: 20px;
}
.privacy-policy__text + .privacy-policy__text {
  margin-top: 30px;
}

.privacy-policy__text-link {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.privacy-policy__text-link:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.formBtnTd {
  padding-right: 60px;
  text-align: center;
  width: 100%;
}

.formBtn {
  background-color: #09CAEB;
  border: 1px solid #09CAEB;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  min-height: 60px;
  min-width: 230px;
  padding-inline: 30px;
  position: relative;
  text-align: left;
}
.formBtn:hover {
  opacity: 1;
}
.formBtn:hover::before {
  transform: translateY(-50%) translateX(3px);
}
.formBtn::after {
  align-items: center;
  background-color: #09CAEB;
  border-radius: 50%;
  content: "";
  display: inline-flex;
  display: block;
  height: 60px;
  justify-content: center;
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
}
.formBtn::before {
  background: url(../images/btn_arrow.svg) no-repeat center/contain;
  content: "";
  height: 18px;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  transition: transform 0.3s ease;
  width: 20px;
  z-index: 1;
}

.privChek {
  align-items: center;
  display: flex;
  gap: 3px;
  margin-top: -14px;
}

.privacyLabel {
  color: #36280c;
  font-size: 16px;
  letter-spacing: normal;
  margin-bottom: 32px;
  margin-left: 12px;
}

.privacyformError {
  margin-top: -36.5px !important;
}

@media (min-width: 768px) {
  .col-md-4 {
    max-width: 220px;
  }
  .row > .formTd > div > div > select {
    width: 400px;
  }
  .privacy-policy {
    padding-block: 16px;
    padding-inline: 29px 29px;
  }
}