.section-contact .section-inner {
  padding: 25.5rem 15px 22rem;
  gap: 12rem;
  flex-direction: row;
}
.section-contact .title-box {
  position: sticky;
  top: 15rem;
  align-self: flex-start;
}
.section-contact .main {
  font-size: 6rem;
}
.info-box {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-box .para {
  margin: 0;
}
.info-item .tit {
  font-weight: 700;
  display: inline-block;
  width: 9rem;
  margin-right: 1rem;
}
.contact-box {
  flex: 1;
}

/* 문의폼 스타일 */
.cf-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 2rem;
  width: 100%;
}

.cf-field-group--100 {
  flex: 0 0 100%;
}

.cf-field-group--50 {
  flex: 0 0 calc(50% - 1rem);
}

.cf-required {
  color: #364aff;
  margin-left: 0.5rem;
}

.cf-input::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.45);
}

.cf-input::-moz-placeholder {
  color: rgba(34, 34, 34, 0.45);
  opacity: 1;
}
.cf-input:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.45);
}

.cf-input::-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.45);
}

.cf-html-block {
  font-size: 3rem;
  font-weight: 700;
}

.cf-field-group {
  display: flex;
}

.cf-field-group:nth-child(2),
.cf-field-group:nth-child(3),
.cf-field-group:nth-child(4),
.cf-field-group:nth-child(5),
.cf-field-group:nth-child(6),
.cf-field-group:nth-child(8),
.cf-field-group:nth-child(9),
.cf-field-group:nth-child(10),
.cf-field-group:nth-child(11) {
  gap: 3rem;
  align-items: center;
  padding: 2rem 3rem;
  border-radius: 16px;
  border: 1px solid rgba(34, 34, 34, 0.2);
}

.cf-field-group:nth-child(7) {
  margin-top: 5.5rem;
}

.cf-field-group:nth-child(12),
.cf-field-group:nth-child(13),
.cf-field-group:nth-child(14),
.cf-field-group:nth-child(15) {
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.cf-field-group label {
  font-size: 2rem;
  font-weight: 600;
}

.cf-field-group:nth-child(2) label,
.cf-field-group:nth-child(3) label,
.cf-field-group:nth-child(4) label,
.cf-field-group:nth-child(5) label,
.cf-field-group:nth-child(6) label,
.cf-field-group:nth-child(8) label,
.cf-field-group:nth-child(9) label,
.cf-field-group:nth-child(10) label,
.cf-field-group:nth-child(11) label {
  width: 13rem;
}

.cf-field-group input,
.cf-field-group select,
.cf-field-group textarea {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  outline: none;
  scroll-margin-top: 13rem;
}

.cf-field-group textarea {
  resize: vertical;
  height: 15rem;
  font-family:
    Pretendard Variable,
    Pretendard,
    sans-serif;
}

.cf-field-group:nth-child(2) input,
.cf-field-group:nth-child(3) input,
.cf-field-group:nth-child(4) input,
.cf-field-group:nth-child(5) input,
.cf-field-group:nth-child(6) input,
.cf-field-group:nth-child(8) select,
.cf-field-group:nth-child(9) input,
.cf-field-group:nth-child(10) input,
.cf-field-group:nth-child(11) input {
  flex: 1;
  border: none;
}

.cf-field-group:nth-child(12) input,
.cf-field-group:nth-child(13) textarea,
.cf-field-group:nth-child(14) input,
.cf-field-group:nth-child(15) input {
  padding: 2rem 3rem;
  border-radius: 16px;
  border: 1px solid rgba(34, 34, 34, 0.2);
}

.form-btn {
  font-size: 1.9rem;
  font-weight: 700;
  text-decoration-line: underline;
  border: none;
  background-color: transparent;
  margin-left: 1.5rem;
}
.cf-file-info {
  display: none;
}
.cf-field-group:nth-child(15) label {
  display: flex;
  align-items: center;
}
.cf-field-group:nth-child(15) .cf-subinfo {
  margin-left: 1rem;
  color: #9d9d9d;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.cf-field-group:nth-child(15) .cf-subinfo img {
  width: 20px;
  height: 20px;
}
.cf-field-group:nth-child(15) .cf-subinfo a {
  color: #9d9d9d;
  text-decoration-line: underline;
}

.cf-submit-wrap {
  margin-top: 6.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cf-submit-btn {
  padding: 1.8rem 8rem;
  border-radius: 60px;
  background: #364aff;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.cf-submit-btn:hover {
  background-color: #1428a0;
}

@media screen and (max-width: 1400px) {
  .section-contact .section-inner {
    padding: 20rem 15px 20rem;
    flex-direction: column;
    gap: 4rem;
  }
  .section-contact .title-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .cf-field-group--50 {
    flex: 0 0 100%;
  }
}
