/*
	トップページ
*/

/*----------------------------------------
	メリット
----------------------------------------*/
.advantages_list {
  display: flex;
  flex-direction: column;
  margin-top: -20px;
}

.advantages_item {
  position: relative;
  width: 100%;
  margin: 10px auto 0;
}

.advantages_thumb {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  margin: 0 auto;
}

.advantages_thumb img {
  width: 100%;
}

.advantages_data {
  padding: 60px 10px 10px;
  margin: 20px 3% 15px;
  border-radius: 8px;
}

.advantages_data dt {
  position: relative;
  font-weight: bold;
  font-size: 2rem;
  color: #095ca8;
  text-align: center;
  z-index: 0;
}

.advantages_data dt::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background-color: #095ca8;
  z-index: -1;
}

.advantages_data dd {
  margin-top: 35px;
  margin-left: 0;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .advantages_list {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1130px;
  }

  .advantages_item {
    margin: 0 auto;
  }

  .advantages_thumb {
    top: 0;
    width: 95px;
    transform: translate(-50%, -50%);
  }

  .advantages_data {
    padding: 30px 20px 10px;
    margin: 0 3% 20px;
    height: 100%;
    border-radius: 20px;
  }

  .advantages_data dt {
    margin-top: 30px;
    font-size: 2rem;
  }

  .advantages_data dt::after {
    width: 40px;
    top: 35px;
  }

  .advantages_data dd {
    margin-top: 25px;
  }
}

/*----------------------------------------
	お仕事の種類
----------------------------------------*/
.job_type_list {
  display: flex;
  flex-direction: column;
  margin-top: -20px;
}

.job_type_item {
  margin: 20px auto 30px;
}

.job_type_thumb {
  width: 80%;
  margin: 0 auto;
}

.job_type_thumb img {
  max-width: none;
  width: 100%;
}

.job_type_data {
  margin: 20px 10%;
}

.job_type_data dt {
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
}

.job_type_data dd {
  margin-top: 10px;
  margin-left: 0;
  line-height: 1.4;
  font-size: 1.6rem;
  color: #504949;
}

.job_type_search {
  font-size: 2rem;
}

.job_type_search:active {
  transform: translateY(6px);
  box-shadow: none;
}

.job_type_detail {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #095ca8;
}

.job_type_detail_list {
  display: flex;
  flex-direction: column;
}

.job_type_detail_item {
  font-size: 2rem;
  display: block;
  width: 150px;
  text-align: center;
  margin: 0 auto;
  border-bottom: solid 2px #fff;
}

.job_type_detail_item a {
  font-weight: bold;
  color: #095ca8;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .job_type_list {
    margin: 0 5%
  }

  .job_type_item {
    position: relative;
    margin-bottom: 50px;
  }

  .job_type_thumb {
    display: inline-block;
    width: 40%;
    vertical-align: top;
  }

  .job_type_thumb img {
    width: 100%;
  }

  .job_type_data {
    display: inline-block;
    width: 50%;
    margin: 0 0 0 9%;
    vertical-align: top;
  }

  .job_type_data dt {
    font-size: 3rem;
  }

  .job_type_data dd {
    font-size: 2rem;
    line-height: 1.3;
  }

  .job_type_search {
    position: absolute;
    bottom: -46px;
    right: 0;
  }

  .job_type_search:active {
    transform: translateY(0.3vw);
  }

  .job_type_detail {
    margin-top: 30px;
    font-size: 3rem;
  }

  .job_type_detail_list {
    flex-direction: row;
    justify-content: space-between;
    width: 40%;
    margin: 0 auto;
  }

  .job_type_detail_item {
    width: auto;
    margin-top: 10px;
  }
}

/*----------------------------------------
	報酬受取までのステップ
----------------------------------------*/
.step_list {
  margin-top: -20px;
}

.step_list_item {
  position: relative;
  display: table;
  width: 100%;
  height: 100px;
  color: #fff;
  padding-left: 30%;
  margin-top: 6px;
  text-align: center;
}

.step_list_logo {
  position: absolute;
  top: 50%;
  transform: translate(-110%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  font-weight: bold;
  z-index: 0;
}

.step_list_logo::before {
  content: "";
  position: absolute;
  top: 93px;
  left: 12px;
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
}

.step_list_logo::after {
  content: "";
  position: absolute;
  top: 90px;
  left: 18px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
}

.step_list_logo_text {
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  height: 60px;
}

.step_title {
  display: inline-block;
  font-size: 1.3rem;
}

.step_no {
  display: inline-block;
  font-size: 3.5rem;
  line-height: 1;
}

.step_list_heading {
  font-size: 7vw;
  font-weight: bold;
}

.step_title_sub {
  display: block;
  font-size: 5vw;
  margin-top: -2vw;
}

.step_title_sub::before {
  content: "";
  display: inline-block;
  width: 3.5vw;
  height: 3.5vw;
  border: 0.4vw solid;
  transform: rotate(45deg);
  margin-right: 1vw;
  margin-bottom: 0.2vw;
}

.step_title_sub::after {
  content: "";
  display: inline-block;
  width: 3.5vw;
  height: 3.5vw;
  border: 0.4vw solid;
  transform: rotate(45deg);
  margin-left: 1vw;
  margin-bottom: 0.2vw;
}

.step_list_item_1 {
  background-color: #0086DF;
  box-shadow: 0 6px 0 0 #2585C4;
  z-index: 5;
}

.step_list_logo_1::before {
  border-top: 28px solid #2585C4;
  z-index: -2;
}

.step_list_logo_1::after {
  border-top: 22px solid #0086DF;
  z-index: -2;
}

.step_list_logo_1_text {
  color: #0086DF;
}

.step_list_item_2 {
  background-color: #2A99E2;
  box-shadow: 0 6px 0 0 #4E9ACB;
  z-index: 4;
}

.step_list_logo_2::before {
  border-top: 28px solid #4E9ACB;
  z-index: -2;
}

.step_list_logo_2::after {
  border-top: 22px solid #2A99E2;
  z-index: -2;
}

.step_list_logo_2_text {
  color: #2A99E2;
}

.step_list_item_3 {
  background-color: #58ADE4;
  box-shadow: 0 6px 0 0 #6FAAD1;
  z-index: 3;
}

.step_list_logo_3::before {
  border-top: 28px solid #6FAAD1;
  z-index: -2;
}

.step_list_logo_3::after {
  border-top: 22px solid #58ADE4;
  z-index: -2;
}

.step_list_logo_3_text {
  color: #58ADE4;
}

.step_list_item_4 {
  background-color: #7ABCE7;
  box-shadow: 0 6px 0 0 #DEB225;
  z-index: 2;
}

.step_list_logo_4::before {
  border-top: 28px solid #DEB225;
  z-index: -2;
}

.step_list_logo_4::after {
  border-top: 22px solid #7ABCE7;
  z-index: -2;
}

.step_list_logo_4_text {
  color: #7ABCE7;
}

.step_list_item_5 {
  background-color: #F6C529;
  z-index: 1;
}

.step_list_logo_5_text {
  color: #F6C529;
}

@media screen and (max-width: 320px) {
  .step_list_heading {
    font-size: 2.24rem;
  }

  .step_title_sub {
    font-size: 1.6rem;
  }

  .step_title_sub::before {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    border: 0.1rem solid;
    transform: rotate(45deg);
    margin-right: 0.3rem;
    margin-bottom: 0.1rem;
  }

  .step_title_sub::after {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    border: 0.1rem solid;
    transform: rotate(45deg);
    margin-left: 0.3rem;
    margin-bottom: 0.1rem;
  }
}

@media screen and (min-width: 600px) {
  .step_list_heading {
    font-size: 3rem;
  }

  .step_title_sub {
    font-size: 2rem;
    margin-top: -5px;
  }

  .step_title_sub::before {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    border: 0.1rem solid;
    transform: rotate(45deg);
    margin-right: 0.3rem;
    margin-bottom: 0.1rem;
  }

  .step_title_sub::after {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    border: 0.1rem solid;
    transform: rotate(45deg);
    margin-left: 0.3rem;
    margin-bottom: 0.1rem;
  }
}

@media screen and (min-width: 768px) {
  .step_list_item {
    padding-left: 100px;
  }
}

/*----------------------------------------
	各種リンク
----------------------------------------*/
.links_list {
  padding-bottom: 100px;
}

.links_list_item {
  position: relative;
  margin: 3% 3% 0;
}

.links_list_item > a ::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  transform: translateX(-50%);
  width: 2rem;
  height: 3rem;
  background-image: url(../../images/touch.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.link_text {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .links_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 5%;
    padding-bottom: 100px;
  }

  .links_list_item {
    flex-grow: 1;
    width: 40%;
  }

  .links_list_item > a ::after {
    bottom: -10px;
    right: -5px;
    width: 4rem;
    height: 6rem;
  }

  .link_text {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 3.4rem;
    padding: 2rem 0;
  }

  .links_list_item > a {
    border-radius: 1.4rem;
  }
}

@media screen and (min-width: 900px) {
  .links_list_item > a ::after {
    right: 5px;
  }
}

/*----------------------------------------
	関連サービス
----------------------------------------*/
.related_services_list {
  display: flex;
  flex-direction: column;
  margin-top: -20px;
}

.related_services_item {
  position: relative;
  margin: 20px 0;
  text-align: center;
}

.related_services_thumb {
  display: inline-block;
  width: 100px;
  margin: 0 5px;
  vertical-align: top;
}

.related_services_thumb img {
  max-width: none;
  width: 100%;
}

.related_services_data {
  display: inline-block;
  width: 60%;
  margin: 0 5px;
  vertical-align: top;
}

.related_services_data dt {
  font-weight: bold;
  font-size: 1.6rem;
  color: #707070;
  text-align: left;
}

.related_services_data dd {
  margin-top: 6px;
  margin-left: 0;
  line-height: 1.6;
  font-size: 1.4rem;
  color: #707070;
  text-align: left;
}

.related_services_link {
  position: absolute;
  right: 20px;
  bottom: -18px;
  width: 80%;
  text-align: right;
}

.related_services_btn {
  font-size: 1.4rem;
  font-weight: bold;
  color: #095ca8;
  padding-right: 20px;
  text-decoration: none;
}

.related_services_btn::after,
.related_services_btn>span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 0.7rem;
  top: calc(50% - 2px);
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(-50%);
  color: inherit;
}

.related_services_btn>span::after {
  right: 1.6rem;
}

.text_emphasis_white {
  color: #fff;
}

.v_middle {
  vertical-align: middle;
  display: table-cell;
}

@media screen and (min-width: 768px) {
  .related_services_list {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 4%;
  }

  .related_services_item {
    position: relative;
    background-color: #095ca8;
    border-radius: 15px;
    padding: 3%;
    margin: 0 1% 40px;
    width: 100%;
  }

  .related_services_thumb {
    display: block;
    width: 100%;
    margin: 0;
  }

  .related_services_data {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .related_services_data dt {
    font-size: 2.4rem;
    color: #fff;
  }

  .related_services_data dd {
    font-size: 1.6rem;
    color: #fff;
    height: 140px;
    line-height: 1.4;
  }

  .related_services_link {
    position: absolute;
    bottom: 0;
    bottom: -1%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
  }

  .related_services_btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #40c3f1;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0.5vw 0 0 #044885;
  }

  .related_services_btn:active {
    transform: translateY(0.5vw);
    box-shadow: none;
  }

  .related_services_btn::after,
  .related_services_btn>span::after {
    content: none;
  }
}