/* 내용 */
.container {
  width: 100%;
  font-size: 1em;
  background: #fff;
  padding-top: 141px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container > .banner {
  width: 100%;
  height: 500px;
  background-image: url(../image/recruit.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container > .banner > .title {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.container > .banner > .title > h2,
.sub_tit {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.container > .banner > .title > .sub_tit {
  font-size: 20px;
}

.container > .banner > .title > h2 {
  font-size: 40px;
}

/* 타이틀 */
.title_h2 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 20px; /* 밑줄 공간 */
  font-size: 40px;
}

.title_h2::after {
  content: '';
  position: absolute;
  right: 0; /* ← 핵심 */
  bottom: 0;
  width: 25%; /* 줄 길이 */
  height: 1px;
  background: #000;
}

/* 타이틀 */
.tit_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 40px;
  width: 1200px;
  padding: 120px 0 40px 0;
  gap: 10px;
}
.tit_box > p {
  font-size: 20px;
}
.title_h2 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 20px; /* 밑줄 공간 */
  font-size: 40px;
}

.title_h2::after {
  content: '';
  position: absolute;
  right: 0; /* ← 핵심 */
  bottom: 0;
  width: 25%; /* 줄 길이 */
  height: 1px;
  background: #000;
}

/* 다운로드 */
.down_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.down_wrap > .designer_down,
.partner_down {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 48%;
}

.down_wrap .down_tit {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}

.down_link,
.e-mail {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}

.e-mail {
  background-color: #776f67;
}

/* 공고 이미지 칸 */
.job_posting {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 120px;
}
.job_posting > img {
  width: 100%;
}

/* 리스트 컨트롤 */

@media (max-width: 1536px) {
  .container {
    padding-left: 3%;
    padding-right: 3%;
    box-sizing: border-box;
  }
}

@media (max-width: 1280px) {
  .container {
    padding-left: 3%;
    padding-right: 3%;
    box-sizing: border-box;
  }
}

@media (max-width: 1024px) {
  .container {
    padding-left: 3%;
    padding-right: 3%;
    box-sizing: border-box;
    padding-top: 69px;
  }
  .tit_box {
    width: 100%;
  }
  .designer_wrap {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 3%;
    padding-right: 3%;
    box-sizing: border-box;
    padding-top: 69px;
  }
  .container > .banner {
    width: 100vw;
  }
  .tit_box {
    width: 100%;
  }
  .title_h2 {
    font-size: 25px;
  }
  .designer_wrap {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 3%;
    padding-right: 3%;
    box-sizing: border-box;
    padding-top: 69px;
  }
  .container > .banner > .title > h2,
  .sub_tit {
    box-sizing: border-box;
    padding: 0 10px;
  }
  .container > .banner > .title > .sub_tit {
    font-size: 16px;
  }

  .container > .banner > .title > h2 {
    font-size: 30px;
  }
  .tit_box {
    width: 100%;
  }
  .title_h2 {
    font-size: 25px;
  }
}
