﻿@charset "utf-8";

/* -----------------------------------------------
 * なおしてねっと
 * memberページ(./blog_login.php,
 *							./new_member.php
 *							./rule.php) CSS
 *
 * Author        : sue
 * CreationDate  : 08/05/30
 * LastUpdate    : 08/06/03
----------------------------------------------- */

/* ===============================================
 *【基本構成】
 *
 * 1.会員ログイン・新規会員登録
 *	1-1.会員ログイン
 *	1-2.新規会員登録
 * 2.新規会員登録画面、確認画面、エラーページ、確認画面
 *	2-1.会員登録画面全般の設定
 *	2-2.確認画面
=============================================== */

/* -----------------------------------------------
 * 1.会員ログイン・新規会員登録
----------------------------------------------- */

#blogLogin.centeringBox {
	width: 530px;
	margin-top: 32px;
	text-align: center;
}

		#blogLogin p {
			font-size: 100%;
		}


/* 1-1.会員ログイン
----------------------------------------------- */

#login {
	float: left;
	width: 235px;
}

	/* 背景に枠がついているところ */
	#login #loginForm {
		width: 235px;
		height: 144px;
		padding-top: 12px;
		text-align: center;
		background: url("../img/loginBack.gif") no-repeat;
	}

		#login #loginForm dl {
			width: 200px;
			margin: 0 auto 12px;
		}

		#login #loginForm dt {
			color: #607D28;
			font-weight: bold;
		}

			#login #loginForm dd {
				margin-bottom: 2px;
			}

				#login #loginForm dd input {
					width: 100%;
				}


/* 1-2.新規会員登録
----------------------------------------------- */

#newMember {
	float: right;
	width: 245px;
}

/* -----------------------------------------------
 * 2.新規会員登録画面、確認画面
 *	 エラーページ、確認画面
----------------------------------------------- */

/* 2-1.会員登録画面全般の設定
----------------------------------------------- */

/* 送信エラー */
h3.accent {
	margin: 0 0 12px 0;
}

#newMemberForm.centeringBox {
	width: 600px;
	margin-top: 32px;
	margin-bottom: 32px;
	text-align: center;
}

	#newMemberForm p {
		font-size: 90%;
	}

	#newMemberForm table {
		margin: 12px 0;
	}

		/* 背景色をつけたいtrに指定する */
		#newMemberForm table tr.row {
			background: #E8F1D7;
		}

		/* 一括指定 */
		#newMemberForm table th,
		#newMemberForm table td {
			padding: 12px;
			vertical-align: middle;
			clear: both;
		}

		/* th */
		#newMemberForm table th {
			font-size: 120%;
		}

			/* アイコンを右寄せしたいので、
			文字と画像をfloat */
			#newMemberForm table th span {
				float: left;
			}

			#newMemberForm table th img {
				float: right;
			}

		/* tdの中身 */
		#newMemberForm table td input {
			width: 100%;
		}

		#newMemberForm table td textarea {
			width: 100%;
			height: 120px;
		}

/* 2-2.確認画面
----------------------------------------------- */

/* 会員登録画面の設定を引き継ぐ。
	 確認画面専用の設定のみ、ここに記述する。 */

#newMemberForm table#confirm td p {
	font-size: 110%;
	margin: 0;
	line-height: 1.1;
}