/*--------------------------------------
導入文
--------------------------------------*/
#wages_intro .text {
  font-family: var(--ff-maru);
  font-size: clamp( 1.6rem, calc( 1.4rem + 0.5555555555555556vw ), 2.1rem );
  max-width: 80rem;
  margin: 0 auto;
  transform: rotate(0.05deg);
}
/*--------------------------------------
工賃を決める3つの評価シート
--------------------------------------*/
#wages_assessment {
  background: var(--bg-pale-blue);
}
#wages_assessment .content_block {
  max-width: 93rem;
  margin: 0 auto;
  @media (min-width:768px) {
    padding-left: 25%;
    background: url(/assets/img/wages/assessment_illust.png) no-repeat center left / contain;
  }
}
#wages_assessment .sheet_list {
  margin-bottom: 5rem;
  counter-reset: count 0;

  & li {
    counter-increment: count 1;

    + li {
      margin-top: 3rem;
    }
    & dt {
      display: flex;
      align-items: center;
      &::before {
        display: flex;
        content: counter(count);
        font-size: 82%;
        justify-content: center;
        align-items: center;
        width: 1.2em;
        height: 1.2em;
        margin-right: 0.2em;
        border: 0.1rem solid;
        border-radius: 50%;
      }
    }
    & dd {
      margin-left: calc(var(--fs-bl-title) + 0.2em);
    }
  }
}
/*--------------------------------------
学校法人が運営しているので安心
--------------------------------------*/
#wages_safety .text {
  font-family: var(--ff-maru);
  font-size: clamp( 1.6rem, calc( 1.4rem + 0.5555555555555556vw ), 2.1rem );
  max-width: 80rem;
  margin: 0 auto;
}
/*--------------------------------------
一人ひとりの目標をサポートします
--------------------------------------*/
#wages_support {
  background: var(--bg-pale-blue);
}
#wages_support .content_block::after {
  display: block;
  content:"";
  width: min(80%,60rem);
  aspect-ratio: 600 / 372 ;
  margin: 5rem auto 0;
  background: url(/assets/img/wages/support_illust.png) no-repeat center / contain;
}
#wages_support .text {
  font-family: var(--ff-maru);
  font-size: clamp( 1.6rem, calc( 1.4rem + 0.5555555555555556vw ), 2.1rem );
  max-width: 80rem;
  margin: 0 auto;

  + .text {
    margin-top: 2em;
  }
}
