.area dt {
  color: #443f9e !important;
}

.__about {
  margin-top: 30px;
}

.process_box {
  box-sizing: border-box;
  /* padding: 10px; */
  display: inline-block;
  vertical-align: top;
  width: 25%;
  position: relative;
  margin-left: -50px;
  z-index: 1;
}

.process_box:first-child {
  margin-left: 0;
}

.process_box:not(:last-child) h5::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  z-index: 2;
}

.process_box:nth-child(1) {
  z-index: 6;
}

.process_box:nth-child(2) {
  z-index: 5;
}

.process_box:nth-child(3) {
  z-index: 4;
}

.process_box:nth-child(4) {
  z-index: 3;
}

.process_box:nth-child(5) {
  z-index: 2;
}

.process_box:nth-child(6) {
  z-index: 1;
}

.process_box:nth-child(1) h5 {
  background: #8a7bff;
}

.process_box:nth-child(2) h5 {
  background: #7c6fff;
}

.process_box:nth-child(3) h5 {
  background: #6e63ec;
}

.process_box:nth-child(4) h5 {
  background: #6057d2;
}

.process_box:nth-child(5) h5 {
  background: #524bb8;
}

.process_box:nth-child(6) h5 {
  background: #443f9e;
}

.process_box h5 {
  border-radius: 5px;
  padding: 20px 30px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

.process_box h5:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.__about .two .area dl {
  padding: 0;
}


div .one {
  padding-bottom: 0 !important;
}

div .one {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

div .one .__txt1.__mt20 {
  width: 100%;
  margin-bottom: 1em;
}

div .one .areas-container {
  display: flex;
  justify-content: space-between;
}

div .one .area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

div .one .area dl {
  margin-bottom: 0;
  /* width: 100%; */
  flex: 0 0 auto;
}

div .__about .two1 .area dl {
  margin-bottom: 4em;
  flex: 0 0 30%;
}

/* dd 요소 스타일 추가 */
div .__about .two1 .area dl dd {
  overflow-wrap: break-word !important;
  word-wrap: break-word;
  hyphens: auto;
}


/* two1 영역의 레이아웃 수정 */
div .__about .two1 {
  display: flex;
  /* gap: 30px; */
}

div .__about .two1 .area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: stretch;
  /* 추가: 가로 너비 전체 사용 */
}

div .__about .two1 .area dl {
  margin-bottom: 0;
  /* width: 100%; */
  flex: 0 0 auto;
  /* 추가: flex-grow 방지 */
}

/* dl 내부 요소들 정렬 */
div .__about .two1 .area dl.type2,
div .__about .two1 .area dl.__dltxt {
  /* width: 100%; */
  display: block;
  /* 추가: 블록 레벨 요소로 변경 */
}


/* 복리후생 스타일 수정 */
.welfare-item {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  padding-right: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.welfare-item strong {
  color: #443f9e;
  font-size: 16px;
  margin-right: 10px;
  min-width: 100px;
  position: relative;
  flex-shrink: 0;
  /* 너비 고정 */
}

.welfare-item strong::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: #ddd;
}


/* 근무형태/지원자격 */
.welfare-item2 {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.welfare-item2 strong {
  color: #443f9e;
  font-size: 16px;
  margin-right: 10px;
  min-width: 100px;
  position: relative;
  flex-shrink: 0;
  /* 너비 고정 */
}

.welfare-item2 strong::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: #ddd;
}

/* 근무환경 섹션을 위한 더 구체적인 선택자 */
.two .area dl:first-of-type dd {
  padding-left: 0;
}


/* 채용절차 상세 설명 스타일 */
.detail {
  margin: 30px 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.detail-item {
  flex: 1 1 calc(50% - 10px);
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

/* 호버 효과 추가 (선택사항) */
.detail-item:hover {
  border-color: #443f9e;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #443f9e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

.detail-icon i {
  font-size: 24px;
  color: #fff;
}

.detail-content {
  flex: 1;
}

.detail-content h6 {
  font-size: 22px;
  color: #443f9e;
  margin-bottom: 8px;
  font-weight: 500;
}

.detail-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  margin-bottom: 8px;
  color: #666;
  line-height: 1.5;
  font-size: 16px;
}

.detail-list li:last-child {
  margin-bottom: 0;
}

.detail-list li strong {
  color: #443f9e;
  font-weight: 500;
}

.__about .two .area dl dd {
  font-size: 16px;
}

.detail-content p span {
  font-size: 14px;
}

@media screen and (max-width: 1000px) {
  .detail-content h6 {
    font-size: 18px;
  }

  .detail-content p,
  .detail-list li {
    font-size: 14px;
  }

  .process_box h5 {
    font-size: 15px;
    min-width: 90px;
    padding: 15px 28px;
  }

  .process_box:not(:last-child) h5::after {
    right: 10px;
    font-size: 18px;
  }

  .welfare-item strong,
  .welfare-item2 strong {
    font-size: 14px;
  }

  .__about .two .area dl dd {
    font-size: 14px;
  }

  .detail-content p span {
    font-size: 12px;
  }
}



@media screen and (min-width: 768px) {
  .one .areas-container {
    gap: 2em;
  }
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {

  .welfare-item strong,
  .welfare-item2 strong {
    font-size: 12px;
  }

  .__about .two .area dl dd {
    font-size: 12px;
  }

  .__about {
    margin-top: 15px;
  }

  .__tit2 h4 {
    font-size: 18px;
  }

  div .one,
  div .__about .two1 {
    flex-direction: column;
  }

  div .one .area,
  div .__about .two1 .area {
    /* width: 100%; */
    margin-bottom: 2em;
  }

  div .one .area dl dd,
  div .__about .two1 .area dl dd {
    /* width: 73%; */
    padding-right: 10px;
    /* 우측 여백 추가 */
  }

  .process_box {
    width: 60%;
    margin-left: -30px;
  }

  .process_box:not(:last-child) h5::after {
    right: 12px;
    font-size: 18px;
  }

  .process_box h5 {
    min-width: 90px;
    padding: 15px 30px;
  }

  .__dltxt {
    padding: 4px 0 0 90px !important;
  }

  .__dltxt dt {
    position: absolute;
  }

  .__dltxt dd {
    margin-top: 0 !important;
  }

  div .one .process {
    gap: 0.5em;
  }

  .welfare-item {
    padding: 12px;
    flex-direction: column;
    /* 모바일에서는 세로 배치 */
    align-items: flex-start;
    /* 왼쪽 정렬 */
    gap: 8px;
    /* 제목과 내용 사이 간격 */
  }

  .welfare-item strong {
    min-width: auto;
    /* 너비 제한 해제 */
    margin-right: 0;
    padding-bottom: 5px;
    /* 아래 여백 추가 */
    border-bottom: 1px solid #ddd;
    /* 구분선을 아래로 변경 */
    width: 100%;
    /* 전체 너비 사용 */
  }

  .welfare-item strong::after {
    display: none;
  }

  /* 복리후생 영역의 dl 요소들 간격 조정 */
  div .__about .two .area dl {
    margin-bottom: 1em;
  }

  /* 모바일에서는 2열로 배치될 때 z-index 재설정 */
  .process_box:nth-child(odd) {
    z-index: 2;
  }

  .process_box:nth-child(even) {
    z-index: 1;
  }


  .one .process {
    display: none !important;
  }

  .detail-content h6 {
    font-size: 16px;
  }

  .detail-item {
    padding: 15px;
    align-items: center;
  }

  .detail-content p,
  .detail-list li {
    font-size: 12px;
  }

  .detail-content p span {
    font-size: 10px;
  }
}