#jobs .sec-fv {
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  #jobs .sec-fv {
    margin-bottom: 100px;
  }
}
#jobs .introduction-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  #jobs .introduction-text {
    gap: 24px;
  }
}
#jobs .sec-introduction {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #jobs .sec-introduction {
    margin-bottom: 80px;
  }
}
#jobs .sec-job {
  position: relative;
  padding-inline: 24px;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #jobs .sec-job {
    margin-bottom: 100px;
  }
}
#jobs .sec-job .content-outer {
  position: relative;
  max-width: 1004px;
  margin-inline: auto;
  border-radius: 24px;
  background: var(--green-light);
  padding: 64px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #jobs .sec-job .content-outer {
    padding: 40px 24px;
    border-radius: 16px;
  }
}
#jobs .sec-job .job-head {
  background: var(--blue);
  color: var(--white);
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  #jobs .sec-job .job-head {
    margin-bottom: 24px;
  }
}
#jobs .sec-job .job-head::before {
  background-color: var(--blue);
}
#jobs .sec-job .job-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #jobs .sec-job .job-list {
    grid-template-columns: 1fr;
  }
}
#jobs .sec-job .job-item {
  position: relative;
  background: var(--white);
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  #jobs .sec-job .job-item {
    border-radius: 16px;
  }
}
#jobs .sec-job .job-item-container {
  padding: 40px 40px 62px;
  border-radius: 24px 24px 0 0;
}
@media screen and (max-width: 768px) {
  #jobs .sec-job .job-item-container {
    padding: 24px;
  }
}
#jobs .sec-job .job-item-container .head-wrap {
  display: flex;
  justify-content: center;
}
#jobs .sec-job .job-item-container .job-item-heading {
  position: relative;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  padding: 0.2em 0px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #jobs .sec-job .job-item-container .job-item-heading {
    font-size: 2rem;
  }
}
#jobs .sec-job .job-item-container .job-item-heading::before {
  content: "";
  position: absolute;
  background: linear-gradient(transparent 50%, #D0E1FF 50%);
  left: 50%;
  translate: -50% 0;
  bottom: 5px;
  width: 120%;
  height: 70%;
  z-index: -1;
}
#jobs .sec-job .job-item-container .lower-text {
  letter-spacing: 0.1em;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  #jobs .sec-job .job-item-container .lower-text {
    margin-top: 16px;
  }
}
#jobs .interview-link {
  position: absolute;
  max-width: 276px;
  width: 50cqw;
  aspect-ratio: 276/62;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  left: 50%;
  translate: -50% 0;
  bottom: -30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #jobs .interview-link {
    width: 100%;
    padding-block: 9px;
  }
}
#jobs .interview-link::before {
  content: "";
  position: absolute;
  background: linear-gradient(275deg, rgb(91, 199, 195) 0%, rgb(25, 50, 186) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  transition: ease 300ms all;
  z-index: 0;
  opacity: 0;
  border-radius: 20px;
}
#jobs .interview-link::after {
  content: "";
  position: relative;
  background: url(/career/assets/img/common/arrow_white.svg) no-repeat;
  width: 24px;
  height: 14px;
  transition: ease 300ms left;
  z-index: 1;
}
#jobs .interview-link span {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
@media (any-hover: hover) {
  #jobs .interview-link:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, rgb(91, 199, 195) 0%, rgb(25, 50, 186) 100%);
  }
  #jobs .interview-link:hover::after {
    left: 8px;
  }
}