@charset "UTF-8";

/*/////////////////////////////////////////////////////////////
ニュートン・コンサルティング株式会社

Copyright (C) Newton Consulting Ltd. All Rights Reserved.
------------------------------------------------------------

[Reset] Resetting HTML elements styles
	0. All
	1. HTML, Body, Anchor
	2. Others
		2-1. Inline-level Elements
		2-2. Block-level Elements
		2-3. Table
		
//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
	0. All
------------------------------------------------------------ */

body, div,
dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
p, pre, code, blockquote, th, td,
form, fieldset, legend, input, select, textarea {
	margin: 0;
	padding: 0;
}

/* ------------------------------------------------------------
	1. HTML, Body, Anchor
------------------------------------------------------------ */


a:link {
	color: #333;
	text-decoration: underline;
}

a:visited {
	color: #4682B4;
}

a:hover,
a:active  {
	color: #333;
	text-decoration: none;
	background-color: #fcdca0;
}

/* ------------------------------------------------------------
	2. Others
------------------------------------------------------------ */

/*  2-1. Inline-level Elements
------------------------------------------------- */
img {
	border: none;
	vertical-align: bottom;
}

object {
	vertical-align: middle;
	outline: none;
}

address, caption, cite, code, dfn, th, var {
	font-weight: normal;
	font-style: normal;
}

em, strong {
	font-weight: bold;
	font-style: normal;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

fieldset {
	border: none;
}

input, textarea, select, label {
	font-size: 100%;
	font-family: inherit;
	vertical-align: middle;
}

label {
	cursor: pointer;
}

textarea {
	overflow: auto;
}

/*  2-2. Block-level Elements
------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	line-height: 1;
}	/*  文字の大きさは各ページで調整。ここでは一度reset  */



q:before, q:after {
	content: '';
}

abbr, acronym {
	border: none;
	font-variant: normal;
}

p {
	margin:1em 0;
}

pre, code {
	font-family: monospace;
}

ul, ol {
	margin-left:2em;
}

ul li {
	list-style: disc outside;
}

ol li {
	list-style: decimal outside;	
}


/*  2-3. Table
------------------------------------------------- */
table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	font-family: inherit;
}

caption, th, td {
	text-align: left;
	vertical-align: top;
	line-height:1.5;
}
