@charset "utf-8";

/* ビジネスマッチング・人材紹介 */
/* @box1 */
.box1 {
  display: grid;
  grid-template-areas: 
    "head img"
    "body img"
  ;
  gap: 0 24px;
}
.box1 .box1_head {
  grid-area: head;
}
.box1 .box1_img {
  grid-area: img;
}
.box1 .box1_body {
  grid-area: body;
}

/* revese */
.box1.reverse {
  grid-template-areas: 
    "img head"
    "img body"
  ;
}

/* @stepBox2 */
.stepBox2 {}
.stepBox2 .stepBox2_item {
  justify-content: flex-start;
  height: auto;
  padding-top: 16px;
  padding-bottom: 12px;
  padding-left: 20px;
}
.stepBox2 .stepBox2_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stepBox2 .stepBox2_title {
  font-size: 20px;
  font-weight: bold;
}
.stepBox2 .stepBox2_sub {
  padding-top: 1em;
}


/* modal */
.modalLink {
  text-decoration: underline;
}
.modalLink:hover,
.modalLink:focus {
  text-decoration: none;
}