@charset "utf-8";
/* common.css */


/*プロパティ順番
////////////////////////////////////////////////////*//*


	Mozillaが採用している「ボックスモデルによる記述順番」

	01 display
	02 list-style
	03 position
	04 float
	05 clear
	06 width
	07 height
	08 margin
	09 padding
	10 border
	11 background
	12 color
	13 font
	14 text-decoration
	15 text-align
	16 vertical-align
	17 white-space
	18 other text
	19 content


///////////////////////////////////////////////////////*/


html {
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	font-size: 120%;
}


/* よく登場する要素のリセット */
h1, h2, h3, h4, h5, h6,
div, span,
ul, ol, li, dl, dt, dd,
table, caption, th, td,
form, fieldset, legend,
p, address, blockquote, pre {
	list-style-type: none;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	border: none;
	color: #333333;
	font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	letter-spacing: 0.1em;
}


/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
input,
textarea,
select {
	/*text-align: left;*/
	letter-spacing: 0.1em;
	font-size: 100%;
	font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	/font-family: inherit;
}


/* 下線を消す */
abbr,
acronym {
	border: none;
}


/* 文字のブラウザ間での差異をなくす */
caption, cite, code, dfn, em, strong, var {
	font-style: normal;
	font-weight: normal;
}


/* 画像の上にできる隙間とボーダーをなくす */
img {
	vertical-align: top;
	border: none;
}


/* hr 要素は不可視で使う */
hr {
	display: none;
}


/*clear fix
////////////////////////////////////////////////////*/

.clear {
	/zoom : 1;
}

.clear:after {
	content : '';
	display : block;
	clear : both;
}


/*デフォルトリンクカラー
////////////////////////////////////////////////////*/

a:link {
	color: #E60214;
}

a:visited {
	color: #E60214;
}

a:hover {
	color: #FF3366;
}


/*レイアウト
////////////////////////////////////////////////////*/
body {
	/*background-color: #7FCEF4;*/
	text-align: center;
}
/* wrapper設定 */
#wrapper {
	width: 700px;
	margin: 10px auto 0;
	background-color: #FFFFFF;
}
/* content設定 */
#content {
	width: 570px;
	padding: 0 65px;
	padding-bottom: 40px;
	text-align: left;
}


/* header設定 */
#header {
	width: 700px;
	height: 405px;
}
#header h1,
#header h2,
#header p {
	display: none;
}


/* フッターのボックスの設定 */
#footer {
	padding: 3px 0;
	background-color: #000000;
	text-align: center;
	clear: both;
}
#footer address {
	text-align: center;
	color: #FFFFFF;
}


/* その他 */
.buttonCol {
	margin: 20px 0;
	text-align: center;
}


/* 13.07.03 */
.caution {
	padding: 10px;
	background: #EEEEEE;
}

.caution dt {
	font-weight: bold;
	color: #CC0000;
}

.mt5 { margin-top: 5px; }
.mt10 { margin-top: 10px; }

#header .breadcrumbs {
	display: block;
	text-align: left;
	padding: 6px 0;
}

/*テキスト
////////////////////////////////////////////////////*/
.txt_important{
	color: #E60214;
	text-align: center;
	font-weight: bold;
}