@charset "UTF-8";
/* CSS Document */

.new_kado {
	position: relative;
	display: inline-block;
	overflow: hidden; /* 不要部分を消す */
}
.new_kado:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100px;
	height: 100px;
	background: red;
	content: "NEW";	/* 表示するテキスト */
	font-size: 14px;
	text-align: center;
	color: #fff;
	font-family: Arial;
	font-weight: bold;
	left: -50px;
	top: -50px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	padding: 0px;
	line-height: 180px;
	letter-spacing: 0.3em;
}


.hot_kado {
	position: relative;
	display: inline-block;
	overflow: hidden; /* 不要部分を消す */
}
.hot_kado:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100px;
	height: 100px;
	background: orange;
	content: "HOT";	/* 表示するテキスト */
	font-size: 14px;
	text-align: center;
	color: #fff;
	font-family: Arial;
	font-weight: bold;
	left: -50px;
	top: -50px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	padding: 0px;
	line-height: 180px;
	letter-spacing: 0.3em;
}

