@charset "utf-8";
/* common
-------------------------------------------------------------- */

/* recruit
-------------------------------------------------------------- */
#recruit p {
  padding-bottom: 20px;
  line-height: 2.2;
  font-weight: 500;
}
#recruit figure {
  padding-bottom: 30px;
}
#recruit dt {
  position: relative;
}
#recruit dt h3 {
  padding-bottom: 20px;
}
#recruit dt::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 1px;
  background: var(--navy);
  content: "";
  z-index: 2;
}
#recruit dt::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(32, 47, 84, 0.4);
  content: "";
}
#recruit dd {
  padding: 40px 0 60px;
}
#recruit dd p {
  font-weight: 700;
}
@media (max-width: 767px) {
  #recruit p {
    line-height: 2;
  }
  #recruit figure {
    padding-bottom: 20px;
  }
  #recruit dl:last-of-type {
    margin-bottom: -50px;
  }
  #recruit dt h3 {
    padding-bottom: 10px;
  }
  #recruit dd {
    padding: 20px 0;
  }
}