﻿@charset "utf-8";

@import url("reset.css");
@import url("header.css");
@import url("body.css");
@import url("footer.css");
@import url("module/block.css");
@import url("module/div.css");
@import url("module/form.css");
@import url("module/inline.css");
@import url("module/list.css");
@import url("module/table.css");

/*

■プロパティリスト (以下の順でプロパティを記述)

 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content

----------------------------------------------------------

■使用ハック (「Hack」というコメント以下に、まとめて記述)

 01) Windows IE7対象

     *:first-child+html body {}

 02) Windows IE6対象

     * html body {}

 03) Clearfix

========================================================== */


/*  Common Elements
---------------------------------------------------------- */

* {
	font-family: "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

html {
	overflow-y: scroll;
}

body {
	background: #fff url(/common/image/bg_wrapper.gif) 50% 0 repeat-y;
	color: #333;
	font-size: 13px;
	text-align: center;
}

a:link,
a:visited {
	color: #052a55;
}

a:active,
a:hover {
	color: #6991b2;
}

img {
	border: 0;
	vertical-align: text-bottom;
}

hr {
	display: none;
}

strong {
	font-weight: bold;
}

blockquote {
	padding: 15px;
}


/*  Common id, class
---------------------------------------------------------- */

.clear {
	clear: both;
}

.debug {
	border: 1px solid #f00; /* 表示チェック用 */
}

.hidden {
	display: none;
}


/*  Hack
---------------------------------------------------------- */

*:first-child+html body {
	padding-left: 1px;
	font-size: 84%;
}

* html body {
	padding-left: 1px;
	font-size: 84%;
}

* html table th,
* html table td,
* html table caption {
	font-size: 84%;
	line-height: 1.5;
}

#eprospectus {
	color: red;
}

