/* CSS Document */

#list{
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 0;
	}
	#list dl{
		position: relative;
		}
	#list dt{
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 0.8em;
		background: rgba(255,255,255,0.5);
		text-align: center;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		line-height: 1em;
		z-index: 1;
		}
	#list a{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 1px solid #e6e6e6;
		color: rgba(0,0,0,0);
		z-index: 2;
		}
		#list a:hover,
		#list a:active{
			border-color: #425377;
			}
		#list .thumbBox{
			padding-top: 66.66%;
			background-size: cover;
			}
		#list .thumbBox img{
			opacity: 0;
			}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
#list{
	display: block;
	}
	#list dl{
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-direction: row-reverse;
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		}
	#list dl+dl{
		margin-top: 1em;
		}
	#list dt{
		position: static;
		width: calc(100% - 6em);
		padding: 0 1em;
		overflow: visible;
		white-space: normal;
		text-overflow: clip;
		line-height: 1.4em;
		text-align: left;
		}
	#list dd{
		width: 6em;
		}
		#list .thumbBox{
			padding-top: 100%;
			}
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
#list{}
	#list dl{
		width: calc(33.33% - 0.66em);
		}
	#list dl:nth-child(n+4){
		margin-top: 1em;
		}
}


/* for TabletPC */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
#list{}
	#list dl{
		width: calc(33.33% - 1em);
		}
	#list dl:nth-child(n+4){
		margin-top: 1.5em;
		}
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#list{}
	#list dl{
		width: calc(33.33% - 1.33em);
		}
	#list dl:nth-child(n+4){
		margin-top: 2em;
		}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1200px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* ie */
@media all and (-ms-high-contrast: none){}


