@charset "UTF-8";
.shibu ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex;
  flex-wrap: wrap;
}
.shibu ul li {
  width: 48%;
  margin: 10px 1%;
}
.shibu ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 15px 5%;
  background-color: #ffe9ed;
  border: solid 2px #ffbbc6;
  border-radius: 5px;
  position: relative;
}
.shibu ul li a:hover {
  opacity: 1;
  color: #fff;
  background-color: #ffbbc6;
}
.shibu ul li i {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(-5%, -50%);
}
@media screen and (min-width:700px) and (max-width:1024px) {}
@media screen and (max-width:700px) {
  .shibu ul li {
    width: 48%;
    margin: 5px 1%;
  }
  .shibu ul li i {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translate(-10%, -50%);
  }
}