@charset "utf-8";
.page_title {
  background: url(../img/page_title.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 400px;
    padding: 1em 20px;
  }
}


.flow_block {
  padding: 28px 0 96px;

  @media screen and (max-width: 767px) {
    padding: 28px 0 72px;
  }
}
.flow_art {
  position: relative;
  background: rgba(185, 241, 255, 0.5);
  padding: 48px 56px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px 30px;
  &::before {
    content: '';
    position: absolute;
    background: url(../img/tri.svg)no-repeat center;
    background-size: contain;
    width: 106px;
    height: 39px;
    bottom: -50px;
    right: 0;
    left: 0;
    margin: auto;
  }
  &:last-child {
    margin-bottom: 0;
    &::before {display: none;}
  }
  hgroup {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
  }
  hgroup p {
    text-transform: capitalize;
    background: var(--orange);
    color: #fff;
    width: 76px;
    min-width: 76px;
    height: 76px;
    border-radius: 50%;
    font-family: var(--font-en);
    font-size: 2rem;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    span {
      display: block;
      font-size: 3.2rem;
      letter-spacing: 1.6px;
      margin-top: -20px;
    }
  }
  /* hgroup ~ p {
    margin-left: 108px;
  } */
  h2 {
    color: var(--main-color);
    line-height: 1.7;
    font-size: 3.6rem;
    letter-spacing: 1.8px;
  }
  figure {
    min-width: 350px;
  }
  @media screen and (max-width: 767px) {
    padding: 40px 5%;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: center;
    &::before {
      height: 29px;
      bottom: -35px;
    }
    hgroup {
      gap: 10px;
      margin-bottom: 24px;
      margin-bottom: 20px;
    }
    /* hgroup ~ p {
      margin-left: 0;
    } */
    h2 {
      font-size: 2.4rem;
      letter-spacing: 1.2px;
      line-height: 1.5;
    }
    figure {
      min-width: initial;
    }

    a.more_btn {
      margin-left: auto;
      margin-right: auto;
    }
  }
}