@charset "UTF-8";
/*common.css version 1.0*/
/* ------------------------------------------------------------
	= Contents =	00. RESET
					01. FONT
   ------------------------------------------------------------ */
   
/* ------------------------------------------------------------
	00. RESET SETTING CSS
   ------------------------------------------------------------ */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, 
fieldset, input, textarea, p, blockquote, th, td, figure{
	margin: 0; 
	padding: 0;
}
html{
	overflow-y: scroll;
}
body{
	-webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6{
	font-size: 100%; 
	font-weight: normal;
}
ol, ul{
	list-style:none;
}
fieldset, img{
	 border:0;
}
table{
	border-collapse: collapse; 
	border-spacing:0;
}
caption, th{
	text-align: left;
}
address, caption, cite, code, dfn, em, strong, th, var{
	font-style: normal; 
	font-weight: normal;
}
* {
	max-height: 999999px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;  
}
img{
  vertical-align: middle;
}

figure {
  line-height: 0;
}

/* ------------------------------------------------------------
	01. FONT SETTING CSS
   ------------------------------------------------------------ */

body {
  font-size: 14px;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-weight: 400;
  min-width: 1200px;
  color: #333;
}

table {
	font-size:inherit;
	font:100%;
}

.f300{
  font-weight: 300;
}
.f400{
  font-weight: 400;
}
.f500{
  font-weight: 500;
}
.f700{
  font-weight: 700;
}
a{
  text-decoration: none;
}
.fNoto{
  font-family: 'Noto Sans JP', sans-serif;
}
@media only screen and (max-width:767px){
  body {
    min-width: 0;
  }
}
