@charset "utf-8";
/*																header		*/
header h1 {
	font-size: 24px;
}
header .inner {
	position: relative;
}
@media screen and (max-width: 768px) {
	header .inner {
		padding: 16px 24px;
	}
}
/*																main		*/
main .inner {
	width: 100%;
	padding: 16px 0;
}	
main section {
	margin: 120px 0;
	padding: 16px 40px 40px;
	background: rgba(0,0,0,0.4);
}
main h2 {
	text-align: center;
}
main .flex {
	-ms-flex-wrap:wrap; /*--- IE10用 ---*/
	-webkit-flex-wrap:wrap; /*--- safari（PC）用 ---*/
	flex-wrap:wrap;
	-ms-justify-content: flex-end;
	-webkit-box-pack: center;		/* start  end  center  justify		 */
	-webkit-justify-content: center;		/* flex-start  flex-end  center  space-between  space-around */
	justify-content: center;
	height: 480px;
	margin-top: 16px;
	line-height: 0;
	overflow: hidden;
}
main .flex li {
	width: 240px;
	padding: 0 .5px 1px;
}
main .flex li a {
	display: block;
}
main .flex li a img {
	width: 100%;
}	
@media screen and (max-width: 768px) {
	#wrapper {
		background-attachment: fixed;
	}
	main .inner {
		padding: 0;
	}
	main section {
		margin: 0;
	}
	main .flex {
		height: auto;
		overflow: visible;
	}
	main .flex li {
		width: 50%;
	}
}


/*																footer		*/
footer {
	position: relative;
}