/* CSS Document */

#grice{}
	#rice div+ul{
		margin-top: 1em;
		}
	#rice p+h4,
	#rice div+div{
		margin-top: 2em;
		}
	#rice figure{
		margin-top: 1em;
		}
	#rice dl{
		}
	#rice dd+dt{
		margin-top: 1em;
		}
	#rice dd{
		margin-top: 0.5em;
		}
	#rice .flex{
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		}

/* for mobile */
@media (max-width: 767px) {
/*767以下px*/
}


/* for TabletPC */
@media (min-width: 768px) {
/*768px以上*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#rice{}
	#rice .flex > div,
	#rice .flex > dl{
		width: 60%;
		}
	#rice .flex > figure{
		width: calc(40% - 1em);
		margin-top: 0;
		}
}


/* ie */
@media all and (-ms-high-contrast: none){}


