@charset "UTF-8";
@media (max-width: 768px){
  .item-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 40px 0;
  }
  .add-item {
    position: relative;
    width: 49.5%;
    margin-top: -2%;
  }
  .item-img {
    position: relative;
    width: 48.5vw;
    height: 60.5vw;
    padding-left: 0px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #fff;
  }
  .item-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .item-name {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin: 1% 0 2% 0;
  }

  .sale_fixed_container {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 3% 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
  }
  .sale_fixed_container a {
    text-decoration: none;
    color: #fff;
  }
  .sale_btn {
    width: 85%;
    background-color: #ef2664;
    color: #fff;
    font-size: 1.0rem;
    font-weight: bold;
    border-bottom: 5px solid #5f5f5f;
    border-radius: 10px;
    padding-top: 3.5%;
    padding-bottom: 3.5%;
  }
  .sale_btn_illust {
    position: absolute;
    bottom: 20%;
    left: 9%;
  }

}