/* ================================================================
   writing-task2/short-term-prep-trap — local.css
   ================================================================ */

/* ----------------------------------------------------------------
   悪循環ループ図
   ---------------------------------------------------------------- */
.sttp-loop {
  margin: 1.4rem 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.sttp-loop__step {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(4,63,109,.05);
  border-radius: 8px;
  padding: .8rem 1rem;
}
.sttp-loop__num {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--lb);
  color: var(--pw);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
}
.sttp-loop__text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--black);
  font-weight: 500;
}
.sttp-loop__arrow {
  text-align: center;
  color: var(--lb);
  font-size: .85rem;
  line-height: 1;
}
.sttp-loop__back {
  margin-top: .5rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: rgba(217,138,31,.09);
  border-radius: 8px;
  padding: .8rem 1rem;
  font-size: .85rem;
  line-height: 1.7;
  color: var(--black);
}
.sttp-loop__back i {
  color: #d98a1f;
  flex-shrink: 0;
}
