@charset "utf-8";

/******************** cast ********************/
ul.cast {
	margin: 0 auto 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
ul.cast li {
	width: 120px;
	height: 300px;
	border: 1px solid #d7b428;
	text-align: center;
	margin: 0 2px 5px;
}
ul.cast li img {
	width: 120px;
	height: auto;
	margin-bottom: 4px;
}
ul.cast .new {
	display: block;
	background: url(/wp-content/uploads/2025/04/new.png) no-repeat bottom right;
	text-indent: -1000px;
	overflow: hidden;
	width: 96px;
	height: 182px;
	position: relative;
	margin-top: -186px;
	margin-bottom: 4px;
	right:-24px;
	cursor: hand;
}
ul.cast .size {
	font-size: 12px;
	color: #bbb;
	line-height: 15px;
	font-weight: bold;
	display: block;
}
ul.cast .on, ul.cast .off {
	display: block;
	background: #fb7a94;
	line-height: 20px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.4em;
	position: relative;
	top: 3px;
}
ul.cast .off {
	background: #e2d68e;
}
ul.cast a {
	display: block;
	color: #000;
}
ul.cast .type{
	display:none;
}

ul.cast li .tag ul{
	display:flex;
	flex-wrap: wrap;
	margin-bottom:10px!important;
} 
ul.cast li .tag li{
	background:none!important;
	color:#000;
	width:50%;
	text-align:center;
	border:solid 1px #5ae1cd;
	margin-left:0px!important;
	margin-right:0px!important;
	margin-bottom:0px!important;
	font-size:8px;
    height:20px!important;
}

/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;

/* グラデーション */
    background: -moz-linear-gradient(top, #f5f5f5, #fff);　/* Firefox用 */  
  
