@charset "UTF-8";
.store_link {
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  min-height: 220px;
  margin: 1.25rem 0;
  padding: 2rem 2rem 2rem 14rem;
  border: 1px solid #D8E4E4;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .store_link {
    padding: 1.5rem 1.5rem 1.5rem 11.5rem;
    width: auto;
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .store_link {
    padding-left: 9rem;
  }
}

@media (max-width: 480px) {
  .store_link {
    padding: 1.5rem;
  }
}

.store_link_meta {
  width: 100%;
}

@media (max-width: 480px) {
  .store_link_meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
  }
}

.store_link_meta_image {
  width: 100%;
  max-width: 160px;
  position: absolute;
  top: 2rem;
  left: 2rem;
}

@media (max-width: 960px) {
  .store_link_meta_image {
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .store_link_meta_image {
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .store_link_meta_image {
    position: static;
    margin-right: 1rem;
    max-width: 75px;
  }
}

.store_link_meta_text {
  width: 100%;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .store_link_meta_text {
    margin-bottom: 0;
  }
}

.store_link_meta_name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.07px;
}

.store_link_meta_price {
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
}

.store_link_meta_price .original {
  font-weight: 400;
  color: #92A2A8;
  text-decoration: line-through;
  margin-right: 1rem;
  position: relative;
}

.store_link_meta_price .original > * {
  color: inherit;
  font: inherit;
}

.store_link_meta_price .original::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px;
  border-color: transparent transparent transparent #92A2A8;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translate(0, -50%);
}

.store_link_meta_price .discounted {
  color: #F45070;
  font-weight: 700;
}

.store_link_meta_price .discounted > * {
  color: inherit;
  font: inherit;
}

.store_link_meta_price .price::before {
  content: "\0a5";
}

@media (max-width: 480px) {
  .store_link .btn {
    max-width: 100%;
  }
}

/* ボタン */
.btn {
  color: #2A2A2A;
  font-weight: 700;
  padding: 1.25rem 0.5rem;
  max-width: 280px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  background-color: #FFFFFF;
  cursor: pointer;
}

.btn.btn_style_buy {
  max-width: 350px;
  background: linear-gradient(90deg, #00B2A9 0%, #008EBB 100%);
  color: #FFFFFF;
}

.btn.btn_style_buy::before {
  content: '';
  display: inline-block;
  background-image: url(../../../common/image/ic_cart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 16px;
  margin-right: 0.5rem;
  line-height: 1;
  vertical-align: bottom;
}

.btn.btn_style_buy::after {
  display: none;
}

.btn.btn_style_buy:hover {
  opacity: 0.8;
}
