@charset "utf-8";
.wrap_list_floor{
  display:-webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 7.69%;
}
.list_floor{
  width: 46.15%;
}
.list_floor li{
  display:-webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  line-height: 1.2;
  gap: 8px;
}
.list_floor li + li{
  margin-top: 16px;
}
.list_floor li span.no{
  background: #000;
  border-radius: 50px;
  width: 26px;
  height: 26px;
  color: #fff;
  display:-webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  -webkit-flex-shrink:0;
  flex-shrink: 0;
  padding-top: 1px;
}
.list_floor li span.no.or{
  background-color: #ec642f;
}
.list_floor li span.no.bl{
  background-color: #003463;
}
.list_floor li span.ico{
  width: 26px;
  height: 26px;
  display:-webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-flex-shrink:0;
  flex-shrink: 0;
}
.list_floor li span.ico img{
  display: block;
  width: auto;
  height: 100%;
}
@media screen and (max-width :834px) {
  .wrap_list_floor{
    gap: 5%;
  }
  .list_floor{
    width: 47.5%;
  }
  .list_floor li + li{
    margin-top: 12px;
  }
  .list_floor li span.no{
    width: 22px;
    height: 22px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .list_floor li span.ico{
    width: 22px;
    height: 22px;
  }
}