@charset "utf-8";

/*------------------------------------------------------------------------------
関空クラブ - CSS Modules Import
URL: http://
Date: 2012-05-06
© Copyright 2012 kcc All Rights Reserved.
------------------------------------------------------------------------------*/


#serviceList {
	width: 800px;
	margin: 0 0 40px;
	display: flex;
	flex-wrap: wrap;
}
#serviceList li {
	width: 390px;
	margin: 0 20px 20px 0;
}
#serviceList li:nth-child(even) {
	margin: 0 0 20px 0;
}
@media screen and (max-width:767px){
	#serviceList {
		width: 100%;
		margin: 0 0 30px;
	}
	#serviceList li,
	#serviceList li:nth-child(even) {
		width: 100%;
		margin: 0 0 4vw;
	}
	#serviceList li img {
		width: 100%;
	}
}


.btnUnit03 li {
	margin-bottom: 14px;
}
@media screen and (max-width:767px){
	.btnUnit03 {
		width: 90%;
		margin: 0 5%;
	}
	.btnUnit03 li img {
		width: 100%;
	}
}

/* ----------------------------------------

opacity rollover

---------------------------------------- */

#serviceList li a:hover img {
	opacity: .65; /* Standard: FF gt 1.5, Opera, Safari */  
	filter: alpha(opacity=65); /* IE lt 8 */  
	-ms-filter: "alpha(opacity=65)"; /* IE 8 */  
	-khtml-opacity: .65; /* Safari 1.x */  
	-moz-opacity: .65; /* FF lt 1.5, Netscape */
}



/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */

#serviceList:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* Legacy IE
------------------------------- */

#serviceList {
	*zoom: 1;
}

