@charset "UTF-8";
/* CSS Document */

/* オンマウス時 画像 
a:hover img{
    opacity:0.8;
    -moz-opacity:0.8;
    filter:alpha(opacity = 80);
}*/

.maskBox {
	width:			200px;
	height:			150px;
	overflow:		hidden;
	margin:			0px;
	position:		relative;	/* 相対位置指定 */
}
.maskBox .caption {
	font-size:		115%;
	text-align: 	center;
	padding-top:	65px;
	color:			#fff;
}
.maskBox .mask {
	width:			100%;
	height:			100%;
	position:		absolute;	/* 絶対位置指定 */
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}
.maskBox:hover .mask {
	opacity:		1;	/* マスクを表示する */
}

/* clearfix */
.clear {
	clear:both;
}

.clearfix {
  display: inline-block;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

 /* IE6 */
* html .clearfix { zoom: 1;}
 /* IE7 */
*:first-child+html .clearfix { zoom: 1;}


/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}

div#contents {
	width:960px;
	background-color:#FAF5F0;
	border-top:2px solid #640000;
	border-bottom:2px solid #640000;
}
/*--ギャラリーボックス--*/
.gallerybox {
	overflow:hidden;
	clear:both;
    margin:15px;
	width:930px;
}
.gallerybox:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    overflow: hidden;
}
.smallbox {
	margin: 10px 6px 0px 7px;
	width: 215px;
	height: 230px;
	_height:230px;/*--for_ie6--*/
	float:left;
	text-align:center;
}

.list-item > ul > li > a .title {
	color: #333;
	font-size: 12px;
	margin: 10px 0 0;
}
.list-item > ul > li > .title {
	font-size: 12px;
}
.list-item > ul > li > a .icon.item-new {
	font-size: 11px;
	font-weight: 600;
}
.list-tag {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
}
.list-tag > li {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
.list-tag .icon {
	display: block;
	font-size: 9px;
	color: #333;
	line-height: 1;
	padding: 3px;
	border: 1px solid #CBCBCB;
	margin: 5px 3px 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
.list-tag .icon > a {
	color: #7F0019;
	display: block;
	text-decoration: none;
}
.list-tag .icon.item-new {
	border: 1px solid #7f0019;
	background-color: #7f0019;
	color: #fff;
}

