@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
.dataTable{
	width: 100%;
    background-color: #fff;
}
.dataTable th {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color:#000;
	text-align:left;
	vertical-align:middle;
}
.dataTable td {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align:left;
	vertical-align:middle;

}
.narrowRow{
	display: table-row;
}
.wideRow{
	display:none;
}
.buttonArea {
	text-align: center !important;
	padding: 20px 0 0 0;
}
.content {
	padding: 10% 10%;
	border-style: solid;
	border-width: thick;
	border-color: #605B58;
	background-color: #E8E2D6;
	text-align: center;
}
.content > div {
	border-style: solid;
	border-width: thick;
	border-color: #605B58;
	width: 90%;
	padding: 5%;
}
h1 {
	display: inline-block;
	border-style: solid;
	border-width: 5px;
	border-color: #B5B5B5;
	border-radius: 5px;
	background-color: #fff;
	color: #000;
	padding: 1em 4em;
	margin: 0 0 50px 0;
}
.loginPanel {
	padding: 20px;
	border-style: solid;
	border-color: #B5B5B5;
	border-width: 5px;
	border-radius: 5px;
	background-color: #fff;
	width: auto;
	margin: 0 auto;
}
.registerButton{
    background-color: #5B9BD5;
    color:#000!important;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.narrowRow{
	display: none;
}
.wideRow{
	display: table-cell;
}
.loginPanel {
	width: 30em;
}
}