@charset "utf-8";

/*------------------------------------------------------------------------------
NISHIRI - CSS Modules Import
Date: 2010-05-27
Copyright (C) NISHIRI Co.,LTD. All Rights Reserved.
------------------------------------------------------------------------------*/

/******************************************
- Title Style
- List Style
- Table Style
- Button Style
- Form Style
- Common Class
- Clearfix
*******************************************/

/* ----------------------------------------

TitStyle

---------------------------------------- */

/* -- TitStyle01 -- */

.TitStyle01 {
	margin-bottom: 5px;
	line-height: 1.2;
	font-weight: 700;
	font-family: "Times New Roman", Times, serif;
	font-size: 200%;
}

* html .TitStyle01 {
	font-family: "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", serif;
}

*:first-child+html .TitStyle01 {
	font-family: "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", serif;
}

div.ItemList01 .TitStyle01 {
	margin-bottom: 10px;
	color: #6db600;
}

div.ItemList02 .TitStyle01 {
	color: #ff7800;
}

div#Detail div.DetailTit {
	padding: 10px 0;
	border-bottom: 2px solid #999;
}

div#Detail .TitStyle01 {
	color: #ff7800;
}


/* -- TitStyle02 -- */
.TitStyle02 {
	line-height: 1.2;
	font-size: 277%;
	color: #007838;
	margin-bottom: 10px;
}

div.ItemList02 .TitStyle02 {
	margin-top: 8px;
	line-height: 1.1;
	color: #f24400;
}

div.ItemList02 .TitStyle02 span {
	font-weight: 700;
	font-size: 38.9%;
}

/* ----------------------------------------

ListStyle

---------------------------------------- */

/* -- ListStyle01 -- */

ul.ListStyle01 {
	padding-left: 20px;
}

ul.ListStyle01 li {
	list-style-type: disc;
}

/* -- ListStyleDef -- */

.ListStyleDef {
	padding-left: 30px;
}

ul.ListStyleDef li {
	list-style-type: disc;
}

ol.ListStyleDef li {
	list-style-type: decimal;
}

/* ----------------------------------------

TblStyle

---------------------------------------- */

/* -- TblStyle01 -- */

table.TblStyle01 {
	width: 100%;
	margin-bottom: 20px;
}

table.TblStyle01 th,
table.TblStyle01 td {
	padding: 0.4em 1em;
	border: 1px solid #ccc;
	vertical-align: top;
}

table.TblStyle01 th {
	background-color: #eee;
	font-weight: 700;
}

/* -- Col -- */

col.FirstCol01 {
	width: 30%;
}

/* ----------------------------------------

BtnStyle

---------------------------------------- */

/* -- BtnStyle01 -- */

.BtnStyle01 {
	text-align: center;
}

.BtnStyle01 li {
	display: inline;
	padding: 0 10px;
}

.BtnStyle01 li input {
	vertical-align: bottom;
}

/* ----------------------------------------

FormStyle
(input要素の幅は適宜調整する)

---------------------------------------- */

input.Text,
textarea.Text,
select.Text {
	padding: 2px;
	border: 1px solid #ccc;
	vertical-align: baseline;
}

input.Small01 {
	width: 5em;
}

input.Small02 {
	width: 50px;
}

input.Medium01 {
	width: 50%;
}

input.Medium02 {
	width: 30em;
}

textarea.Large01,
input.Large01 {
	width: 80%;
}

textarea.Large02,
input.Large02 {
	width: 98%;
}

/* ----------------------------------------

Common Class
(以下は暫定的に、又はイレギュラーな場合のみ使用。通常は使用しない)

---------------------------------------- */

.Clear {
	clear: both;
}

.Hidden {
	height: 0;
	width: 0;
	overflow: hidden;
}

.OutlineFix {
	/* Gecko outLinefix & MacIEHack ＼*/
	overflow: hidden;
	/* End */
}

.MgnTop0 {
	margin-top: 0;
}

.MgnTop10 {
	margin-top: 10px;
}

.MgnTop15 {
	margin-top: 15px;
}

.MgnTop20 {
	margin-top: 20px;
}

.MgnTop30 {
	margin-top: 30px;
}

.AlignCenter {
	text-align: center;
}

.AlignRight {
	text-align: right;
}


/* ----------------------------------------

ClearFix (基本的にクラス指定では使用しない、必要なければ消す)

---------------------------------------- */

/* -- Modern Browsers -- */

.ClearFix:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* -- IE7 -- */

*:first-child+html .ClearFix {
	zoom: 1;
}

/*  -- Legacy IE -- */

* html .ClearFix {
	zoom: 1;
}