/** Shopify CDN: Minification failed

Line 186:3 Expected "}" to go with "{"

**/
.c_card-flows__sentence {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 28px;
  margin-top: 31px;
  text-align: center;
  color: #1c1c1c;

  @media (max-width: 699px) {
    margin-top: 29px;
  }
}

.c_card-flows__wrap {
  margin-top: 50px;
  display: grid;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));

  @media (max-width: 699px) {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
    max-width: 400px;
  }
}

.c_card-flow {
  background: #fff;
  padding-block: 40px;
  border-radius: 20px;
  padding-inline: 30px;
  position: relative;

  &:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 57.75px;
    display: block;
    background-image: url("./icon_flow-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    translate: 0 -50%;
    right: -18px;

    @media (max-width: 699px) {
      rotate: 90deg;
      width: 21.58px;
      height: 43.16px;
      top: initial;
      bottom: -34px;
      left: 50%;
      translate: -50%;
    }

    @media (max-width: 699px) {
      padding-inline: 20px;
      padding-block: 30px;
    }
  }

  .c_card-flow__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;

    @media (max-width: 699px) {
      flex-direction: row;
      max-width: 320px;
      width: 100%;
      margin-inline: auto;
      text-align: left;
      gap: 16px;
      position: relative;
    }
  }

  .c_card-flow__text-block {
    display: contents;

    @media (max-width: 699px) {
      display: block;
    }
  }

  .c_card-flow__icon {
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    grid-row: 1 / -1;

    @media (max-width: 699px) {
      height: auto;
      position: absolute;
      top: 0;
      right: 0;
    }

    img {
      object-fit: cover;
      object-position: center;
    }
  }

  .c_card-flow__small-title {
    order: -3;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    color: #21324f;
    opacity: 0.7;

    @media (max-width: 699px) {
      order: initial;
      text-align: left;
    }
  }

  .c_card-flow__title {
    font-family: "Noto Sans JP", sans-serifs;
    font-weight: normal;
    font-size: 26px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: center;
    color: #21324f;
    display: flex;
    align-self: center;
    justify-content: center;
    height: 100%;
    order: -2;
    margin-top: 10px;

    span {
      margin-block: auto;
      display: block;
      height: fit-content;
    }

    @media (max-width: 699px) {
      display: block;
      font-size: 22px;
      letter-spacing: 0.05em;
      text-align: left;
      margin-top: 4px;
      order: initial;
    }
  }

  .c_card-flow__sentence {
    font-size: 14px;
    line-height: 20px;
    grid-column: 2;
    text-align: left;

    .--small {
      font-size: 12px;
    }

    @media (max-width: 699px) {
      order: initial;
      font-size: 14px;
      letter-spacing: 0.03em;
      line-height: 24px;
      font-weight: 500;
      margin-top: 17px;
      display: flex;
      flex-direction: column;
    }
  }