/* price.html */
.price-notice {
  margin: 30px 0;
  padding: 20px;
  box-sizing: border-box;
  color: #f00;
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 480px) {
  .price-notice {
    font-size: 16px;
    text-align: left;
  }
}