@charset "utf-8";
/* CSS Document */

.sale {/*親div*/
  position: relative;/*相対配置*/
  }

.sale p {
	margin: 0 auto;
  position: absolute;/*絶対配置*/
	background:red;
	color: yellow;
	font-size: 14px;
	padding: 0px 10px 2px 10px;
  top: 0;
  left: 0;
  }

.sale img {
  width: 100%;
  }