@charset "utf-8";

/* --------------------
 reset
-------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* --------------------
 HTML5
-------------------- */

article, aside, canvas, details,
figcaption, figure, footer, header,
hgroup, menu, nav, section, summary {
	display: block;
}

/* --------------------
 DEFAULT
-------------------- */

/* GLOBAL */
* {
	margin: 0;
	padding: 0;
}
/* BODY */
body {
	margin: 0;
	color: #333333;
	/*
	font-size: 75%;
	font-family:
		Verdana,
		'ヒラギノ角ゴ ProN W3',
		'Hiragino Kaku Gothic ProN',
		Helvetica,
		'ＭＳ Ｐゴシック',
		sans-serif;
	*/
	line-height: 1;	
}
/* HEADLINE */
h1,h2,h3,h4,h5,h6 {
	/*
	font-family:
		Verdana,
		'ヒラギノ角ゴ ProN W3',
		'Hiragino Kaku Gothic ProN',
		'メイリオ',
		Meiryo,
		Helvetica,
		'ＭＳ Ｐゴシック',
		sans-serif;
	*/
	margin: 0;
}
:root *> h1,h2,h3,h4,h5,h6 {
	line-height: 1.6;
}
/* P */
p {
	line-height: 1.6;
}
/* LIST */
ol,ul,li {
	line-height: 1.6;
	list-style-type: none;
}
/* IMG */
img {
	border: 0;
	vertical-align: bottom;
}
/* TABLE */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* A */
a {
	color: #c61d4e;
	outline: none;
	overflow: hidden;
	text-decoration: underline;
}