@charset "utf-8";
/* CSS Document */

.flowList {
  display: flex;
  flex-direction: column;
  gap: 74px;
  padding-top: 35px;
}
.flowList__item {
  position: relative;
}
.flowList__item + .flowList__item ::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 18px solid var(--color_gray01);
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
}
/* .flowList__item:first-child {
  margin-top: 35px;
} */
.flowList__box {
    border: 1px solid var(--color_green01);
    background-color: var(--color_green02);
  padding: 22px 10px 15px;
  position: relative;
  text-align: center;
}
.flowList__num {
  width: 50px;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
.flowList__text {
  font-weight: bold;
}

@media screen and (min-width: 768px),print {
  .flowList {
    flex-direction: row;
    gap: 50px;
  }
  .flowList__item {
    flex: 1;
  }
  .flowList__item + .flowList__item ::before {
    left: -40px;
    right: auto;
    rotate: -90deg;
    top: 30px;
  }
  .flowList__item:first-child {
    margin-top: 0;
  }
  .flowList__box {
    min-height: 80px;
    display: flex;
    justify-content: center;;
    align-items: center;
  }
  .flowList__note {
    margin-left: -1em;
    margin-right: -1em;
  }
}

.boxList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.boxList__item {
  border: 1px solid var(--color_green01);
  padding: 20px;
}

@media screen and (min-width: 768px),print {
  .boxList{
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
  }
  .boxList__item {
    flex: 1;
  }
}
