@charset "UTF-8"; 

/* ---------------
console.css
ログイン画面に関わるスタイルの設定です。
--------------- */

/* ---------------
■■目次
■マージン・余白のリセット
■要素の再定義
■フォーム
--------------- */

/* ---------------
マージン・余白のリセット
--------------- */
body, div,
h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th ,td {
	margin: 0;
	padding: 0;
}

/* ---------------
要素の再定義
--------------- */
body {
	color: #333333;
	font-size: 14px; /* モダンブラウザ向け */
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka",  "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #ffffff;
}
/* ie6 only */
* html body ,
* html body td ,
* html body th {
	font-size: x-small;
}
/* ie7 only */
*+html body ,
*+html body td ,
*+html body th {
	font-size: small;
}

p {
	font-size: 100%;
	line-height: 1.5;
	}
h1, h2, h3, h4, h5, h6 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka",  "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:114%;
}

img {
	border: none;
}

input {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* リンクの設定 */
a {
outline : 0;
}
a:link {
border: none;
color: #0066CC;
text-decoration: none;
}
a:visited {
border: none;
color: #0033CC;
text-decoration: none;
}
a:active {
border: none;
color: #0033CC;
}
a:hover {
border: none;
color: #6633CC;
text-decoration: underline;
}

/* ---------------
フォーム
--------------- */

/* 入力エラー時の表示設定 */
label.validator-result-, label.validator-result-1 {
	display: none;
}
label.validator-result-error, label.validator-result-0 {
	display: block;
	color: red;
}
p.transaction-notice- {
	display: none;
}
p.transaction-notice-error {
	color: red;
}
body {
	text-align: center;
	background-color: #F9F9F9;
}
/* ログインフォーム囲み */
#loginBox {
	width: 340px;
	height: 290px;
	margin: 150px auto 0 auto;
	padding: 30px;
	background-color: #F0F0F1;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	text-align:left;
}
/* 入力フォーム部分 */
#formBox .loginDl ,
#formBox .loginDl dd{
	margin: 0px;
	padding: 0px;
}
#formBox .loginDl dt{
	margin: 10px 0 0 0;
	padding: 0px;
}
#formBox .loginDl dd .formSizeL{
	font-size: 1.4em;
	width: 334px;
}
/* a-blog cmsロゴ */
#logo {
	text-align: center;
}
/* バージョン表記 */
#version {
	margin-top: 20px;
	color: #474752;
	text-align: center;
	font-size: 13px;
}
/* パスワード忘れ・ログイン画面に戻るリンク部分 */
.loginLink {
	float:left;
	width:200px;
	font-size: 12px;
}
/* フォームボタン */
.loginAction {
	margin-right:10px;
	text-align:right;
}
/* 読者登録リンク囲み */
#subscribeBox {
	width: 340px;
	margin: 15px auto 0 auto;
	padding: 15px 30px;
	background-color: #F0F0F1;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	text-align:left;
}
/* 読者登録リンク */
.subscribeLink {
	font-size: 12px;
}
