/* hesitation-practice-beginner : 4作業の同時処理を示す図 */
.hpb-parallel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 6px;
}

.hpb-parallel__item {
  flex: 1 1 130px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 1px solid var(--lb5);
  border-radius: 12px;
  background: var(--pw);
  text-align: center;
}

.hpb-parallel__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lb5);
  color: var(--blue2);
  font-size: 16px;
}

.hpb-parallel__label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}

.hpb-parallel__op {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray6);
}

.hpb-parallel__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray3);
  margin: 6px 0 22px;
}

@media (max-width: 600px) {
  .hpb-parallel {
    flex-direction: column;
  }
  .hpb-parallel__op {
    transform: rotate(90deg);
  }
}
