/*
	初めての方へ
*/

/*----------------------------------------
	お仕事の流れ
----------------------------------------*/
.flow {
  text-align: center;
}

.flow p {
  margin: 20px 10%;
}

.flow_subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  color: #095ca8;
  text-align: left;
}

.subtitle_emphasis {
  color: #fff;
}

.flow img {
  width: 80%;
}

.flow_detail {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px){
  .flow_subtitle {
    font-size: 2.4rem;
  }

  .flow_detail {
    font-size: 1.6rem;
  }
}

/*----------------------------------------
	システムでできること
----------------------------------------*/
.system_list {
  display: flex;
  flex-direction: column;
  margin-top: -20px;
}

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

.system_thumb {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #095ca8;
}

.system_thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  width: 60px;
}

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

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

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

.system_link {
  display: inline-block;
  text-align: right;
  width: 100%;
}

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

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

.system_link a>span::after {
  right: 1.6rem;
}


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

  .system_item {
    position: relative;
    background-color: transparent;
    border-radius: 15px;
    padding: 3%;
    margin: 0 1%;
    width: 40%;
  }

  .system_thumb {
    display: block;
    margin: 0;
    width: 220px;
    height: 220px;
  }

  .system_thumb img {
    width: 60%;
  }

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

  .system_data dt {
    font-size: 1.6rem;
    text-align: center;
  }

  .system_data dd {
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
  }

  .system_link {
    position: absolute;
    bottom: 0;
    bottom: 6%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
  }
}

@media screen and (min-width: 1000px) {
  .system_item {
    width: 30%;
  }
}

/*----------------------------------------
	よくある質問
----------------------------------------*/
.guide_category {
  margin-left: 20px;
}