#guide{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.guide{
  width:100%;
  max-width:480px;
  background: #FFF;
  padding:0 40px 20px;
  margin-bottom:20px;
  border-radius: 10px;
  outline: 1px solid var(--default-color);
  outline-offset: -5px;
  border:2px solid var(--default-color);
  position: relative;
}

.step-circle {
  position:absolute;
  top:-15px;
  left:-15px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--default-color);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 8px;
}

.step-circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #B63350;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.arrow {
  text-align: center;
  font-size: 30px;
/*  color: #B63350;*/
  color:var(--default-color);
  margin-bottom: 30px;
  transform: scale(2, 1);
}

.guide h3{
  text-align: center;
}


.note{
  text-align: center;
}

.note a{
  color:#00F;
}