/* <weight>: Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */

/* .noto-sans-kr-<uniquifier> {
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

* {
  margin: 0;
  padding: 0;
  color: inherit;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: underline;
}

.consult-fixed {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 85px;
  background: rgb(17, 17, 17, 0.8);
}

.inner_contents {
  margin: 0 auto;
  max-width: 90%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.form_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form_wrap #name {
  width: 210px;
  height: 40px;
  border-radius: 50px;
  border: none;
  padding: 10px 20px;
}

.form_wrap #phone {
  width: 210px;
  height: 40px;
  border-radius: 50px;
  border: none;
  padding: 10px 20px;
}

.form_wrap input::placeholder {
  font-size: 15px;
  color: #A9A9A9;
}

.form_wrap>.content {
  display: flex;
  align-items: center;
}

.form_wrap #counselcontent {
  border-radius: 50px;
  border: none;
  padding: 8px 20px 2px;
  resize: none;
}

.form_wrap textarea::placeholder {
  font-size: 15px;
  color: #A9A9A9;
}

.form_wrap textarea::-webkit-scrollbar {
  width: 10px;
}

.form_wrap textarea::-webkit-scrollbar-thumb {
  background-color: #bbbbbb;
  border-radius: 5px;
}

.right_wrap {
  display: flex;
  align-items: center;
}

.right_wrap .check_box {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 28px;
  line-height: 1;
  accent-color: #ec9ca7;
}

.right_wrap .check_box input {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.right_wrap .check_box label {
  color: #fff;
  font-weight: bold;
}

.right_wrap .check_box .label-mob {
  display: none;
}

.right_wrap .check_box .view-mob {
  display: none;
}

.right_wrap .check_box a {
  color: #ffffff80;
}

.right_wrap .check_box a:hover {
  color: #fff;
}

.right_wrap button {
  width: 185px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: none;
  padding: 10px 15px;
  background-color: #D57F8B;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

.right_wrap button:hover {
  background-color: #b4616c;
}


/* responsive */
@media (max-width: 1680px) {}



@media (max-width: 1023px) {
  .inner_contents {
    margin: 15px auto;
    flex-direction: column;
    gap: 10px;
  }

  .consult-fixed {
    height: auto;
  }

  .form_wrap {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .form_wrap>.name {
    width: 30%;
  }

  .form_wrap #name {
    width: 100%;
    height: 36px;
    padding: 10px 18px;
  }

  .form_wrap>.phone {
    width: 30%;
  }

  .form_wrap #phone {
    width: 100%;
    height: 36px;
    padding: 10px 18px;
  }

  .form_wrap input::placeholder {
    font-size: 14px;
  }

  .form_wrap>.content {
    width: 40%;
  }

  .form_wrap #counselcontent {
    width: 100% !important;
    height: 36px !important;
    padding: 8px 15px;
  }

  .form_wrap textarea::placeholder {
    font-size: 14px;
  }

  .right_wrap {
    width: 100%;
    justify-content: end;
    gap: 10px;
  }

  .right_wrap .check_box {
    gap: 6px;
    margin-right: 0;
  }

  .right_wrap .check_box input {
    width: 15px;
    height: 15px;
    margin-right: 2px;
  }

  .right_wrap .check_box label {
    font-size: 14px;
    font-weight: bold;
  }

  .right_wrap .check_box a {
    font-size: 14px;
    color: #ffffff80;
  }

  .right_wrap .check_box a:hover {
    color: #fff;
  }

  .right_wrap button {
    width: 35%;
    height: 36px;
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .inner_contents {
    margin: 15px auto;
    flex-direction: column;
    gap: 10px;
  }

  .consult-fixed {
    height: auto;
  }

  .form_wrap {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .form_wrap>.name {
    width: calc(40% - 5px);
  }

  .form_wrap #name {
    width: 100%;
    height: 36px;
    padding: 10px 18px;
  }

  .form_wrap>.phone {
    width: calc(60% - 5px);
  }

  .form_wrap #phone {
    width: 100%;
    height: 36px;
    padding: 10px 18px;
  }

  .form_wrap input::placeholder {
    font-size: 14px;
  }

  .form_wrap>.content {
    display: none;
  }

  .right_wrap {
    width: 100%;
    justify-content: space-between;
  }

  .right_wrap .check_box {
    gap: 6px;
    margin-right: 0;
  }

  .right_wrap .check_box input {
    width: 15px;
    height: 15px;
    margin-right: 2px;
  }

  .right_wrap .check_box label {
    font-size: 14px;
    font-weight: bold;
  }

  .right_wrap .check_box .label-pc {
    display: none;
  }

  .right_wrap .check_box .label-mob {
    display: inline;
  }

  .right_wrap .check_box .view-pc {
    display: none;
  }

  .right_wrap .check_box .view-mob {
    display: inline;
  }

  .right_wrap .check_box a {
    font-size: 14px;
    color: #ffffff80;
  }

  .right_wrap .check_box a:hover {
    color: #fff;
  }

  .right_wrap button {
    width: 38%;
    height: 36px;
    padding: 10px 15px;
    font-size: 14px;
  }
}