/*
** priceup
******************************/
.section{
  padding: 20px 0 90px;
}
.lead {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  color: #f00;
  padding: 10px 0;
}

.lead span {
  position: relative;
}
.lead span::before {
  content: "";
  position: relative;
  display: inline-block;
  background: url(../../images/priceup/dotline.svg) no-repeat;
  width: 26px;
  height: 26px;
  background-size: contain;
  top: 10px;
  margin-right: 10px;
}

.lead span::before {
  content: "";
  position: relative;
  display: inline-block;
  background: url(../../images/priceup/dotline.svg) no-repeat;
  width: 26px;
  height: 26px;
  background-size: contain;
  top: 10px;
  margin-left: 10px;
}
  
.lead span::after {
  content: "";
  position: relative;
  display: inline-block;
  background: url(../../images/priceup/dotline.svg) no-repeat;
  width: 26px;
  height: 26px;
  background-size: contain;
  top: 10px;
  transform: scale(-1, 1);
  margin-right: 10px;
}
.mainvis {
  position: relative;
  text-align: center;
  height: 194px;
  background: linear-gradient(#ff8000 0%, #f00 100%);
}
.mainvis::after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 129px;
  background: linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.mainvis img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}

.priceup-box .time {
  text-align: right;
  font-size: 14px;
}

.priceup-box .copy {
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  color: #00bcd8;
  margin-top: 30px;
}
.priceup-list{
  position: relative;
}
.priceup-list a {
  position: relative;
  display: flex;
  margin-top: 40px;
  padding-bottom: 40px;
}

.priceup-list:first-of-type {
  margin-top: 80px;
}
.priceup-list:last-of-type {
  margin-bottom: 80px;
}
.priceup-list::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background: radial-gradient(60% 90% at top, #00000033 0%, #FFFFFF00 100%);
}
.imgbox {
  width: 300px;
}

.textbox {
  width: calc(100% - 300px);
  padding: 0 0 0 30px;
}
.textbox .product_name {
  position: relative;
  font-size: 18px;
  padding-bottom: 30px;
}
.textbox .product_name::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: radial-gradient(60% 90% at top, #00000033 0%, #FFFFFF00 100%);
  left: 0;
  bottom: 0;
}
.textbox .product_name .company {
  margin-bottom: 10px;
}
.textbox .product_name .name{
  font-size: 26px;
  font-weight: bold;
}
.price {
  text-align: center;
  padding: 30px 0 0;
}

.price .priceup-text {
  position: relative;
  font-weight: bold;
  font-size: 30px;
  color: #f00;
  z-index: 1;
}
.price .priceup-text span {
  position: relative;
}
.price .priceup-text span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(#ffe600 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.price .priceup-text em {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 64px;
  color: #f00;
}

@media (max-width: 768px) {
  .section {
    padding: 15px 0 90px;
  }
  .lead {
    font-size: 18px;
    padding: 15px 0 10px;
  }
  .mainvis {
    height: auto;
  }
  .mainvis img {
    width: 100%;
    height: auto;
  }
  .priceup-box .copy {
    font-size: 24px;
    margin-top: 25px;
  }
  .priceup-list {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .priceup-list:first-of-type {
    margin-top: 40px;
  }
  .priceup-list:last-of-type {
    margin-bottom: 40px;
  }
  .imgbox {
    width: 35%;
  }
  .textbox {
    width: calc(100% - 35%);
    padding: 0 0 0 10px;
  }
  .priceup-list a{
    margin-top: 0;
    padding-bottom:0;
  }
  .textbox .product_name {
    padding-bottom: 15px;
  }
  .textbox .product_name .company {
    font-size: 12px;
  }
  .textbox .product_name .name {
    font-size: 16px;
  }
  .price {
    padding: 15px 0 0;
  }

  .price .priceup-text {
    font-size: 20px;
  }
  .price .priceup-text::before {
    top: -10px;
    border-width: 10px 15px 0 15px;
  }
  .price .priceup-text em {
    font-size: 36px;
  }

  .priceup-box .time {
    font-size: 12px;
  }
}