@charset "UTF-8";

/* ---------------------------------
  page_title
--------------------------------- */
.page_title img {
  width: 24.3rem;
}


/* ---------------------------------
  flow_list
--------------------------------- */
.flow_list li {
  background-color: #fff;
  padding: 2rem 8rem 2rem 8rem;
  border: .1rem solid #000;
  border-radius: 3rem;
  display: flex;
  column-gap:4rem;
  position: relative;
}
.flow_list li:not(:last-child) {
  margin-bottom: 3rem;
}
.flow_list .step01 {
  padding-bottom: 6.4rem;
}
.flow_list .step08 {
  background-color: #FF6766;
  color: #fff;
}
.flow_list .step_number {
  width: 7.4rem;
  height: 7.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  display: flex;
  flex-flow: column;
  row-gap: .2rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.flow_list .step01 .step_number {
  background-image: url("../../../images/recruit/flow/step_bg01.svg");
}
.flow_list .step02 .step_number {
  background-image: url("../../../images/recruit/flow/step_bg02.svg");
}
.flow_list .step03 .step_number {
  background-image: url("../../../images/recruit/flow/step_bg03.svg");
}
.flow_list .step04 .step_number {
  background-image: url("../../../images/recruit/flow/step_bg04.svg");
}
.flow_list .step05 .step_number {
  background-image: url("../../../images/recruit/flow/step_bg05.svg");
}
.flow_list .step06 .step_number {
  background-image: url("../../../images/recruit/flow/step_bg06.svg");
}
.flow_list .step07 .step_number {
  background-image: url("../../../images/recruit/flow/step_bg07.svg");
}
.flow_list .step08 .step_number {
  background-image: url("../../../images/recruit/flow/step_bg08.svg");
  color: #000;
}
.flow_list li:not(:last-child) .step_number::after {
  content: "";
  position: absolute;
  top: 10.2rem;
  z-index: 1;
  width: .3rem;
  height: calc(100% - 5.8rem);
  background-image: url(../../../images/recruit/flow/step_border.svg);
  background-repeat: repeat-y;
  background-size: 100%;
  border-radius: 100rem;
  background-position: top -.3rem center;
}
.flow_list .step_number span {
  font-size: 2rem;
  font-weight: 700;
}
.flow_list .step01_detail {
  display: flex;
  justify-content: space-between;
}
.flow_list .flow_detail {
  width: 100%;
}
.flow_list .flow_detail h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 2rem 0 1.6rem;
}
.flow_list .flow_detail h3 + p {
  padding-bottom: 2rem;
}
.flow_list .step01_detail p {
  padding-right: 6.4rem;
  flex-shrink: 2;
}
.flow_list .step01_detail .logo_block {
  display: flex;
  flex-flow: column;
  row-gap: 1.6rem;
  justify-content: center;
  padding-left: 6.4rem;
  border-left: .1rem solid #000;
}
.flow_list .step01_detail .logo_block img {
  width: 16rem;
}
@media screen and (max-width: 999px) {
  .main_content .inner {
    padding: 0;
  }
  .flow_list li {
    padding: 0 2rem 0 1.2rem;
    border-left: none;
    border-right: none;
    border-radius: 0;
    column-gap:2rem;
  }
  .flow_list li:not(:last-child) {
    margin-bottom: 2rem;
  }
  .flow_list .step_number {
    margin-top: 2rem;
  }
  .flow_list li:not(:last-child) .step_number::after {
    height: calc(100% - 6.4rem);
  }
  .flow_list .flow_detail {
    padding: 4rem 0;
  }
  .flow_list .step01 .flow_detail {
    padding: 4rem 0 0;
  }
  .flow_list .step01_detail {
    display: block;
  }
  .flow_list .flow_detail h3 {
    font-size: 2rem;
    padding: 0;
  }
  .flow_list .flow_detail h3 + p {
    padding-bottom: 0;
  }
  .flow_list .flow_detail p {
    padding-top: 1.6rem;
  }
  .flow_list .step01_detail p {
    padding-right: 0;
  }
  .flow_list .step01_detail .logo_block {
    padding-left: 0;
    padding-top: 4rem;
    border-left: none;
  }
}