@charset "UTF-8";

/****************************************************************************
 	reset
****************************************************************************/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,ins,kbd,q,samp,small,strong,
sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}
/* 管理画面からエディタ入力でリストスタイル効かなくなる為 none削除 */
ul,ol,li,dl,dt,dd{/*list-style-type:none;*/list-style-position:outside;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
ins{text-decoration:none;}
img{vertical-align:top;border:0;}
del{text-decoration:line-through;}
hr{display:block;height:0;border:0;margin:0;padding:0;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
em,strong{ font-weight: bold;}
input,select,textarea{margin:0;padding:0;vertical-align:baseline;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
img {max-width: 100%;}

sup {/*上付き文字*/
    vertical-align: super;
    font-size: .6em;
}

/****************************************************************************
 	base
****************************************************************************/
 * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html,body {
	
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: 1px;
	color: #000;/*#33322F*/
	font-size: 16px;
	background-color: #fff;
	text-align: left;
	word-wrap: break-word;
}
img {
	border:0;
	vertical-align: top;
	width: 100%;
	max-width: 100%;
	height: auto;
}
a {
	outline:none;
}
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
}

@media (min-width:768px){
	body {
		font-size: 17px;
	}
}


