main {
  padding: 0 20px;
  min-height: calc(100vh - 93px);
}

.inq_head {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 20px;
}

.inq_text {
  font-size: 15px;
  letter-spacing: -0.5px;
  color: #3A647A;
  margin-bottom: 40px;
}
.inq_text.conf {
  color: #000;
}

.inq_subtitle {
  font-size: 16px;
  color: #444;
  padding-left: 25px;
  line-height: 1.2;
  margin-bottom: 15px;
  position: relative;
}
.inq_subtitle::before {
  position: absolute;
  content: "";
  top: calc(50% - 10px);
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #CD3945;
}

.page_title {
  color: #000;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

.form_block {
  width: 100%;
  margin-bottom: 20px;
}
.form_block .formtitle {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.form_block .contentname {
  color: #000;
  font-size: 14px;
}
.form_block .must {
  color: #fff;
  background-color: #CE5A5A;
  font-size: 12px;
  font-weight: bold;
  width: 32px;
  height: 18px;
  line-height: 18px;
  border-radius: 4px;
  text-align: center;
}
.form_block .base_input {
  width: 100%;
  height: 40px;
  border: solid 1px #B7B7B7;
  border-radius: 8px;
  padding: 0 8px;
  font-size: 15px;
}
.form_block .base_textarea {
  width: 100%;
  height: 98px;
  border: solid 1px #B7B7B7;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 15px;
}

.inquiry_link {
  color: #fff;
  background-color: #CD3945;
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  border-radius: 12px;
  margin-top: 25px;
}
.input_text {
  color: #3A647A;
}

.confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.confirm .inquiry_link {
  width: calc((100% - 16px) / 2);
}
.confirm .inquiry_link button {
  display: block;
  width: 100%;
  height: 100%;
}

.input_text {
  width: 100%;
  font-size: 15px;
  height: 36px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.input_text.txt {
  align-items: flex-end;
  padding-top: 5px;
  height: fit-content;
}

.sent_top {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  border-bottom: solid 1px #0065bb;
  line-height: 1.4;
}
.sent_top:hover {
  border-bottom: none;
}

.plink {
  color: #b11e1e;
  position: relative;
}
.plink::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b11e1e;
  opacity: 1;
  transition: 0.3s;
}
.plink:hover::after {
  opacity: 0;
}
@media (max-width: 767px) {
  .input_text {
    justify-content: flex-start;
  }
}