@charset "Shift_JIS";

/* --------------------------------------------------------------------
	common　共通エレメント
-------------------------------------------------------------------- */
body {
	margin: 0;
	color:#402f2f;
	text-align:center;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:12px;
	line-height: 1.6;
	background: #FFF;
}
ol li {
	/*margin-left: 2em;*/
	/*list-style: decimal;*/
}
img {
	border: none;
	vertical-align: bottom;
}
strong {
	font-weight: bold;
}
input {
	vertical-align: middle;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1em;
	padding: 1px;
	cursor: pointer;
}
textarea {
    width: 99%;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1em;
	padding: 1px;
	border:1px solid #999;
	border-radius:5px;
	zoom: 1;
	position:relative;
}

input[type="text"],input[type="password"]{
	/*height:1.2em;*/
	padding:0.6em;
	border:1px solid #999;
	border-radius:5px;
	position:relative;
}

input[type="text"]:focus ,input[type="password"]:focus {
	border:solid 1px #EEA34A;
}

select {
	/*font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	border-radius:5px;
	height: 28px;
	line-height: 28px;
    padding-left: 0.3em;
    border:1px solid #999;
    /* IE8用 */
    font-size: 14px\9;
	padding-top: 2px\9;
	padding-bottom: 2px\9;
    position:relative;
    zoom: 1;
}

@-moz-document url-prefix() {
    Select {
		height: 28px;
		font-size: 14px;
		padding-top: 2px;
		padding-bottom: 2px;
    }
}


label {
	margin: 3px 20px 0 0px;
	line-height: 17px;
	padding-bottom:3px;
}
/* ラジオボタンデザイン */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    width:20px;
    height:20px;
    background:#fff;
    -webkit-box-shadow: 1px 1px 1px 1px inset;
    box-shadow: 1px 1px 1px 1px inset;
    -webkit-border-radius:10px / 10px;
    border-radius:10px / 10px;
    position: relative;
    margin-bottom:3px;
	margin-right:5px;
}

/* チェックの印を:before疑似要素を使って作成 */
input[type="radio"]:checked:before {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    margin: -4px 0 0 -4px;
    -webkit-box-shadow: 1 1px 1px ;
    box-shadow: 1 1px 1px ;
    -webkit-border-radius:10px / 10px;
    border-radius:10px / 10px;
    content: "";
    width: 9px;
    height: 9px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#000),
        to(#000)
    );
}

/* チェックボックスデザイン */
input[type="checkbox"]{
    -webkit-appearance:none;
    -moz-appearance: none;
    -ms-appearance: none;
    width:20px;
    height:20px;
    background:#fff;
    -webkit-box-shadow: 1px 1px 1px 1px inset;
    box-shadow: 1px 1px 1px 1px inset;
    position: relative;
    margin-bottom:3px;
    margin-right:5px;
}
/* タップ後のデザイン */
input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    top: 15px;
    display: block;
    -webkit-box-shadow: 0 1px 1px ;
    box-shadow: 0 1px 1px ;
    content: "";
    width: 10px;
    height: 4px;
    background: #000;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
}

input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 15px;
    content: "";
    -webkit-box-shadow: 0 1px 1px ;
    box-shadow: 0 1px 1px ; 
    width: 16px;
    height: 4px;
    background: #000;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
}


a:link {
	color:#5c5c5c;
	text-decoration: none;
}
a:visited {
	color:#5c5c5c;
	text-decoration: none;
}
a:active {
	color:#5c5c5c;
	text-decoration: underline;
}
a:hover {
	color:#5c5c5c;
	text-decoration: underline;
}
/* --------------------------------------------------------------------
	common　汎用クラス
-------------------------------------------------------------------- */
/* 文字サイズ */
.large_ {
	font-size: 120%;
}
.xlarge_ {
	font-size: 144%;
}
.small_ {
	font-size: 80%;
}
.xsmall_ {
	font-size: 64%;
}
/**/

/* フロート */
.leftfloat_ {
	float: left;
	display: inline;
}
.rightfloat_ {
	float: right;
	display: inline;
}
img.leftfloat_ {
	margin: 0 10px 10px 0;
}
img.rightfloat_ {
	margin: 0 0 10px 10px;
}
.clear_ {
	clear:both;
}
/**/

/* 文整列 */
.lefttext_ {
	text-align: left;
}
.righttext_ {
	text-align: right;
}
.centertext_ {
	text-align: center;
}
/**/

/* 共通クラス(特定メッセージ インライン) */
.error_ {
	padding:0 0 0 15px;
	color:#ff0000;
	font-weight:bold;
	font-size:12px;
    background: url(../img/usr/common/ic_arrow_02.gif) no-repeat left center;
}
.review_ .error_,
.review_ .bookmark_ {
    background:none;
}
.error_ .arrow_ {
	padding:0 0 0 15px;
	display:block;
	clear:both;
    background: url(../img/usr/common/ic_arrow_02.gif) no-repeat left center;
}
.notice_ {
	color:#993300;
	font-weight:bold;
	font-size:12px;
}
.info_ {
	color:#666666;
	font-weight:bold;
	font-size:12px;
}
.read {
	margin:15px 0;
}
.chk_ {
	color: #F9176D;
}
.indent1_ {
	padding:0 0 0 1em;
	text-indent:-1em;
}
/**/

/* 特定メッセージ（ブロック） */
div.error_, table.error_ {
	padding: 5px 5px 5px 17px;
	text-align:left;
    background: url(../img/usr/common/ic_arrow_02.gif) no-repeat left center;
}
div.notice_, table.notice_ {
	background-color:#efefef;
	border:solid 1px #996666;
	padding:8px;
	margin:4px auto;
	text-align:left;
	width: 580px;
}
div.info_, table.info_ {
	background-color:#efefef;
	border:solid 1px #666666;
	padding:8px;
	margin:4px auto;
	text-align:left;
	width: 560px;
}
ul.error_ {
	margin-left: 16px;
}
/**/

/* 共通クラス(ブロック) */
.top_comment_ {
	margin-bottom: 10px;
}
.submit_ {
	margin: 20px auto;
	text-align: center;
}
.submit_ input {
	margin: 0px 16px;
	vertical-align: middle;
	text-decoration:none;
	font-size:1;
	outline: none;
}
.submit_ a {
	margin: 0px 16px;
	vertical-align: middle;
	text-decoration:none;
	outline: none;
	border:none;
}
.submit_ img {
	outline: none;
	border:none;
	vertical-align: middle;
}
.message_ {
}
p.message_ {
	margin-bottom: 10px;
}
/* 共通クラス(その他) */
.hidden_ {
	visibility: hidden;
}
.nocell_ {
	/*border:none!important;*/
	background-color:transparent!important;
}
.hiddenEnter_ {
	width:0;
	height:0;
}
/* 価格表示 */
.price_pop_ {
    color: #F9176D;
    font-size: 12px;
    font-weight: normal;
}
.pop_price_ {
    color: #F9176D;
    font-size: 12px;
    font-weight: bold;
}
.price_ {
    font-size: 12px;
    font-weight: normal;
}
span.default_price_{
	width:80px;
	height:auto;
	position:relative;
	display:block;
	text-decoration:none;
	color: #868686;
        text-align: center;
	margin-left: 10px;
}
span.default_price_::after{
	content:" ";
	width:78px;
	height:auto;
	position:absolute;
	text-decoration:line-through;
	top:8px;
	left:0px;
	border-bottom: 1px solid #666;
}
span.default_price_:after{
	content:" ";
	width:78px;
	height:auto;
	position:absolute;
	text-decoration:line-through;
	top:8px;
	left:0px;
	border-bottom: 1px solid #666;
}
.default_price_ span {
    font-size: 10px;
    font-weight: normal;
    color: #5C5C5C;
}
#itemExp span.default_price_{
	width:80px;
	height:auto;
	position:relative;
	display:block;
	text-decoration:none;
	color: #868686;
        text-align: center;
}
#itemExp span.default_price_{
    font-size: 12px;
	height:auto;
	position:relative;
	display:inline;
	text-decoration:none;
	margin-left: 10px;
	color: #868686;
}
#itemExp span.default_price_::after{
	content:" ";
	width:85px;
	height:auto;
	position:absolute;
	text-decoration:line-through;
	top:8px;
	left:0px;
	border-bottom: 1px solid #666;
}
#itemExp span.default_price_:after{
	content:" ";
	width:100px;
	height:auto;
	position:absolute;
	text-decoration:line-through;
	top:10px;
	left:0px;
	border-bottom: 1px solid #666;
}

#itemExp .default_price_ span {
    font-size: 10px;
    font-weight: normal;
    margin-left: 10px;
    color: #5C5C5C;
}


/* 共通クラス(マージン */
/* top */
.mt0  { margin-top: 0 !important;}
.mt1  { margin-top: 1px !important;}
.mt2  { margin-top: 2px !important;}
.mt3  { margin-top: 3px !important;}
.mt5  { margin-top: 5px !important;}
.mt10 { margin-top: 10px !important;}
.mt15 { margin-top: 15px !important;}
.mt20 { margin-top: 20px !important;}
.mt25 { margin-top: 25px !important;}
.mt30 { margin-top: 30px !important;}

/* right */
.mr5  { margin-right: 5px !important;}
.mr10 { margin-right: 10px !important;}
.mr20 {	margin-right: 20px !important;}
.mr30 {	margin-right: 30px !important;}

/* left */
.ml5  {	margin-left:  5px !important;}
.ml10 { margin-left: 10px !important;}
.ml20 { margin-left: 20px !important;}
.ml30 { margin-left: 30px !important;}

/* bottom */
.mb0  { margin-bottom:    0 !important;}
.mb5  { margin-bottom:  5px !important;}
.mb10 { margin-bottom: 10px !important;}
.mb20 { margin-bottom: 20px !important;}
.mb30 { margin-bottom: 30px !important;}

/* clear */
.ma0  { margin: 0 !important;}

/* 共通クラス(パディング) */
/* top */
.pt0  { padding-top: 0 !important;}
.pt5  { padding-top: 5px !important;}
.pt10 { padding-top: 10px !important;}
.pt15 { padding-top: 15px !important;}
.pt20 { padding-top: 20px !important;}
.pt30 { padding-top: 30px !important;}

/* bottom */
.pb0  { padding-bottom: 0 !important;}
.pb5  { padding-bottom: 5px !important;}
.pb10 { padding-bottom: 10px !important;}
.pb15 { padding-bottom: 15px !important;}
.pb20 { padding-bottom: 20px !important;}
.pb30 { padding-bottom: 30px !important;}

/* top／bottom */
.ptb0  { padding-top: 0 !important; padding-bottom: 0 !important;}
.ptb5  { padding-top: 5px !important; padding-bottom: 5px !important;}
.ptb10 { padding-top: 10px !important; padding-bottom: 10px !important;}
.ptb15 { padding-top: 15px !important; padding-bottom: 15px !important;}
.ptb20 { padding-top: 20px !important; padding-bottom: 20px !important;}
.ptb30 { padding-top: 30px !important; padding-bottom: 30px !important;}
.pa0   { padding: 0 !important;}
/* CLEAR for BR <div class="clear"><br></div> */
.cleared {
	display: block;
	clear: both;
	width: auto;
	height: 1px;
	line-height: 0;
	overflow: hidden;
	margin: 0 0 -1px 0;
	padding: 0;
	background: transparent;
	font-size: 0;
}
.clearfix:after {
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	visibility: hidden;
	content: ".";
	font-size: 0.1em;
}
.clearfix { display: inline-block; }
/* Hides from Mac-IE \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}

/* --------------------------------------------------------------------
	common　ヘッドライン
-------------------------------------------------------------------- */
h1.optimaizedH1{
}

h2.goods_name_ {
	margin: 0 0 20px 0;
	padding: 10px;
	color: #003780;
	font-size: 21px;
	font-weight: normal;
	line-height: 140%;
	border-left: 5px solid #003780;
}
h2.category_name_ {
	margin: 0 0 20px 0;
	padding: 10px;
	color: #003780;
	font-size: 21px;
	font-weight: normal;
	line-height: 140%;
	border-left: 5px solid #003780;
}
h2.category_name_img_ { /* タイトルを画像にした場合 */
	margin-bottom: 10px;
}
h2.event_name_ {
	margin: 0 0 20px 0;
	padding: 10px;
	color: #003780;
	font-size: 21px;
	font-weight: normal;
	line-height: 140%;
	border-left: 5px solid #003780;
}
h2.event_name_img_ { /* タイトルを画像にした場合 */
	margin-bottom: 10px;
}
h2.genre_name_ {
	margin: 0 0 20px 0;
	padding: 10px;
	color: #003780;
	font-size: 21px;
	font-weight: normal;
	line-height: 140%;
	border-left: 5px solid #003780;
}
h2.genre_name_img_ { /* タイトルを画像にした場合 */
	margin-bottom: 10px;
}
h2.topic_head_ {
    margin:0 0 20px 0;
	padding:17px 20px 13px 37px;
	font-size:16px;
	font-weight:bold;
	border-top:#242322 2px solid;
	border-bottom:#242322 1px solid;
	color:#242322;
	background: url(../img/usr/common/ttl_h1.png) 10px center no-repeat;
}

/* 汎用ヘッドライン */
.common_headline1_ {
    margin:0 0 20px 0;
	padding:17px 20px 13px 37px;
	font-size:16px;
	font-weight:bold;
	border-top:#242322 2px solid;
	border-bottom:#242322 1px solid;
	color:#242322;
	background: url(../img/usr/common/ttl_h1.png) 10px center no-repeat;
}
.col1_ .common_headline1_ {
	width:903px;
    margin:0 0 20px 0;
	padding:17px 20px 13px 37px;
	font-size:16px;
	font-weight:bold;
	border-top:#242322 2px solid;
	border-bottom:#242322 1px solid;
	color:#242322;
	background: url(../img/usr/common/ttl_h1.png) 10px center no-repeat;
}
.mainframe_ .common_headline1_ {
    margin:0 0 20px 0;
	padding:17px 20px 13px 37px;
	font-size:16px;
	font-weight:bold;
	border-top:#242322 2px solid;
	border-bottom:#242322 1px solid;
	color:#242322;
	background: url(../img/usr/common/ttl_h1.png) 10px center no-repeat;
}
.common_headline2_ {
    background: #868686;
    border-radius: 2px;
    color: #FFFFFF;
    font-weight: bold;
    margin: 0 0 10px;
    padding: 10px;
}
.loginform_ .common_headline2_ {
}
.common_headline3_ {
	margin: 0 0 10px 0;
	padding: 5px 0;
	font-size: 14px;
	font-weight: bold;
	border-bottom: 1px solid #CCC;
}
.img_headline_ { /* 画像ヘッドラインの場合 */
	margin-bottom: 10px;
}

/*--------------------------------------------
	Title　商品名・カテゴリ名タイトル
---------------------------------------------*/
h1.goods_name_ {
	color:#402f2f;
	font-size:16px;
	font-weight:bold;
	text-align: left;
}
h1.category_name_,
h1.event_name_,
h1.genre_name_,
h1.mag_name_ {
    margin:0 0 20px 0;
	padding:17px 20px 13px 37px;
	font-size:16px;
	font-weight:bold;
	border-top:#242322 2px solid;
	border-bottom:#242322 1px solid;
	color:#242322;
	background: url(../img/usr/common/ttl_h1.png) 10px center no-repeat;
}
.mainframe_ h1.category_name_,
.mainframe_ h1.event_name_,
.mainframe_ h1.genre_name_,
.mainframe_ h1.mag_name_ {
    margin:0 0 20px 0;
	padding:17px 20px 13px 37px;
	font-size:16px;
	font-weight:bold;
	border-top:#242322 2px solid;
	border-bottom:#242322 1px solid;
	color:#242322;
	background: url(../img/usr/common/ttl_h1.png) 10px center no-repeat;
}
h1.event_name_img_ {
	padding:0;
	margin:0;
	margin-bottom:20px;
}

/* --------------------------------------------------------------------
	common　イベント
-------------------------------------------------------------------- */
/* イベントへのリンク */
.event_ {
	width: 100%;
	zoom:1;
}
.event_:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility:hidden;
}
.event_banner_ {
	margin: 0 0px 10px 0px;
	float: left;
	display: inline;
}
.event_title_ {
    background: #868686;
    border-radius: 2px;
    color: #FFFFFF;
    font-weight: bold;
    margin: 0 0 10px;
    padding: 10px;
}
.event_title_ span {
    color: #FFFFFF;
}
.event_title_ a {
	text-decoration:none;
    color: #FFFFFF;
}
.event_title_img_ {
	margin:10px 0;
}
.event_more_btn_ {
	padding:0 0 35px;
	text-align:center;
}
.event_title_btn_ {
    position: relative;
    margin-bottom: 20px;
}
.event_title_btn_ span {
    position: absolute;
    right: 0;
    top: 0;
}

/* --------------------------------------------------------------------
	common　ナビゲーション
-------------------------------------------------------------------- */
/* パンくず */
.navitopicpath_ {
    overflow: hidden;
	margin: 0 0 10px 0;
    font-size: 10px;
}
.navitopicpath_ a {
	margin: 0 0.5em;
}
.navitopicpath_ span.current_ {
	margin: 0 0.5em;
	font-weight: normal;
    font-size: 10px;
}
.navitopicpath_ div.block {
	float:left;
}
.navitopicpath_ div {
	float:right;
}

#bread-crumb-list {
	/*width: 100%;*/
	float: left;
}
#bread-crumb-list li {
	display: inline;
    font-size: 10px;
}

/* ページジャンプ */
.navipage_ {
	padding: 5px 0;
}
.navipage_ dl {
    overflow: hidden;
}
.navipage_ dt,
.navipage_ dd {
    padding: 3px 0;
}
.navipage_ dt {
    font-weight: bold;
    line-height: 22px;
	text-align:left;
}
.navipage_ dd {
	text-align:center;
}
.navipage_.top_ {		/* ページジャンプ上部 */
	margin-bottom: 10px;
}
.navipage_.bottom_ {	/* ページジャンプ下部 */
	margin-bottom: 10px;
}
.navipage_ .navipage_sum_ {
}
.navipage_ .navipage_first_ a,
.navipage_ .navipage_first_ a:hover {
	padding:10px 23px;
	text-indent:-9999px;
	font-size:0;
	background: url(../img/sys/page_back.png) left top no-repeat;
}
.navipage_ .navipage_prev_ a,
.navipage_ .navipage_prev_ a:hover {
	padding:10px 23px;
	text-indent:-9999px;
	font-size:0;
	background: url(../img/sys/page_back.png) left top no-repeat;
}
.navipage_ .navipage_next_ a,
.navipage_ .navipage_next_ a:hover {
	padding:10px 23px;
	text-indent:-9999px;
	font-size:0;
	background: url(../img/sys/page_next.png) right top no-repeat;
}
.navipage_ .navipage_last_ a,
.navipage_ .navipage_last_ a:hover {
	padding:10px 23px;
	text-indent:-9999px;
	font-size:0;
	background: url(../img/sys/page_next.png) right top no-repeat;
}
.navipage_now_ {
	margin:0 1px;
	padding: 2px 7px;
	color:#FFFFFF;
	font-weight:bold;
	text-decoration:none;
	background: url(../img/sys/page_number.png) center center no-repeat;
}
.navipage_ .navipage_reverse_ {
	margin-right: 5px;
}
.navipage_ .navipage_forward_ {
	margin-left: 5px;
}
.navipage_ a {
	margin: 0 1px;
	padding: 2px 7px;
    color: #242322;
}
.navipage_ a:hover {
    color: #fff;
	text-decoration: none;
	background: url(../img/sys/page_hover.png) center center no-repeat;
}

/* 並び替え */
.navisort_ {
	width: 100%;
    padding: 5px 0;
	margin: 0 0 2px 0;
	overflow: hidden;
	background:#f5f5f5;
}
.navisort_ dt {
	width: 5em;
	padding:0 0 0 1em;
	float: left;
	font-weight: bold;
}
.navisort_ dd {
	margin-left: 6em;
}
.navisort_now_ {
	color:#CC3300;
	text-decoration:none;
	margin:2px 2px 2px 2px;
	white-space: nowrap;
    border-right: 1px solid #8e8e8e;
    padding: 0 1em;
}
.navisort_ a {
	white-space: nowrap;
    border-right: 1px solid #8e8e8e;
    padding: 0 1em;
}
/* 表示切替 */
.navistyle_ {
	width: 100%;
    padding: 5px 0;
	margin: 0 0 2px 0;
	overflow: hidden;
	background:#f5f5f5;
}
.navistyle_ dt {
	width: 5em;
	padding:0 0 0 1em;
	float: left;
	text-align: left;
	font-weight: bold;
}
.navistyle_ dt.goods_brand_title_ {
	width: 5em;
}
.navistyle_ dd {
	margin-left: 6em;
}
.navistyle_now_ {
	color:#CC0000;
	text-decoration:none;
	margin:2px 5px;
	white-space: nowrap;
}
.navistyle_ a {
	white-space: nowrap;
    border-right: 1px solid #8e8e8e;
    padding: 0 1em;
}

/* ブランド絞込 */
.brand_name_ {
	width: 100%;
	overflow: hidden;
}
.brand_name_now_ {
	color:#CC3300;
	text-decoration:none;
	margin:2px 2px 2px 2px;
	white-space: nowrap;
    border-right: 1px solid #8e8e8e;
    padding: 0 1em;
}
.brand_name_ a {
	margin:2px 5px;
	white-space: nowrap;
}
/* メーカー絞込 */
.maker_name_ {
	width: 100%;
	overflow: hidden;
}
.maker_name_now_ {
	color:#CC3300;
	text-decoration:none;
	margin:2px 2px 2px 2px;
	white-space: nowrap;
    border-right: 1px solid #8e8e8e;
    padding: 0 1em;
}
.maker_name_ a {
	margin:2px 2px 2px 2px;
	white-space: nowrap;
}

/* --------------------------------------------------------------------
	common　フォーム
-------------------------------------------------------------------- */
.formlist_ {
	width:100%;
	margin:0 auto;
	border:#c9c9c9 1px solid;
	background:#fff;
}
.formlist_ th,
.formlist_ td {
    padding: 10px 15px;
    border-right: 1px solid #c9c9c9;
}
.formlist_ th {
    background-color:#f2f2f5;
    text-align: center;
}
.formlist_ td {
    border-bottom: 1px solid #c9c9c9;
}
.formlist_ .line0_ {
	background-color:#F8F8F8;
}
.formlist_ .line1_ {
	background-color:#FCFCFC;
}
.formdetail_ {
	width:100%;
	margin:0 auto;
	border:#c9c9c9 1px solid;
	background:#fff;
}
.formdetail_ th,
.formdetail_ td {
    padding: 10px 15px;
    border-top: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
}
.formdetail_ th {
	background-color:#f2f2f5;
	vertical-align:top;
    text-align:left;
}
.formdetail_ td {
}
.formdetailcard_ {
	margin:0 auto;
	margin-left:0px;
	float:none;
	border-collapse:collapse;
}
.formdetailcard_ th {
	border-top:1px dotted #CCC;
	border-bottom:1px dotted #CCC;
	font-weight:bold;
	line-height:15px;
	padding:8px;
	background-color:#F8F8F8;
	white-space:nowrap;
	text-align: left;
}
.formdetailcard_ td {
	border-top:1px dotted #CCC;
	border-bottom:1px dotted #CCC;
	font-weight:normal;
	line-height:15px;
	padding:8px;
	background-color:#FFF;
}
.formsublist_ {
	border-collapse: collapse;
}
.formsublist_ th {
	border:1px dotted #CCC;
	background-color:#FFF;
	font-weight:bold;
	white-space: nowrap;
}
.formsublist_ td {
	border:1px dotted #CCC;
	background-color:#FFF;
	font-weight:normal;
}
.must_ {
	margin-left: 10px;
	float: right;
	display: inline;
    color: #F9176D;
}

.classrequired {
	background: #ffeeee;
}
.classerror {
	background: #ffeeee;
}

/* --------------------------------------------------------------------
	common　Trace
-------------------------------------------------------------------- */
/* for Trace */
.tracecontent {
	text-align:left;
	background-color:#FFCCFF;
}
#__asptrace {
	text-align:left;
	background-color:#FFF;
}
span.tracecontent tr.subhead {
	background-color:#CCC;
}
span.tracecontent tr.alt {
	background-color:#eeeeee;
}
/* --------------------------------------------------------------------
	レコメンドエリア
-------------------------------------------------------------------- */
#fsrecommenddiv1 {
	margin-bottom:15px;
}


