/* 히어로 - 이채연 */

#hero .inner {
  position: relative;
  width: 100%;
  height: calc(var(--base-unit) * 49);
  overflow: hidden;
}
#hero > h2 {
  display: none;
}

/* 슬라이드 전체 컨테이너 */
.hero_slide_container {
  position: relative;
  width: 1920px;
  height: 100%;
  margin: 0 auto;
}
.tablet_hero_text {
  display: none;
}

.hero_slide {
  width: 400%;
  height: 100%;
  transition: transform 0.5s ease;
  animation: slide_auto 20s infinite;
}
.hero_slide .slide_item {
  display: flex;
  align-items: center;
}

/* 개별 슬라이드 */
#hero .slide_item {
  width: 25%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
/* 슬라이드 배경 이미지 */
.item1 {
  background-image: url(../images/hero_bg1.jpg);
}
.item2 {
  background-image: url(../images/hero_bg2.jpg);
}
.item3 {
  background-image: url(../images/hero_bg3.jpg);
}
.item4 {
  background-image: url(../images/hero_bg4.jpg);
}
/* 자동 슬라이드 애니메이션 */
@keyframes slide_auto {
  0%,
  20% {
    transform: translateX(0);
  }
  25%,
  45% {
    transform: translateX(-25%);
  }
  50%,
  70% {
    transform: translateX(-50%);
  }
  75%,
  95% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(0);
  }
}

/* 유리 느낌 콘텐츠 박스 */
.hero_content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  width: 630px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  padding: calc(var(--base-unit) * 3) 48px;
  margin-left: 200px;
  display: flex;
  flex-direction: column;
}
.hero_content h2 {
  color: var(--white);
  text-align: left;
}

.hero_content h2,
.hero_content h3 {
  margin-bottom: var(--base-unit);
  left: 0;
}
.hero_content > span,
.hero_content p {
  margin-bottom: 60px;
}

/* 페이지네이션 전체 영역 */
.slider_pagination_container {
  position: absolute;
  width: 100%;
  bottom: 50px;
  left: 0;
  z-index: 10;
}

.slider_pagination {
  position: relative;
  width: 1280px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.slider_pagination li {
  width: 280px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* 움직이는 상단 바 */
.slider_pagination::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 280px;
  height: 5px;
  background: var(--white);
  z-index: 5;
  animation: li_slide_bar 20s infinite;
  --slide-move: 333px;
}

/* 페이지네이션 바 이동 */
@keyframes li_slide_bar {
  0%,
  20% {
    transform: translateX(0);
  }
  25%,
  45% {
    transform: translateX(var(--slide-move));
  }
  50%,
  70% {
    transform: translateX(calc(var(--slide-move) * 2));
  }
  75%,
  95% {
    transform: translateX(calc(var(--slide-move) * 3));
  }
  100% {
    transform: translateX(0);
  }
}

/* 우측 하단 고정 영역 */
.quick_aside {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 9999;
}

/* 챗봇 그룹 */
.quick_chat_group {
  position: relative;
  width: 90px;
}

/* 말풍선 */
.chat_bubble {
  position: absolute;
  right: 100px;
  bottom: 40px;
  width: 280px;
  padding: 15px;
  border: 1px solid var(--black);
  border-radius: 30px 30px 0 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: var(--black);
}

.chat_title {
  margin-bottom: 14px;
}

/* 문의하기 + 아이콘 한 줄 */
.chat_links {
  justify-content: flex-end;
  gap: 10px;
}

/* 공통 아이콘 */
.chat_links a {
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 카카오 */
.kakao_icon {
  background-image: url("../images/hero_kakao_icon.png");
}

/* 인스타 */
.insta_icon {
  background-image: url("../images/hero_insta_icon.png");
}

/* 챗봇 버튼 */
.btn_chat {
  width: 70px;
  height: 70px;
  cursor: pointer;

  background: url("../images/hero_floating_character.png") center / contain no-repeat;
}

/* TOP 버튼 */
.quick_chat_group .btn_top {
  position: absolute;
  top: -64px;
  right: 30px;
}
.quick_chat_group .btn_top > span {
  color: var(--purple);
  font-size: calc(var(--base-font) * 3);
}

/* 모바일 섹션은 숨기고, PC 섹션은 보임 */
#m_hero {
  display: none;
}

@media (max-width: 768px) {
  #hero .tablet_hero_text {
    display: block;
    position: absolute;
    left: 20%;
    top: 110px;
    color: var(--white);
    font-size: var(--serve);
    word-break: keep-all;
    font-weight: 700;
  }
  /* 히어로 영역 */
  #hero .inner {
    width: 100%;
    height: 576px;

    overflow: hidden;
    background: url(../images/t_hero_bg.jpg) center / cover no-repeat;
  }

  /* 컨테이너 */
  .hero_slide_container {
    width: 100%;
    height: 100%;
  }

  /* 슬라이드 애니메이션 제거 */
  .hero_slide {
    width: 100%;
    height: 100%;

    animation: none;
    transform: translateX(0) !important;
  }

  /* 배경 이미지 */
  .hero_slide .slide_item {
    width: 100%;
    height: 100%;
    display: none;
  }

  /* 콘텐츠 제거 */
  .hero_content {
    display: none;
  }

  /* 페이지네이션 제거 */
  .slider_pagination_container {
    display: none;
  }

  /* 화살표 제거 */
  .slider_arrow {
    display: none;
  }

  /* 플로팅 버튼 제거 */
  .quick_aside {
    display: none;
  }
  #m_hero {
    display: none;
  }
}

/* 모바일 섹션 */
@media (max-width: 402px) {
  #hero {
    display: none;
  }
  #hero .tablet_hero_text {
    display: none;
  }
  #m_hero {
    display: flex !important;
    width: 100%;
    height: 850px; /* 헤더 제외 높이 고정 */
    background: url(../images/m_hero_bg.png) center top / cover no-repeat;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  /* 내부 정렬 레이아웃 */
  #m_hero .m_inner {
    width: 100%;
    height: 100%;
    justify-content: flex-start; /* 위에서부터 순서대로 배치 */
    padding: 60px 20px; /* 상단 여백 */
    flex-direction: column;
  }

  /* 1. 타이틀 영역 */
  .mobile_hero_title {
    margin-bottom: 20px;
    z-index: 2;
    margin-top: 70px;
  }

  .mobile_hero_title .text-main {
    display: inline-block;
    font-size: var(--h2-150);
    color: var(--white);
    padding: 5px 15px;
    font-weight: 700;
    line-height: 125%;
  }
  .mobile_hero_title .text-sub {
    font-size: 16px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.3;
    margin-top: 90px;
    margin-left: 15px;
    margin-bottom: 240px;
  }

  /* 3. 공고 박스 (유리창 효과) */
  .hero_announcement_box {
    width: 100%;
    max-width: 340px;
    background: rgba(0, 0, 0, 0.4); /* 배경을 조금 더 어둡게 해서 글자 강조 */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px 10px;
    z-index: 2;
    margin-bottom: 10px;
  }

  .announcement_sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
  }

  /* 중앙 노란색 네온 박스 */
  .announcement_active {
    display: inline-block;
    font-size: 16px;
    color: var(--white);
    border: 2px solid var(--yellow);
    border-radius: 50px;
    padding: 12px 20px;
    margin: 8px 0;
    box-shadow: 0 0 15px var(--yellow);
    background: rgba(255, 212, 59, 0.1);
    font-weight: 700;
  }

  /* 4. 하단 버튼 */
  .hero_mobile_btn .btn-big {
    background-color: var(--yellow);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
}

/* 참여이유 : 문송연  */
.join {
  width: 100%;
  min-height: 1000px;
  background: var(--super-black) url(../images/section_join_BG.jpg) no-repeat top center;
  background-size: 100% 100%;
  position: relative;
}
/* PC에서 br 숨기기 */
.join_slider_step1 h3 br,
.join_slider_step2 h3 br,
.join h2 br {
  display: none;
}
.join::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.6);
  z-index: 0;
}
.join .inner {
  padding: 150px 0;
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 20px;
}
.join .join_label {
  color: var(--purple);
}
.join_slider_group {
  width: 100%;
  gap: 60px;
  margin-top: 70px;
}
.join_slider_step1,
.join_slider_step2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.join_slider_group .step_num {
  color: var(--yellow);
}

.join_slider_step1 img,
.join_slider_step2 img {
  animation: pulse 2s ease-in-out infinite;
  margin: 30px 0;
  width: 500px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* 참여이유_태블릿 버전 css */

@media (max-width: 768px) {
  .join .join_label {
    font-size: 24px;
  }
  /* 줄바꿈 */
  .join_slider_step1 h3 br,
  .join_slider_step2 h3 br,
  .join h2 br {
    display: block;
  }
  .join .text-h1 {
    font-size: 36px;
    line-height: 125%;
  }
  .join span {
    font-size: 18px;
  }
  .join_slider_step1 h3,
  .join_slider_step2 h3 {
    font-size: 28px;
  }
  .join_slider_step1 p,
  .join_slider_step2 p {
    font-size: 16px;
    font-weight: 700;
  }
  .join_slider_group {
    gap: 60px;
    margin-top: 80px;
  }
  .join_slider_step1,
  .join_slider_step2 {
    gap: 20px;
  }
  .join_slider_step1 img,
  .join_slider_step2 img {
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 30px;
    width: 350px;
  }
}

/* 참여이유_모바일 버전 css */

@media (max-width: 402px) {
  .join .inner {
    padding: 50px 20px;
  }
  .join_slider_step1 h3 br,
  .join_slider_step2 h3 br,
  .join h2 br {
    display: block;
  }
  .join .join_label {
    font-size: 16px;
  }
  .join_slider_group {
    margin-top: 15px;
    gap: 0;
  }
  .join .text-h1 {
    font-size: 24px;
  }
  .join_slider_step1,
  .join_slider_step2 {
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }
  .join_slider_step1 h3,
  .join_slider_step2 h3 {
    font-size: 16px;
    line-height: 125%;
  }
  .join span {
    font-size: 12px;
  }
  .join_slider_step1 p,
  .join_slider_step2 p {
    font-size: 10px;
  }
  .join_slider_step1 img,
  .join_slider_step2 img {
    width: 100%;
    align-self: center;
  }
}

/* 커리큘럼 - 문송연 */

.curriculum {
  min-height: 1960px;
  background: var(--super-black) url(../images/curriculum_bg.webp) no-repeat top center;
  background-size: 100% auto;
  background-position: top center;
  position: relative;
}
.curriculum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vw;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}
.curriculum > * {
  text-align: center;
  position: relative;
  z-index: 1;
}
.curriculum h2 {
  padding: 100px 0 80px;
  white-space: nowrap;
  margin-bottom: 0;
  color: var(--white);
}
/* 100% 온라인 강의 멘트 PC에서 숨기기 */
.curriculum_mobile_label {
  display: none;
}
.curriculum h2 br {
  display: none;
}
.curriculum_badge_group {
  display: none;
}

/* 상단 히어로 가이드 */
.curriculum_hero_guide {
  flex-direction: row;
  gap: 35px;
  margin-bottom: 225px;
}
.hero_guide_text {
  gap: 15px;
}
.curriculum_mouse_icon {
  width: 120px;
}
/* 과정 카테고리 탭 (프론트엔드 / iOS / 인프라보안) */
.category_group {
  margin: 0 320px 50px;
}
.category_group input[type="radio"] {
  display: none;
}

.category_group label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    filter 0.3s,
    transform 0.3s;
}
.category_group label:hover {
  filter: drop-shadow(0 0 30px var(--yellow));
  animation: bounce 0.6s ease infinite;
}

/* 애니메이션 설정*/
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 호버 끝나면 제자리 */
.category_group label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: filter 0.3s;
}

.category_group label img {
  width: 150px;
}
#tab2 + label img {
  width: 120px;
}

/* 커리큘럼 컨테이너 (전체 박스) */
.curriculum_container {
  width: 1280px;
  min-height: 800px;
  background: var(--super-gray);
  border-radius: 30px;
  margin: 0 auto;
  padding: 28px 32px;
  box-sizing: border-box;
  gap: 95px;
}
.join_slider_step1 h3 br,
.join_slider_step2 h3 br {
  display: none;
}

.category_group {
  width: 1082px;
  margin: 0 auto 50px;
}

/* 왼쪽 — 개월 수 선택 패널 */
.curriculum_schedule {
  padding: 27px 0;
  box-sizing: border-box;
}
.curriculum_schedule > div {
  width: 405px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  padding: 0 55px;
  box-sizing: border-box;
  cursor: pointer;
  border: 3px solid var(--black);
  margin-bottom: 30px;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}
.curriculum_schedule > div:hover {
  background: rgba(255, 205, 41, 0.3);
  border-color: var(--yellow);
}

.curriculum_schedule .final {
  margin-bottom: 0;
  padding: 20px 45px 16px;
  justify-content: flex-start;
}

.curriculum_schedule ul {
  margin: 0;
}
.curriculum .curriculum_schedule h4,
.curriculum .curriculum_schedule p,
.curriculum .curriculum_schedule li {
  margin: 0;
  text-align: left;
}

/* 오른쪽 — 커리큘럼 상세 패널 */
.curriculum_right {
  gap: 25px;
}
.title_group {
  gap: 300px;
}

/* 커리큘럼 지원하기 cta 호버 시 */
.title_group .btn_cta.btn-small {
  filter: drop-shadow(0 0 10px var(--purple));
  animation: btnBounce 1.5s ease infinite;
}
@keyframes btnBounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

/* 상세 내용 박스 */
.curriculum_detail_group {
  width: 636px;
  min-height: 430px;
  background: var(--black);
  border-radius: 10px;
  padding: 28px 32px;
  box-sizing: border-box;
  overflow-y: auto;
}
.curriculum .curriculum_detail_group h5,
.curriculum .curriculum_detail_group li {
  text-align: left;
  color: var(--white);
}
.curriculum .curriculum_detail_group h5 {
  margin: 0 0 8px;
}
.curriculum .curriculum_detail_group ul {
  padding: 20px;
  margin: 0 0 16px;
  text-align: left;
}
.curriculum .curriculum_detail_group li {
  margin-bottom: 4px;
  list-style: disc;
}
/* 내용 넘치는 것 조정 */
.detail_month2,
.detail_month3,
.detail_last {
  display: none;
}
/* 모바일용 숨기기 */
.curriculum_container.mobile-only {
  display: none;
}
.curriculum_mobile_cta {
  display: none;
}

/* 커리큘럼 태블릿 css */
@media (max-width: 768px) {
  .curriculum {
    padding: 100px 84px;
  }
  .curriculum_container.pc-only {
    display: none;
  }
  .curriculum_container.mobile-only {
    min-height: auto;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0;
    box-sizing: border-box;
  }
  .curriculum_container.mobile-only .curriculum_schedule > div {
    width: 100%;
    padding: 20px 55px;
    box-sizing: border-box;
    background: var(--super-gray);
    border-radius: 20px;
    margin-bottom: 25px;
  }
  .schedule_detail {
    display: block;
  }
  .curriculum {
    min-height: auto;
  }
  .curriculum .hero_guide_text {
    gap: 20px;
  }
  .curriculum h2 {
    white-space: normal !important;
    font-size: 32px;
    padding: 0;
  }
  .join_slider_step1 h3 br,
  .join_slider_step2 h3 br {
    display: none;
  }

  .curriculum_hero_guide {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 60px 0;
    padding: 0;
  }
  .hero_guide_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }
  .hero_guide_text h3,
  .hero_guide_text p {
    text-align: left;
    margin: 0;
  }
  .curriculum_hero_guide img {
    width: 80px;
  }
  .curriculum_hero_guide .hero_guide_text h3 {
    font-size: 24px;
    line-height: 125%;
  }
  .curriculum_hero_guide .hero_guide_text-body {
    font-size: 14px;
  }

  /* 온/오프라인 버튼 */

  .curriculum_badge_group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: fit-content;
    margin-bottom: 50px;
  }
  .badge_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--purple);
    color: var(--white);
    background: transparent;
    width: auto;
    height: auto;
  }
  .badge_btn.active {
    background: var(--purple);
  }

  .category_group {
    width: 100%;
    gap: 50px;
    box-sizing: border-box;
    justify-content: center;
  }
  .curriculum .category_group label {
    font-size: 16px;
  }
  .mobile-only .month_title {
    color: var(--yellow);
    font-size: 20px;
  }
  .curriculum_container.mobile-only > .curriculum_schedule {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-only .month_title,
  .mobile-only .schedule_detail {
    text-align: left;
  }
  .curriculum_mobile_cta {
    display: flex;
    width: 100%;
    gap: 10px;
    text-align: center;
    justify-content: space-between;
    padding: 18px 80px;
    box-sizing: border-box;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--black);
    font-size: 24px;
  }
  .curriculum_mobile_cta > span:first-child {
    font-weight: 700;
  }
  /* 호버 애니메이션 제거 */
  .category_group label:hover {
    filter: none;
    animation: none;
  }
  /* 자동 애니메이션 구현 */
  #tab1 + label {
    animation: bounce 1s ease infinite;
    animation-delay: 0s;
  }
  #tab2 + label {
    animation: bounce 1s ease infinite;
    animation-delay: 0.5s;
  }
  #tab3 + label {
    animation: bounce 1s ease infinite;
    animation-delay: 1s;
  }
  #tab1 + label,
  #tab2 + label,
  #tab3 + label {
    filter: drop-shadow(0 0 10px rgba(255, 187, 39, 0.5));
  }
  .cta_right {
    animation: bounce 1s ease infinite;
  }
}

/* 커리큘럼 모바일 css */

@media (max-width: 402px) {
  .curriculum {
    padding: 50px 20px;
  }
  .curriculum h2 {
    font-size: 24px;
    padding: 0;
    margin-bottom: 10px;
  }
  .curriculum_hero_guide {
    margin-bottom: 30px;
  }
  .curriculum_hero_guide img {
    display: none;
  }
  /* 모바일에서 숨기기 */
  .hero_guide_text h3,
  .hero_guide_text p {
    display: none;
  }
  /* 모바일에서 보이기 */
  .curriculum_mobile_label {
    display: block;
    font-size: 10px;
    font-weight: 400;
  }
  .curriculum h2 br {
    display: block;
  }
  .label_highlight {
    color: var(--yellow);
  }
  .label_normal {
    color: var(--white);
  }

  .curriculum_container.mobile-only .curriculum_schedule > div {
    min-height: auto;
    padding: 16px 20px;
    width: 100%;
  }
  .curriculum_container.mobile-only .curriculum_schedule h4 {
    font-size: 14px;
  }
  .curriculum_container.mobile-only .curriculum_schedule div {
    font-size: 10px;
  }
  .curriculum_badge_group {
    padding-left: 0;
  }

  .category_group {
    justify-content: center;
    gap: 50px;
    box-sizing: border-box;
    width: 100%;
    font-size: 10px;
    margin: 30px 0;
  }
  .category_group label {
    align-items: center;
    text-align: center;
  }
  .category_group label.text-h2-100 {
    font-size: 12px;
  }
  .category_group label img {
    width: 80px;
  }
  #tab2 + label img {
    width: 70px;
  }
  .curriculum_container.mobile-only {
    padding: 0;
    min-height: auto;
  }
  .mobile-only .month_title {
    font-weight: 700;
  }
  .mobile-only .schedule_detail {
    font-size: 12px;
  }
  .curriculum_mobile_cta {
    font-size: 16px;
    padding: 16px 20px;
  }
}

/* 리뷰 : 장도담 */
#review {
  width: 100%;
  height: 980px;
  background: linear-gradient(to bottom, var(--super-black) 40%, #c4c4c4 80%, #f5f5f5 100%);
  display: flex;
  overflow: hidden;
}

#review .inner {
  width: 100%;
  max-width: 1280px;
  gap: 42px;
}

.review_left,
.review_right {
  width: 580px;
  height: 100%;
}

.review_headline_container {
  gap: 18px;
  margin-bottom: 42px;
}

.review_subtitle {
  color: var(--yellow);
}

.review_company_logo_container {
  gap: 20px;
  overflow: hidden;
  background: linear-gradient(to bottom, #686868 0%, #cdcdcd 100%);
  border: 1px solid #f1f1f173;
  border-radius: 16px;
  padding: 40px 42px 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.review_company_logo {
  width: max-content;
  flex-shrink: 0;
}

.review_company_logo li {
  margin-right: calc(var(--base-unit) * 2);
}

.review_company_logo_up {
  gap: 36px;
  margin-bottom: 42px;
  overflow: hidden;
}

/* 리뷰 기업창 로고 1행(좌) 2행(우) 3행(좌) 에니메이션 */
.review_company_logo.left {
  animation: scrollLeft 40s linear infinite;
}

.review_company_logo.right {
  animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.review_company_logo_down {
  border-top: 1px solid var(--super-gray);
  padding-bottom: 30px;
}

.review_company_logo_caption {
  color: var(--super-gray);
  margin-top: 26px;
}

.review_estchat_container {
  width: 100%;
  height: 800px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--gray);
  border-radius: 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.review_estchat_header {
  border-bottom: 1px solid var(--gray);
  padding: 22px;
}

.review_estchat_title {
    color: var(--purple);
    font-size: 20px;
}

.review_estchat_body {
  flex: 1;
  padding: 21px;
  overflow: hidden;
  position: relative;
}

.review_estchat_body::before,
.review_estchat_body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 21px;
  background: var(--black);
  z-index: 1;
  pointer-events: none;
}

.review_estchat_body::before {
  top: 0;
}

.review_estchat_body::after {
  bottom: 0;
}

/* 리뷰 채팅창 챗버블 아래서 위 방향 애니메이션 */
.review_estchat_body ol {
  gap: 12px;
  padding-bottom: 12px;
  animation: scrollUp 35s linear infinite;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

/* 리뷰 채팅창 호버 시 멈춤 애니메이션 */
.review_estchat_body:hover ol {
  animation-play-state: paused;
}

.review_chat_bubble {
  max-width: 422px;
  padding: 4px 10px 10px;
  gap: 4px;
  box-sizing: border-box;
  border: 1px solid var(--gray);
}

.review_chat_completer .review_chat_bubble {
  background: var(--super-gray);
  color: var(--white);
  border-radius: 0 15px 15px 15px;
}

.review_chat_user .review_chat_bubble {
  background: var(--yellow);
  color: var(--black);
  border-radius: 15px 0 15px 15px;
  padding: 12px 32px;
}

.review_chat_staff .review_chat_bubble {
  background: var(--purple);
  color: var(--white);
  border-radius: 0 15px 15px 15px;
}

.review_chat_staff .review_chat_bubble a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 140px;
  height: 40px;
  background: var(--yellow);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.review_estchat_footer {
  height: 177px;
  margin: 0 21px 21px;
  gap: 10px;
  background: var(--super-gray);
  padding: 10px 0;
  border: 1px solid var(--gray);
  border-radius: 8px;
  box-sizing: border-box;
}

.review_estchat_options {
  gap: 30px;
  padding: 0 30px 0 90px;
}

.review_estchat_options > div {
  gap: 10px;
}

/* 리뷰 입력창 선택지 손가락(클릭) 모양으로 변경 */
.review_estchat_options button {
  width: 356px;
  height: 34px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 0 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  cursor: pointer;
}

/* 리뷰 입력창 선택지 호버 시 외곽선 */
.review_estchat_options button:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 10px 0 var(--yellow);
}

.review_estchat_options .fa-paper-plane {
  font-size: 24px;
  color: var(--yellow);
}

.review_estchat_icons {
  gap: 12px;
  padding-left: 10px;
}

.review_estchat_icons i {
  color: var(--gray);
  font-size: 25px;
}

.review_chat_completer,
.review_chat_user,
.review_chat_staff {
  gap: 12px;
  align-items: flex-start;
}

.review_chat_user {
  flex-direction: row-reverse;
}

.review_chat_avatar img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

/* 리뷰 태블릿 반응형 */
@media (max-width: 768px) {
  #review {
    height: 1024px;
    overflow: hidden;
  }

  #review .inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 64px;
    gap: 30px;
  }

  .review_left,
  .review_right {
    display: contents;
  }

  .review_headline_container {
    order: 1;
  }
  .review_estchat_container {
    order: 2;
  }
  .review_company_logo_container {
    order: 3;
  }

  .review_headline_container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    word-break: keep-all;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    gap: 14px;
  }

  .review_headline_container img {
    width: 155px;
    height: 21px;
  }

  .review_title.text-h1 {
    font-size: 31px;
    line-height: 1.25;
  }

  .review_subtitle.text-h2-100 {
    font-size: 18px;
    line-height: 1;
  }

  .review_estchat_container {
    width: 452px;
    height: 623px;
  }

  .review_estchat_header {
    padding: 16px 0 17px;
  }

  .review_estchat_title.text-h3 {
    font-size: 15px;
    line-height: 1;
  }

  .review_estchat_body {
    padding: 17px 16px;
  }

  .review_estchat_body::before,
  .review_estchat_body::after {
    height: 17px;
  }

  .review_estchat_body ol {
    gap: 9px;
    padding-bottom: 9px;
  }

  .review_estchat_footer {
    height: 138px;
    margin: 0 16px 16px;
    gap: 7px;
    padding: 7px 0;
  }

  .review_estchat_options {
    gap: 23px;
    padding: 0 23px 0 70px;
  }

  .review_estchat_options > div {
    gap: 7px;
  }

  .review_estchat_options button {
    width: 277px;
    height: 27px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .review_estchat_options .fa-paper-plane {
    font-size: 23px;
  }

  .review_estchat_icons {
    gap: 9px;
    padding-left: 7px;
  }

  .review_estchat_icons i {
    font-size: 19px;
  }

  .review_chat_completer,
  .review_chat_user,
  .review_chat_staff {
    gap: 9px;
  }

  .review_chat_avatar img {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .review_chat_bubble {
    max-width: 329px;
    padding: 3px 7px 7px;
    gap: 3px;
  }

  .review_chat_completer.text-body,
  .review_chat_staff.text-body {
    font-size: 14px;
  }

  .review_chat_user.text-h2-125 {
    font-size: 19px;
    line-height: 1.25;
  }

  .review_chat_completer .review_chat_bubble {
    border-radius: 0 11px 11px 11px;
  }

  .review_chat_user .review_chat_bubble {
    border-radius: 11px 0 11px 11px;
    padding: 9px 24px;
  }

  .review_chat_staff .review_chat_bubble {
    border-radius: 0 11px 11px 11px;
  }

  .review_chat_staff .review_chat_bubble a {
    width: 109px;
    height: 31px;
    border-radius: 39px;
    font-size: 12px;
  }

  .review_company_logo_container {
    width: 550px;
    max-width: 100%;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    gap: 0;
  }

  .review_company_logo_up {
    gap: 20px;
    margin-bottom: 0;
  }

  .review_company_logo {
    gap: 30px;
  }

  .review_company_logo li img {
    height: 22px;
  }

  .review_company_logo_down {
    display: none;
  }
}

/* 리뷰 모바일 반응형 */
@media (max-width: 402px) {
  #review {
    height: 984px;
  }

  #review .inner {
    gap: 30px;
  }

  .review_headline_container img {
    width: 118px;
    height: 16px;
  }

  .review_title.text-h1 {
    font-size: 24px;
    line-height: 1;
  }

  .review_subtitle.text-h2-100 {
    font-size: 12px;
    line-height: 1;
  }

  .review_estchat_container {
    width: 368px;
    height: 660px;
  }

  .review_estchat_header {
    padding: 17px 0 16px;
  }

  .review_estchat_title.text-h3 {
    font-size: 14px;
    line-height: 1;
  }

  .review_estchat_body {
    padding: 16px 17px;
  }

  .review_estchat_body::before,
  .review_estchat_body::after {
    height: 16px;
  }

  .review_chat_avatar img {
    width: 31px;
    height: 31px;
  }

  .review_chat_completer,
  .review_chat_user,
  .review_chat_staff {
    gap: 7px;
  }

  .review_chat_bubble {
    max-width: 263px;
  }

  .review_chat_completer.text-body,
  .review_chat_staff.text-body {
    font-size: 11px;
  }

  .review_estchat_footer {
    height: 152px;
  }

  .review_estchat_options {
    padding: 0 23px 0 66px;
    gap: 20px;
  }

  .review_estchat_options > div {
    gap: 9px;
  }

  .review_estchat_options button {
    width: 202px;
    height: 30px;
  }

  .review_estchat_icons {
    padding: 0 13px;
  }

  .review_company_logo_container {
    width: 386px;
  }

  .review_company_logo_up {
    gap: 28px;
  }

  .review_company_logo_up .review_company_logo:nth-child(3) {
    display: none;
  }

  .review_company_logo li img {
    height: 17px;
  }

  .review_company_logo {
    gap: 15px;
  }
}

/* 혜택 : 최정민 */

/* 데스크탑 버전  */
.benefit {
  width: 100%;
  padding: 100px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Pretendard", sans-serif;
  overflow: hidden;
}

/* 배경 이미지 가상 요소 (수정: 스케일링 방지 로직 적용) */
.benefit::before {
  content: "";
  position: absolute;
  top: 0;
  /* 뷰포트 기준으로 중앙을 잡고 고정 */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("../images/benefit_bg1.jpg") no-repeat center center / cover;
  /* 핵심: 리사이즈 시 이미지 크기 변화를 막기 위해 뷰포트에 고정 */
  background-attachment: fixed;
  opacity: 0.6;
  z-index: 1;
}

.benefit .container {
  width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.text-header {
  text-align: center;
  font-size: var(--header);
  margin-bottom: 96px;
  color: var(--black);
  font-weight: 700;
}

.benefit_card_container {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  grid-auto-rows: 300px;
  gap: 20px;
  justify-content: center;
}

.benefit_card {
  perspective: 1000px;
}

.card_inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.benefit_card:hover .card_inner {
  transform: rotateY(180deg);
}

.card_front,
.card_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-sizing: border-box;
}

.card_front {
  background: linear-gradient(135deg, var(--purple), #3f1d6d);
  color: var(--white);
  z-index: 2;
  font-weight: 700;
}

.card_front h3 {
  font-size: var(--serve);
  font-weight: 800;
}

.icon_box {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.icon_box img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.card_back {
  background: linear-gradient(135deg, var(--purple), #3f1d6d);
  color: var(--white);
  transform: rotateY(180deg);
  text-align: center;
  font-weight: 600;
}

.card_back h3 {
  font-size: var(--serve);
  margin-bottom: 15px;
  font-weight: 800;
}

.card_back p {
  font-size: var(--h2-150);
  line-height: 1.6;
  font-weight: 700;
}

.badge {
  width: 140px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50px;
  font-size: var(--body-b);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* --- 태블릿 버전 (max-width: 1024px) --- */
@media (max-width: 768px) {
  .benefit {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  /* 배경 이미지 설정 (가이드: 768 * 1024 비율 최적화) */
  .benefit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* 배경 이미지 사이즈 가이드를 고려하여 너비 고정 및 고정 배경 적용 */
    width: 100vw;
    height: 100%;
    background: url("../images/benefit_bg2.png") no-repeat center center / cover;
    background-size: cover;
    background-attachment: fixed; /* 좌우 리사이즈 시 커지는 현상 방지 */
    opacity: 0.5;
    z-index: 1;
  }

  .benefit .container {
    /* 좌우 여백 20px 반영 */
    width: calc(100% - 40px);
    max-width: 768px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
  }

  /* 가장 큰 글씨 32px 적용 */
  .text-header {
    font-size: 32px;
    margin-bottom: 60px;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
  }

  .benefit_card_container {
    display: grid;
    /* 카드가 한 줄에 2개씩 배치되도록 설정 */
    grid-template-columns: repeat(2, auto);
    grid-auto-rows: auto;
    min-height: 576px;
    gap: 20px;
    justify-content: center; /* 카드들을 중앙으로 정렬 */
  }

  /* 카드 박스 사이즈 250 * 250 반영 */
  .benefit_card {
    width: 250px;
    height: 250px;
    perspective: 1000px;
  }

  .card_front,
  .card_back {
    padding: 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--purple), #3f1d6d);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }

  /* 아이콘 이미지 사이즈 100 * 70 반영 */
  .icon_box {
    width: 100px;
    height: 70px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.45));
  }

  /* 중간 폰트 24px 적용 (카드 제목 등) */
  .card_front h3,
  .card_back h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: #fff;
  }

  .card_back p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
  }

  /* badge 박스 120 * 30, 폰트 사이즈 16px 적용 */
  .badge {
    width: 120px;
    height: 30px;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* --- 모바일 화면 대응 (max-width: 400px) --- */
@media screen and (max-width: 402px) {
  .benefit {
    width: 100%;
    padding: 0; /* 내부 간격은 padding-top으로 조절 */
    min-height: auto;
    position: relative;
    overflow: hidden;
    background-image: none; /* [해결] 본체 배경을 지워 겹침 현상 방지 */
  }

  /* [해결] 태블릿의 배경을 모바일용 이미지로 교체 */
  .benefit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/benefit_bg3.jpg") no-repeat center top / cover;
    background-attachment: scroll; /* 모바일 배터리/성능 최적화 */
    opacity: 0.6;
    z-index: 1;
    transform: none; /* 태블릿의 중앙 정렬 속성 초기화 */
  }

  .benefit .container {
    width: 100%;
    padding: 0 16px; /* 좌우 여백 16px 가이드 */
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    margin: 0 auto;
  }

  /* [가이드] 상단 여백 및 폰트 24px */
  .text-header {
    padding-top: 60px; /* 모바일 환경에 맞춘 상단 여백 */
    margin-bottom: 30px; /* 카드와의 간격 */
    font-size: 24px; /* 가이드: 가장 큰 글씨 24px */
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #000;
  }

  /* 카드 리스트: 2열 유지 및 간격 12px */
  .benefit_card_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; /* 카드 박스 간격 */
    width: 100%;
    padding-bottom: 60px;
  }
  /* 카드 높이 180px 가이드 */
  .benefit_card {
    width: 100%;
    height: 180px;
    perspective: 800px;
  }

  .card_inner {
    width: 100%;
    height: 100%;
  }

  .card_front,
  .card_back {
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(111, 53, 191, 0.95), rgba(63, 29, 109, 0.95));
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* [가이드] 앞면 혜택 대상자명 배지: 8px */
  .badge {
    width: 65px;
    height: 18px;
    font-size: 8px; /* 가이드: 가장 작은 글씨 8px */
    font-weight: 800;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* [가이드] 앞면/뒷면 혜택명: 13~14px (모바일 최적화) */
  .card_front h3 {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
  }

  .card_back h3 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 800;
  }

  /* [가이드] 뒷면 상세 설명: 10px */
  .card_back p {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
    word-break: keep-all;
    text-align: center;
  }

  /* 아이콘 박스 높이 60px */
  .icon_box {
    width: 100%;
    height: 60px;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon_box img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  }
}

/* 지원요건 : 이채연 */
#apply {
  background-color: var(--black);
  padding: 100px 0;
}

#apply .inner {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  box-sizing: border-box;
}
#apply .inner h2 {
  color: var(--white);
}

/* --- 헤더 영역 (제목 + 컨트롤러) --- */
.apply_header {
  margin-bottom: calc(var(--base-unit) * 3);
}

.apply_header h2 {
  margin-bottom: var(--base-unit);
}

.apply_header p {
  color: var(--purple);
  margin-bottom: calc(var(--base-unit) * 2);
}

/* 상단 컨트롤러 (1 --- 4 화살표) */
.apply_controller {
  gap: 30px;
}

.apply_slider_number {
  gap: 15px;
  font-family: monospace;
}

.apply_slider_number .bar {
  display: inline-block;
  width: 64px; /* 긴 가로선 */
  height: 1px;
  background-color: var(--white);
  opacity: 0.5;
}

.apply_arrows button {
  color: var(--white);
  /*   font-size: 24px; */
  cursor: pointer;
  padding: 0 10px;
  opacity: 0.5;
  transition: 0.3s;
}

.apply_arrows button:hover {
  opacity: 1;
}

/* 슬라이드 영역 */
.apply_slide_wrapper {
  width: 1280px;
  overflow: hidden;
}

.apply_slide_wrapper .slide_list {
  gap: 320px; /* 카드 사이 간격 */
  padding: 20px 0;
  scroll-behavior: smooth;
  overflow-x: auto;
  overflow: hidden;
  scroll-snap-type: x mandatory;
}
#apply .slide_list::-webkit-scrollbar {
  display: none;
}

#apply .slide_item {
  flex: 0 0 96%; /* 카드의 너비 고정 */
  scroll-snap-align: start;
  margin: 0 auto;
}

/* --- 카드 디자인 --- */
.apply_card {
  width: 100%;
  max-width: 1280px;
  background: linear-gradient(145deg, #222, #111);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 95px 110px;
  height: auto;
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

  display: flex;
  justify-content: center;
  align-items: center;
}

/* 왼쪽 텍스트 */

.card_content {
  width: 55%;
  min-width: 300px;
}
.card_title {
  margin-bottom: calc(var(--base-unit) * 3);
}

#apply .card_title {
  margin-bottom: calc(var(--base-unit) * 3);
}

#apply .card_desc {
  margin-bottom: calc(var(--base-unit) * 2);
}
.card_title {
  margin-bottom: calc(var(--base-unit) * 3);
}

.card_desc {
  margin-bottom: calc(var(--base-unit) * 2);
  word-break: keep-all; /* 한글 줄바꿈 예쁘게 */
  font-size: var(--h2-150);
}

/* 카드 내부 동그란 숫자 리스트 */
#apply .card_step_list {
  gap: 25px;
  /* 핵심 코드: 내용물의 너비에 딱 맞게 영역을 줄입니다 */
  width: fit-content;
  /* 만약 왼쪽 여백이 기본으로 잡혀있다면 초기화 */
  padding: 0;
  margin: 0;
}

#apply .card_step_list li {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: 0.3s;
  cursor: pointer;
  font-size: var(--qna);
}

#apply .card_step_list li.active {
  background-color: var(--white);
  color: var(--black);
}

/* 오른쪽 이미지 영역 */
#apply .card_img {
  text-align: right;
  margin: 0;
  overflow: hidden;
  max-width: 240px;
}

#apply .card_img img {
  width: 100%; /* 이미지가 유동적으로 바뀌어도 영역에 맞게 설정 */
  max-width: 300px;
  height: auto;
  /* 부드러운 입체감을 위해 필터나 애니메이션 추가 가능 */
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  display: block;
}

/* 지원요건 태블릿 */
@media (max-width: 768px) {
  #apply .inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* 헤더 */
  .apply_header h2 {
    font-size: var(--serve);
  }

  /* 슬라이드 래퍼 */
  .apply_slide_wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  /* 슬라이드 리스트 */
  .apply_slide_wrapper .slide_list {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-sizing: border-box;
  }

  /* 스크롤바 제거 */
  .apply_slide_wrapper .slide_list::-webkit-scrollbar {
    display: none;
  }

  /* 슬라이드 */
  #apply .slide_item {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  /* 카드 */
  .apply_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 50px 40px;
    text-align: center;
    box-sizing: border-box;
  }

  /* 콘텐츠 */
  .card_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }

  /* 숫자리스트 */
  #apply .card_step_list {
    margin: 0 auto calc(var(--base-unit) * 2);
    gap: 16px;
  }

  /* 이미지 */
  #apply .card_img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 200px;
    margin: 30px auto 0;
    order: 2;
    text-align: center;
  }

  #apply .card_img img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* 화살표 제거 */
  .apply_arrows {
    display: none;
  }
}

/* 지원요건 모바일 */
@media (max-width: 402px) {
  #apply {
    padding: 40px 0;
  }
  /* 전체 */
  #apply .inner {
    padding: 0 16px;
    box-sizing: border-box;
  }
  /* 헤더 */
  .apply_header {
    margin-bottom: 40px;
  }
  .apply_header h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .apply_header p {
    font-size: 14px;
    line-height: 1.5;
  }
  /* 슬라이드 */
  #apply .slide_item {
    flex: 0 0 100%;
  }
  .apply_slide_wrapper .slide_list {
    padding: 10px 0;
    gap: 0;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* 스냅 기능 유지 */
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
  }
  /* 카드 */
  .apply_card {
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
  }
  /* 제목 */
  .card_title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  /* 설명 */
  .card_desc {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  /* 숫자 버튼 */
  #apply .card_step_list {
    gap: 10px;
  }
  #apply .card_step_list li {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  /* 이미지 */
  #apply .card_img {
    max-width: 140px;
    margin-top: 10px;
  }
  /* 상단 숫자 */
  .apply_slider_number {
    font-size: 14px;
  }
  .apply_slider_number .bar {
    width: 40px;
  }
}

/* 지원독려 : 황시원 */
/* 배경 */
.join_cta {
  width: 100%;
  background-image: url(../images/footer_cta_bg2.png), url(../images/footer_cta_bg1.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
}
/* 버튼 */
.join_cta .btn-big {
  filter: drop-shadow(0 0 10px var(--yellow));
  animation: btnBounce 1.5s ease infinite;
}
/* 지원독려 태블릿 */
@media (max-width: 768px) {
  /* 배경 */
  .join_cta {
    height: 160px;
    min-height: 160px;
    padding: 30px 0;
    box-sizing: border-box;
    gap: 20px;
  }
  /* 폰트 사이즈 */
  .join_cta .text-h1 {
    font-size: 24px;
  }
  .join_cta .text-qna {
    display: none;
  }
  .join_cta .btn-big .material-icons-round {
    display: none;
  }
  /* 버튼 */
  .join_cta .btn-big {
    padding: 10px 30px;
    font-size: 16px;
  }
}
/* 지원독려 모바일 */
@media (max-width: 402px) {
  /* 배경 */
  .join_cta {
    height: 140px;
    min-height: 140px;
    padding: 20px 0;
    gap: 10px;
  }
  /* 폰트 사이즈 */
  .join_cta .text-h1 {
    font-size: 20px;
  }
  .join_cta .text-qna {
    display: none;
  }
  /* 버튼 */
  .join_cta .btn-big {
    padding: 9px 20px;
    font-size: 12px;
  }
}

/* QNA : 황시원 */
/* 배경 */
.qna {
  background: var(--white);
}
/* 폰트 */
.qna-text {
  color: var(--black);
}
.qna-icon {
  width: 90px;
}
.qnalist {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.qna .inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0;
  box-sizing: border-box;
  text-align: center;
}
/* 질문상자 */
.qnalist .question {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  height: calc(var(--base-unit) * 4);
  padding: 0 40px;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: 2px solid #d7d7d7;
  border-color: #d7d7d7;
  border-radius: 10px;
}
.qnalist li.active .question {
  border-radius: 10px 10px 0 0;
  background: #d7d7d7;
}
/* 답변상자 */
.qnalist .answer {
  width: 100%;
  box-sizing: border-box;
  display: none;
  height: auto;
  padding: 30px 40px;
  justify-content: space-between;
  background: var(--white);
  border: 2px solid #d7d7d7;
  border-radius: 0 0 10px 10px;
}
.qnalist li.active .answer {
  display: flex;
}
.question-title {
  display: flex;
  gap: 30px;
  min-width: 0;
}
.qnalist .question > span {
  color: #d7d7d7;
}
.qnalist li.active .question > span {
  color: var(--white);
  transform: rotate(180deg);
}

/* qna 태블릿 */
@media (max-width: 768px) {
  .qna-icon {
    width: 60px;
  }
  .qna.inner-pd {
    padding: 60px 0;
  }
  .qna {
    gap: 60px;
  }
  .qnalist {
    padding: 0 40px;
  }
  .qnalist .question {
    height: calc(var(--base-unit) * 3);
    padding: 0 30px;
  }
  .qnalist .answer {
    padding: 20px 30px;
  }
  .question-title {
    gap: 10px;
    min-width: 0;
  }

  /* 폰트 사이즈 */
  .qna .text-h1 {
    font-size: 32px;
  }
  .question-title {
    font-size: 16px;
  }
  .answer .text-h3 {
    font-size: 16px;
  }
  .answer .text-content {
    font-size: 12px;
  }
  .qnalist .question > span {
    font-size: 20px;
  }
  .qnalist li.active .question > span {
    font-size: 20px;
  }
  .answer .text-h3 {
    line-height: 150%;
  }
}

/* qna 모바일 */
@media (max-width: 402px) {
  .qna .inner {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  .qna-icon {
    width: 40px;
  }
  .qna {
    gap: 40px;
  }
  .qna.inner-pd {
    padding: 40px 0;
  }
  .qnalist {
    padding: 0 20px;
  }
  .qnalist .question {
    height: calc(var(--base-unit) * 2);
    padding: 0 20px;
  }
  .qnalist .answer {
    padding: 20px 20px;
  }
  /* 폰트 사이즈  */
  .qna .text-h1 {
    font-size: 20px;
  }
  .question-title {
    font-size: 10px;
  }
  .answer .text-h3 {
    font-size: 10px;
  }
  .answer .text-content {
    font-size: 8px;
    line-height: 150%;
  }
  .qnalist .question > span {
    font-size: 15px;
  }
  .qnalist li.active .question > span {
    font-size: 15px;
  }
}
