@charset "utf-8";

/* style reset */

html { overflow-y: scroll; }

* {
	margin-top: 0;
	padding: 0;
	list-style-type: none;
	}


body { color: #000; }

body,
div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
p,blockquote,th,td {
	margin: 0;
	padding: 0;
	position: relative;
	}

img { border: 0; }

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
	}

body a {
	color: #0066CC;
	text-decoration: none;
}

body a:visited {
	color: #810081;
	text-decoration: none;
}

body a:hover {
	color: #999999;
	text-decoration: underline;
}


/* ===========================================

*Base Layout（共通）

1.500px Container
2.Header
3.Footer
4.Contents
5.Module

=========================================== */


/* 1. 500px Container
----------------------------------------------*/
#loginContainer {
	width: 500px;
	margin:30px auto;
	overflow: visible;
}

#loginContainer: after {
	content: "";
	display: block;
	clear: both;
	height: 1px;
	overflow: visible;
}


/* 2. Header
----------------------------------------------*/
#loginHeader {
	text-align: left;
}

#loginHeader:after {
	content: "";
	display: block;
	clear: both;
	height: 1px;
	overflow: visible;
}

#loginHeader h1 {
	padding-top: 10px;
	padding-bottom: 10px;
}


/* 3.Footer
----------------------------------------------*/
#footer{
	clear: both;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #666;
	font-size: 90%;
	text-align: center;
	border-top: 2px solid #666;
}


/* 4. Contents
----------------------------------------------*/
#loginMain {
	border: 1px solid #ccc;
	padding: 30px;
}

#loginMain h2 {
	margin-bottom: 20px;
	text-align: center;
	font-size: 120%;
	font-weight: bold;
}

#loginBox {
	text-align: center;
}

#loginBox table {
	margin:20px auto;
	line-height: 160%;
}
#loginBox table th {
	padding-right: 10px;
	text-align: right;
}
#loginBox table td {
	text-align: left;
}

#loginContact {
	margin-top: 20px;
	text-align: left;
	line-height: 140%;
}

.conBox {
	margin-top: 20px;
	border: 1px solid #ccc;
	padding: 10px;
	font-size: 90%;
	background: #FFFFCC;
}

.hpLink {
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: right;
	font-size: 80%;
}

.alert {
	color: #FF0000;
	line-height: 140%;
}


/* 4. Module
----------------------------------------------*/
.button {
	border: 1px solid #cccccc;
	background-color: #cccccc;
	background-image: -webkit-linear-gradient(top, #e5e5e5, #cccccc);
	background-image: linear-gradient(to bottom, #e5e5e5, #cccccc);
	border-radius: 4px;
	color: #333;
	line-height: 24px;
	-webkit-transition: none;
	transition: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 2px 6px;
}
.button:hover {
	border:1px solid #cccccc;
	background-color: #dbdbdb;
	background-image: -webkit-linear-gradient(top, #dbdbdb, #d1d1d1);
	background-image: linear-gradient(to bottom, #dbdbdb, #d1d1d1);
	color: #333;
}
.button:active {
	background: #cccccc;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
	color: #333;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}
.button:visited {
	color: #333;
}

/* Margin */
.mt10 { margin-top: 10px; }
.ml10 { margin-left: 10px; }
.ml20 { margin-left: 20px; }
.mr5 { margin-right: 5px; }

/* Font */
.bold { font-weight: bold; }


/* Clear */
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}
