@media screen and (min-width:768px){
  .lp-link {
  }
  .lp-link a {
    display: block;
    width: 215px;
    height: 100px;
    margin-top: -35px;
  }
  .lp-link a span {
    background-color: #000;
    padding: 2px 5px;
    box-sizing: border-box;
    display: block;
    width: 100%;
    position: relative;
  }
  .lp-link a span img {
    position: relative;
    z-index: 1;
  }
  .lp-link a span:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #c20c25;
    left: 0;
    top: 0;
    z-index: 0;
    width: 0;
    transition: width 0.3s ease;
  }
  .lp-link a:hover span:before {
    width: 100%;
  }
  .l-header .l-header__aside .header__aside .item:nth-child(3) {
    margin-left: 20px;
  }
}

@media screen and (max-width:767px){
  .lp-link {
    position: fixed;
    right: -205px;
    z-index: 10;
    transition: right 0.5s ease;
    bottom: 4vw;
  }
  .lp-link.fix {
    right: 0;
  }
  .lp-link a img {
    width: 200px;
  }
  .lp-link.delete {
    right: -205px;
  }
  .lp-link a.lp-link_close {
    width: 22px;
    height: 22px;
    display: block;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: -9px;
    border: 1px solid #000;
  }
  .lp-link a.lp-link_close:before, .lp-link a.lp-link_close:after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    transform: rotate(45deg);
    margin-top: 9px;
    margin-left: 4px;
  }
  .lp-link a.lp-link_close:after {
    transform: rotate(-45deg);
    margin-top: -2px;
  }
}