@charset "Shift_JIS";

/* --------------------------------------------------------------------
	common　共通エレメント
-------------------------------------------------------------------- */
body {
	margin: 0;
	color: #404040;
	text-align: center;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	line-height: 140%;
	background: #ededed;
	overflow-x: hidden;
}

ol li {
	margin-left: 2em;
	list-style: decimal;
}

img {
	border: none;
	vertical-align: middle;
}

strong {
	font-weight: bold;
}

input {
	vertical-align: middle;
}

input {
	font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1em;
	padding: 1px;
	border-radius: 5px;
	position: relative;
}

textarea {
	font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1em;
	padding: 1px;
	border: 1px solid #999;
	border-radius: 5px;
	zoom: 1;
	position: relative;
}

input[type="text"]:not(.keyword_),
input[type="password"] {
	height: 1.2em;
	padding: 0.6em;
	margin: 5px 0;
	border: 1px solid #999;
	border-radius: 5px;
	position: relative;
}

input[type="text"]:focus:not(.keyword_),
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;
	}
}

/* ラジオボタンデザイン */
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;
	-webkit-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;
	-webkit-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;
	position: relative;
	border: 1px #bebebe solid;
}

/* タップ後のデザイン */
input[type="checkbox"]:checked:before {
	position: absolute;
	left: 2px;
	top: 11px;
	display: block;
	-webkit-box-shadow: 0 1px 1px;
	content: "";
	width: 6px;
	height: 2px;
	background: #000;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}

input[type="checkbox"]:checked:after {
	display: block;
	position: absolute;
	left: 7px;
	top: 10px;
	content: "";
	-webkit-box-shadow: 0 1px 1px;
	width: 10px;
	height: 2px;
	background: #000;
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}

label {
	margin: 0 20px 0 5px;
}

a:link {
	color: #999999;
	text-decoration: underline;
}

a:visited {
	color: #999999;
	text-decoration: underline;
}

a:active {
	color: #999999;
	text-decoration: none;
}

a:hover {
	color: #999999;
	text-decoration: none;
}

/* --------------------------------------------------------------------
	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;
}

/**/

/* 文整列 */
.lefttext_ {
	text-align: left;
}

.righttext_ {
	text-align: right;
}

.centertext_ {
	text-align: center;
}

/**/

/* 特定メッセージ（インライン） */
.error_ {
	color: #CC0000;
	font-weight: bold;
}

.notice_ {
	color: #993300;
	font-weight: bold;
}

.info_ {
	font-weight: bold;
}

/**/

/* 特定メッセージ（ブロック） */
div.error_,
table.error_ {
	background-color: #efefef;
	border: solid 1px #FF0099;
	padding: 8px;
	margin: 4px auto;
	text-align: left;
	width: 560px;
}

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;
}

ul.error_ a {
	color: #009ecd;
	text-decoration: underline;
}

/**/

/* 共通クラス(ブロック) */
.top_comment_ {
	padding: 10px 10px 0 10px;
	margin: -20px 0 25px 0;
}

.submit_ {
	margin: 20px auto;
	text-align: center;
}

.submit_ input,
.submit_ img {
	margin: 0px 16px;
	vertical-align: middle;
}

.message_ {
	padding: 0px 10px 0 10px;
}

p.message_ {
	margin-bottom: 10px;
	padding: 10px 10px 0 10px;
}

/* 共通クラス(その他) */
.hidden_ {
	visibility: hidden;
}

.nocell_ {
	border: none !important;
	background-color: transparent !important;
}

.hiddenEnter_ {
	width: 0;
	height: 0;
}

.disp_none_ {

	display: none;

}

.disp_block_ {

	display: block;

}

/* 価格表示 */
.price_pop_ {
	color: #CC0000;
	font-size: 10px;
}

.price_ {
	color: #000000;
}

/* --------------------------------------------------------------------
	common　ヘッドライン
-------------------------------------------------------------------- */
h1.goods_name_ {
	margin: 0 0 0 0;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
	padding-left: 14px;
	background: url(../img/usr/common/title_blue_left.png) left top no-repeat #009FCC;
}

h1.category_name_ {
	margin: 0 0 20px 0;
	padding: 10px;
	color: #ffffff;
	font-size: 21px;
	font-weight: normal;
	line-height: 140%;
	background: #009FCC;
}

h1.category_name_img_ {
	/* タイトルを画像にした場合 */
	margin-bottom: 20px;
}

h1.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;
}

.mainframe_body .event_name_,
.event_name_lower_ {
	background: #fff;
	color: #009Fcc;
	font-size: 16px;
	font-weight: bold;
}

.mainframe_body .event_name_>span,
.event_name_lower_>span {
	display: block;
	padding: 5px 20px;
	margin-left: 10px;
	border-left: #009FCC 4px solid;
}

.mainframe_body .event_ .common_headline2_ span {
	background: #fff;
}

h1.event_name_img_ {
	/* タイトルを画像にした場合 */
	margin-bottom: 20px;
}

h1.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;
}

h1.genre_name_img_ {
	/* タイトルを画像にした場合 */
	margin-bottom: 10px;
}

h1.topic_head_ {
	margin: 0 0 20px 0;
	padding: 10px;
	color: #003780;
	font-size: 21px;
	font-weight: normal;
	line-height: 140%;
	border-left: 5px solid #003780;
}

h1>span {
	background: url(../img/usr/common/title_bg_gray_right.gif) top right no-repeat;
	display: block;
	padding: 7px 20px;
	margin: 0 px;
}

h1.goods_name_>span {
	background: url(../img/usr/common/title_white_right.png) top right no-repeat #ffffff;
	padding-left: 10px;
	border-bottom: 1px dotted #009ECE;
}

/* 汎用ヘッドライン */
.common_headline1_ {
	/* h1相当 */
	margin: 0 0 0 0;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	padding-top: 14px;
	padding-left: 14px;
	background: url(../img/usr/common/title_bg_gray_left.gif) left top no-repeat #009FCC;
}

.common_headline1_ span {
	background: url(../img/usr/common/title_bg_gray_right.gif) top right no-repeat;
	display: block;
	padding: 7px 10px;
	margin: 0 px;
}

.col1_ .common_headline1_ {
	/* .col1_ 1カラムの場合 */
}

.mainframe_ .common_headline1_ {
	/* .mainframe_ 2カラムの場合 */
	width: 755px;
}

.contents_ .mainframe_ .common_headline1_ {
	/* .contents_ .mainframe_ 3カラムの場合 */
	width: 575px;
}

.common_headline2_ {
	/* h2相当 */
	margin: 0 0 0 0;
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	padding-left: 14px;
	background: #009FCC url(../img/usr/common/title_bg_gray_left.gif) left top no-repeat;
}

.common_headline2_ span {
	background: url(../img/usr/common/title_bg_gray_right.gif) top right no-repeat;
	display: block;
	padding: 7px 20px;
	margin: 0 px;
}

.loginform_ .common_headline2_ {
	/* ログインフォームでの場合 */
}

.common_headline3_ {
	/* h3相当 */
	margin: 0 0 10px 0;
	padding: 5px 0;
	font-size: 14px;
	font-weight: bold;
	border-bottom: 1px solid #CCC;
}

.img_headline_ {
	/* 画像ヘッドラインの場合 */
	margin-bottom: 10px;
}



/* --------------------------------------------------------------------
	common　イベント
-------------------------------------------------------------------- */
/* イベントへのリンク */
.event_ {
	width: 100%;
	overflow: hidden;
}

.event_banner_ {
	margin: 0 5px 10px 5px;
	float: left;
	display: inline;
}

.event_title_ {
	position: relative;
}

.event_title_>a {
	position: absolute;
	right: 4px;
	top: 4px;
}

/* --------------------------------------------------------------------
	common　ナビゲーション
-------------------------------------------------------------------- */
/* パンくず */
.navitopicpath_ {
	margin: 0 0 0 0;
	padding-bottom: 10px;
	background: #ededed;
}

.navitopicpath_ a {
	margin: 0 0.5em;
}

.navitopicpath_ span.current_ {
	margin: 0 0.5em;
	font-weight: bold;
}

/* ページジャンプ */
.navipage_ {
	text-align: right;
	padding: 10px;
}

.navipage_.top_ {
	/* ページジャンプ上部 */
	margin-bottom: 10px;
}

.navipage_.bottom_ {
	/* ページジャンプ下部 */
	margin-bottom: 10px;
}

.navipage_ .navipage_sum_ {}

.navipage_ .navipage_first_ a {
	padding-left: 18px;
	background: url(../img/sys/navifirst.gif) left center no-repeat;
}

.navipage_ .navipage_prev_ a {
	padding-left: 12px;
	background: url(../img/sys/naviprev.gif) left center no-repeat;
}

.navipage_ .navipage_next_ a {
	padding-right: 12px;
	background: url(../img/sys/navinext.gif) right center no-repeat;
}

.navipage_ .navipage_last_ a {
	padding-right: 18px;
	background: url(../img/sys/navilast.gif) right center no-repeat;
}

.navipage_now_ {
	margin: 0 1px;
	padding: 2px 7px;
	color: #C00;
	font-weight: bold;
	text-decoration: none;
	background: #FEE;
	border: 1px solid #F99;
}

.navipage_ .navipage_reverse_ {
	margin-right: 5px;
}

.navipage_ .navipage_forward_ {
	margin-left: 5px;
}

.navipage_ a {
	margin: 0 1px;
	padding: 2px 7px;
	background-color: #FFF;
	border: 1px solid #BFCDDF;
}

.navipage_ a:hover {
	text-decoration: none;
	background-color: #E5F0F8;
	border: 1px solid #7FB3DA;
}

/* 並び替え */
.navisort_ {
	margin-bottom: 5px;
	padding: 5px 0;
	font-size: 10px;
	width: 100%;
	overflow: hidden;
	border-bottom: 1px dotted #CCC;
}

.navisort_ dt {
	float: left;
	text-align: right;
	font-weight: bold;
	width: 8em;
}

.navisort_ dd {
	margin-left: 8em;
}

.navisort_now_ {
	color: #CC0000;
	text-decoration: none;
	margin: 2px 5px;
	white-space: nowrap;
}

.navisort_ a {
	margin: 2px 5px;
	white-space: nowrap;
}

/* 表示切替 */
.navistyle_ {
	padding: 10px 0 5px 0;
	font-size: 10px;
	width: 100%;
	overflow: hidden;
	border-bottom: 1px dotted #CCC;
}

.navistyle_ dt {
	float: left;
	text-align: right;
	font-weight: bold;
	width: 8em;
}

.navistyle_ dd {
	margin-left: 8em;
}

.navistyle_now_ {
	color: #CC0000;
	text-decoration: none;
	margin: 2px 5px;
	white-space: nowrap;
}

.navistyle_ a {
	margin: 2px 5px;
	white-space: nowrap;
}

/* ブランド絞込 */
.brand_name_ {
	width: 100%;
	overflow: hidden;
}

.brand_name_now_ {
	color: #CC3300;
	text-decoration: none;
	margin: 2px 5px;
	white-space: nowrap;
}

.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;
}

.maker_name_ a {
	margin: 2px 2px 2px 2px;
	white-space: nowrap;
}

/* --------------------------------------------------------------------
	common　フォーム
-------------------------------------------------------------------- */
.formlist_ {
	margin: 10px auto;
	border-collapse: collapse;
	border-top: 1px dotted #009ECE;
}

.formlist_ th {
	padding: 10px;
	font-weight: bold;
	white-space: nowrap;
	background: #F0F4F6;
	border-bottom: 1px dotted #009ECE;
}

.formlist_ td {
	padding: 10px;
	font-weight: normal;
	border-bottom: 1px dotted #009ECE;
}

.formlist_ .line0_ {
	background: #F8F8F8;
}

.formlist_ .line1_ {
	background: #FCFCFC;
}

.formdetail_ {
	border-collapse: collapse;
	border-top: 1px dotted #009ECE;
	margin: 10px auto;
}

.formdetail_ th {
	padding: 8px;
	text-align: left;
	font-weight: bold;
	vertical-align: top;
	background: #F0F4F6;
	border-bottom: 1px dotted #009ECE;
}

.formdetail_ td {
	padding: 8px;
	font-weight: normal;
	vertical-align: top;
	border-bottom: 1px dotted #009ECE;
}

.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;
}

.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;
}

/* --------------------------------------------------------------------
common genre
-------------------------------------------------------------------- */
.genre_h3 {
	border-bottom: 2px solid #009FCC;
	font-size: 17px;
	font-weight: bold;
	margin: 24px 10px 12px 10px;
	padding-bottom: 3px;
}

ul.genre_att {
	border: 1px solid #CCC;
	margin: 10px;
	padding: 10px;
}

ul.genre_att li {
	padding-left: 1em;
	text-indent: -1em;
}

.genre_title_txt {
	border-left: 3px solid #009fcc;
	margin: 0 10px 10px;
	font-size: 20px;
	padding: 3px 10px;
}

.genre_period_txt {
	margin: 0 10px 10px;
	padding: 0 10px;
}

.genre_period_txt span {
	font-size: 16px;
}

.genre_txt_wrap {
	padding: 10px;
}

.genre_txt_wrap dl {
	background: #e6f8fd;
	margin: 0 0 10px;
	padding: 6px;
}

.genre_txt_wrap dl dt {
	font-weight: bold;
}

.genre_txt_wrap dl dd {
	margin: 0;
	padding: 0;
}

.genre_txt_wrap dl dt+dd {
	margin-top: 8px;
}

.genre_txt_wrap h3.btn {
	display: none;
}

.genre_txt_wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.genre_txt_wrap ul li {
	padding-left: 1em;
	text-indent: -1em;
}

.genre_txt_wrap ul li em {
	font-style: normal;
	font-weight: bold;
}

/* --------------------------------------------------------------------
 news info
-------------------------------------------------------------------- */
.blockNo10_ .info_block p {
	margin-bottom: 20px;
}

.blockNo10_ .info_block .link_area {
	border-radius: 8px;
	background: #e6f8fd;
	margin: 20px 0;
	padding: 16px;
	text-align: left;
}

.blockNo10_ .info_block dl:not(:last-child) {
	margin-bottom: 16px;
}

/* --------------------------------------------------------------------
アンケートフォーム
-------------------------------------------------------------------- */
.questionnaire_ .common_headline1_ {
	padding: 14px;
}

.questionnaire_ .top_comment_ {
	padding: 1rem;
}

.questionnaire_ .common_headline2_ {
	padding-bottom: 14px;
}

.questionnaire_ .questionnaire_box_content_ {
	margin: 1.5em;
}

.questionnaire_ .formdetail_ {
	margin: 1.5em;
}

/* --------------------------------------------------------------------
アイコン画像調整
-------------------------------------------------------------------- */
/* 必須 */
img[src$="sys/check.gif"] {
	width: 30px !important;
}

/* NEWリボン */
.icon_area_ img[src$="sys/new.gif"] {
	width: 47px !important;
}

/* 新商品 */
.icon_area_ img[src$="sys/new_detail.gif"] {
	width: 90px !important;
}

/* 予約リボン */
.icon_area_ img[src$="sys/reservation.gif"] {
	width: 47px !important;
}

/* 予約 */
.icon_area_ img[src$="sys/reservation_detail.gif"] {
	width: 90px !important;
}

/* 特価リボン */
.icon_area_ img[src$="sys/onsales.gif"] {
	width: 47px !important;
}

/* 特価 */
.icon_area_ img[src$="sys/onsales_detail.gif"] {
	width: 54px !important;
}

/* フェア対象 */
.icon_area_ img[src$="icon/fair.gif"],
.icon_ img[src$="icon/fair.gif"] {
	width: 90px !important;
}

/* 予約締切 */
.icon_area_ img[src$="icon/limit.gif"],
.icon_ img[src$="icon/limit.gif"] {
	width: 90px !important;
}

/* 送料無料 */
.icon_area_ img[alt="送料無料"],
.icon_ img[alt="送料無料"] {
	width: 90px !important;
}