﻿@charset "utf-8"; /*文字コード指定*/

/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */

body, div, dl, dt, dd, ul, ol, ul,li,li2,h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td, img {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}

body {
	line-height: 1.5;/*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*フォントの種類指定(左から優先順位)*/
	font-size: 98%; /* フォントサイズ指定(%はブラウザに設定した標準文字サイズ(通常16px)に対する値)*/
	color: #333333; /*文字色指定*/
}



ol, ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
}

a { /*リンクの文字設定(マウスをのせる前)*/
	color: #0000FF; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

a:hover { /*リンクの文字設定(マウスをのせた時)*/
	color: #C74B15; /*文字色指定*/
	text-decoration: underline; /*テキストの装飾指定(下線、上線など)(underlineは下線を引く)*/
}

.color1 {
	color: #FF0033; /*文字色指定*/
}

/* ----- ヘッダー(ページの一番上の部分) ----- */

#header {
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
	height: 80px; /*領域の高さ指定*/
	width: auto; /*幅指定(autoは初期値に戻す)*/
	color: #333333; /*文字色指定*/
	background-image: url(../images/header.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

#header h1 {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	left: 5px; /*左からの距離(positionで指定している場合に適用)*/
	top: 10px; /*上からの距離(positionで指定している場合に適用)*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
}

#logo {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	left: 5px; /*左からの距離(positionで指定している場合に適用)*/
	top: 36px; /*上からの距離(positionで指定している場合に適用)*/
}

#headNav {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	right: 10px; /*右からの距離(positionで指定している場合に適用)*/
	top: 10px; /*上からの距離(positionで指定している場合に適用)*/
}

#sitemap {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	right: 10px; /*右からの距離(positionで指定している場合に適用)*/
	top: 50px; /*上からの距離(positionで指定している場合に適用)*/
}

/* ----- レイアウト ----- */

#container { /*container(入れ物、容器)の中に各要素(ボックス)を配置*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	margin: auto; /*ボックス外側の余白(autoはボックス幅や隣接する他ボックス幅による自動余白割り当て)*/
	background-color:#ffffff; /*背景色指定*/
}

#container a:hover img { /*画像にマウスをのせた時半透明にする*/
	filter: Alpha(opacity=70); /*視覚効果(IE独自) Alphaは透過表示 opacityは開始透明度*/
	opacity: 0.7; /*要素の透明度*/
}

#main {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin-right: -340px; /*ボックス外側右の余白*/
}

#content {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin: 10px 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	margin-left: -210px; /*ボックス外側左の余白*/
}

#content_inner {
	margin-left: 145px; /*ボックス外側左の余白*/
	margin-right: 180px; /*ボックス外側右の余白*/
}

#leftside {
	width: 140px; /*幅指定*/
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin: 1px 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	padding-left: 0px; /*ボックス内側左の余白*/
}
#rightside {
	width: 155x; /*幅指定*/
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin: 1px 2px; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	padding-right: 2px; /*ボックス内側右の余白*/
}

#content2 {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin: 10px 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	margin-left: -210px; /*ボックス外側左の余白*/
}

#content2_inner {
	margin-left: 155px; /*ボックス外側左の余白*/
	margin-right: 100px; /*ボックス外側右の余白*/
}

#rightside2 {
	width: 100x; /*幅指定*/
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin: 1px 2px; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	padding-right: 2px; /*ボックス内側右の余白*/
}


#leftside2 {
	width: 140px; /*幅指定*/
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin: 1px 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	padding-left: 0px; /*ボックス内側左の余白*/
}



/* ----- フッター(ページの一番下の部分) ----- */

#footer {
	clear: both; /*floatの回り込みを解除*/
	height: 70px; /*領域の高さを指定*/
	width: auto; /*幅指定(autoは初期値に戻す)*/
	background-image: url(../images/foot.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

#footer_inner {
	padding: 10px; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
}

#footer p {
	font-size: 0.75em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

/* ----- フッターメニュー ----- */

#footmenu {
	margin-bottom: 8px; /*ボックス外側下の余白*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

#footmenu li {
	padding-left: 15px; /*ボックス内側左の余白*/
	margin-left: 15px; /*ボックス外側左の余白*/
	border-left: solid 1px #949495; /*左境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	display: inline; /*要素の表示形式指定(inlineはインラインレベルで表示(リストを横並び))*/
	list-style-type: none; /*リストマーカーの種類指定(noneはなし)*/
}

#footmenu li.first {
	border-left: none; /*左境界線の一括指定(noneはなし)*/
}

/* ----- ナビゲーションメニュー(ヘッダーの下のメインメニュー) ----- */

.nav {
	height: 40px; /*領域の高さ指定*/
	width: auto; /*幅指定(autoは初期値に戻す)*/
	padding-left: 5px; /*ボックス内側左の余白*/
	border-top: solid 1px #B7B7B7; /*上境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	border-bottom: solid 1px #B7B7B7; /*下境界線の一括指定(solidは1本線,線の太さ,線の色)*/
}

.nav li {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

}

.nav li a {
	width: 130px; /*幅指定*/
	border-right: solid 1px #B7B7B7; /*右境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	color: #ffffff; /*文字色指定*/
	line-height: 40px; /*行の高さ指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
	display: block; /*要素の表示形式指定(blockはブロックレベルで表示)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

.nav, .nav li a {
	background-image: url(../images/menu.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

.nav li.first a {
	border-left: solid 1px #B7B7B7; /*左境界線の一括指定(solidは1本線,線の太さ,線の色)*/
}

.nav li a:hover {
	background-position: 0 -50px; /*背景画像の表示開始位置(値2つは左からと上からの距離)*/
}

.nav li ul {
	display: none; /*要素の表示形式指定(noneは表示しない)*/
}

.nav li:hover ul {
	display: block; /*要素の表示形式指定(blockはブロックレベルで表示)*/
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	z-index: 100; /*ボックスの重なり順序の指定(値が大きいほど上(前面)に表示)*/
}

.nav li ul li {
	float: none; /*要素を左か右に寄せて配置(noneは配置指定しない)*/
	font-weight: normal; /*文字の太さ指定(normalは標準)*/
}

/******************************************************************/
.nav li2 {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

}

.nav li2 a {
	width: 160px; /*幅指定*/
	border-right: solid 1px #B7B7B7; /*右境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	color: #ffffff; /*文字色指定*/
	line-height: 40px; /*行の高さ指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
	display: block; /*要素の表示形式指定(blockはブロックレベルで表示)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

.nav, .nav li2 a {
	background-image: url(../images/menu.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

.nav li2.first a {
	border-left: solid 1px #B7B7B7; /*左境界線の一括指定(solidは1本線,線の太さ,線の色)*/
}

.nav li2 a:hover {
	background-position: 0 -50px; /*背景画像の表示開始位置(値2つは左からと上からの距離)*/
}

.nav li2 ul {
	display: none; /*要素の表示形式指定(noneは表示しない)*/
}

.nav li2:hover ul {
	display: block; /*要素の表示形式指定(blockはブロックレベルで表示)*/
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	z-index: 100; /*ボックスの重なり順序の指定(値が大きいほど上(前面)に表示)*/
}

.nav li2 ul li2 {
	float: none; /*要素を左か右に寄せて配置(noneは配置指定しない)*/
	font-weight: normal; /*文字の太さ指定(normalは標準)*/
}

/******************************************************************/
.nav li3 {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

}

.nav li3 a {
	width: 100px; /*幅指定*/
	border-right: solid 1px #B7B7B7; /*右境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	color: #ffffff; /*文字色指定*/
	line-height: 40px; /*行の高さ指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
	display: block; /*要素の表示形式指定(blockはブロックレベルで表示)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

.nav, .nav li3 a {
	background-image: url(../images/menu.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

.nav li3.first a {
	border-left: solid 1px #B7B7B7; /*左境界線の一括指定(solidは1本線,線の太さ,線の色)*/
}

.nav li3 a:hover {
	background-position: 0 -50px; /*背景画像の表示開始位置(値2つは左からと上からの距離)*/
}

.nav li3 ul {
	display: none; /*要素の表示形式指定(noneは表示しない)*/
}

.nav li3:hover ul {
	display: block; /*要素の表示形式指定(blockはブロックレベルで表示)*/
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	z-index: 100; /*ボックスの重なり順序の指定(値が大きいほど上(前面)に表示)*/
}

.nav li3 ul li3 {
	float: none; /*要素を左か右に寄せて配置(noneは配置指定しない)*/
	font-weight: normal; /*文字の太さ指定(normalは標準)*/
}
/* ----- コンテンツ ----- */

.post {
	clear: both; /*floatの回り込みを解除*/
	width: auto; /*幅指定(autoは初期値に戻す)*/
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
}

.post h2 {
	font-weight: bold; 
	padding-left: 5px; /*ボックス内側左の余白*/
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	margin-bottom: 5px; /*ボックス外側下の余白*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	color: #333333; /*文字色指定*/
	line-height: 30px; /*行の高さ指定*/
	background-image: url(../images/h2.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

.post h_b {
	font-weight: bold; 
	padding-left: 5px; /*ボックス内側左の余白*/
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	margin-bottom: 5px; /*ボックス外側下の余白*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	color: #0000cc; /*文字色指定*/
	line-height: 30px; /*行の高さ指定*/
	/*background-image: url(../images/h2.gif); 背景画像指定　url(画像ファイルを指定)*/
	/*background-repeat: repeat-x; 背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

.post mini{

	font-size: 0.8em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #000000; /*文字色指定*/
}
.post mini2{

	font-size: 0.7em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #000000; /*文字色指定*/
}

.post mini9{

	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #000000; /*文字色指定*/
}
.post mini8{

	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #000000; /*文字色指定*/
}
.post mini_b{

	font-size: 0.8em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #0000aa; /*文字色指定*/
}

.post mini_bb{
	font-weight: bold; 
	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #0000FF; /*文字色指定*/
}

.post normal_b{
	font-weight: bold; 
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #0000FF; /*文字色指定*/
}


.post ans{

	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #FF0000; /*文字色指定*/
}
.post inyou{

	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/

	color: #0000FF; /*文字色指定*/
}

.post h_r {
	padding-left: 5px; /*ボックス内側左の余白*/
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	margin-bottom: 5px; /*ボックス外側下の余白*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	color: #FF0000; /*文字色指定*/
	line-height: 30px; /*行の高さ指定*/
	/*background-image: url(../images/h2.gif); 背景画像指定　url(画像ファイルを指定)*/
	/*background-repeat: repeat-x; 背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

.post ul {
	margin-bottom: 5px; /*ボックス外側下の余白*/


}

.post ul li {
	margin-left: 5px; /*ボックス外側左の余白*/
	background-position: 0px 4px; /*背景画像の表示開始位置(値2つは左からと上からの距離)*/
	padding-left: 5px; /*ボックス内側左の余白*/
	background-image: url(../images/arrow1.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: no-repeat; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/

}

.post dl {
	margin-bottom: 5px; /*ボックス外側下の余白*/
	font-size: 0.7em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/


}

.newlist {
	margin-bottom: 1px; /*ボックス外側下の余白*/
}

.newlist dl {
	width: auto; /*幅指定(autoは初期値に戻す)*/
	height: 80px; /*領域の高さ指定*/
	overflow: auto; /*領域に入りきらない内容の処理(autoはブラウザに依存(通常はみ出す場合はスクロール表示))*/
	padding-left: 4px; /*ボックス内側左の余白*/
	text-align: left; /*行の水平方向の揃え方(leftは左寄せ)*/
}

.newlist dt {
	color: #0000FF; /*文字色指定*/
}

.newlist dd {
	border-bottom: 1px solid #cccccc; /*下境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	margin: 2px 5px 2px 5px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
}

.img {
	padding: 2px; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
}

/* ---- 画像リストの設定 ----- */

.imglist {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}

.imglistbox {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	height: 180px; /*領域の高さを指定*/
	width: 204px; /*幅指定*/
	padding: 2px; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	margin: 0 1%; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	margin-bottom: 20px; /*ボックス外側下の余白*/
	overflow: hidden; /*領域に入りきらない内容の処理(hiddenははみ出た部分を表示しない)*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	border: 1px solid #cccccc; /*境界線の一括指定(solidは1本線,線の太さ,線の色)*/
}

.imglistbox img {
	margin: 2px 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
}

/* ----- サイドメニュー(ページ左側のメニュー) ----- */

#leftside h2 {
	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	padding-left: 5px; /*ボックス内側左の余白*/
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	color: #ffffff; /*文字色指定*/
	line-height: 30px; /*行の高さ指定*/
	background-image: url(../images/sidemenutop.gif); /*背景画像指定　url(画像ファイルを指定)*/
}

.sidemenu {
	width: 150px; /*幅指定*/
	overflow: hidden; /*領域に入りきらない内容の処理(hiddenははみ出た部分を表示しない)*/
	margin-bottom: 1px; /*ボックス外側下の余白*/
}

.sidemenu li {
	font-size: 0.8em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	margin-bottom: 0px; /*ボックス外側下の余白*/
	border-bottom: solid 1px #dcdcdc; /*下境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	list-style-type: none; /*リストマーカーの種類指定(noneはなし)*/
}



.sidemenu li a {
	padding-left: 10px; /*ボックス内側左の余白*/
	color: #333333; /*文字色指定*/
	line-height: 30px; /*行の高さ指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
	display: block; /*要素の表示形式指定(blockはブロックレベルで表示)*/
	background-image: url(../images/sidemenu.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: no-repeat; /*背景画像の並べかた(no-repeatは１つだけ表示)*/
}

.sidemenu li a:hover {
	background-position: 0 -40px; /*背景画像の表示開始位置(値2つは左からと上からの距離)*/
}

/* ----- サイドメニュー(ページ右側のメニュー) ----- */

#scroll {
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
	margin-top: 10px; /*ボックス外側上の余白*/
}

#scroll h3 {
	margin-bottom: 0; /*ボックス外側下の余白*/
	font-size: 0.7em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	color: #008000; /*文字色指定*/
}

#scroll ul {
	margin-left: 10px; /*ボックス外側左の余白*/
}

#scroll li li {
	padding-left: 10px; /*ボックス内側上の余白*/
	font-size: 0.7em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	background-position: 0px 5px; /*背景画像の表示開始位置(値2つは左からと上からの距離)*/
	padding-left: 10px; /*ボックス内側左の余白*/
	background-image: url(../images/arrow2.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: no-repeat; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}


/*注文フォーム用に使うCSS*/

	input, textarea, select {
	font-size: 0.9em;
	line-height: 1.0em;
	padding: 2px;
	margin: 0px 0px 0px 0px;
	font-family: monospace;
	}
	p {
	font-size: 1.0em;
	font-weight: normal;
	font-style: normal;
	line-height: 1.4em;
	}
	th {
	white-space: normal;
	text-align: left;
	font-weight: normal
	}
	li {
	list-style-type: none;
	}
	button {
	padding: 3px;
	}
	label {
	cursor: pointer;
	}
	
	body {
	background-color: #ffffff;
	background-image: url(/image/form-tpl/photo-sakura.jpg);
	background-repeat: no-repeat;
	background-position:left top;
	}
	
	.comform-wrap {
	position: relative;
	margin: 0px auto 6px auto;
	margin-top: 8px;
	max-width: 580px;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	opacity: 0.85;
	padding: 4px 4px 0px 4px;
	}
	
	.comform-title {
	text-align: center;
	max-width: auto;
	font-size: 16px;
	line-height: 1.4em;
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	font-weight: bold;
	padding: 4px 4px 4px 4px;
	margin: 8px 0px 16px 0px;
	}
	
	
	.comform-container {
	border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	box-sizing: border-box;
	}
	
	
	
	.comform-row {
	table-layout: fixed;
	display: table;
	width: 100%;
	}
	
	.comform-row .itemTitle {
	display: table-cell;
	width: 30%;
	vertical-align: top;
	padding: 10px 10px 10px 10px;
	font-weight: bold;
	line-height: 1.6;
	font-size: 15px;
	color: #333333;
	background-color: #ffffff;
	border: 0;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	box-sizing: border-box;
	}
	
	.comform-row .itemInput {
	display: table-cell;
	width: 70%;
	vertical-align: text-top;
	font-size: 15px;
	line-height: 1.6;
	color: #333333;
	background-color: #ffffff;
	padding: 10px 10px 10px 10px;
	border: 0;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	box-sizing: border-box;
	}
	
	
	.itemInput input[type="text"], .itemInput input[type="email"], .itemInput textarea, .itemInput select {
	font-size: 0.95em;
	font-family: monospace;
	line-height: 1.6;
	padding: 4px 8px 4px 8px;
	margin: 2px 0px;
	border: 1px solid #999999;
	}
	
	.itemInput select {
	padding: 3px 0px;
	max-width: 100%;
	}
	
	
	.itemInput input[type="text"], .itemInput input[type="email"], .itemInput textarea, .itemInput select {
	box-shadow: 0px 1px 2px 0px #ddd inset;
	border-radius: 4px;
	}
	
	.itemInput input[type="text"]:focus, .itemInput input[type="email"]:focus, .itemInput textarea:focus, .itemInput select:focus {
	box-shadow: 0px 0px 3px #f05050;
	}
	.itemInput label:hover {
	text-shadow: 0px 0px 2px #dd8080;
	}
	
	
	
	.annot {
	color: #dc143c;
	font-size: 0.9em;
	padding: 0px;
	display: inline-block;
	vertical-align: top;
	}
	
	.annot-upper {
	margin: 0px 4px 1px 0px;
	}
	
	.annot-lower {
	margin: 1px 4px 0px 0px;
	}
	
	
	.req-mark {
	display: inline-block;
	font-size: 0.8em;
	height: 1.4em;
	color: #ff0000;
	background-color: ;
	font-family: meiryo, 'Hiragino Kaku Gothic Pro', sans-serif;
	white-space: nowrap;
	border-radius: 4px;
	position: relative;
	top: -1px;
	padding: 0px 2px 0px 2px;
	text-shadow: 0px 0px 1px #ccc;
	margin: 0px 0px 0px 2px;
	}
	
	.checkLabel {
	margin: 0px 4px;
	font-size: 0.9em;
	}
	
	.tkaddress {
	display: inline-table;
	}
	
	.tkaddress th {
	background : 0;
	border: 0;
	padding: 0px 2px 0px 0px;
	text-align: left;
	}
	
	.tkaddress td {
	background : 0;
	border: 0;
	padding: 0px;
	}
	
	.tkaddress .search-address-button {
	padding: 1px 1px 1px 1px;
	font-size: 0.8em;
	}
	
	
	.choice-table {
	display: inline-table;
	border-spacing: 0;
	vertical-align: top;
	}
	
	.choice-table td {
	padding: 2px 4px 2px 18px;
	text-indent: -16px;
	}
	
	.choice-table td label {
	margin: 0px 0px 0px 2px;
	}
	
	
	.scale-table {
	}
	
	.scale-table td {
	text-align: center;
	padding: 0px 4px 0px 4px;
	}
	
	.blockConnect {
	display: inline-block;
	margin: 0px;
	vertical-align: top;
	}
	
	.comform-title, .itemTitle, .itemInput, .itemInput select, .annot, #form-button button {
	font-family: meiryo, "Hiragino Kaku Gothic Pro", sans-serif;
	}
	
	
	
	
	
	#shoppingform-table {
	border-collapse: collapse;
	}
	
	#shoppingform-table th {
	padding: 4px;
	text-align: center;
	border-bottom: 3px double #cccccc;
	}
	
	#shoppingform-table td {
	padding: 4px;
	text-align: right;
	}
	
	#shoppingform-table td.item-name {
	text-align: left;
	border-bottom: 1px solid #cccccc;
	}
	
	#shoppingform-table input {
	text-align: right;
	}
	
	
	.shoppingform-container {
	display: table;
	}
	
	.shoppingform-container .shoppingform-row input {
	text-align: right;
	padding: 1px 4px;
	height: 1.6em;
	line-height: 1.6em;
	}
	
	.shoppingform-parting {
	display: table;
	width: 100%;
	border-collapse: separate;
	border-spacing: 4px;
	}
	
	.shoppingform-head {
	font-weight: bold;
	text-align: center;
	}
	
	.shoppingform-row {
	display: table-row;
	box-sizing: border-box;
	}
	
	.shoppingform-col-0 {
	display: table-cell;
	box-sizing: border-box;
	}
	
	.shoppingform-col-1 {
	display: table-cell;
	white-space: nowrap;
	box-sizing: border-box;
	}
	
	.shoppingform-col-2 {
	display: table-cell;
	white-space: nowrap;
	box-sizing: border-box;
	}
	
	.shoppingform-col-3 {
	display: table-cell;
	white-space: nowrap;
	box-sizing: border-box;
	}
	
	.form-buttons {
	text-align: center;
	margin: 16px 0px 16px 0px;
	}
	
	.form-buttons button {
	font-size: 13px;
	}
	
	
	.form-buttons .deco-button {
	border: 1px solid #cccccc;
	border: 0;
	padding: 6px 24px;
	background-color: rgb(204,204,204);
	color: #333333;
	letter-spacing: 2px;
	font-size: 15px;
	line-height: 1.4em;
	border-radius: 6px;
	}
	
	.form-buttons .deco-button:active {
	position: relative;
	top: 2px;
	}
