@charset "UTF-8";

/* テーブルレイアウト(注文テーブル) */
.order_table
{
	table-layout: fixed;
}
.order_table td
{
}
.order_table input
{
	border: none;			/* ボーダー */
	text-align: right;		/* 右揃え */
}


/* テーブルレイアウト(個人情報テーブル) */
.address_table th
{
	table-layout: auto;
	text-align: left;		/* 左揃え */
}
.address_table input
{
	border: 1px #F9C solid;	/* ボーダー */
	font-size: small;			/* 文字サイズ */
}


/* プルダウンレイアウト *//* テキストエリアレイアウト */
select,textarea
{
	border: 1px #F9C solid;	/* ボーダー */
}
