@charset "UTF-8";

.ktwebstore_attention{
  display: block;
  width: 80%;
  text-align: left;
  font-size: 1rem;
  padding: 0.8em;
  margin: 5px auto 2em;
  border: 1px #d7bb82 solid;
}

.ktwebstore_attention img{
  display: inline-block;
  width: 15%;
  height: 3em;
  width: 3em;
  margin: 0 5%;
  vertical-align: middle;
}

.ktwebstore_attention p{
  display: inline-block;
  width: 80%;
  vertical-align: middle;
  line-height: 1.5em;
  line-break: strict
}


@media screen and (max-width: 767px) {
  .ktwebstore_attention{
    font-size: 0.7rem;
  }

  .ktwebstore_attention p{
    width: 75%;
  }

}

.ktws_products {
  margin: 0 20px;
}

.ktws_products ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ktws_products ul li {
  flex: 0 0 calc(25% - 7.5px);
  box-sizing: border-box;
  text-align: center; /* 中央揃え */
}

.ktws_products ul li img {
  width: 100%;
  height: auto;
  display: block;
}

.product_info {
  margin-top: 8px;
  margin-bottom:10px;
  text-align: left;
}

.product_name {
  font-weight: bold;
  margin: 0;
  letter-spacing: 0;
  color: #ffb9d3;
  line-height: 1.5;
}

.product_price {
  color: rgb(255, 255, 255); 
  margin: 2px 0 0 0;
  font-size: 1.2em;
}
.product_note {
  font-size: 0.85em;
  color: #d2d2d2;
  margin: 40px 0 10px 10px;
  text-align: left;
}
.product_img_wrap {
  position: relative; /* バッジを重ねるため */
}

.product_img_wrap img {
  width: 100%;
  display: block;
  height: auto;
}

.badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #4285f4;  /* 赤色など目立つ色 */
  color: #fff;
  font-size: 0.75em;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 4px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .ktws_products ul li {
    flex: 0 0 calc(50% - 5px);
  }

  .product_note {
  margin: 20px 0 10px 10px;
}
}