@charset "UTF-8";
.wrap-container {
  padding: 200px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.wrap-container * {
  box-sizing: border-box;
}

input:not(input[type=checkbox], input[type=radio]) {
  border: 2px solid #cdd3dd;
  height: 60px;
  padding: 0 20px;
  border-radius: 8px;
}
input:not(input[type=checkbox], input[type=radio])::-moz-placeholder {
  color: #8D99A8;
}
input:not(input[type=checkbox], input[type=radio])::placeholder {
  color: #8D99A8;
}
input:not(input[type=checkbox], input[type=radio]):hover {
  border-color: #000;
}
input:not(input[type=checkbox], input[type=radio]):hover::before {
  content: "확인 후 다시 입력해 주세요";
  left: 0;
  top: calc(100% + 8px);
  color: #f04438;
  font-size: 16px;
  z-index: 1;
  white-space: nowrap;
}
input:not(input[type=checkbox], input[type=radio]):focus {
  border-color: #000;
}
input:not(input[type=checkbox], input[type=radio]):invalid {
  border-color: #F04438;
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
}

label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.form-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-box textarea {
  width: 100%;
  border: 2px solid #cdd3dd;
  border-radius: 8px;
  padding: 20px;
  height: 240px;
}
.form-title {
  font-weight: 700;
  font-size: 24px;
}
.form-title .light {
  font-weight: 400;
}
.form-input {
  flex: 1;
}
.form-input-row {
  display: flex;
  flex: 1;
  gap: 40px;
}
.form-input-row .privacy-box {
  width: 100%;
  padding: 20px;
  border: 2px solid #cdd3dd;
  border-radius: 8px;
  height: 240px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-input-row .privacy-box-title {
  font-weight: 600;
}
.form-input-row .privacy-box::-webkit-scrollbar {
  width: 10px;
}
.form-input-row .privacy-box::-webkit-scrollbar-thumb {
  background-color: #eef1f6;
  border-radius: 5px;
}
.form-input-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-input-title {
  font-size: 16px;
}
.form-input-title .bold {
  font-weight: 600;
}
.form-btn {
  cursor: pointer;
  width: 300px;
  height: 68px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: #2962ff;
  margin: 0 auto;
  border-radius: 4px;
}

.qna-section .section-title-box {
  align-items: start;
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .wrap-container {
    overflow: hidden;
    padding: 120px 25px;
  }
  .m-b-60 {
    margin-bottom: 54px;
  }
  .m-b-80 {
    margin-bottom: 54px;
  }
  .m-b-100 {
    margin-bottom: 54px;
  }
  .circle-s-btn {
    height: 36px;
    border-radius: 18px;
    padding: 0 16px;
    font-size: 14px;
  }
  .circle-m-btn {
    height: 48px;
    padding: 0;
    font-size: 15px;
  }
  .circle-m-btn.fix {
    max-width: 128px;
    width: 100%;
  }
  .round-btn {
    font-size: 15px;
    height: 48px;
  }
  .section {
    padding: 100px 20px;
  }
  .section-title-box {
    margin-bottom: 54px !important;
  }
  .section-title-box .main-section-title {
    margin-bottom: 16px;
    font-size: 32px;
  }
  .section-title-box .main-section-sub-title {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .section-title-box.start {
    gap: 16px;
  }
  .section-title-box .section-title {
    font-size: 28px;
  }
  .section-title-box .section-stitle {
    font-size: 28px;
  }
  .section-title-box .section-sub-title {
    font-size: 16px;
  }
  .section-title-box .border-title {
    font-size: 15px;
    height: 30px;
  }
  .section-contents-title {
    font-size: 20px;
  }
  .section-contents-text {
    font-size: 16px;
  }
  .main-section {
    padding-top: 160px;
  }
  .main-section .main-bg {
    height: 550px;
  }
  .main-section .section-title-box {
    margin-bottom: 60px;
  }
  .main-section .main-img-box {
    width: 155%;
    left: -27%;
  }
  .mo-br {
    display: inline-block;
  }
  .pc-br {
    display: none;
  }
  input:not(input[type=checkbox], input[type=radio]) {
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }
  input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  input[type=checkbox]::after {
    width: 20px;
    height: 20px;
  }
  .label {
    gap: 8px;
    font-size: 15px;
  }
  .form {
    gap: 40px;
  }
  .form-box {
    gap: 24px;
  }
  .form-box textarea {
    height: 160px;
    padding: 16px;
    font-size: 15px;
  }
  .form-title {
    font-size: 20px;
  }
  .form-input-row {
    flex-direction: column;
    gap: 24px;
  }
  .form-input-row .privacy-box {
    padding: 16px;
    height: 160px;
  }
  .form-input-row .privacy-box-title {
    font-size: 15px;
  }
  .form-input-row .privacy-box-text {
    font-size: 15px;
  }
  .form-input-box {
    gap: 8px;
  }
  .form-input-title {
    font-size: 14px;
  }
  .form-btn {
    width: 100%;
    font-size: 15px;
    height: 48px;
  }
  .terms-section .terms-box {
    gap: 24px;
  }
  .terms-section .terms-box-title {
    margin: 40px 0 4px;
    font-size: 20px;
  }
  .terms-section .terms-box-sub-title {
    font-size: 16px;
  }
  .terms-section .terms-box-text {
    font-size: 15px;
  }
  .terms-section .privacy-intro {
    padding: 54px 0 28px;
    font-size: 15px;
    margin-bottom: 28px;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .wrap-container {
    overflow: hidden;
  }
  .m-b-60 {
    margin-bottom: 54px;
  }
  .m-b-80 {
    margin-bottom: 54px;
  }
  .m-b-100 {
    margin-bottom: 54px;
  }
  .circle-s-btn {
    height: 36px;
    border-radius: 18px;
    padding: 0 16px;
    font-size: 14px;
  }
  .circle-m-btn {
    height: 48px;
    padding: 0;
    font-size: 15px;
  }
  .circle-m-btn.fix {
    max-width: 128px;
    width: 100%;
  }
  .round-btn {
    font-size: 15px;
    height: 48px;
  }
  .section {
    padding: 100px 20px;
  }
  .section-title-box .main-section-title {
    margin-bottom: 16px;
    font-size: 32px;
  }
  .section-title-box .main-section-sub-title {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .section-title-box.start {
    gap: 16px;
  }
  .section-title-box .section-title {
    font-size: 28px;
  }
  .section-title-box .section-stitle {
    font-size: 28px;
  }
  .section-title-box .section-sub-title {
    font-size: 16px;
  }
  .section-title-box .border-title {
    font-size: 15px;
    height: 30px;
  }
  .section-contents-title {
    font-size: 20px;
  }
  .section-contents-text {
    font-size: 16px;
  }
  .main-section {
    padding-top: 160px;
  }
  .main-section .main-bg {
    height: 550px;
  }
  .main-section .section-title-box {
    margin-bottom: 60px;
  }
  .main-section .main-img-box {
    width: 155%;
    left: -27%;
  }
  .mo-br {
    display: inline-block;
  }
  .pc-br {
    display: none;
  }
  input:not(input[type=checkbox], input[type=radio]) {
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }
  input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  input[type=checkbox]::after {
    width: 20px;
    height: 20px;
  }
  .label {
    gap: 8px;
    font-size: 15px;
  }
  .form {
    gap: 40px;
  }
  .form-box {
    gap: 24px;
  }
  .form-box textarea {
    height: 160px;
    padding: 16px;
    font-size: 15px;
  }
  .form-title {
    font-size: 20px;
  }
  .form-input-row {
    flex-direction: column;
    gap: 24px;
  }
  .form-input-row .privacy-box {
    padding: 16px;
    height: 160px;
  }
  .form-input-row .privacy-box-title {
    font-size: 15px;
  }
  .form-input-row .privacy-box-text {
    font-size: 15px;
  }
  .form-input-box {
    gap: 8px;
  }
  .form-input-title {
    font-size: 14px;
  }
  .form-btn {
    width: 100%;
    font-size: 15px;
    height: 48px;
  }
  .terms-section .terms-box {
    gap: 24px;
  }
  .terms-section .terms-box-title {
    margin: 40px 0 4px;
    font-size: 20px;
  }
  .terms-section .terms-box-sub-title {
    font-size: 16px;
  }
  .terms-section .terms-box-text {
    font-size: 15px;
  }
  .terms-section .privacy-intro {
    padding: 54px 0 28px;
    font-size: 15px;
    margin-bottom: 28px;
    gap: 28px;
  }
}
/* 헤더 추가 */
.headerBg {
  background-color: #fff;
}

.headerBg.black-header a {
  color: #000 !important;
}

.headerBg .header_logo.logo-black {
  content: url("../assets/images/logo-color-black.svg");
}

.headerBg.fixed .header_download {
  content: url("../assets/images/icon_black_download.svg");
}

.headerBg.black-header .header {
  color: #000000 !important;
}

.headerBg.black-header .header {
  color: #000;
}

.header-right {
  opacity: 0.8;
}

.header-right .login {
  font-size: 16px;
  line-height: 1.2;
}

.headerBg.black-header .download {
  border: solid 1px #000000 !important;
}

.headerBg.black-header .header-right .download {
  width: 150px;
  height: 32px;
  border: solid 1px #000;
  margin-left: 40px;
  font-size: 15px;
  justify-content: center;
}

.header-right .download img {
  margin-left: 12.7px;
}

.join .joinBtn {
  margin-bottom: -20px;
}

.header {
  height: auto;
}

.header {
  height: auto;
}