/* CSS Document */

#topics{}
	#topics ul{
		border-top: 1px dotted #bfbfbf;
		list-style: none;
		}
	#topics li{
		display: flex;
		padding: 0.8em 0;
		line-height: 1.4em;
		border-bottom: 1px dotted #bfbfbf;
		}
	#topics a{
		order: 2;
		}
	#topics time{
		width: 7em;
		opacity: 0.7;
		order: 1;
		}
	#topics p{
		padding: 10% 1em;
		background: rgba(217,217,217,0.5);
		text-align: center;
		}

#pagenation{
	padding-top: 0;
	}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
#topics{}
	#topics li{
		flex-wrap: wrap;
		}
	#topics a{
		order: 1;
		}
	#topics time{
		width: auto;
		margin-left: auto;
		padding-left: 1em;
		font-size: 0.85em;
		order: 2;
		}
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
}


/* for TabletPC */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1200px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* ie */
@media all and (-ms-high-contrast: none){}


