@charset "UTF-8";

/*======================================================
 * Title	: Browser-formatting Styles
 * Name		: default.css
 * Description	: Style Sheet for initialization of the browser style
 * Version	: 1.0
======================================================*/

/*======================================================
 * Contents
	1. Universal Selector
	2. Structure Module
	3. Text Module	
	4. HyperText Module
	5. List Module
	6. Table Module
	7. Form Module
	8. Image Module
	9. Others
======================================================*/

/* -----------------------------------------------------
 * 1. Universal Selector
 * -------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	line-height: 1.5;
	font-family: 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS P Gothic', 'ヒラギノ角ゴ Pro W6', 'Hiragino Kaku Gothic Pro W6', Osaka, Verdana, Arial, Helvetica, sans-serif;
}


/* -----------------------------------------------------
 * 2. Structure Module
 * -------------------------------------------------- */

body {
	background-color: #ffffff;
}


/* -----------------------------------------------------
 * 3. Text Module
 * -------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
address,
cite,
blockquote {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS P Gothic', 'ヒラギノ角ゴ Pro W6', 'Hiragino Kaku Gothic Pro W6', Osaka, Verdana, Arial, Helvetica, sans-serif;
}

/*-- 整形済みテキスト --*/
pre {
	padding: 10px;
	border:3px solid #eeeeee;
	overflow: scroll;
	color: #3d4263;
	font-family: 'ＭＳ ゴシック', 'Osaka－等幅', 'MS Gothic', Osaka, monospace;
}

/*-- 引用文 --*/
blockquote {
	margin-left: 1em;
}

blockquote * {
	color: #888888;
}

/*-- 引用元URI表示 --*/
cite {
	display: block;
	color: #333333;
	text-align: right;
}

em {
}

strong {
}

/*-- プログラム・スクリプトのソースコード --*/
code {
	font-family: 'ＭＳ ゴシック', 'Osaka－等幅', 'MS Gothic', Osaka, monospace;
}

/*-- 追加文 --*/
ins {
/*
	border-bottom: 1px dotted #cccccc;
	text-decoration: none;
*/
	text-decoration: underline;
}

ins[datetime]::before {
	content: "（"attr(datetime)"\004fee\006b63）";
}

/*-- 削除文 --*/
del {
	text-decoration: line-through;
}

del[datetime]::before {
	content: "（"attr(datetime)"\00524a\009664）";
}

/* -----------------------------------------------------
 * 4. HyperText Module
 * -------------------------------------------------- */

/*-- 未訪問リンク --*/
a:link {
	font-size: inherit;
	background-color: transparent;
	color: #0000ff;	/*----*/
	text-decoration: none;
}

/*-- 訪問済リンク --*/
a:visited {
	font-size: inherit;
	background-color: transparent;
	color: #6600cc;
	text-decoration: none;
}

/*-- マウスオーバー・選択時リンク --*/
a:hover, a:active {
	font-size: inherit;
	background-color: transparent;
	color: #ff0000;
	text-decoration: underline;
}

/* -----------------------------------------------------
 * 5. List Module
 * -------------------------------------------------- */

ul,
ol,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
}

dd {
	margin-left: 1em;
}

li {
	list-style-type: none;
}

/* -----------------------------------------------------
 * 6. Form Module
 * -------------------------------------------------- */

/*-- for WinIE6 --*/
form {
	margin: 0;
	padding: 0;
	background-color: transparent;
	font-size: medium;
	line-height: 1.5;
	font-family: 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS P Gothic', 'ヒラギノ角ゴ Pro W6', 'Hiragino Kaku Gothic Pro W6', Osaka, Verdana, Arial, Helvetica, sans-serif;
}

/*-- コントロールのグループ化 --*/
fieldset {
	border: 1px solid #dddddd;
}

input,
textarea {
	font-size: 1em;
}


/* -----------------------------------------------------
 * 7. Table Module
 * -------------------------------------------------- */

/*-- for WinIE6 --*/
th,
td {
	margin: 0;
	padding: 0;
	background-color: transparent;
	font-size: medium;
	line-height: 1.5;
	font-family: 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS P Gothic', 'ヒラギノ角ゴ Pro W6', 'Hiragino Kaku Gothic Pro W6', Osaka, Verdana, Arial, Helvetica, sans-serif;
}

/* -----------------------------------------------------
 * 8. Image Module
 * -------------------------------------------------- */
img {
	border: 0;
}

/* -----------------------------------------------------
 * 9. Others
 * -------------------------------------------------- */
/*-- for Modern Browser --*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/*-- for WinIE7 and MacIE5 --*/
.clearfix { display: block;}

/*-- for before WinIE6 --*/
/* Hides from MacIE5 \*/
* html .clearfix { height: 1px; }
/*
* html .clearfix { height: 1%; }
*/
.clearfix { display: block; }
/* End hide from MacIE5 */
