/*
https://webdesign-trends.net/entry/8137

html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/
:root { /* add by makoto 190709 変更する場合は各CSSのscreen\0は個別修正*/
/*	--test-background-image		: url("../img/12pxMesh.png");  on for test */
	--main-font-size			: 12px;	/* max 20 */
	--main-title-color			: gray;
	--main-color				: black;
	--main-border-color			: gray;
	--main-hover-bg-color		: #90ee90;
	--main-focus-bg-color		: #f9fb5a;
	--main-focus-color			: black;
	--main-serialNum-color		: silver;	
	
	--html-bg-color				: #ccff99;
	--html-header-bg-color		: #004ea2;
	--html-header-color			: white;
	--html-header-shadow		: aqua;
	--html-nav-bg-color			: #2d2d2d;
	--html-nav-color			: white;
	--html-nav-title-bg-color	: #004e00;
	--html-main-bg-color		: white;
	--html-paramBox-bg-color	: #ffffe0;
	--html-aside-bg-color		: #f9fb5a;
	
	--html-button-shadow		: #999;
	--dialog-bg-color			: #f0e68c;
	--dialog-title-color		: white;
	--dialog-title-bg-color		: gray;
}
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,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
/*	font-size:100%;	del by makoto 190709 */
	vertical-align:baseline;
	background:transparent;
}

body, h1 { /* add h1 by makoto 190711 */
	line-height:1;
	font-size : 12px;
	font-size : var(--main-font-size);	/* add by makoto 190709 */
}
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	border:0;
	vertical-align:baseline;
	background:transparent;
	text-decoration : none; /* add by makoto 190710 */
/*	font-size:100%;  mod by makoto 190710 */
	font-size : 12px;
	font-size : calc(var(--main-font-size));

}
ins {
	background-color:#ff9;
	text-decoration:none;
/*	color:#000;  mod by makoto 190717 */
	color : black;
	color : var(--main-color);
	
	
}
mark {
	background-color:#ff9;
	font-style:italic;
	font-weight:bold;
/*	color:#000;  mod by makoto 190717 */
	color : black;
	color : var(--main-color);
}
del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}

table {
	border-collapse:separate; /*	collapse; mod by makoto 190821 */
	border-spacing:1px; /*	0; mod by makoto 190821 */
}

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
	vertical-align:middle;
}
