@charset "UTF-8";


/* -----------------------------------------------
 *                    base styles
 * ----------------------------------------------- */

/* =========== block level elements =========== */

/* ----- collective ----- */

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
pre,
address,
blockquote,
ul,
ol,
dl,
dt,
dd,
form,
fieldset {
	display: block;
	text-align: inherit;
	line-height: inherit;
	text-indent: 0;
}


/* ----- top level ----- */

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	text-align: left;
	color: #6e514c;
	background-color: white;
	background-position: top center;
	background-repeat: repeat-y;
	font-family: Verdana, "MS UI Gothic", "ヒラギノ角ゴ Pro W3", "Osaka", sans-serif;
	*font-family: "MS UI Gothic", sans-serif; /* ~WinIE7 */
	font-size: 12px;
	*font-size: 75%; /* ~WinIE7 */
}

/* Safari \*/
html:\66irst-child body {
	font-family: "MS UI Gothic", "HiraKakuPro-W3", sans-serif;
}
/* end */


/* ----- heading ----- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
	font-size: 100%;
}


/* ----- normal block ----- */

hr {
}

div {
}

p {
	margin: 0 0 1em 0;
	padding: 0;
}

pre {
	font-family: "Osaka－等幅", "ＭＳ ゴシック", monospace;
}

address {
	font-style: normal;
}

blockquote {
}

em {
	font-weight: bold;
	font-style: normal;
}

strong {
	font-weight: bold;
	font-style: normal;
}


/* ----- list ----- */

ul {
}

ol {
}

li {
	display: list-item;
}

dl {
	margin: 0 0 1em 0;
	padding: 0;
}

dt {
	margin: 0;
	padding: 0;
	font-weight: bold;
}

dd {
	margin: 0;
	padding: 0;
}


/* ----- form ----- */

form {
}

fieldset {
}



/* =========== inline level elements =========== */

/* ----- collective ----- */

a,
abbr,
acronym,
b,
bdo,
big,
button,
cite,
code,
dfn,
em,
i,
img,
input,
kbd,
label,
map,
object,
q,
ruby,
samp,
select,
small,
span,
strong,
sub,
sup,
textarea,
tt,
var {
	display: inline;
	margin: 0;
	padding: 0;
	line-height: inherit;
}

sup {
	vertical-align: top;
	font-size: 83%;
}

sub {
	vertical-align: baseline;
	font-size: 83%;
}


/* ----- anchor ----- */

a {
	border-bottom: 1px dotted #a89794;
	text-decoration: none;
	color: #6e514c;
}

a:link {
}

a:visited {
	color: #907c4c;
}

a:focus,
a:hover,
a:active {
	border-bottom: 1px solid #e2dcdb;
	color: #6e514c;
	background-color: #e2dcdb;
}

a.wasting-span-inserted {
	border-bottom: none;
}

a.wasting-span-inserted span.wasting-span {
	border-bottom: 1px dotted #a89794;
	zoom: 1;
	*cursor: pointer;
}

a.wasting-span-inserted:focus,
a.wasting-span-inserted:hover,
a.wasting-span-inserted:active {
	border-bottom: none;
	background: none;
}

a.wasting-span-inserted:focus  span.wasting-span,
a.wasting-span-inserted:hover  span.wasting-span,
a.wasting-span-inserted:active span.wasting-span {
	border-bottom: 1px solid #e2dcdb;
	background-color: #e2dcdb;
}


/* ----- img ----- */

img {
	border: none;
}


/* ----- form ----- */

legend {
}

input,
select,
textarea,
button {
	font-size: inherit;
	line-height: inherit;
}

input.text,
input.password,
textarea,
select {
	color: black;
	background-color: white;
}

input.password {
	font-family: Arial, sans-serif;
}

input.checkbox {
	vertical-align: middle;
}

input.submit,
input.reset,
input.button {
}

select {
	height: 18px; /* for Gecko */
}

optgroup {
	font-style: normal;
	font-weight: bold;
}

button {
	cursor: pointer;
}



/* =========== table-related elements =========== */

table,
thead,
tbody,
tfoot,
tr,
th,
td,
caption,
col,
colgroup {
	text-align: inherit;
	line-height: inherit;
	text-indent: 0;
	font-size: 100%;
}

table {
	display: table;
}

thead {
	display: table-header-group;
}

tbody {
	display: table-row-group;
}

tfoot {
	display: table-footer-group;
}

tr {
	display: table-row;
}

th,
td {
	display: table-cell;
}

caption {
	display: table-caption;
}

col {
	display: table-column;
}

colgroup {
	display: table-column-group;
}



