/* ===== ご入会の流れ ===== */
.flow-section {
  padding: 40px 40px;
  background-image: url("../img/bg01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flow-title {
  text-align: center;
}

.flow-title__line {
  width: 100%;
  display: block;
}

.flow-title__text {
  margin: 12px 0;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 600;
  color: #7E0020;
}

/* ===== STEP共通 ===== */
.flow-step {
  margin-top: 40px;
}

.flow-step-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  color: #2C0B14;
}

/* STEP */
.step {
  font-size: 18px;
  font-weight: 600;
  justify-self: start;
}

.step-num {
  font-size: 32px;
  margin-left: 2px;
}

/* 中央文字 */
.step-main {
  font-size: 24px;
  font-weight: 600;
  justify-self: center;
}

/* 英字 */
.step-en {
  font-size: 16px;
  justify-self: end;
}

/* 横線 */
.flow-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2C0B14;
  margin-bottom: 24px;
}

.flow-image {
  width: 50%;
  display: block;
  margin: 40px auto 24px;
  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.2));
}

/* ===== カード ===== */
.flow-card {
  width: 100%;
  padding: 2px 43px;
  background: linear-gradient(to bottom, #E5D4C2, #FFFFFF);
  border-radius: 4px;
  margin-top: 36px;
}

.flow-card-text {
  font-size: clamp(16px, 4vw, 24px);
  line-height: 1.8;
  color: #2C0B14;
  text-align: center;
}

.em-red {
  color: #E6003C;
  font-weight: 700;
}

.flow-arrow {
  margin: 32px 0;
  text-align: center;
}

.flow-arrow img {
  width: 40px;
  height: auto;
}

@media(min-width: 768px) {

  .flow-title__text {
    font-size: 21px;
  }

  .step {
    font-size: 16px;
  }

  .step-num {
    font-size: 25px
  }

  .step-main {
    font-size: 24px;
  }

  .flow-card-text {
    font-size: 16px;
  }
}