.storage-place-list .storage-place-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  text-decoration: none;
}
.storage-place-list .storage-place-item.storage-place-item--minikura {
  background-color: #F5F5F5;
  width: 97vw;
  margin-left: -10px;
  padding-right: 10px;
}
.storage-place-list .storage-place-item.storage-place-item--minikura .storage-place-name-wrap {
  padding-left: 54px;
  border: none;
}
.storage-place-list .storage-place-item.storage-place-item--minikura .storage-place-img {
  width: 90px;
  padding-left: 10px;
}
.storage-place-list .storage-place-item .storage-place-img-wrap {
  padding: 6px 0;
}
.storage-place-list .storage-place-item .storage-place-img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.storage-place-list .storage-place-item .storage-place-name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 5px;
  padding-left: 15px;
  padding-right: 9px;
  border-bottom: solid 1px #5D6575;
}
.storage-place-list .storage-place-item .storage-place-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5D6575;
  font-size: 16px;
  line-height: 1.5;
}
.storage-place-list .storage-place-item .storage-place-quantity {
  font-size: 12px;
}
.storage-place-list .storage-place-item .right-arrow {
  position: relative;
  width: 7px;
  height: 7px;
  margin-left: 5px;
}
.storage-place-list .storage-place-item .right-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 7px; /* arrow size */
  height: 7px; /* arrow size */
  border-top: 2px solid #747B87; /* thickness, color */
  border-right: 2px solid #747B87;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 900px) {
  .storage-place-list .storage-place-item.storage-place-item--minikura {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
  }
}