/*======================================================*/
/*	共通タグ											*/
/*======================================================*/
body{
	font-family:monospace;
	font-size:130%;				/*160%*/
	text-align: center;
}
.Bg1{
	background:linear-gradient(white, deepskyblue);	/* グラデーション	*/
}
.Bg2{
	background-color:white;
}


/*======================================================*/
/*	凹凸、影付きボタン									*/
/*======================================================*/
/* ボタン名称、共通CSS 			*/
.BtnCCOM{
	/* ボタン名称 				*/
	font-family:monospace;
	font-size:110%;
	font-weight:900;
	color:black;
	padding:5px;

	/* ボタン枠幅、色 			*/
	border-width:12px;
	border-color:silver;
	background-color:silver;

	/* カーソルオーバー時の形状	*/
	cursor:pointer;
}

/* ボタン形状（二重枠） 	*/
.BtnCBXD{
	border-top-style:ridge;
	border-left-style:ridge;
	border-right-style:ridge;
	border-bottom-style:ridge;
}

/* ボタン形状（凹） 				*/
.BtnCBXI{
	border-top-style:inset;
	border-left-style:inset;
	border-right-style:inset;
	border-bottom-style:inset;
}

/* ボタン形状（凸） 				*/
.BtnCBXO{
	border-top-style:outset;
	border-left-style:outset;
	border-right-style:outset;
	border-bottom-style:outset;
}

.BtnMaruKado{
/*	width:100px;	*/
	height:50px;	/* 50 */
	font-size:110%;
    font-weight:bold;
    text-decoration:none;
/*    display:block;	*/
    text-align:center;
    padding:8px 0 10px;
/*    color:#fff;	*/
	color:black;
    background-color:#49a9d4;
    border-radius:6px;					/* 丸角のボックス 		*/
    box-shadow:2px 2px #1a6ea0;			/* 影で凹凸感をつける 	*/
}

.BtnMaruKado2{
    font-size:14px;
    font-weight:bold;
    text-decoration:none;
    text-align:center;
/*    padding:8px 0 10px;	*/
    padding:4px 0 5px;
	color:black;
    background-color:#49a9d4;
    border-radius:6px;					/* 丸角のボックス 		*/
    box-shadow:2px 2px #1a6ea0;			/* 影で凹凸感をつける 	*/
}

/*======================================================*/
/*	ユーザ名表示										*/
/*======================================================*/
.Uname{
	font-family:monospace;
	font-size:100%;
	text-align:center;
	width:95px;
/*	border-style:none;	*/
	background-color:yellow;	/* transparent */
}


/*======================================================*/
/*	項目名表示用（枠無し）								*/
/*======================================================*/
.ItemNb{
	font-family:monospace;
	font-size:70%;
	text-align:right;
	border-style:none;
	background-color:transparent;
}


/*======================================================*/
/*	年月日一覧表示用（枠無し）							*/
/*======================================================*/
.DayC01{
	font-family:monospace;
	font-size:75%;
	width:180px;
	background-color:silver;
}


/*======================================================*/
/*	駐車場 予約者名表示（ボタンリスト）
/*======================================================*/
.BtnList{
	width:85px;
	font-family:monospace;
	font-size:100%;
	text-align:center;
	border-style:solid;
	border-width:1px;
	border-color:bkack;
	background-color:white;
}

/*======================================================*/
/*	バス・車 予約者名表示（ボタンリスト）
/*======================================================*/
.BtnList2{
	width:85px;
/*	width:60px;		*/
	font-family:monospace;
	font-size:92%;
	text-align:center;
	border-style:solid;
	border-width:1px;
	border-color:black;
	background-color:white;
}

/*======================================================*/
/*	発車時刻、車名表示用
/*======================================================*/
.TitleSub{
	font-family:monospace;
	font-size:90%;
	text-align:center;
	border-style:none;
	background-color:orange;
}


