.lp-lead {
  width: 100%;
  height: 312px;
  background-image: url(/j3a/images/campaign/bestprice/kv_bg.png);
  background-repeat: no-repeat;
}
.lp-lead__white {
  width: 840px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  text-align: center;
  /* border: 2px solid #dd2c08; */
  margin-bottom: 30px;
}
.lp-lead__ttl {
  color:#dd2c08;
  font-weight: bold;
  font-size: 18px;
}
.lp-lead__text {
  line-height: 1.5;
  font-size: 17px;
}
.lp-lead__white__icon {
  display: inline-block;
  margin-right: 5px;
}
.lp-lead__nav {
  display: flex;
  align-items: center;
  width: 900px;
  margin: 0 auto;
  justify-content: center;
  gap: 15px;

}
.lp-lead__item {
  width: 280px;
  background-color: rgba(255, 255, 255, 1);
  color: #dd2c08;
  font-weight: bold;
  padding: 15px;
  border: 2px solid #dd2c08;
  text-align: center;
  font-size: 17px;
  transition: .2s;
  position: relative;
}
.lp-lead__item::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 3px #dd2c08;
  border-right: solid 3px #dd2c08;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
  transition: .2s;
}
.lp-lead__item:hover {
  text-decoration: none!important;
  background-color: #dd2c08;
  color: #fff;
}
.lp-lead__item:hover::after {
  text-decoration: none!important;
  border-bottom: solid 3px #fff;
  border-right: solid 3px #fff;
}
/* ttl */
.bestprice-ttl {
  margin-bottom: 30px;
}
.bestprice-ttl__h2 {
  text-align: center;
  margin-bottom: 20px;
}
.bestprice-ttl__p {
  font-size: 17px;
  text-align: center;
}
/* 商品部分 */
.bestprice-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.bestprice-item {
  width: 435px;
  padding: 37.5px;
  box-shadow: 0px 0px 5px 3px rgba(205, 205, 205, 0.5);
  position: relative;
  color: #333;
  text-decoration: none!important;
}
.bestprice-item:hover {
  text-decoration: none!important;
      box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.3);
  background-color: #f3f3f3;
}
.bestprice-item__img {
  margin-bottom: 10px;
}
.bestprice-item__icon {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}
.bestprice-item__lead {
  margin-bottom: 10px;
  display: block;
  height: 45px;
}
.bestprice-item__name {
  margin-bottom: 10px;
  font-size: 20px;
}
.bestprice-item__price {
  display: flex;
  align-items: normal;
  gap: 10px;
}
.bestprice-item__price__num {
  color: #dd2c08;
  font-weight: bold;
  font-size: 25px;
}
.bestprice-item__price__num span {
  font-size: 38px;
}
.bestprice-item__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, rgb(143, 3, 0) 0%, rgb(217, 2, 27) 32%, rgb(255, 66, 0) 100%);
  transition: .2s;
}
.bestprice-item__btn::after {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-bottom: solid 4px #fff;
  border-right: solid 4px #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: calc(50% - 6px);
}
.bestprice-item:hover .bestprice-item__btn {
  background: linear-gradient(45deg, rgb(143, 3, 0) 0%, rgb(143, 3, 0) 32%, rgb(143, 3, 0) 100%);
}
/* btn */
.bestprice-action {
  text-align: center;
}
.bestprice-action__btn {
  width: 320px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  background-color: #dd2c08;
  display: inline-block;
  font-weight: bold;
  font-size: 15px;
  position: relative;
  border: 2px solid #dd2c08;
  transition: .2s;
}
.bestprice-action__btn::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: 15px;
  transition: .2s;
}
.bestprice-action__btn:hover{
  text-decoration: none!important;
  background-color: #fff;
  color: #dd2c08;
}
.bestprice-action__btn:hover::after{
  border-bottom: solid 3px #dd2c08;
  border-right: solid 3px #dd2c08;
}