@charset "utf-8";

body{
	font-size: 100%;
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	color: #fff;
	background: #fff;
}
a {
	color: inherit;
	text-decoration: none;
	opacity: 1;
	-moz-transition: .2s ease-in-out;
	-webkit-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
a:hover {
	opacity: .62;
}
#wrapper {
	position: relative;
/*	background: #fff url('/img/common/bg01a.jpg');
	background-size: cover;
*/
	z-index: 2;
}
video {
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	width: auto;
	min-width: 100%;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	#wrapper {
		background: #fff url('/img/common/bg01a.jpg');
		background-size: cover;
	}
	video {
		display: none;
	}
}
/*																header		*/
header {
	width: 100%;
}
header .inner {
	position: relative;
	max-width: 1024px;
	margin: 0 auto;
	padding: 24px;
}
header p {
	position: absolute;
	bottom: 28px;
	right: 24px;
	width: 62%;
}
/*																main		*/
main {
	width: 100%;
}
main .inner {
	line-height: normal;
}
/*																footer		*/
footer {
	width: 100%;
	height: 40px;
	padding: 12px 0 0;
	text-align: center;
	font-size: .86rem;
}
/*																clearfix		*/
.clearfix:after {
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	content:".";
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	height: auto;
	overflow: hidden;
}
/*																flex		*/
.flex {
	display: -ms-flexbox;
	display: -webkit-box;			/* Android 2~4 */
	display: -webkit-flex;
	display: flex;
}
.flex.end {
	-ms-justify-content: flex-end;
	-webkit-box-pack: end;		/* start  end  center  justify		 */
	-webkit-justify-content: flex-end;		/* flex-start  flex-end  center  space-between  space-around */
	justify-content: flex-end;
}

