@charset "utf-8";
/* CSS Document */

/* ##################################################################### */
/*        　                                                             */
/*     ●テーブル＆フォーム　　　　　　　　                              */
/*      1.テーブル基本スタイル                                           */
/*      2.テーブルフォーム用（設定することにより高さが高くなる           */
/*      3.フォーム基本スタイル                                     　    */
/*		　　　　　　　　　　　											 */
/* ##################################################################### */

/* ===================================================================== */
/*      1.テーブル基本スタイル　                                         */
/* ===================================================================== */
/* --------------------------------------------------------------------- */
/*      1-1.　テーブル基本                                               */
/* --------------------------------------------------------------------- */

table{
	width: 550px;
	margin-bottom: 20px;
	padding: 0px;
	border: 1px solid #cccccc;
}

table th{
	background-color: #f2f2f2;
	text-align: left;
	width: 120px;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	border-right-color: #CCC;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	margin: 0px;
	font-size: 80%;
}

caption{
	display: none;
	}

table th.widthlong{
	width: auto;
}

	
table td{

	background-color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	margin: 0px;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	font-size: 80%;
	line-height: 1.5em;
}

table td.widthshort{
	width: 120px;
}

table td.widthAuto{
	width: auto;
}

caption{
	font-size: 70%;
	text-align: left;
	padding-bottom: 5px;
	}


/* ===================================================================== */
/*      2.テーブルフォーム用（設定することにより高さが高くなる           */
/* ===================================================================== */
table.form th, table.form td{
	height: 30px;
}


/* ===================================================================== */
/*      3.フォーム基本スタイル　　　　　　　　　　　　　　　　　         */
/* ===================================================================== */
/* --------------------------------------------------------------------- */
/*    　フォーム基本デザイン                                             */
/* --------------------------------------------------------------------- */
textarea{
	width: 100%;
	border: 1px solid #C0C0C0;
	ime-mode:active;
}

textarea.bottom{
	margin-bottom: 0px;
	}

input{
	border: 1px solid #A8A8A8;
}

select{
	border: 1px solid #999999;
}

/* --------------------------------------------------------------------- */
/*    　フォームの長さ                                                   */
/* --------------------------------------------------------------------- */

.widthshorter{
	width: 25px;
}
.widthshort {
	width: 50px;
}

.widthmedium {
	width: 240px;
}

.widthlong {
	width: 98%;
}


/* --------------------------------------------------------------------- */
/*    言語切り替え                                                       */
/* --------------------------------------------------------------------- */
.langJpn{ime-mode:active}

.langEng{ime-mode: disabled;}



