@charset "utf-8";
/*======================================
Reset HTML5 CSS3
========================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
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, main, menu, nav, section, summary,
time, mark, audio, video{
	font-size: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}

html{
	font-size:62.5%;
}

body{
	line-height:1;
	width:100%;
	word-wrap:break-word;/*URL等の長英文の折り返し*/
	font-family: -apple-system, BlinkMacSystemFont, "Meiryo UI", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", HiraKakuProN-W3, sans-serif;
	/*font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;*/
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 古いブラウザ対応 */
article, aside, canvas, details, figcaption, figure, header, footer, main, menu, nav, section, summary{
	display: block;
}

h1, h2, h3, h4, h5, h6, th{
	font-weight: normal;
}

audio, canvas, progress, video{
	display: inline-block;
}

ul, ol{
	list-style: none;
}

img{
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
 image-rendering: -webkit-optimize-contrast;/*縮小時の画像ボケ軽減*/
}

table{
	border-collapse:collapse;
	border-spacing:0;
}

input, textarea, select, button{
	font: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

input, select{
	vertical-align: middle;
}

button{
	cursor: pointer;
	font: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

sub, sup{
	font-size: 65%;
}
sub{
	vertical-align: bottom;
}
sup{
	vertical-align: top;
}