/* modal 공통 */

.modal_wrap {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  top: 0px;
  left: 0;
}

.modal_black {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  top: 0px;
}

.modal_box {
  display: flex;
  flex-direction: column;
  position: relative;
  width: fit-content;
  height: auto;
  max-height: 100%;
  z-index: 1000;
  background: #fff;
  max-width: 1000px;
}

.modal_cont {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.modal_close {
  cursor: pointer;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 800px) {
  .modal_box {
    width: 94% !important;
    max-width: 700px;
  }

  .modal_cont iframe {
    width: 100%;
    height: 130vw;
  }

  .modal_close {
    cursor: pointer;
    position: absolute;
    bottom: -50px;
  }

  .modal_close img {
    height: 8vw;
  }
}

/* club event modal */
.modal_cont_club {
  min-width: 900px;
}

@media screen and (max-width: 800px) {
  .modal_cont_club {
    min-width: initial;
  }
}

/* ---------- 상단 타이틀 ---------- */

.event_tit {
  background: #f2e4d1;
  border: 6px solid var(--club-cr);
  border-bottom: 0;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.event_tit .logo_wrap {
  width: 240px;
  padding: 20px 0;
}

.event_tit b {
  font-weight: 600;
  font-size: 2.8rem;
  background: var(--club-cr);
  color: #fff;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.event_tit b span {
  font-size: 2.4rem;
  line-height: 1.2;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 3px 14px;
  margin-left: 10px;
}

@media screen and (max-width: 800px) {
  .event_tit {
    border: 0.75vw solid var(--club-cr);
  }

  .event_tit .logo_wrap {
    width: 32.5vw;
    padding: 2.5vw 0;
  }

  .event_tit b {
    font-size: 4.75vw;
    padding: 1.25vw 0;
  }

  .event_tit b span {
    font-size: 3.5vw;
    border: 0.25vw solid #fff;
    border-radius: 2.5vw;
    padding: 0.375vw 1.75vw;
    margin-left: 1.25vw;
  }
}

/* ---------- 단계 공통 (event_item / event_intro) ---------- */

.event_item {
  flex: 1 1 auto;
  overscroll-behavior: contain;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 50px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.event_item > * {
  flex-shrink: 0;
}

.event_item .event_intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-club-point);
  text-align: center;
  border-bottom: 2px dotted var(--club-cr);
  padding: 0 20px 30px;
  width: 100%;
  margin-bottom: 30px;
}

.event_item .event_intro b {
  color: var(--club-cr);
  font-size: 2rem;
  font-weight: 700;
}

.event_item .event_intro h2 {
  font-size: 3.9rem;
  font-weight: 700;
}

.event_item .event_intro h2 span {
  color: var(--club-cr);
}

.event_item .event_intro p {
  font-size: 2rem;
  opacity: 0.7;
  font-weight: 400;
}

@media screen and (max-width: 800px) {
  .event_item {
    padding: 5.25vw 4.25vw 5.25vw;
    max-height: 70vh;
  }

  .event_item .event_intro {
    gap: 3.75vw;
    border-bottom: 0.25vw dotted var(--club-cr);
    padding: 0 0 6.25vw;
    margin-bottom: 6.25vw;
  }

  .event_item .event_intro h2 {
    font-size: 5.75vw;
  }

  .event_item .event_intro b {
    font-size: 3.2vw;
  }

  .event_item .event_intro p {
    font-size: 3.2vw;
  }
}

/* ---------- 하단 버튼 ---------- */

.btn_list {
  display: flex;
  gap: 30px;
  margin: 20px auto 0;
}

.btn_list button {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 30px;
  min-width: 260px;
}

.btn_list button.red {
  background: var(--club-cr);
}

.btn_list button.gray {
  background: #a5a5a5;
}

@media screen and (max-width: 800px) {
  .btn_list {
    gap: 2.5vw;
    margin: 6.25vw auto 0;
  }

  .btn_list button {
    font-size: 3.75vw;
    padding: 1.88vw 0;
    border-radius: 37.5vw;
    min-width: 39vw;
  }
}

/* ---------- 체크박스/라디오/셀렉트 공통 (agree_option, check_option) ---------- */

.agree_option,
.check_option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
}

.agree_option {
  font-size: 15px;
}

.check_group:has(.check_option.intro) {
  justify-content: center;
}

.check_option:has(input:disabled) {
  opacity: 0.5;
}

.check_option input:disabled ~ * {
  cursor: not-allowed;
}

.check_group.full {
  justify-content: space-between;
}

.agree_option input,
.check_option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.box {
  width: 18px;
  height: 18px;
  border: 1px solid #8c8c8c;
  background: #fff;
}

.agree_option input:checked + .box,
.check_option input:checked + .box {
  border-color: var(--club-cr);
  background-image: url('../images/club/check_on.png');
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
}

.check_group {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 40px;
}

.check_group.vertical {
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.check_group.agree_two {
  justify-content: flex-end;
}

.check_group.agree_two .check_option {
  font-size: 15px;
}

.size_select,
.email_row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23333333' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  padding-right: 32px;
  cursor: pointer;
}

/* 구형 Edge/IE 기본 화살표 제거 */
.size_select::-ms-expand,
.email_row select::-ms-expand {
  display: none;
}

@media screen and (max-width: 800px) {
  .agree_option {
    gap: 2vw;
    font-size: 3vw;
  }

  .check_option {
    font-size: 3.75vw;
  }

  .box {
    width: 3.13vw;
    height: 3.13vw;
  }

  .agree_option input:checked + .box,
  .check_option input:checked + .box {
    background-size: 3.13vw 3.13vw;
  }

  .check_group {
    min-width: 64%;
    gap: 2vw;
    justify-content: space-between;
    height: auto;
  }

  .check_group.two {
    max-width: 55%;
  }

  .check_group.agree_two {
    gap: 5vw;
  }

  .check_group.agree_two .check_option {
    font-size: 3vw;
    font-weight: 700;
  }

  .check_group.vertical {
    gap: 2.5vw;
  }

  .size_select,
  .email_row select {
    background-position: right 6px center;
    background-size: 10px 6px;
    padding-right: 20px;
  }
}

/* ---------- STEP 1 : 약관 동의 리스트 ---------- */

.agree_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.agree_list .agree_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agree_list .agree_card h3 {
  font-size: 20px;
  font-weight: 600;
}

.agree_cont {
  background: rgba(0, 0, 0, 0.05);
  padding: 20px;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.agree_list .agree_card .agree_row {
  display: flex;
  justify-content: space-between;
  width: 600px;
  align-self: flex-end;
}

.agree_list .agree_card .agree_row.all {
  align-self: flex-start;
  font-weight: 700;
}

/* ---------- STEP 2~4 공통 폼 레이아웃 (form_wrap / form_row) ---------- */

.form_wrap {
  max-width: 700px;
}

.form_row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 34px;
}

.form_label {
  width: 196px;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 20px;
  padding-top: 10px;
}

.form_alert {
  color: var(--club-cr);
  font-weight: 700;
  font-size: 2rem;
  padding: 13px 10px;
  text-align: center;
  background: url(../images/club/form_alert.png) 50% 50% / 100%;
  margin-bottom: 34px;
}

.form_field {
  flex: 1;
}

.form_field small {
  font-size: 1.4rem;
  margin-top: 8px;
  display: inline-block;
}

.field_desc {
  font-size: 15px;
  color: #000;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
}

.field_desc.bg_gray {
  background: #f5f5f5;
  padding: 20px;
}

input[type='text'] {
  width: 100%;
  height: 46px;
  border: 1px solid #d5d5d5;
  padding: 0 12px;
  font-size: 18px;
  color: #333;
}

input[type='text']::placeholder {
  color: #b7b7b7;
}

input[type='text']:disabled {
  background: #f5f5f5;
  color: #b7b7b7;
}

/* ---------- 연락처 ---------- */

.phone_row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone_row input {
  text-align: center;
}

.phone_row span {
  color: #999;
}

/* ---------- 이메일 ---------- */

.email_row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.email_row input[type='text'] {
  flex: 1;
}

.email_row select {
  height: 46px;
  border: 1px solid #d5d5d5;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
  width: 160px;
}

/* ---------- 주소 ---------- */

.addr_row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.addr_row input[type='text'] {
  flex: 1;
}

.btn_addr_search {
  flex-shrink: 0;
  width: 130px;
  height: 46px;
  background: #555;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.addr-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addr-modal-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.addr-modal-box {
  position: relative;
  width: 420px;
  height: 520px;
  background: #fff;
  border-radius: 8px;
  overflow-y: auto;
}

/*.addr-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 24px; height: 24px;
    cursor: pointer;
    z-index: 1;
}
.addr-modal-close img { width: 100%; height: 100%; }*/
.addr-modal-layer {
  width: 100%;
  height: 100%;
}

/* ---------- 흡연여부 하위 옵션 ---------- */

.smoke_sub {
  margin-top: 14px;
  width: 100%;
  padding: 20px 0;
  background: #f5f5f5;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 10px 100px;
}

.smoke_sub .check_option {
  font-size: 15px;
  color: #555;
}

/* ---------- 관심사 - 기타 입력창 ---------- */

.interest_etc_input {
  height: 46px;
  border: 1px solid #d5d5d5;
  padding: 0 10px;
  font-size: 14px;
  width: 180px;
}

/* ---------- 상의 사이즈 ---------- */

.size_row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.size_select {
  flex: 1;
  height: 46px;
  border: 1px solid #d5d5d5;
  padding: 0 12px;
  font-size: 18px;
  color: #333;
}

.btn_detail {
  flex-shrink: 0;
  width: 150px;
  background: #555;
  color: #fff;
  border: none;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  height: 46px;
}

/* ---------- 개인정보 활용 동의 ---------- */

.privacy_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- 인스타그램 ID ---------- */

.ig_input {
  width: 100%;
  height: 46px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  padding: 0 14px;
  font-size: 14px;
}

/* ---------- 서술형 답변 textarea ---------- */

.long_textarea {
  width: 100%;
  min-height: 140px;
  border: 1px solid #d5d5d5;
  padding: 14px;
  font-size: 18px;
  color: #333;
  resize: vertical;
  font-family: inherit;
}

.long_textarea::placeholder {
  color: #b7b7b7;
}

.textarea_wrap {
  position: relative;
}

.char_count {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 1.2rem;
  color: #999;
  pointer-events: none;
  background: #fff;
  padding-left: 4px;
}

.char_count.done .cur {
  font-weight: 700;
}

/* ---------- 신청완료 모달 ---------- */

.complete_box {
  width: 680px;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

.complete_head {
  background: var(--club-cr);
  padding: 25px 0;
  font-family: var(--font-club-point);
}

.complete_head b {
  color: #fff;
  font-size: 5.5rem;
  font-weight: 700;
}

.complete_cont {
  padding: 40px 30px 36px;
  line-height: 1.4;
}

.complete_main {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-family: var(--font-club-point);
}

.complete_main strong {
  color: var(--club-cr);
  font-weight: 500;
}

.complete_sub {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: var(--font-club-point);
}

.complete_btn_list {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.complete_btn_list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  min-width: 250px;
  border: none;
  border-radius: 30px;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
}

.btn_kakao_share {
  background: #fee500;
  color: #191600;
}

.btn_kakao_share img {
  width: 28px;
  height: 26px;
}

.btn_complete_confirm {
  background: var(--club-cr);
  color: #fff;
}

@media screen and (max-width: 800px) {
  /* ---------- STEP 1 약관 ---------- */
  .agree_list {
    gap: 6.25vw;
  }

  .agree_list .agree_card {
    gap: 2.5vw;
  }

  .agree_list .agree_card h3 {
    font-size: 3.75vw;
  }

  .agree_list .agree_card .agree_cont {
    padding: 2.5vw;
    gap: 2.5vw;
    font-size: 3vw;
  }

  .agree_list .agree_card .agree_row {
    width: 100%;
    gap: 2.5vw;
    align-self: stretch;
    flex-direction: column;
  }

  /* ---------- 폼 레이아웃 ---------- */
  .form_wrap {
    max-width: 100%;
  }

  .form_row {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.75vw;
    margin-bottom: 2.75vw;
  }

  .youth_version .form_row:last-child,
  .adult_version .form_row:last-child {
    margin-bottom: 0;
  }

  .youth_version .form_row,
  .adult_version .form_row {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5vw;
    margin-bottom: 7vw;
  }

  .youth_version .form_label,
  .adult_version .form_label {
    width: 100%;
    padding-top: 0;
  }

  .youth_version .form_field,
  .adult_version .form_field {
    width: 100%;
  }

  .form_label {
    width: 13.75vw;
    flex-shrink: 0;
    font-size: 3.75vw;
    padding-top: 0;
    letter-spacing: 0;
    word-break: keep-all;
  }

  :where(
      .form_row:has(.form_field > input[type='text']:first-child),
      .form_row:has(.form_field > .phone_row:first-child),
      .form_row:has(.form_field > .email_row:first-child),
      .form_row:has(.form_field > .addr_row:first-child),
      .form_row:has(.form_field > .size_row:first-child),
      .form_row:has(.form_field > .ig_input:first-child),
      .form_row:has(.form_field > .long_textarea:first-child)
    )
    .form_label {
    padding-top: 2.5vw;
  }

  .form_field {
    flex: 1;
    min-width: 0;
  }

  .form_field small {
    font-size: 2.8vw;
    margin-top: 1.25vw;
    display: inline-block;
  }

  .field_desc {
    font-size: 3vw;
    margin-bottom: 2.5vw;
    color: #000;
  }

  .field_desc.bg_gray {
    padding: 2.5vw;
  }

  .form_alert {
    font-size: 3.75vw;
    padding: 2vw 0.925vw;
    background: url(../images/club/form_alert_mob.png) 50% 50% / cover;
    margin-bottom: 7vw;
  }

  input[type='text'] {
    height: 9.25vw;
    padding: 0 2.5vw;
    font-size: 3.25vw;
  }

  /* ---------- 연락처 ---------- */
  .phone_row {
    gap: 1.5vw;
  }

  .phone_row input[type='text'] {
    min-width: 0;
    padding: 0 1vw;
    font-size: 3vw;
  }

  /* ---------- 이메일 ---------- */
  .email_row {
    gap: 1.25vw;
  }

  .email_row input[type='text'] {
    min-width: 0;
  }

  .email_row select {
    width: 20vw;
    flex-shrink: 0;
    height: 9.25vw;
    padding: 0 1.5vw;
    font-size: 3vw;
  }

  /* ---------- 주소 ---------- */
  .addr_row {
    gap: 2vw;
    margin-bottom: 2vw;
  }

  .addr_row input[type='text'] {
    min-width: 0;
  }

  .btn_addr_search {
    width: 22vw;
    height: 9.5vw;
    font-size: 2.75vw;
  }

  /* ---------- 흡연여부 하위 옵션 ---------- */

  .smoke_sub {
    margin-top: 2.5vw;
    padding: 3.75vw 0;
    gap: 1.25vw 4.63vw;
  }

  .smoke_sub .check_option {
    font-size: 3vw;
  }

  /* ---------- 관심사 - 기타 입력창 ---------- */

  input[type='text'].interest_etc_input {
    width: 100%;
    padding: 0 1.25vw;
    font-size: 3.25vw;
  }

  .adult_version input[type='text'].interest_etc_input {
    width: 68vw;
  }

  /* ---------- 상의 사이즈 ---------- */
  .size_row {
    gap: 2vw;
  }

  .size_select {
    min-width: 0;
    height: 9.25vw;
    padding: 0 2.5vw;
    font-size: 3.4vw;
  }

  .btn_detail {
    width: 25vw;
    height: 9.25vw;
    font-size: 2.75vw;
    line-height: 1.3;
  }

  /* ---------- 인스타 ID ---------- */
  .ig_input {
    height: 11vw;
    padding: 0 3.5vw;
    font-size: 3.25vw;
  }

  /* ---------- textarea ---------- */
  .long_textarea {
    min-height: 32vw;
    padding: 2.5vw 3.125vw;
    font-size: 3.25vw;
  }

  .char_count {
    right: 2vw;
    bottom: 2.4vw;
    font-size: 3vw;
    padding-left: 0.5vw;
  }

  /* ---------- 신청완료 ---------- */
  .modal_box.complete_box {
    width: 94vw;
  }

  .complete_head {
    padding: 3.125vw 0;
  }

  .complete_head b {
    font-size: 6.5vw;
  }

  .complete_cont {
    padding: 5.625vw 6.25vw 7vw;
  }

  .complete_main {
    margin-bottom: 4vw;
    font-size: 3.75vw;
  }

  .complete_sub {
    margin-bottom: 6vw;
    font-size: 3vw;
  }

  .complete_btn_list {
    gap: 3vw;
  }

  .complete_btn_list button {
    height: 7.5vw;
    border-radius: 7vw;
    gap: 2vw;
    font-size: 3vw;
    min-width: 39vw;
  }

  .btn_kakao_share img {
    width: 6vw;
    height: 5.6vw;
  }
}

/* 약관 모달  */
.privacy-modal-wrap,
.size-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30000;
  padding: 20px;
  box-sizing: border-box;
}

.privacy-modal-black,
.size-modal-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.privacy-modal-box,
.size-modal-box {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 2;
  box-sizing: border-box;
}

.privacy-modal-close,
.size-modal-close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: fit-content;
}

.privacy-modal-cont,
.size-modal-cont {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.privacy-modal-title,
.size-modal-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.privacy-modal-content,
.size-modal-content {
  max-height: 55vh;
  overflow-y: auto;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #475569;
  padding-right: 8px;
  margin-bottom: 20px;
}

.size-modal-content {
  padding: 0;
  margin: 0;
}

.privacy-modal-content::-webkit-scrollbar,
.size-modal-content::-webkit-scrollbar {
  width: 5px;
}

.privacy-modal-content::-webkit-scrollbar-thumb,
.size-modal-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.privacy-modal-confirm,
.size-modal-confirm {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
  padding: 12px 0;
  background: var(--club-cr);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}

.size-img-wrap {
  width: 90%;
  margin: 0 auto;
}

.size-img-wrap img {
  width: 100%;
  height: 100%;
  display: inline-block;
}

/* 개인정보 모달 본문 */
.privacy-modal-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 24px 0 10px;
}

.privacy-modal-content h3:first-child {
  margin-top: 0;
}

.privacy-modal-content p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.privacy-modal-content ol {
  padding-left: 20px;
}

.privacy-modal-content ol li {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #444;
}

.privacy-modal-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: #222;
}

.privacy-modal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.privacy-modal-content ul li {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 4px;
}

.privacy-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 1.2rem;
}

.privacy-table th,
.privacy-table td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.privacy-table th {
  background: #f5f5f5;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .privacy-modal-cont,
  .size-modal-cont {
    padding: 3.75vw 3vw;
  }

  .privacy-modal-title,
  .size-modal-title {
    font-size: 3.75vw;
  }

  .size-modal-close,
  .privacy-modal-close {
    width: 3.75vw;
    height: 3.75vw;
    right: 3.75vw;
    top: 3.75vw;
  }
}

@media screen and (max-width: 480px) {
  .privacy-modal-box {
    width: 95%;
  }

  .privacy-modal-cont {
    padding: 24px 16px;
  }

  .privacy-modal-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .privacy-modal-content {
    font-size: 1.3rem;
    max-height: 45vh;
  }
}

/***** 노담 무비클럽 세션 신청 모달 (modal_cont_movie) *****/

.modal_cont_movie .event_tit b {
  font-size: 3.6rem;
  font-weight: 600;
  font-family: var(--font-club-point);
  color: #ffd28a;
}

.modal_cont_movie .event_tit b span {
  border: none;
  font-size: 3.6rem;
  color: #fff;
  margin-left: 0;
  padding: 0 5px;
}

.modal_cont_movie.on {
  display: block;
  width: 720px;
  max-width: 92vw;
}

.modal_cont_movie .complete_cont {
  padding: 40px 50px 46px;
  line-height: 1.4;
  font-size: 2rem;
  text-align: center;
}

.modal_cont_movie .complete_cont .complete_main {
  line-height: 1.4;
  font-size: 2rem;
  text-align: center;
}

.modal_cont_movie .complete_cont .form_wrap {
  max-width: 560px;
}

.modal_cont_movie .complete_cont .form_wrap .form_row {
  margin-bottom: 15px;
}

.modal_cont_movie .complete_cont .form_wrap .form_row .form_label {
  width: 120px;
}

.modal_cont_movie .movie_btn {
  margin-top: 30px;
  text-align: center;
}

.modal_cont_movie .btn_movie_confirm {
  min-width: 220px;
  height: 54px;
  border: none;
  border-radius: 30px;
  background: #000;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--font-basic);
  cursor: pointer;
}

/* STEP 2 : 유의사항 (modal_cont_caution) */
.modal_cont_caution .event_tit b {
  font-size: 3.6rem;
  font-weight: 600;
  font-family: var(--font-club-point);
  color: #ffd28a;
}

.modal_cont_caution .event_tit b span {
  border: none;
  font-size: 3.6rem;
  color: #fff;
  margin-left: 0;
  padding: 0 5px;
}

.modal_cont_caution.on {
  display: block;
  width: 720px;
  max-width: 92vw;
}

.modal_cont_caution .complete_cont {
  padding: 40px 50px 44px;
  line-height: 1.5;
  font-size: 1.7rem;
  text-align: left;
}

.modal_cont_caution .caution_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 42vh;
  overflow-y: auto;
  padding-right: 6px;
}

.modal_cont_caution .caution_list li {
  position: relative;
  padding-left: 18px;
  color: #333;
}

.modal_cont_caution .caution_list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--club-cr);
}

.modal_cont_caution .caution_agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 1.8rem;
}

.modal_cont_caution .movie_btn {
  margin-top: 24px;
  text-align: center;
}

.modal_cont_caution .btn_movie_agree {
  min-width: 220px;
  height: 54px;
  border: none;
  border-radius: 30px;
  background: var(--club-cr);
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--font-basic);
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .modal_cont_movie.on {
    width: 100%;
    max-width: initial;
  }

  .modal_cont_movie .complete_cont {
    padding: 6vw 5vw 7vw;
  }

  .modal_cont_movie .movie_btn {
    margin-top: 5vw;
  }

  .modal_cont_movie .btn_movie_confirm {
    min-width: 44vw;
    height: 12vw;
    border-radius: 6vw;
    font-size: 3.75vw;
  }

  .modal_cont_caution.on {
    width: 100%;
    max-width: initial;
  }

  .modal_cont_caution .complete_cont {
    padding: 6vw 5vw 7vw;
    font-size: 3vw;
  }

  .modal_cont_caution .caution_list {
    gap: 2.5vw;
    max-height: 45vh;
  }

  .modal_cont_caution .caution_list li {
    padding-left: 3.5vw;
  }

  .modal_cont_caution .caution_agree {
    margin-top: 5vw;
    font-size: 3.4vw;
  }

  .modal_cont_caution .movie_btn {
    margin-top: 5vw;
  }

  .modal_cont_caution .btn_movie_agree {
    min-width: 44vw;
    height: 12vw;
    border-radius: 6vw;
    font-size: 3.75vw;
  }

  .modal_cont_movie .event_tit b {
    font-size: 1.8rem;
  }

  .modal_cont_movie .event_tit b span {
    font-size: 1.8rem;
  }

  .modal_cont_movie .complete_cont .complete_main {
    font-size: 1.8rem;
  }

  .modal_cont_movie .complete_cont .form_wrap .form_row .form_label {
    width: 80px;
    text-align: left;
  }

  .modal_cont_caution .event_tit b {
    font-size: 2.2rem;
  }
  .modal_cont_caution .event_tit b span {
    font-size: 2.2rem;
  }
}

.modal_cont_result {
  border: 6px solid var(--club-cr);
}
/* result modal (modal_cont_caution) */
.modal_cont_result .event_tit {
  background: #fff;
  border: 0px;
}

.modal_cont_result .event_tit b {
  font-size: 3.6rem;
  font-weight: 600;
  font-family: var(--font-club-point);
  color: #ffd28a;
  background: none;
}

.modal_cont_result .event_tit b span {
  border: none;
  font-size: 3.6rem;
  color: #fff;
  margin-left: 0;
  padding: 0 5px;
}

.modal_cont_result .event_tit b.type1 {
  font-size: 2.48rem;
  color: #000;
  padding-bottom: 0px;
}
.modal_cont_result .event_tit b.type1 span {
  font-size: 2.48rem;
  color: #e31b01;
}
.modal_cont_result .event_tit b.type2 {
  font-size: 4.6rem;
  color: #000;
  padding: 0px;
}

.modal_cont_result .res_bar {
  width: 45px;
  height: 3px;
  background: #e31b01;
  margin-top: 25px;
}
.modal_cont_result .event_tit b.type3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  margin-top: 22px;
}

.modal_cont_result.on {
  display: block;
  width: 880px;
  max-width: 92vw;
}

.modal_cont_result .complete_cont {
  padding: 40px 50px 44px;
  margin: 21px 40px 0 40px;
  line-height: 1.5;
  font-size: 1.7rem;
  text-align: left;
  background: #f2f2f2;
  height: 300px;
  overflow-y: scroll;
}

.modal_cont_result .complete_cont .data1 {
  font-size: 1.4rem;
  text-align: center;
}
.modal_cont_result .complete_cont .data1 span {
  font-size: 1.9rem;
  font-weight: bold;
}

.modal_cont_result .res_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.modal_cont_result .res_list li {
  width: calc(100% / 7);
}

.modal_cont_result .data2 {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  margin: 22px 0;
}

@media screen and (max-width: 800px) {
  .modal_cont_result .event_tit .logo_wrap {
    width: 37.5vw;
  }
  .modal_cont_result .event_tit b.type1 {
    font-size: 1.6rem;
  }
  .modal_cont_result .event_tit b.type1 span {
    font-size: 1.6rem;
  }
  .modal_cont_result .event_tit b.type2 {
    font-size: 3rem;
  }
  .modal_cont_result .event_tit b.type3 {
    padding: 0 8vw;
    font-size: 1.5rem;
  }

  .modal_cont_result .complete_cont {
    padding: 10px;
    margin: 20px;
  }

  .modal_cont_result .complete_cont .data1 {
    font-size: 1.5rem;
  }
  .modal_cont_result .complete_cont .data1 span {
    font-size: 1.7rem;
  }

  .modal_cont_result .res_list li {
    width: calc(100% / 4);
    font-size: 1.35rem;
  }
  .modal_cont_result .data2 {
    text-align: left;
    padding: 0 5vw;
    font-size: 1.5rem;
  }
  .modal_cont_result .data2 .note-line {
    margin: 0;
    padding-left: 1.1em;
    text-indent: -1.1em;
  }
  .dp_mob {
    display: block;
  }
}
.dp_mob {
  display: none;
}
