/* CSS Document */

#main{}
	#main article{
		background: #fff;
		border-radius: 12px;
		box-shadow: 2px 3px 3px rgba(0,0,0,0.1);
		overflow: hidden;
		}

#subject{
	background: #fff;
	}

#writerList{
	padding: 0;
	}
	#writerList header{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		padding: 1.5em;
		border-bottom: 2px solid #1696ac;
		}
	#writerList h2{
		font-size: 1.6em;
		font-weight: bold;
		}
	#writerList h2+div{
		margin-left: auto;
		}
		#writerList h2+div span{
			margin-right: 0.2em;
			font-size: 1.7em;
			}
	#writerList section+section{
		border-top: 1px solid #b2b6bc;
		}
	#writerList h3{
		font-size: 1.5em;
		font-weight: bold;
		line-height: 1.5em;
		}
	#writerList h3+div{
		margin: 1em 0;
		color: #666;
		line-height: 1.7em;
		}
		#writerList h3+div p{
			line-height: inherit;
			}
	#writerList li+li{
		margin-top: 0.5em;
		}
	#writerList li{}
		#writerList li a{
			position: relative;
			display: inline-block;
			padding-left: 1.5em;
			color: #0098bc;
			fill: currentColor;
			line-height: 1.5em;
			}
		#writerList li i{
			position: absolute;
			top: 0.2em;
			left: 0;
			}
	#writerList .thumb{
		padding-top: 100%;
		}

#search{
	position: relative;
	}
	#search input{
		border-color: #b2b6bc;
		border-radius: 6px;
		padding: 0.6em 1em;
		padding-right: 3em;
		}
	#search button{
		position: absolute;
		top: 0;
		right: 0;
		width: 3em;
		height: 100%;
		background: transparent;
		border-radius: 6px;
		fill: #1696ac;
		}
		#search button svg{
			position: absolute;
			top: 30%;
			right: 30%;
			width: 40%;
			height: 40%;
			}

#ranking{
	counter-reset: count;
	}
	#ranking dl{}
		#ranking dl:before{
			counter-increment: count;
			content: counter(count);
			position: absolute;
			top: 0;
			left: 0;
			display: flex;
			align-items: center;
			justify-content: center;
			width: 1.6em;
			height: 1.6em;
			background: #000;
			border-radius: 8px;
			color: #fff;
			font-weight: bold;
			pointer-events: none;
			z-index: 1;
			}
		#ranking dl:nth-of-type(1):before{
			background: #a5884e;
			}
		#ranking dl:nth-of-type(2):before{
			background: #8e8f8f;
			}
		#ranking dl:nth-of-type(3):before{
			background: #a1504d;
			}
		#ranking dl:nth-of-type(n+4):before{
			content: none;
			}




/* for all */
@media (max-width: 1199.98px) {
/*1199px以下*/
}
@media (max-width: 991.98px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767.98px) {
/*767以下px*/
}
@media (max-width: 767.98px) and (orientation:portrait) {
/*767px以下 縦向き*/
#writerList{}
	#writerList header{
		padding: 1em;
		}
	#writerList section{
		display: flex;
		flex-direction: column;
		padding: 1em;
		}
	#writerList h3{
		order: -1;
		}
	#writerList h3+div{
		margin: 1em 0;
		}
	#writerList figure{
		margin-top: 1em;
		order: -1;
		}
}
@media (max-width: 767.98px) and (orientation:landscape) {
/*767px以下 横向き*/
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) {
/*767px以下 横向き, 768px以上,*/
#writerList{}
	#writerList header{
		padding: 2em 1.5em;
		}
	#writerList section{
		display: -ms-grid;
		display: grid;
		padding: 2em;
		}
	#writerList h3{
		-ms-grid-column: 2;
		-ms-grid-row: 1;
		grid-column: 2;
		grid-row: 1;
		}
	#writerList figure{
		-ms-grid-column: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 8;
		grid-column: 1;
		grid-row: 1 / 8;
		margin-right: 2em;
		}
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) and (max-width: 991.98px) {
/*767px以下 横向き, 768px～991px*/
#writerList{}
	#writerList section{
		-ms-grid-columns: 1fr 2fr;
		grid-template-columns: 1fr 2fr;
		}
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199.98px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991.98px) {
/*768px～991px*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#col2{
	flex-wrap: wrap;
	}
#sidebar{
	padding-bottom: 7em;
	}
#pagenation{
	width: 100%;
	order: 1;
	}
#writerList{}
	#writerList section{
		-ms-grid-columns: 1fr 1.5fr;
		grid-template-columns: 1fr 1.5fr;
		}
}
@media (min-width: 992px) and (max-width: 1199.98px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}



