@charset "utf-8";

/* 初期リセット */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acr.exm, address, big, cite,
del, dfn, em, font, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,caption, Link,
table, tbody, thead, tr, th, td, tfoot {
	margin: 0;
	padding: 0;
	font-style: normal;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
/*	HTML5*/
header,article,aside,section,footer,nav{
	display: block;
}
* {
	letter-spacing: 0;
}
ul {
	list-style: none;
}

html{
    font-size:100%;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

html,
body {
    font-family: Meiryo, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', system-ui, sans-serif;
	line-height: 1.5;
    font-size: 16px;
	color: #333;
}
/* -------------------------------------
 * 日本語の場合
 * ------------------------------------- */
.langJP {
    font-family: Meiryo;
}
/*iOS対応*/
.iOS .langJP {
    font-family: 'ヒラギノ角ゴ ProN W3';
}

/* -------------------------------------
 * 英語の場合
 * ------------------------------------- */
.langEN {
    font-family: Helvetica;
}


/*aタグ*/
a, a:hover, a:visited, a:active{
    text-decoration: none;
    color: #069;
}

/*iPhoneなど input要素のボタンにCSSが効かない時の対処方法*/
input[type="button"] {
    -webkit-appearance: none;
    border-radius: 0;
	cursor: pointer;
}

.mgT10{margin-top:10px;}
.mgT50{margin-top:50px;}

.clear{clear:both;}