@charset "utf-8";
/*
///////////////////////////////////////////////////////////////////////////////////
//
//  共通CSS設定
//
///////////////////////////////////////////////////////////////////////////////////
/*
/* [01.CLEAR]
/* [02.PKG,SPC]
/* [03.OTHER]
/*
///////////////////////////////////////////////////////////////////////////////////
/*
/* [01.CLEAR]
--------------------------------------------------------------------------*/
.clr:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clr {
	min-height: 1px;
}
* html .clr {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
/* [03.OTHER]
--------------------------------------------------------------------------*/
.fadein {
	opacity: 0;
	transform: translate(0, 30px);
	transition-delay: opacity 0.5s;
	transition-duration: 1s;
	transition-timing-function:ease-in-out;
}
.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.tac {
	text-align: center;
}