/* CSS Document */

#etc{
	padding-top: 0;
	}
	#etc figure{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin-top: 2em;
		}
		#etc figure dl{
			display: grid;
			grid-gap: 0.5em;
			}
		#etc figure dt{
			order: 1;
			text-align: center;
			line-height: 1.4em;
			}
		#etc figure dd{
			position: relative;
			padding-top: 66.66%;
			}
		#etc figure img{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			}




/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
#etc{}
	#etc figure{
		grid-gap: 1em;
		}
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下横向き*/
}
@media (max-width: 767px) and (orientation:portrait), (max-width: 575px) and (orientation:landscape) {
/*767px以下縦向き, 575px以下横向き*/
}
@media (min-width: 768px), (min-width: 576px) and (max-width: 767px) and (orientation:landscape) {
/*576px～767px横向き, 768px以上,*/
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 576px) and (max-width: 767px) and (orientation:landscape) {
/*576px～767px横向き, 768px～991px*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
#etc{}
	#etc figure{
		grid-gap: 1.5em;
		}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#etc{}
	#etc figure{
		grid-gap: 2em;
		}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


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



