
/* 질문 묶음 간격 */
.survey-question {
    margin-bottom: 30px;
}

/* 각 질문 제목 */
.sq-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

/* 인풋/셀렉트 기본 */
.survey-question input[type="text"],
.survey-question select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    font-size: 16px;
    color: #222;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s;
    background: #fff;
}

.survey-question input[type="text"]:focus,
.survey-question select:focus {
    border-color: #43baac;
    outline: none;
}

/* 보기 나열 (라디오/체크박스) */
.sq-select label {
    display: inline-block;
    margin-right: 20px;
    font-size: 15px;
    color: #333;
}

/* 관심의제 (체크박스 다중선택) */
.sq-checkbox label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    cursor: pointer;
}
.sq-checkbox input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

/* 전화번호 필드 (3분할 입력) */
.sq-phone select,
.sq-phone input[type="text"] {
    width: 100px;
    display: inline-block;
    margin-right: 5px;
    padding: 8px 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

button.btn_submit:hover {
    background-color: #3aa194;
}

.sq-alert-box {
    margin-top: 15px;
    padding: 12px 16px;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 6px;
    font-size: 14.5px;
    color: #856404;
    line-height: 1.6;
}

.sq-bullet-list {
    list-style: disc;
    margin: 10px 0 0 20px;
    padding: 0;
    color: #333;
    font-size: 15.5px;
    line-height: 1.8;
}

.sq-bullet-list li {
    margin-bottom: 6px;
}

.sq-note {
    color: #c9302c;
    font-weight: 500;
}
.agree-highlight {
  text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--main-color);
    line-height: 1.9;
    margin-bottom: 28px;
    word-break: keep-all;
  }

.sub_bo_title a:hover {
    color: var(--main-color);
}
.sub_bo_title {
    text-align: center;
    font-size: 27px;
    margin-bottom: 30px;
}

  .agree-highlight span {
    display: block;
    margin-bottom: 10px;
  }

  .agree-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-left: 4px solid var(--main-color);
    padding: 28px 24px;
    margin-bottom: 32px;
    font-size: 15.8px;
    line-height: 1.95;
    color: #333;
    word-break: keep-all;
  }

  .agree-box div {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .agree-section-title {
    font-weight: 600;
    font-size: 16.5px;
    margin-bottom: 12px;
    color: var(--main-color);
  }

  .agree-table {
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
  min-width: 600px;
  }

  .agree-table th,
  .agree-table td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  white-space: nowrap;
  text-align: left;
  }

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

  .agree-radios {
    text-align: center;
    margin-top: 30px;
    padding: 18px 20px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 6px;
    font-size: 15.5px;
    line-height: 1.8;
  }

  .agree-radios p {
    font-weight: 600;
    font-size: 15.5px;
    color: #222;
    margin-bottom: 12px;
  }

  .agree-radios label {
    display: inline-block;
    margin-right: 24px;
  }

  .btn_submit {
    margin-top: 30px;
    width: 100%;
    height: 52px;
    font-size: 17px;
    font-weight: 600;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .btn_submit:hover {
    background: #3aa194;
  }

  .btn_cancel {
    display: inline-block;
    margin-top: 18px;
    color: #555;
    text-decoration: underline;
    font-size: 14.5px;
  }

    .step-indicator {
  background: #f5f5f5;
  padding: 20px 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.step-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.step-list li {
  text-align: center;
  color: #333;
  font-weight: 600;
  position: relative;
}

.step-list li:not(:last-child)::after {
  content: "»";
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
}

.step-list .step-num {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #888;
}

.step-list .step-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.step-list .active .step-num,
.step-list .active .step-title {
  color: var(--main-color);
}
/* 모바일 전용 스타일 (max-width: 899px) */
@media screen and (max-width: 900px) {
  .survey-question {
    margin-bottom: 24px;
  }

  .sq-title {
    font-size: 15px;
  }

  .sq-select label {
    display: block;
    margin: 6px 0;
    width: 100%;
  }

  /* 휴대폰 3칸: 모바일에서도 한 줄(가로)로 배치 */
  .sq-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .sq-phone select,
  .sq-phone input[type="text"] {
    flex: 1;
    width: auto;
    min-width: 0;   /* 칸이 줄어들 수 있게(셀렉트 최소너비 방지) */
    margin: 0;
  }

  button.btn_submit {
    font-size: 16px;
    height: 48px;
  }
  .agree-highlight {
      font-size: 16px;
      line-height: 1.85;
    }

    .agree-box {
      font-size: 15.5px;
      padding: 20px 16px;
    }

    .agree-section-title {
      font-size: 15.5px;
      margin-top: 16px;
    }

    .agree-table th,
    .agree-table td {
      font-size: 14px;
      padding: 8px 10px;
    }

    .btn_submit {
      font-size: 16px;
      height: 48px;
    }

    .agree-radios {
      font-size: 15px;
      padding: 16px;
    }

    .agree-radios label {
      display: block;
      margin-bottom: 8px;
    }
.sub_bo_title a:hover {
    color: #000;
}
}

/* PC 화면에서 너비 조절 등 세부 조정 (min-width: 900px) */
@media screen and (min-width: 900px) {

  .sq-phone {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sq-select label {
    margin-right: 20px;
  }
}
