<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rmn-list {
  --rmn-list-product-sold-color: #ffffff;
  --rmn-list-product-sold-background-color: rgba(0,0,0,0.3);
}
.rmn-list:not(.rmn-list-show-name2) .rmn-list-product-name2 {
  display: none;
}
.rmn-list-items {
  display: flex;
  gap: 2em calc(20% / 3);
  flex-wrap: wrap;
  width: 90%;
  margin: 2em auto;
  font-size: 14px;
  line-height: 1.25;
  justify-content: center;
}
.rmn-list-item {
  width: 20%;
}
.rmn-list-item img {
  display: block;
}
.rmn-list-product-name {
  margin-top: 0.35em;
  display: block;
}
.rmn-list-product-price {
  margin-top: 0.35em;
}
.rmn-list-product-img {
  position: relative;
}
.rmn-list-product-sold .rmn-list-product-img::before {
  content: 'SOLDOUT';
  color: var(--rmn-list-product-sold-color);
  background-color: var(--rmn-list-product-sold-background-color);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (hover: hover) {
  .rmn-list-item a img:hover,
  .is_pc .rmn-list-item a img:hover {
    opacity: unset;
  }
  #talk_body .rmn-list-item a:hover,
  .is_pc #talk_body .rmn-list-item a:hover,
  .is_sp #talk_body .rmn-list-item a.touch,
  .rmn-list-item a:hover {
    text-decoration: none;
    border-bottom: none;
  }
  #talk_body .rmn-list-item a,
  .is_pc #talk_body .rmn-list-item a {
    transition: opacity .15s ease;
  }
  #talk_body .rmn-list-item a:hover,
  .is_pc #talk_body .rmn-list-item a:hover {
    transition: opacity .15s ease;
    opacity: .7;
  }
}
@media (max-width: 640px) {
  .rmn-list-items {
    column-gap: 8%;
    width: 92%;
    justify-content: flex-start;
  }
  .rmn-list-items .rmn-list-item {
    width: 46%;
  }  
  .rmn-list-item-pad {
    display: none;
  }
}
</pre></body></html>