/* CSS Document */

#facility{}
	#facility h2+figure{}
		#facility h2+figure img{
			width: 100%;
			height: auto;
			}
	#facility section{
		display: flex;
		}
	#facility section+section{
		padding-top: 0;
		}
	#facility h3+div{
		order: 1;
		}
	#facility h4{
		color: #6AC155;
		font-size: 1.1em;
		line-height: 1.4em;
		}
	#facility h4+div{
		margin-top: 0.8em;
		}
	#facility footer{
		padding-top: 0;
		}




/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
#facility{}
	#facility section{
		flex-direction: column;
		align-items: stretch;
		}
		#facility section figure{
			margin-top: 1em;
			}
}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
}
@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*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#facility{}
	#facility section{
		flex-wrap: wrap;
		justify-content: space-between;
		}
		#facility section dt{
			width: 6em;
			}
		#facility section dd{
			width: calc(100% - 6em);
			}
	#facility h3{
		width: 100%;
		}
	#facility h3+div,
	#facility section figure{
		width: calc(50% - 1em);
		margin-top: 1em;
		}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


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



