@charset "utf-8";
/* 障がい学生支援室　202507 */

  .step_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
  }

.step_wrap li {
  display: flex;
  position: relative;
}

.step_wrap li:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 3px #F50000;
  border-right: solid 3px #F50000;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 108%;
  left: 48%;
  margin-top: 0;
}

.step_wrap li:first-child:before {
  top: 112%;
}

.step_wrap li:last-child:before {
  content: none;
}

.step_wrap .ic {
  background: #D50000;
  color: #fff;
  font-family: HelveticaNowDisplay-Bd,sans-serif;
  min-width: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.step_wrap .ic span {
  display: block;
  line-height: 1;
}

.step_wrap .ic .en {
  font-size: 11px;
  letter-spacing: 1px;
}

.step_wrap .ic .num {
  font-size: 25px;
}

@media screen and (max-width:736px) {
  .step_wrap li:first-child:before {
    top: 110%;
  }

  .step_wrap .ic .en {
    font-size: 10px;
  }

  .step_wrap .ic .num {
    font-size: 22px;
  }

  .step_wrap .ic {
    min-width: 45px;
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width:375px) {
  #contents .step_wrap h3 {
    font-size: 112.5%;
  }

  .step_wrap li:before {
    top: 105%;
  }
}

