.title_main {
  font-size: 34px;
  font-weight: 500;
  color: #111111;
  margin: 50px 0;
  position: relative;
  text-align: center;
}
.title_main::after {
  display: block;
  width: 80px;
  height: 2px;
  background: #ee2c2e;
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.sub {
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #111111;
}

.top-contact .right .form_contact .box-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.top-contact .right .form_contact .box-left .input-box label {
  font-size: 16px;
  color: #333333;
  margin-bottom: 4px;
}
.top-contact .right .form_contact .box-left .input-box input {
  padding: 5px 10px;
  height: 44px;
  outline: none;
  font-size: 14px;
  color: #111111;
  border-radius: 0;
}
.top-contact .right .form_contact .box-left .input-box input:focus, .top-contact .right .form_contact .box-left .input-box input:focus-visible {
  outline: none;
  box-shadow: none;
}
.top-contact .right .form_contact .box-right {
  margin-top: 24px;
}
.top-contact .right .form_contact .box-right label {
  font-size: 16px;
  color: #333333;
  margin-bottom: 4px;
}
.top-contact .right .form_contact .box-right textarea {
  outline: none;
  font-size: 14px;
  color: #111111;
  border-radius: 0;
  height: 120px;
}
.top-contact .right .form_contact .box-right textarea:focus, .top-contact .right .form_contact .box-right textarea:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
}
.top-contact .right .form_contact .box-right .check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.top-contact .right .form_contact .box-right .check .label-agree {
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: normal;
  color: #222222;
  cursor: pointer;
}
.top-contact .right .form_contact .box-right .check .label-agree input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}
.top-contact .right .form_contact .box-right .check .label-agree .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
  border: solid 1px #dbdbdb;
  border-radius: 0;
}
.top-contact .right .form_contact .box-right .check .label-agree input:checked ~ .checkmark {
  background: #ee2c2e url("../../../../images/checkbox.svg") top -1px left -1px no-repeat;
}
.top-contact .right .form_contact .box-right .check span {
  font-size: 16px;
  color: #666665;
}
.top-contact .right .form_contact .box-right .box_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 24px 0 50px;
}
.top-contact .right .form_contact .box-right .box_submit a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #666665;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.top-contact .right .form_contact .box-right .box_submit .request_contact {
  color: #ee2c2e;
  border-bottom: solid 2px #ee2c2e;
}
.top-contact .right .form_contact .box-right .box_submit .cancel {
  border-bottom: solid 2px #666665;
}

.mid-contact {
  padding: 20px;
  background: #f5f5f5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.mid-contact .item {
  text-align: center;
}
.mid-contact .item p {
  margin-top: 10px;
  margin-bottom: 0;
}

.map-contact .address {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 24px 0;
  border-bottom: solid 1px #eeeeee;
  color: #111111;
  font-size: 18px;
}
.map-contact .address p {
  font-weight: 300;
  margin-bottom: 0;
}
.map-contact p iframe {
  width: 100% !important;
  height: 480px !important;
  max-height: 480px;
}

.label_error {
  grid-area: 2/1/2/3;
  margin-top: 5px;
  font-size: 13px;
}

@media (max-width: 769px) {
  .title_main {
    font-size: 24px;
    margin: 24px 0;
  }
  .title_main::after {
    bottom: -10px;
  }
  .map-contact .address {
    padding: 16px 0;
    font-size: 16px;
    display: unset;
  }
  .sub {
    font-size: 16px;
  }
  .top-contact .right .form_contact .box-left {
    gap: 15px;
  }
  .top-contact .right .form_contact .box-right .box_submit {
    margin: 20px 0;
  }
  .top-contact .right .form_contact .box-right .check {
    flex-direction: column;
  }
  .top-contact .right .form_contact .box-left {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .top-contact .right .form_contact .box-left {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=contact.css.map */