﻿@charset "utf-8";

/* -----------------------------------------------
Topページ(./index.html) CSS

Creator    : sue
LastUpdate : 08/04/03
----------------------------------------------- */

/* ===============================================
【基本構成】

1.フォーム部分の設定
=============================================== */

/* -----------------------------------------------------------------------------
1.フォーム部分の設定
----------------------------------------------------------------------------- */


#form01 {
	width: 500px;
	margin: 0;
	font-size: 90%;
}

	#form01 h2 {
		margin-bottom: 10px;
	}
	
	#form01 p {
		margin: 10px;
		padding: 0;
		line-height: 1.2;
	}
	
	/* 必須 */
	#form01 .must {
		color: #8C0000;
		font-size: 80%;
	}
	
	/* ボタン */
	#form01 .btn {
		width: auto;
	}
	
	/*
	インプットフォームと、テキストエリアの設定
	*/
	#form01 input,
	#form01 textarea {
		width: auto;
	}
	
	#form01 input.btn01 {
		width: 100px;
		}


	/* フォームのテーブルの設定 */
	#form01 table {
		width: 100%;
		margin: 10px 0;
	}

		#form01 table th,
		#form01 table td {
			padding: 5px;
		}
		#form01 table td {
			width: 400px;
		}
		#form01 table th {
			width: 110px;
			color: #ffffff;
			text-align: right;
			font-size: 90%;
			line-height: 1.2;
			border-bottom: 5px solid #ffffff;
			background: #80C6D2;
		}
