
/*	reset */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,dialog,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	font-style: inherit;
	vertical-align: baseline;
	white-space: normal;
	margin: 0; padding: 0;border: 0;outline: 0;
	background: 0 0;
}
a {
	text-decoration: none;
}
textarea {
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	vertical-align: baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
	display:block;
}
ol, ul, li {
	list-style-type: none;
}
blockquote,q {
	quotes:none;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
canvas { /*パーティクル用*/
	display: block; vertical-align: bottom;
}


/* ----------------------------------------
  Basic Layout
  ---------------------------------------- */
  
/*	EXAMPLE STYLES */
html {
    font-size: 16px;
}
body {
	font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Yu Gothic','游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic','メイリオ', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
	color: #1e2530;
    word-break: break-all;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
}
/*
@media screen and (max-width: 767px) {
	body {
		font-size: 15px;
	}
}
*/

/* link */
a:link { color:#000; }
a:visited { color:#000; }
a:hover,a:focus { color:#565658; }
a:active { color:#908787; }
a img.rollover {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
a,
a::before,
a::after,
a span::before,
a span::after {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
a:hover img.rollover,
a:focus img.rollover,
a.thinly:hover,
a.thinly:focus {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-ms-filter: 'alpha(opacity=80)';
}

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

/* text tag */
h1,h2,h3,h4,h5,h6 {
	line-height: 1.5;
	font-weight: normal;
}
h1,h2 { font-size: 1.5em; }
h3 { font-size: 1.3em; }
h4 { font-size: 1.15em; }
h5,h6 { font-size: 1em; }
p { font-size: 1em; }


/*	------responsive------ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; /*padding・borderを幅と高さに含める*/
}
.container {
	max-width: 1320px;
	margin: 0 auto;
	padding-right: 40px;
	padding-left: 40px;
}
.clr:after,.col:after,.container:after,.group:after,.row:after{
	content: "";
	display: table;
	clear: both;
}
.row { 
	width: 100%;
	padding-bottom: 0;
}
.col {
	display: block;
	float: left;
	width: 100%;
}
@media screen and (max-width: 767px) {
	.container {
		padding-right: 20px;
		padding-left: 20px;
	}
}


/* ----------------------------------------
  print
  ---------------------------------------- */
@media print {
	body {
	    width: 1280px;
	   /* zoom: .8;*/
	    transform: scale(0.8);
	    -moz-transform: scale(0.8);
	    -webkit-transform: scale(0.8);
		transform-origin: 0 0;
	}
	.container {
		max-width: inherit !important;
        width: 1200px !important;
    }
}



