/* ------------------------------------
// recruit
------------------------------------ */
#recruit .lead {
  margin-bottom: clamp(4rem, 7.3vw, 9rem);
  display: grid;
  grid-template-columns: 1fr 43.3%;
  grid-template-rows: max-content 1fr;
  grid-template-areas: "h2 image" "text image";
  gap: 0 clamp(4rem, 6.5vw, 8rem);
}
#recruit .lead h2 {
  grid-area: h2;
  font-size: clamp(2rem, 2.4vw, 3rem);
  margin-bottom: clamp(2rem, 3.2vw, 4rem);
}
#recruit .lead .image {
  grid-area: image;
}
#recruit .lead .text {
  grid-area: text;
}
@media screen and (max-width: 768px) {
  #recruit .lead {
    display: block;
  }
  #recruit .lead .image {
    margin: 2rem 0;
  }
}
#recruit .condition {
  margin-top: clamp(3rem, 4.8vw, 6rem);
  background: var(--color-white_op);
  padding: clamp(3rem, 4.8vw, 6rem) clamp(2.5rem, 4.8vw, 6rem) clamp(3rem, 4.8vw, 6rem) clamp(2.5rem, 5.6vw, 7rem);
  border-radius: 1rem;
}
#recruit .condition .list_check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
}
@media screen and (max-width: 768px) {
  #recruit .condition .list_check {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
#recruit .condition .list_check li + li {
  margin-top: 0;
}
#recruit .status {
  margin-top: clamp(4rem, 6.5vw, 8rem);
}
#recruit .status span {
  font-size: 130%;
  margin-left: 0.5em;
}
#recruit .linkbtn {
  margin-top: 3rem;
}
#recruit .linkbtn a {
  display: block;
  background: var(--color-brown2);
  width: fit-content;
  padding: 3rem;
  border-radius: 20px;
  font-size: clamp(2rem, 1.6vw, 2rem);
  font-weight: bold;
  color: #FFF;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: 0.3s ease-in-out;
}
#recruit .linkbtn a::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #666;
  transition: 0.3s;
}
#recruit .linkbtn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background-color: #666;
  transition: 0.3s;
}
#recruit .linkbtn a:hover {
  background: #edf6ff;
  background: var(--color-brown1);
  color: #FFF;
}
#recruit .linkbtn a:hover::before, #recruit .linkbtn a:hover::after {
  right: -2.5em;
}
#recruit .job_description {
  margin-top: clamp(4rem, 6.5vw, 8rem);
}
#recruit .job_description > section {
  background: var(--color-white_op);
  padding: clamp(3rem, 6.5vw, 8rem) clamp(2.5rem, 4.8vw, 6rem) clamp(3rem, 6.5vw, 8rem) clamp(2.5rem, 5.6vw, 7rem);
  border-radius: 1rem;
}
#recruit .job_description > section + * {
  margin-top: clamp(3rem, 4.8vw, 6rem);
}
#recruit .job_description > section h2 {
  font-size: clamp(1.8rem, 1.9vw, 2.4rem);
  font-weight: 500;
  margin-bottom: clamp(3rem, 4.8vw, 6rem);
  text-align: center;
}
#recruit .job_description > section dl {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: clamp(2.5rem, 4vw, 5rem);
}
#recruit .job_description > section dl dt {
  align-self: center;
}
#recruit .job_description > section dl dd {
  padding: 0.2rem 0 0.2rem clamp(2.5rem, 4vw, 5rem);
  border-left: solid 1px var(--color-brown1);
}
#recruit .job_description > section dl dd ul.holi {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
}
@media screen and (max-width: 768px) {
  #recruit .job_description > section dl {
    display: block;
  }
  #recruit .job_description > section dl dt {
    width: auto;
    font-size: 1.6rem;
    border-bottom: solid 1px var(--color-brown1);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
  }
  #recruit .job_description > section dl dd {
    border: none;
    padding: 0;
  }
  #recruit .job_description > section dl dd + dt {
    margin-top: 2rem;
  }
}