.container {
  width: 100%;
}

.c-form-box {
  display: flex;
  gap: 30px;
}

.c-form__input {
  border: 1px solid #ddd;
  border-radius: 5px;
  height: 30px;
  width: 100%;
}
.c-form__select {
  border: 1px solid #ddd;
  border-radius: 5px;
  height: 30px;
  width: 100%;
}
.c-form__radio {
  position: absolute;
  top: -999999em;
  display: none;
}
.c-form__label {
  cursor: pointer;
  padding-left: 28px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;
       user-select: none;
}
.c-form__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #d9d9d9;
}
.c-form__radio:checked + .c-form__label::before {
  background: #1AA4C9 url(/resources/familysite/e-sucheop/images/contents/icon_checkbox.svg) center/11px 7px no-repeat;
}
.c-form__textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  height: 100px;
}

.consult-table {
  border: 1px solid #ddd;
  border-top: 2px solid #555;
}
.consult-table table {
  width: 100%;
}
.consult-table table > thead tr > th {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
}
.consult-table table > tbody tr {
  border-top: 1px solid #ddd;
}
.consult-table table > tbody tr > th {
  text-align: left;
  background-color: #f3f3f3;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
}
.consult-table table > tbody tr > td {
  padding: 13px 20px;
}
.consult-table table > tbody tr > td .c-form__input {
  max-width: 200px;
}
.consult-table__center {
  text-align: center;
}

.consult-page {
  padding: 0 16px;
}
.consult-page__agree + .consult-page__agree {
  margin-top: 16px;
}
.consult-page__agree-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.consult-page__agree-tit {
  font-size: 16px;
  margin: 16px 0;
  font-weight: 700;
  text-align: left;
}
.consult-page__list {
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 16px;
}
.consult-page__list > li {
  position: relative;
  padding-left: 14px;
  text-align: left;
}
.consult-page__list > li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 3px;
  left: 0;
  background: linear-gradient(120deg, rgba(26, 164, 201, 0.3), rgb(0, 69, 151));
}
.consult-page__list li + li {
  margin-top: 14px;
}
.consult-page__sub-list {
  padding-left: 10px;
  margin-top: 10px;
}
.consult-page__sub-list > li {
  position: relative;
  padding-left: 14px;
  text-align: left;
}
.consult-page__sub-list > li::before {
  content: "";
  width: 7px;
  height: 1px;
  position: absolute;
  top: 7px;
  left: 0;
  background-color: #222;
}
.consult-page__form-box {
  display: flex;
  gap: 30px;
}
.consult-page__btn-box {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 32px;
}
.consult-page__btn-box--right {
  justify-content: flex-end;
}
.consult-page__division {
  background-color: #f3f3f3;
  padding: 20px 0;
  text-align: center;
  font-weight: 600;
}
.consult-page__search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}
.consult-page__search .c-form__input {
  width: 200px;
}

.c-button {
  height: 48px;
  min-width: 150px;
  padding: 0 20px;
  border-radius: 5px;
  background-color: #1AA4C9;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
.c-button--outline {
  border: 1px solid #ddd;
  background-color: transparent;
  color: #222;
}