@charset "UTF-8";

/*================================================
 *  fix_bg
 ================================================*/
#fix_bg {
  margin-top: 13rem;
  min-height: 74rem;
  background: url('../../images/recruit/fix_bg.webp') center top no-repeat;
  background-size: cover;
}

.fix_bg-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: absolute;
  width: calc(100% - 12rem);
  bottom: 13.5rem;
  left: 50%;
  transform: translateX(-50%);
}


.fix_bg-ttl h2 {
  font-size: 12rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.fix_bg-detail h3 {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.fix_bg-detail h3 span {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
}

.fix_bg-detail p {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  #fix_bg {
    min-height: 43rem;
    background: url('../../images/recruit/fix_bg_sp.webp') center top no-repeat;
    background-size: cover;
  }

  .fix_bg-inner {
    flex-wrap: wrap;
    bottom: 2rem;
    width: calc(100% - 4rem);
  }

  .fix_bg-ttl h2 {
    font-size: 6rem;
  }

  .fix_bg-detail {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .fix_bg-detail h3 {
    font-size: 2rem;
    margin-top: 4rem;
  }

  .fix_bg-detail p {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 2.5rem;
    color: #fff;
  }
}


/*================================================
 *  recruit
 ================================================*/
#recruit {
  background: #fff;
  border-radius: 6rem 6rem 0 0;
  margin-top: -6rem;
  padding-bottom: 0;
}

#recruit .l-wrap {
  max-width: 85rem;
}

.recruit_qa-list dt {
  color: #ADADAD;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #E9E9E9;
}

.recruit_qa-list dt span {
  color: #ADADAD;
  font-weight: 600;
  font-size: 1.8rem;
  margin-right: 0.4rem;
}

.recruit_qa-list dd {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-top: 4rem;
  padding-bottom: 12rem;
}

.recruit_qa-list dd h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  width: 41rem;
}

.recruit_qa-list dd p {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  width: 41rem;
}

.recruit_qa-list dd p span {
  background: var(--orange);
  color: #fff;
  display: inline-block;
  line-height: 1.5;
  padding: 0 .3rem 0 .5rem;
  margin-right: .3rem;
}


@media screen and (max-width: 1000px) {
  #recruit {
    border-radius: 0;
    margin-top: 0rem;
  }

  .recruit_qa-list dd {
    flex-wrap: wrap;
  }

  .recruit_qa-list dd h3 {
    font-size: 2.2rem;
    width: 100%;
    padding-bottom: 4rem;
  }

  .recruit_qa-list dd p {
    font-size: 1.4rem;
    width: 100%;
  }
}


/*================================================
 *  ideal
 ================================================*/
#ideal {
  background: var(--lightgray);
}

#ideal .l-wrap {
  max-width: 85rem;
}

#ideal .l-wrap h2 {
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

#ideal .l-wrap h2 span {
    letter-spacing: 0;
}

#ideal .l-wrap p {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

.ideal_list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6rem;
}

.ideal_list li {
  background: #fff;
  border-radius: 1.6rem;
  padding: 6rem 4rem;
}


.ideal_list li h3 {
  color: #ADADAD;
  font-weight: 600;
  font-size: 4.8rem;
  margin-bottom: 1.5rem;
}

#ideal .l-wrap .ideal_list li p {
  line-height: 1.5;
}

@media screen and (max-width: 1000px) {
  #ideal {
    padding-bottom: 0;
  }

  .ideal_list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 6rem;
  }

  .ideal_list li {
    padding: 6rem 2rem;
  }
}