.recruit_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 100px;
  font-weight: 600;
}
@media all and (max-width: 750px) {
  .recruit_nav {
    gap: 10px;
    margin-top: 40px;
  }
}
.recruit_nav .recruit_btn {
  padding: 10px;
  background: #CECECE;
  width: 100%;
  text-align: center;
  height: 100px;
  border-radius: 20px;
  font-size: clamp(14px, 2vw, 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 750px) {
  .recruit_nav .recruit_btn {
    height: 40px;
    border-radius: 10px;
  }
}
.recruit_nav .recruit_btn.active {
  background: #118CCF;
  color: #fff;
}
.recruit_nav .recruit_btn.active {
  pointer-events: none;
}
.recruit_nav .recruit_btn:hover {
  background: #118CCF;
  color: #fff;
}

.recruit_section {
  padding: 100px 0;
}
@media all and (max-width: 750px) {
  .recruit_section {
    padding: 40px 0;
  }
}

.specialist_section {
  padding: 100px 0 160px;
}
@media all and (max-width: 750px) {
  .specialist_section {
    padding: 40px 0;
  }
}

.recruit_section_title {
  font-size: clamp(17px, 1.67vw, 24px);
  font-weight: 500;
  margin-bottom: 40px;
  padding-left: 30px;
  position: relative;
}
@media all and (max-width: 750px) {
  .recruit_section_title {
    margin-bottom: 25px;
    padding-bottom: 5px;
    padding-left: 17px;
  }
}
.recruit_section_title::before {
  content: "";
  position: absolute;
  background: #118CCF;
  width: 7px;
  height: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 750px) {
  .recruit_section_title::before {
    width: 4px;
  }
}

.recruit_list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
@media all and (max-width: 750px) {
  .recruit_list {
    margin-top: 10px;
  }
}

.recruit_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C6C6C6;
  padding: 0;
}
.recruit_item:first-child {
  border-top: 1px solid #C6C6C6;
}

.recruit_item_label {
  padding: 20px 24px;
  font-weight: 600;
  width: 15%;
  min-width: 120px;
  line-height: 1.5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 22px;
}
@media all and (max-width: 750px) {
  .recruit_item_label {
    width: 10%;
    min-width: 100px;
    padding: 12px 12px;
    font-size: 13px;
  }
}

.recruit_item_content {
  padding: 20px 24px;
  font-size: 22px;
  line-height: 2;
}
@media all and (max-width: 750px) {
  .recruit_item_content {
    padding: 12px 0;
    font-size: 13px;
    line-height: 1.7;
  }
}
.recruit_item_content .note {
  display: block;
  margin-top: 8px;
}
@media all and (max-width: 750px) {
  .recruit_item_content .note {
    font-size: 12px;
  }
}

.recruit_link {
  color: #0878B5;
  position: relative;
}
.recruit_link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0878B5;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.recruit_link:hover::after {
  width: 0%;
}

.specialist_section {
  background: #F1F1F1;
}

.recruit_careers_content,
.recruit_intern_content {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.recruit_careers_content.active,
.recruit_intern_content.active {
  opacity: 1;
  pointer-events: auto;
}

.recruit_intern_content {
  overflow-x: hidden;
  display: none;
}
.recruit_intern_content.active {
  display: block;
}

.intern_title {
  font-size: clamp(60px, 9vw, 130px);
  color: #EEEEEE;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-top: 40px;
  z-index: 1;
}
@media all and (max-width: 750px) {
  .intern_title {
    margin-top: 20px;
  }
}

.intern_text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100px;
  width: 100%;
}
@media all and (max-width: 750px) {
  .intern_text {
    top: 50px;
  }
}
.intern_text span {
  display: block;
  background: #444444;
  color: #fff;
  font-size: clamp(21px, 2.92vw, 42px);
  padding: 0 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;
}

.intern_content {
  margin-top: 60px;
  position: relative;
  z-index: 0;
}
@media all and (max-width: 750px) {
  .intern_content {
    margin-top: 35px;
  }
}

.intern_content_text {
  text-align: center;
  padding: 60px 0;
  font-size: clamp(13px, 1.53vw, 22px);
  line-height: 2;
}
@media all and (max-width: 750px) {
  .intern_content_text {
    padding: 40px 0;
  }
}
.intern_content_text p:not(:last-child) {
  margin-bottom: 20px;
}

@media all and (min-width: 751px) {
  .sec_intern_image {
    max-width: 1100px;
    margin: 40px auto 0;
  }
}

.sec_intern {
  padding: 80px 0 160px;
}
@media all and (max-width: 750px) {
  .sec_intern {
    padding: 40px 0;
  }
}
.sec_intern.gray {
  background: #F1F1F1;
}
.sec_intern.last {
  padding: 80px 0 40px;
}
@media all and (max-width: 750px) {
  .sec_intern.last {
    padding: 40px 0;
  }
}

.sec_intern_text {
  width: 100%;
}
.sec_intern_text span {
  display: block;
  background: #444444;
  color: #fff;
  font-size: clamp(21px, 2.92vw, 42px);
  padding: 0 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;
}

.sec_intern_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 750px) {
  .sec_intern_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
    margin-top: 20px;
    gap: 40px;
  }
}
.sec_intern_list li {
  width: calc(50% - 20px);
  border-radius: 60px;
  padding: 60px;
  position: relative;
  background: #118CCF;
}
@media all and (max-width: 750px) {
  .sec_intern_list li {
    border-radius: 30px;
    padding: 30px;
    width: 100%;
  }
}
.sec_intern_list li .sec_intern_list_mission {
  position: absolute;
  background: #444444;
  color: #fff;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: clamp(16px, 2vw, 28px);
  padding: 2px 10px;
  border-radius: 10px;
}
@media all and (max-width: 750px) {
  .sec_intern_list li .sec_intern_list_mission {
    border-radius: 5px;
    top: -18px;
  }
}
.sec_intern_list li .sec_intern_list_mission_inner {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.sec_intern_list li .sec_intern_list_mission_inner span {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-left: 5px;
}
.sec_intern_list li .sec_intern_list_mission_inner::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 15px solid #444444;
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media all and (max-width: 750px) {
  .sec_intern_list li .sec_intern_list_mission_inner::after {
    border-top: 9px solid #444444;
    bottom: -7px;
  }
}
.sec_intern_list li .sec_intern_list_theme {
  position: absolute;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 2vw, 29px);
  top: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 600;
  padding: 0 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media all and (max-width: 750px) {
  .sec_intern_list li .sec_intern_list_theme {
    top: 20px;
    padding: 0 10px;
  }
}
.sec_intern_list li .sec_intern_list_text {
  color: #fff;
  font-size: clamp(12px, 2vw, 20px);
  text-align: center;
  font-weight: 600;
  margin-top: 30px;
  line-height: 1.8;
}
@media all and (max-width: 750px) {
  .sec_intern_list li .sec_intern_list_text {
    margin-top: 10px;
  }
}

.end_title {
  font-size: clamp(56px, 9vw, 130px);
  color: #EEEEEE;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-top: 40px;
  white-space: nowrap;
}
@media all and (max-width: 750px) {
  .end_title {
    margin-top: 20px;
  }
}

.end_text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100px;
  width: 100%;
}
@media all and (max-width: 750px) {
  .end_text {
    top: 50px;
  }
}
.end_text span {
  color: #444444;
  display: block;
  font-size: clamp(15px, 1.94vw, 28px);
  padding: 0 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;
}

.end_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 100px;
}
@media all and (max-width: 750px) {
  .end_content {
    margin: 40px 0 60px;
  }
}

@media all and (min-width: 751px) {
  a.more_btn {
    border: 1px solid #444444;
    min-height: 100px;
    width: 650px;
    font-size: clamp(16px, 2.08vw, 30px);
  }
}
@media all and (max-width: 750px) {
  a.more_btn {
    min-height: 50px;
    width: 80%;
  }
}