/* ================================
   FLOW
================================ */

.flow {
  padding: 8rem 0 10rem;
}

.flow__inner {
  max-width: 124rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.flow__intro {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0 0 3rem;
}

/* ================================
   STEPS
================================ */

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 20px */
}

/* CARD */
.flow-step {
  background: #f6f6f6;
  padding: 4rem; /* 40px */
}

/* STEP LABEL */
.flow-step__en {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: tabular-nums;
  color: #113A95;
  margin: 0 0 1.6rem;
}

/* TITLE ROW */
.flow-step__title-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

/* JAP TITLE */
.flow-step__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #021237;
  margin: 0;
}

/* VIOLET TAG */
.flow-step__tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.6rem;
  background-color: #4F2374;
  color: #fff;
  border-radius: 0.2rem;
  white-space: nowrap;
}

/* TEXT */
.flow-step__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0 0 0.8rem;
}

.flow-step__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .flow-step__title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .flow {
    padding: 0rem 0 5rem;
  }
}