/* CSS Document */

#subject{}
	#subject .wrap{
		display: flex;
		flex-direction: column;
		align-items: center;
		}

#searchMenu{}
	#searchMenu small{
		font-size: 0.7em;
		}
	#searchMenu .subTitle{}
		#searchMenu .subTitle small{
			margin-left: 0.5em;
			}

#searchCategory{}
	#searchCategory ul:nth-of-type(odd){
		margin-bottom: 0.5em;
		}
	#searchCategory ul:nth-of-type(even){
		margin-bottom: 1.5em;
		}

#searchArea{}
	#searchArea li{}
	#searchArea div > ul > li:nth-of-type(n+5){
		margin-top: 0;
		}

#searchDetail{}
	#searchDetail small{
		display: block;
		}

#searchResult{}
	#searchResult small{
		margin-left: 0.5em;
		font-size: 0.7em;
		}

#photos{
	padding-top: 0;
	}
	#photos p+p{
		margin-top: 1em;
		}

#photoList{}
	#photoList dl{
		display: flex;
		flex-direction: column;
		}
	#photoList dt,
	#photoList dd{
		line-height: 1.4em;
		}
	#photoList dt{
		order: 2;
		}
	#photoList dt+dd{
		font-size: 0.87em;
		order: 3;
		}
	#photoList dd+dd{
		margin-bottom: 1em;
		order: 1;
		}
	#photoList a{
		display: block;
		}
		#photoList a:hover,
		#photoList a:active{
			opacity: 0.8;
			}
	#photoList .wrap{
		display: flex;
		flex-wrap: wrap;
		}
	#photoList .thumb{
		background-size: contain;
		object-fit: contain;
		}

#links{
	padding-top: 0;
	}
	#links ul{
		margin-top: 1em;
		list-style: none;
		border-top: 1px dotted #ccc;
		}
	#links li{
		padding: 1em 0;
		}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
#searchSelect{}
	#searchSelect small{
		padding-left: 0.5em;
		}
#photoList{}
	#photoList dl{
		width: calc(50% - 0.5em);
		margin-bottom: 2em;
		}
		#photoList dl:nth-child(even){
			margin-left: 1em;
			}
	#photoList dt+dd{
		font-size: 0.8em;
		}
#links{}
	#links li{
		border-bottom: 1px dotted #ccc;
		}
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
}


/* for TabletPC */
@media (min-width: 768px) {
/*768px以上*/
#searchSelect{}
	#searchSelect small{
		display: block;
		}
#photoList{}
	#photoList dt+dd{
		font-size: 0.87em;
		}
#links{}
	#links ul{
		display: flex;
		flex-wrap: wrap;
		}
	#links li{
		position: relative;
		}
		#links li:before{
			position: absolute;
			left: 0;
			bottom: 0;
			border-bottom: 1px dotted #ccc;
			}
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
#photoList{}
	#photoList dl{
		width: calc(33.33% - 1em);
		margin-bottom: 3em;
		}
		#photoList dl:nth-child(3n+2){
			margin-left: 1.5em;
			margin-right: 1.5em;
			}
#links{}
	#links li{
		width: 50%;
		}
		#links li:nth-child(odd):before{
			content: "";
			width: 200%;
			}
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#photoList{}
	#photoList dl{
		width: calc(25% - 1.5em);
		margin-left: 2em;
		margin-bottom: 4em;
		}
		#photoList dl:nth-child(4n+1){
			margin-left: 0;
			}
#links{}
	#links li{
		width: 33.33%;
		}
		#links li:nth-child(3n+1):before{
			content: "";
			width: 300%;
			}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1200px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* ie */
@media all and (-ms-high-contrast: none) {}


