/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

@import url('https://fonts.googleapis.com/earlyaccess/notosansjp.css');


html {
	font-size: 10px;
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	margin: 0;
	padding: 0;
	background:#fff;
	animation: fadeIn 1s ease 0s 1 normal;
	-webkit-animation: fadeIn 1s ease 0s 1 normal;
	font-size:1.6rem;
	background:url(../img/body_bg.gif) top left repeat #fff;
	background-attachment: fixed;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}


div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size:1.6rem;
	vertical-align: baseline;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	color:#0D0D0D;
}


/* HTML5 display-role reset for older browsers */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
			 -o-box-sizing: border-box;
			-ms-box-sizing: border-box;
					box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ul {
	list-style: none;
}

ol {
	margin-left:1.2em;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	width:100%;
	border-collapse: separate;
	border-spacing: 0;
}

img {
	vertical-align:bottom;
	max-width:100%;
	height:auto;
}

a {
	text-decoration:none;
}

strong,
strong > * {
	font-weight:500;
}

/* clearfix */
.cf:after {
	content: " ";  
	display: block; 
	visibility: hidden;
	clear: both;
	height: 0px; 
	font-size: 0.1em !important; 
	line-height: 0 !important;
	overflow:hidden;
}
.cf { min-height: 0.1px; display:block; }
* html .cf {
	height: 0.1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/*===============================================

Flexbox

=================================================*/

.flexbox {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

.flexbox > * {
	min-height:0%;
}

.spbet {
	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	-ms-justify-content:space-between;
	justify-content:space-between;
}

.sparo {
	-webkit-justify-content:space-around;
	-moz-justify-content:space-around;
	-ms-justify-content:space-around;
	justify-content:space-around;
}

.jussta {
	-webkit-justify-content:flex-start;
	-moz-justify-content:flex-start;
	-ms-justify-content:flex-start;
	justify-content:flex-start;
}

.jusend {
	-webkit-justify-content:flex-end;
	-moz-justify-content:flex-end;
	-ms-justify-content:flex-end;
	justify-content:flex-end;
}

.juscent {
	-webkit-justify-content:center;
	-moz-justify-content:center;
	-ms-justify-content:center;
	justify-content:center;
}

.dir_column {
	-webkit-flex-direction:column;
	-moz-flex-direction:column;
	-ms-flex-direction:column;
	flex-direction:column;
}

.alcent {
	-webkit-align-items:center;
	-moz-align-items:center;
	-ms-align-items:center;
	align-items:center;
}

@media all and (min-width: 920px) {
	
	*:hover,
	*:hover * {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-transition: 0.5s;
		-moz-transition: 0.5s;
		transition: 0.5s;
		-moz-transition-property:background, background-color, color;
		transition-property: background, background-color, color;
	}
	
	#pagetop,
	#pagetop a {
		-webkit-transition: none;
		-moz-transition: none;
		transition: none;
	}
	
	a:hover {
		color:#FF4E00;
	}
	
	a:hover img {
		opacity:0.8;
	}

}

