.page_body {
  padding: 80px 0;
}
@media all and (min-width: 751px) {
  .page_body {
    padding: 100px 0;
  }
}
.page_body .flow_list {
  counter-reset: number 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
}
@media all and (min-width: 751px) {
  .page_body .flow_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media all and (min-width: 751px) and (max-width: 1400px) {
  .page_body .flow_list {
    gap: 20px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .page_body .flow_list {
    gap: 10px;
  }
}
.page_body .flow_list .flow_item {
  position: relative;
  counter-increment: number 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f5ece5;
  border-radius: 20px 20px 0 0;
  padding: 20px;
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 30px 2.4% 2.4%;
  }
}
.page_body .flow_list .flow_item::before {
  position: absolute;
  content: counter(number, decimal-leading-zero);
  top: 0;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #8fccde;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item::before {
    left: 30px;
    font-size: 60px;
  }
}
@media all and (min-width: 751px) and (max-width: 1600px) {
  .page_body .flow_list .flow_item::before {
    font-size: 44px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .page_body .flow_list .flow_item::before {
    left: 20px;
    font-size: 34px;
  }
}
.page_body .flow_list .flow_item:not(:last-child)::after {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #f5ece5;
  aspect-ratio: 8/5;
  width: 24px;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item:not(:last-child)::after {
    top: 47%;
    left: 100%;
    -webkit-transform: rotate(-90deg) translate(0, -50%);
            transform: rotate(-90deg) translate(0, -50%);
    width: 8%;
  }
}
.page_body .flow_list .flow_item .step {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #7d5a46;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item .step {
    font-size: 40px;
  }
}
@media all and (min-width: 751px) and (max-width: 1600px) {
  .page_body .flow_list .flow_item .step {
    font-size: 34px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .page_body .flow_list .flow_item .step {
    font-size: 28px;
  }
}
.page_body .flow_list .flow_item .content {
  --margin_top: 44px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  background-color: #fff;
  margin-top: var(--margin_top);
  padding: 14px;
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item .content {
    --margin_top: 64px;
    padding: 20px 10%;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .page_body .flow_list .flow_item .content {
    --margin_top: 40px;
  }
}
.page_body .flow_list .flow_item .content::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/icon/arrow_bold.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(var(--margin_top) / 2 * -1);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 14px;
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item .content::before {
    width: 6.7%;
    min-width: 16px;
  }
}
.page_body .flow_list .flow_item .content .head {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 105px;
  text-align: center;
  background-color: #7d5a46;
  border-radius: 20px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  padding: 0.4em 1em;
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item .content .head {
    min-width: 8em;
    font-size: 17px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .page_body .flow_list .flow_item .content .head {
    font-size: 14px;
  }
}
.page_body .flow_list .flow_item .content .tx {
  text-align: justify;
  line-height: 1.85;
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item .content .tx {
    margin-top: 20px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .page_body .flow_list .flow_item .content .tx {
    margin-top: 10px;
  }
}
.page_body .flow_list .flow_item .content.interview::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/icon/medal.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 31/40;
  width: 31px;
  top: -8px;
  right: 8%;
}
@media all and (min-width: 751px) {
  .page_body .flow_list .flow_item .content.interview::after {
    width: min(35px, 10.3%);
  }
}