@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{
	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%;
	overflow-wrap: anywhere;/*URL等の長英文の折り返し*/
	font-family: "Noto Sans JP", sans-serif;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #333;
}

a:hover{
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6, th{
	font: inherit;
}

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;
}

/****
フォーカス
*****/
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex="0"]:focus-visible{
	outline: 3px solid #aa0000;
	outline-offset: 0.25em;
	position: relative;
	z-index: 99999;
}

/* マウスユーザーには枠線を出さない */
:focus:not(:focus-visible){
	outline: none;
}