/*****************************************************

    全ての要素をリセット
    各ブラウザの表示を統一するための設定です

*****************************************************/
html {
	overflow-y: scroll;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, p {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	text-align: left;
}
img, abbr, acronym, fieldset {
	border: 0;
}
li {
	list-style-type: none;
}
img {
	vertical-align: middle;
}
.line {
	font-size: 1px;
	line-height: 1px;
}
/*--- default */
body {
	background: #fff;
	color: #333;
	font-size: 13px;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	text-align: center;
	border-top: 5px solid #4d4d4d;
}
body td, body th {
	font-size: 13px;
	vertical-align: top;
}
table {
	border-collapse: collapse;
}
/*****************************************************

    基本設定、リンクカラーなど

*****************************************************/
#wrap {
	width: 100%;
	height: 100%;
}
#wrapper, #makebanner, #topImage {
	width: 960px;
	margin: 0 auto;
}
#wrapper {
	margin-top: 30px;
}
a:link {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
a:visited {
	color: #666;
	text-decoration: none;
}
a:hover {
	opacitiy: .7;
	text-decoration: none;
}
a:active {
	color: #1049A0;
	text-decoration: underline;
}
.clear:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html .clear {
	zoom: 1;
} /* IE6 */
*:first-child+html .clear {
	zoom: 1;
} /* IE7 */
a:hover img {
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}
/*****************************************************

    レイアウト系

*****************************************************/
/*
ブレイクポイントの設定用クラス .bp768 .bp480 .bp420 
を切り替えて使ってください。
.column-box 又は .float-box に設定して下さい
*/

/* ------ カラム（flex） ------- */
.column-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.column-box.reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.column-box__2col {
	width: 48%;
}
.column-box__3col {
	width: 31%;
}
.column-box__4col {
	width: 23%;
}
/* カスタム用カラムボックス */
.column-box__80 {
	width: 80%;
}
.column-box__78 {
	width: 78%;
}
.column-box__70 {
	width: 70%;
}
.column-box__60 {
	width: 60%;
}
.column-box__50 {
	width: 50%;
}
.column-box__45 {
	width: 45%;
}
.column-box__45 {
	width: 45%;
}
.column-box__40 {
	width: 40%;
}
.column-box__38 {
	width: 38%;
}
.column-box__30 {
	width: 30%;
}
.column-box__20 {
	width: 20%;
}
/* 
最終行レイアウト維持のためのclass
コンテンツの数が変動する場合設定してください。
.column-box に設定してください。
*/
/*--------------------------------*/
/* ３カラム用 */
.column-box--3return::after {
	content: "";
	display: block;
	width: 31%;
}
/* ４カラム用 */
.column-box--4return::before {
	content: "";
	display: block;
	width: 23%;
	order: 1;
}
.column-box--4return::after {
	content: "";
	display: block;
	width : 23%;
}

/*--------------------------------*/
/* ブレイクポイント-汎用 */
@media screen and (max-width: 768px) {
.bp768 > [class*="column-box__"] {
	width: 100%;
	margin-bottom: 20px;
}
.bp768 > [class*="column-box__"]:not(:last-child) {
	margin-bottom: 20px;
}
}

@media screen and (max-width: 480px) {
.bp480 > [class*="column-box__"] {
	width: 100%;
}
.bp480 > [class*="column-box__"]:not(:last-child) {
	margin-bottom: 20px;
}
}

@media screen and (max-width: 320px) {
.bp320 > [class*="column-box__"] {
	width: 100%;
	margin-bottom: 20px;
}
}

/* ブレイクポイント-中央揃え */
@media screen and (max-width: 768px) {
.column-box.bp768-c {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.column-box.bp768-c > [class*="column-box__"] {
	width: 100%;
}
}

@media screen and (max-width: 480px) {
.column-box.bp480-c {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.column-box.bp480-c > [class*="column-box__"] {
	width: 100%;
}
}

@media screen and (max-width: 320px) {
.column-box.bp320-c {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.column-box.bp320-c > [class*="column-box__"] {
	width: 100%;
}
}

/* android4対策 */
@media screen and (max-width: 980px) {
body.and4 .column-box {
	display: block;
	text-align: center;
}
body.and4 .column-box > div {
	display: inline-block;
}
}
/* ------ カラム（float） ------- */

.float-box {
	overflow: hidden;
}
.float-box__left {
	float: left;
}
.float-box__right {
	float: right;
}

@media screen and (max-width: 768px) {
.bp768 > .float-box__left,  .bp768 > .float-box__right {
	float: none;
}
}

@media screen and (max-width: 480px) {
.bp480 > .float-box__left,  .bp480 > .float-box__right {
	float: none;
}
}

@media screen and (max-width: 320px) {
.bp320 > .float-box__left,  .bp320 > .float-box__right {
	float: none;
}
}
/*****************************************************

    ヘッダ #header

*****************************************************/
#headerWrap {
	width: 100%;
	background: #fff url(/images/original_design_default/samplesource/3/body_bg.png) repeat-x bottom;
	text-align: center;
	padding-bottom: 15px;
}
#header {
	width: 960px;
	position: relative;
	margin: 0 auto;
}
#head {
	margin-bottom: 10px;
	min-height: 75px;
	height: auto !important;
	height: 75px;
}
#header h1 {
	margin-top: 5px;
}
#h_logo {
	float: left;
	width: 360px;
	text-align: left;
}
#h_right {
	float: right;
	width: 600px;
}
/* サブナビゲーション */
#subNav {
	position: absolute;
	top: 5px;
	right: 0;
	text-align: right;
	height: 14px;
}
#subNav img {
	vertical-align: top;
}
#subNav li {
	display: inline-block;
 *display: inline;
 *zoom: 1;
	margin-left: 4px;
	vertical-align: top;
}
#subNav .M_loginBtn {
	display: block;
	width: 55px;
	height: 14px;
	background: url(/images/original_design_default/samplesource/3/hNav01.png) no-repeat 0 0;
	text-indent: -9999em;
	text-align: left;
	overflow: hidden;
}
#subNav .M_logoutBtn {
	display: block;
	width: 67px;
	height: 14px;
	background: url(/images/original_design_default/samplesource/3/hNav01_out.png) no-repeat 0 0;
	text-indent: -9999em;
	text-align: left;
	float: left;
	overflow: hidden;
}
#subNav .M_loginBtn:hover, #subNav .M_logoutBtn:hover {
	background-position: 0 -14px;
}
#subNav .M_helloMsg {
	float: left;
	font-size: 11px;
	margin-right: 5px;
	line-height: 14px;
}
#cart {
	position: absolute;
	top: 24px;
	right: 0;
}
/* 電話番号 */
#telnum, #M_basketTemp1 {
	float: right;
}
#telnum {
	padding: 0 10px;
}
#telnum p {
	margin: 4px auto 0;
}
#telnum em {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 20px;
}
/* 買い物カゴ */
#M_basketTemp1 .M_headItem {
	text-align: left;
}
/* グローバルナビゲーション */
#gNav {
	width: 960px;
	height: 50px;
}
#gNav li {
	float: left;
}
#gNav li a {
	display: block;
	width: 192px;
	height: 50px;
	text-indent: -9999em;
	overflow: hidden;
}
#gNav li#gNav01 a {
	background: url(/images/original_design_default/samplesource/3/gNav01.png) no-repeat top;
}
#gNav li#gNav02 a {
	background: url(/images/original_design_default/samplesource/3/gNav02.png) no-repeat top;
}
#gNav li#gNav03 a {
	background: url(/images/original_design_default/samplesource/3/gNav03.png) no-repeat top;
}
#gNav li#gNav04 a {
	background: url(/images/original_design_default/samplesource/3/gNav04.png) no-repeat top;
}
#gNav li#gNav05 a {
	background: url(/images/original_design_default/samplesource/3/gNav05.png) no-repeat top;
}
#gNav li#gNav01 a:hover, #gNav li#gNav02 a:hover, #gNav li#gNav03 a:hover, #gNav li#gNav04 a:hover, #gNav li#gNav05 a:hover {
	background-position: 0 -50px;
}
/*****************************************************

    左コンテンツ #leftContents

*****************************************************/
#leftContents {
	width: 180px;
}
#leftContents .section {
	margin-bottom: 20px;
}
#leftContents .inner {
	border: 1px solid #b2b2b2;
	border-top: none;
}
/* 検索input */
.inputWrap {
	padding: 10px;
}
.inputWrap img {
	float: left;
	_margin-left: 0;
}
.search_input {
	width: 128px;
	float: left;
	height: 20px;
	border: 1px solid #b2b2b2;
}
/* カテゴリーメニュー */
#l_category td {
	text-align: left;
}
/* 会員メニュー */
#l_member ul {
	text-align: right;
	margin-bottom: 5px;
}
#l_member li {
	display: inline;
	font-size: 11px;
	background: url(/images/original_design_default/samplesource/3/listIconR.png) no-repeat left;
	padding-left: 12px;
	margin-left: 2px;
}
#l_member li a {
	color: #333;
}
/* カレンダー */
#l_calendar table {
	margin-bottom: 5px;
	border-collapse: separate;
	border-spacing: 1px;
}
/* 中央揃え */
#l_owner, #l_banner {
	text-align: center;
}
#l_owner table {
	margin: 0 auto;
}
/* 投票 */
#l_poll img {
	margin: 0 2px;
}
#l_poll b {
	color: #333;
}
#l_poll input {
	margin-right: 5px;
}
#l_poll td {
	text-align: left;
}
#l_poll a img {
	display: none;
}
#l_poll a {
	display: block;
	height: 21px;
	float: left;
	margin-right: 4px;
}
#l_poll a#poll_b01 {
	width: 58px;
	background: url(/images/original_design_default/samplesource/3/poll_b01.png) no-repeat 0 0;
	margin-left: 28px;
}
#l_poll a#poll_b02 {
	width: 69px;
	background: url(/images/original_design_default/samplesource/3/poll_b02.png) no-repeat 0 0;
}
#l_poll a#poll_b01:hover, #l_poll a#poll_b02:hover {
	background-position: 0 -21px;
}
/* 掲示板 */
#l_board table {
	width: 100%;
}
#l_board td {
	text-align: left;
}
/* バナー */
.M_bannerList img {
	margin: 0 auto 8px;
	max-width: 100%;
}
/*****************************************************

    メインコンテンツ #rightContents

*****************************************************/
.rightContents {
	width: 716px;
	margin-left: 20px;
}
.rightContents .section {
	margin-bottom: 30px;
}
#r_subGroup table tbody > tr > td > table > tbody > tr {
  display: table;
}
#r_subGroup > table > tbody > tr > td {
  width: 232px;
	margin-bottom: 15px;
	display: inline-block;
}
#r_subGroup > table > tbody > tr > td table tbody tr td:last-child a {
  font-weight: bold;
  word-break: inherit;
}
#r_subGroup > table > tbody > tr > td:nth-child(2) {
  padding: 0 10px;
	font-size: 13px;
}
#r_subGroup > table > tbody > tr > td table tbody tr td:not(:last-child) {
  display: none;
}
#category + img {
  width: 100%;
}
/*----------------------------------------------------
    中央画面 #top
----------------------------------------------------*/
.r_left {
	float: left;
	width: 520px;
}
.r_right {
	float: right;
	width: 220px;
}
.titleMgn {
	margin-bottom: 10px;
}
#r_shopIntro {
	margin-bottom: 0;
}
/* 新着 */
#r_new .lims table {
	margin: 10px auto;
	width: 170px;
}
#r_new .lims table .woong td {
	text-align: left;
	font-weight: bold;
	padding-top: 5px;
}
#r_new .lims table .woong td a {
	font-weight: normal;
}
#r_new .lims table .woong td img {
	margin-left: 5px;
}
/* おすすめ */
#r_recommend .lims table {
	margin: 10px;
	width: 170px;
}
#r_recommend .lims table .woong td {
	text-align: left;
	font-weight: bold;
	padding-top: 5px;
}
#r_recommend .lims table .woong td a {
	font-weight: normal;
}
#r_recommend .lims table .woong td img {
	margin-left: 5px;
}
#r_recommend .lims table .woong td a b {
	font-weight: normal;
	font-size: 11px;
}

/* レビュー */
#r_review #M_reviewView, #r_review #M_reviewView table {
	width: 100%;
	margin: 0;
	text-align: left;
}
/* 最近チェックした商品 */
#r_recent #recent {
	margin-top: 10px;
}
#r_recent #recent .itemBox, #r_recent #recent .itemBox table {
	width: 130px;
}
#r_recent #recent .itemBox .itemImg a img {
	width: 120px;
  height: 120px;
  object-fit: contain;
}
#r_recent .name {
	word-break: normal;
}
#r_recent .name, #r_recent .price {
	text-align: left;
	margin: 5px 5px 0;
}
#r_recent .price {
	font-weight: bold;
}
#r_recent #recent .line {
	width: 0;
}
#r_recent #recent .line img {
	display: none;
}
/* お知らせ */
#top #r_news img {
	margin-bottom: 10px;
}
#top #r_news td.woong {
	padding: 2px 10px 2px 0;
	border-bottom: 1px dotted #b2b2b2;
	text-align: left;
}
/*----------------------------------------------------
    商品カテゴリーと商品詳細　共通
----------------------------------------------------*/
.pankuzu {
	text-align: left;
	line-height: 20px;
	margin-bottom: 10px;
}
.pankuzu a {
	padding: 0 5px;
	font-size: 11px;
	color: #0000ff;
}
.pankuzu > font:last-of-type {
	display: none;
}
.pankuzu font {
	color: #333;
	font-size: 11px;
}
/*----------------------------------------------------
    商品カテゴリー #category
----------------------------------------------------*/
/* カテゴリー */
#category h2 {
	font-size: 14px;
	margin-bottom: 20px;
	background: url(/images/original_design_default/samplesource/3/h2title.png) no-repeat center;
	line-height: 60px;
	height: 60px;
	padding-left: 20px;
}
/* 検索結果と並び替え */
#r_resultInfo {
	font-size: 11px;
	margin: 0 auto 10px;
}
.total {
	float: left;
}
.listSort {
	text-align: right;
}
.listSort li {
	display: inline;
}
.listSort li {
	display: inline;
	font-size: 14px;
	font-weight: bold;
}
.listSort li:not(:first-child) {
	background-color: #000;
  padding: 4px 10px;
	border-radius: 3px;
}
.listSort li:not(:first-child) a {
	color: #fff;
	text-decoration: none;
}
/* カテゴリーリスト */
#category .innerList {
	overflow: hidden;
	_zoom: 1;
	letter-spacing: -.40em; /* 文字間を詰めて隙間を削除する */
	text-align: left;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
}
#category .innerList li {
	vertical-align: top;
	letter-spacing: normal; /* 文字間を通常に戻す */
	width: 25%;/* 商品数が4つなので100%÷4=25% */
	display: inline-block;
 /display: inline;  /* IE用ハック */
 /zoom: 1;  /* IE用ハック */
	width: calc(25% - 2px);
	margin: 1px;
	padding: .8em;
}
#category .innerList::after, #category .innerList::before {
	content: "";
	display: block;
	width: calc(25% - 2px);
	height: 0;
}
#category .innerList::before {
	order: 1;
}
#category .innerBox {
	margin: 10px;
	text-align: center;
	position: relative;
	height: 100%;
}
#category .detail {
	text-align: center;
}
#category .detail .icon {
	display: flex;
	height: 42px;
}
#category .detail .icon img {
	height: auto;
	width: 42px;
}
#category .detail .icon img:not(:last-child) { 
	margin-right: 5px;
}  
#category .detail .quantity {
	display: none;
}
#category .name {
	margin-bottom: 5px;

}
#category .name a {
	color: #0000ff !important;
	font-size: 12px;
	font-weight: bold;
}
#category .imgWrap {
	text-align: center;
	margin-bottom: 5px;
}
#category .imgWrap img {
	width: 100%;
  height: 136px;
  object-fit: contain;
}
#category .imgWrap .icon {
	margin-top: 5px;
}
#category .imgWrap .icon img {
	width: 42px;
}
#category .price span {
	padding: 0 2px;
}
#category .price {
	font-weight: bold;
	color: #c00;
	font-size: 14px;
	margin-bottom: 5px;
	text-align: center;
}
#category .consumerPrice {
	font-size: 11px;
	color: #999;
	text-decoration: line-through;
}
#category .else {
	text-align: left;
	display: none;
}
#category .else li {
	float: none;
	width: auto;
	display: inline;
}
#category .M_lumpinput {
	text-align: right;
}
#category .matomegai {
	margin: 4px 0;
	display: inline-block;
}
#category .matomegai a {
	border: 1px solid #999;
	padding: 2px 5px;
	font-size: 11px;
	display: inline-block;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #999;
	text-decoration: none;
}
#category .matomegai a:hover {
	background: #999;
	color: #fff;
}
#category .content {
	border-top: 1px dashed #b2b2b2;
	padding: 10px 0;
	margin: 10px auto;
	border-bottom: 1px dashed #b2b2b2;
	font-size: 11px;
}
#category .M_item-stock-smallstock {
	color: #D42222;
}
#category .btnWrap {
	margin: 10px auto 5px;
	background: #e6e6e6;
	padding: 5px;
	text-align: center;
	/*position: absolute;*/
	bottom: 0;
	width: 100%;
}
#category .btnWrap a {
	width: 68%;
	margin: auto;
	display: block;
}
#category .btnWrap a img {
	width: 100%;
	margin-bottom: 10px;
}
#category .btnWrap .soldout {
	text-align: center;
	color: #cc0000;
}
#category .sub-category {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	text-align: left;
}
.sub-category::after, .sub-category::before {
	content: "";
	display: block;
	width: calc(25% - 2px);
	height: 0;
}
.sub-category::before {
	order: 1;
}
.sub-category div {
	width: calc(25% - 2px);
	margin: 1px;
	padding: .8em;
	text-align: center;
}
.sub-category div img {
	margin-bottom: 10px;
}
.sub-category div p {
	text-align: center;
	font-weight: 600;
}
/*----------------------------------------------------
  売り切れ時
----------------------------------------------------*/
#category .soldout {
  height: 136px;
  background-size: cover;
  position: relative;
}
#category .soldout a .sold-out__text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  font-weight: bold;
}
#category .soldout a {
  width: 100%;
  height: 136px;
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
/*----------------------------------------------------
    商品詳細 #detail
----------------------------------------------------*/
#itemLink {
	margin-bottom: 30px;
	font-size: 11px;
}
.item_prev {
	float: left;
	background: url(/images/original_design_default/samplesource/3/listIconL.png) no-repeat left;
	padding-left: 14px;
}
.item_next {
	float: right;
	background: url(/images/original_design_default/samplesource/3/listIconR.png) no-repeat right;
	padding-right: 14px;
}
#itemImg {
	/*float:left;*/
	width: 100%;
}
#itemInfo {
	/*float:right;*/
	width: 100%;
}
#itemInfo .basket-area__left {
	float: left;
	width: 300px;
}
#itemInfo .basket-area__right {
	float: right;
	width: 400px;
}
/*----------------------------------------------------
  商品個別ページ　アイコン調整
----------------------------------------------------*/
#itemInfo .sub-title {
  font-size: 16px;
	text-align: left;
}
#itemInfo .sub-title img {
  vertical-align: middle;
	margin: 10px 0;
	width: 42px;
}



/* [INFO]タグ */
/*#detailInfo {
	border: 1px solid #999;
  padding: 5px 10px;
}*/
#detailInfo table {
	width: 100%;
	margin-bottom: 10px;
}
#detailInfo table td {
	height: auto;
	text-align: left;
}
#detailInfo table td.M_consumer-price strike,
#detailInfo table td.M_original-price strike{
  text-decoration-color: #d42222;
}
#detailInfo table td.M_quantity-button-down,
#detailInfo table td.M_quantity-button-up{
	display: none;
}
#detailInfo table td.M_production {
	display: none;
}
#itemInfo #detailInfo table font {
	color: #d42222;
}
#detailInfo table input {
	margin-right: 0px;
}
#detailInfo table img {
	vertical-align: auto;/* IE対策 */
}
#detailInfo #M_usualValue td {
	font-size: 16px;
	padding: 10px 0;
}
#wrapper #makebanner #detailInfo #M_usualValue, #wrapper #makebanner #detailInfo #M_price2, #wrapper #makebanner #detailInfo #M_taxview {
	border: none;
	width: auto;
	font-weight: bold;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
}
form input.m_price{
width:55px !important;
margin-bottom: 3px;
font-weight: bold;
font-size: 16px;
}
#detailInfo #M_usualValue {
	font-size: 15px;
	font-weight: bold;
}
#detailInfo #M_taxview {
	width: auto;
}
#itemInfo > div.basket-area__right > p.original {
	display: none;
}
/* 拡大画像ボタン */
#viewButton {
	text-align: right;
}
/* 商品名 */
#detail h2 {
	margin-top: 5px;
	margin-bottom: 10px !important;
	font-size: 24px;
	font-weight: bold;
	border: none !important;
}
#detail h2 img {
	width: inherit;
	display: inline-block !important;
	width: 42px;
}
/* 商品詳細 */
#detail .detailTxt {
	border-top: 1px dotted #b2b2b2;
	padding: 10px 0;
	margin-bottom: 20px;
	text-align: left;
}
#detail .detailTxt a {
	color: #0000ff;
}
#detail .detailTxt__in {
	width: 600px;
}
/* 独自コード */
#wrapper #detail .detailTxt .code {
	margin-top: 2px;
	margin-bottom: 10px;
	margin-left: 4px;
	font-size: 12px;
}
/* オプション表 */
#wrapper #detail .stockList input {
	border: 0;
}
#wrapper #detail .stockList td {
	text-align: center;
        vertical-align: middle;
}
.M_inventory * {
	font-size: 13px;
}
.M_inventory table.stockList th, .M_inventory table.stockList td {
	padding: 6px !important;
}
.M_inventory span[class^="M_select-option"] {
	display: block;
	margin-top: 4px;
}
.M_inventory .M_select-option-soldout, .M_inventory .M_select-option-smallstock {
	color: #D42222;
}
.M_inventory .M_select-option-soldout {
	margin-bottom: 4px;
}
.M_select-option-restock-btn:link, .M_select-option-restock-btn:active, .M_select-option-restock-btn:visited {
	display: block;
	padding: 2px 10px;
	background: #333;
	color: #fff;
	border-radius: 3px;
	text-decoration: none;
	letter-spacing: -1px;
}
.M_select-option-restock-btn:hover {
	background: #666;
}
/* メールリンク */
#r_contact {
	margin: 10px 0 10px -5px;
}
#r_contact li {
	float: left;
	margin-left: 5px;
}
/* SNS */
#r_sns {
	margin-top: 10px;
}
#r_sns li {
	float: left;
}
#r_sns li.line {
	width: 80px;
}
#r_sns li.twitter {
	width: 75px;
}
#r_sns li.fb {
	width: 91px;
	margin: 0 10px;
}
/* カートにいれるボタン */
#basketBtn {
	margin-top: 10px;
}
#basketBtn .soldout{
        font-size: 16px;
        font-weight: bold;
	margin: 15px 0;
}
#restockSend  {
	background:#54B3DE; 
        width:100%;
        font-size:17px;
        padding:15px 0;
        font-weight:bold;
        display: inline-block;
        border-radius: 6px;
        box-sizing: border-box;
}
#restockSend a  {
        color:#fff;
        text-decoration: none;
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
}
#restockSend a img  {
        width: 30px;
        height: 30px;
}
.btn-basket {
	width: 100%;
	background: #cc0000;
	color: #fff !important;
	display: block;
	margin: 0 auto 10px;
	padding: 15px 0px;
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	border-radius: 5px;
	display: flex;
  justify-content: center;
  align-items: center;
}
.btn-fav a {
  width: 100%;
  border: solid 1.5px;
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  padding: 15px 0px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-basket,
.btn-fav a {
  transition: .2s; 
	text-decoration: none;
	line-height: 1;
}
.btn-basket:hover,
.btn-fav a:hover {
  letter-spacing: 2px;
	text-decoration: none;
}
.btn-basket:hover {
	background-color: #cc0000 !important;
}
.btn-basket img,
.btn-fav a img {
  margin-right: 10px;
	position: relative;
	bottom: 1px;
}
/*#basketBtn a {
	display: block;
	margin-bottom: 10px;
}
#basketBtn a img {
	width: 200px;
	margin: auto;
}
#basketBtn .soldout {
	text-align: center;
	color: #cc0000;
}*/
/* 追加商品説明文 */
#r_detailExt {
	margin-bottom: 0;
}
/* 追加商品画像 */
#r_addImg {
	margin-bottom: 0;
}
#r_addImg li {
	float: left;
	width: 33%;
	text-align: center;
	padding-bottom: 30px;
	line-height: 1.4;
}
#r_addImg li .inner {
	margin: 0 10px;
}
#r_addImg .addImg a {
	border: 1px solid #b2b2b2;
	padding: 5px;
	display: block;
}
#r_addImg li p {
	width: 100%;
	margin: 10px 5px 0;
}
/* レビュー */
#detail #r_review {
	margin-bottom: 40px;
}
#detail #r_review td {
	text-align: left;
}
#detail #r_review .imgLi input {
	border: none;
}
#detail #m_reviewView td {
	text-align: center;
}
/* 商品グループ */
#r_group {
	border-top: 1px dashed #B2B2B2;
	padding-top: 20px;
}
#r_group h3 {
	font-weight: bold;
	background: url(/images/original_design_default/samplesource/3/titleIcon.png) no-repeat left;
	padding-left: 20px;
}
#r_group #M_group {
	width: 100%;
	margin: 16px auto;
	border-collapse: collapse;
}
#r_group #M_group .itemBox, #r_group #M_group .itemBox table, #r_group #M_group td.itemImg {
	width: 170px;
}
#r_group #M_group .itemBox {
	vertical-align: top;
}
#r_group #M_group .name, #r_group #M_group .spe, #r_group #M_group .price {
	margin: 5px 5px 0;
	text-align: left;
}
#r_group #M_group .itemImg {
	text-align: center;
}
#r_group #M_group .line {
	width: 10px;
}
#r_group #M_group .line img {
	display: none;
}
#r_group #M_group .price {
	font-weight: bold;
}
/* 最近チェックした商品 */
#detail #r_recent {
	border-top: 1px dashed #b2b2b2;
	padding-top: 20px;
}

#detail #recent .itemBox, #detail #recent .itemBox table {
	width: 190px;
}
#detail #recent .itemBox table tbody tr {
	display: inherit;
}

/*#timer {
  display: none;
}*/
/*----------------------------------------------------
    ログインフォーム関係 .loginForm
----------------------------------------------------*/
.loginForm {
	margin-top: 20px;
}
.loginForm h3 {
	font-size: 14px;
	margin-bottom: 20px;
	background: url(/images/original_design_default/samplesource/3/h3title.png) no-repeat left;
	padding-left: 20px;
}
.loginForm .section {
	text-align: center;
}
.btnWrap {
	margin-top: 20px;
	text-align: center;
}
.loginForm .leadTxt {
	margin-bottom: 30px;
}
.loginForm .lostpass {
	text-align: center;
	font-size: 11px;
	margin-top: 5px;
}
.loginForm .formTable {
	margin: 20px auto 0;
	width: 400px;
}
.formTable th, .formTable td {
	border: 1px solid #b2b2b2;
	padding: 6px 8px;
}
.formTable th {
	background: #eee;
	width: 120px;
}
.M_nameList input, #r_review input, #r_review textarea {
	padding: 2px;
	border: 1px solid #b2b2b2;
}
.loginForm .formTable input {
	width: 200px !important;
}
/*----------------------------------------------------
    会員ログイン #memberlogin
----------------------------------------------------*/
#memberLogin .btnWrap {
	overflow: hidden;
	_zoom: 1;
}
#memberLogin .btnWrap div {
	float: left;
	width: 360px;
	padding-bottom: 20px;
}
#memberLogin .btnWrap #newMember {
	border-right: 1px dotted #b2b2b2;
}
#memberLogin .btnWrap p {
	margin: 20px;
}
/*----------------------------------------------------
    注文履歴ログイン #orderlogin
----------------------------------------------------*/
/*----------------------------------------------------
    パスワード紛失 #orderlogin
----------------------------------------------------*/
/*----------------------------------------------------
    約款 #contract
----------------------------------------------------*/
#contractBox {
	width: 700px;
	height: 280px;
	overflow: auto;
	border: 1px solid #b2b2b2;
	padding: 10px;
	text-align: left;
	margin-top: 20px;
}
/*----------------------------------------------------
    会員登録修正フォーム #member
----------------------------------------------------*/
#memberForm #M_entryForm {
	margin: 30px 10px 20px;
	width: 740px;
	border-top: 1px solid #b2b2b2;
	border-left: 1px solid #b2b2b2;
}
* html #memberForm #M_entryForm {
	position: relative;
}
#memberForm #M_entryForm th, #memberForm #M_entryForm td {
	border-bottom: 1px solid #b2b2b2;
	border-right: 1px solid #b2b2b2;
	padding: 8px;
}
* html #memberForm #M_entryForm th, * html #memberForm #M_entryForm td {
	position: relative;
}
#memberForm #M_entryForm th {
	background: #eee;
	width: 160px;
}
#memberForm .M_txt {
	font-size: 11px;
	margin-left: 10px;
}
#memberForm #mailreceiveN, #memberForm #sex1 {
	margin-left: 10px;
}
#memberForm .M_ex, #memberForm .M_info {
	font-size: 11px;
	color: #666;
}
#memberForm .M_post {
	display: block;
	width: 96px;
	height: 22px;
	background: url(/images/original_design_default/samplesource/3/r_postBtn.png) no-repeat;
	float: left;
	text-indent: -9999em;
	overflow: hidden;
	_zoom: 1;
}
#memberForm #mailreceiveY, #memberForm #mailreceiveN, #memberForm #sex0, #memberForm #sex1 {
	border: none;
}
#M_changepw #M_changepwTable th {
	background: #615D5C;
}
/* 退会する */
#r_leave img {
	display: none;
}
#r_leave a {
	display: block;
	width: 81px;
	height: 22px;
	margin-top: 5px;
	background: url(/images/original_design_default/samplesource/3/memberjoin_escape.png) no-repeat 0 0;
}
#r_leave a:hover {
	background-position: 0 -22px
}
/*----------------------------------------------------
    ポイント #point
----------------------------------------------------*/
#r_pointData {
	border: 1px solid #b2b2b2;
	background: #eee;
	padding: 10px;
	margin: 20px 60px 30px;
}
#r_pointData p {
	text-align: center;
}
#r_pointData strong {
	font-size: 15px;
	font-weight: bold;
	color: #cc0000;
}
#r_pointList table {
	border-collapse: separate;
	width: 400px;
	margin: 0 180px;
	border-spacing: 0;
}
#r_pointList td {
	border: 1px solid #b2b2b2;
	padding: 8px;
	text-align: center;
}
#r_pointList td font {
	font-size: 13px;
}
/*----------------------------------------------------

    商品検索 #search
----------------------------------------------------*/
#r_searchName {
	margin: 20px 0 20px;
}
#r_searchName font {
	color: #333;
	font-weight: bold;
}
#r_searchInput {
	background: #dedede;
	padding: 10px;
	overflow: hidden;
}
#r_searchInput table {
	width: 700px;
	background: #fff;
}
#r_searchInput .btnWrap {
	margin-top: 10px;
}
#r_searchInput th, #r_searchInput td {
	border: 1px solid #b2b2b2;
	padding: 6px 8px;
	text-align: left;
}
#r_searchInput th {
	background: #eee;
}
#r_searchInput #searchPrice input {
	width: 60px;
}
#r_searchList table, #r_pager table {
	width: 100%;
}
.searchResult {
	font-size: 14px;
	margin-bottom: 20px;
	background: url(/images/original_design_default/samplesource/3/searchIcon.png) no-repeat left;
	padding-left: 20px;
}
#r_searchList .innerList {
	letter-spacing: -.40em; /* 文字間を詰めて隙間を削除する */


	text-align: left;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	text-align: left;
}
#r_searchList .innerList li {
	width: 25%;
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal; /* 文字間を通常に戻す */
 /display: inline;  /* IE用ハック */
 /zoom: 1;  /* IE用ハック */
	width: calc(25% - 2px);
	margin: 1px;
	padding: .8em;
}
#r_searchList .innerList::after, #r_searchList .innerList::before {
	content: "";
	display: block;
	width: calc(25% - 2px);
	height: 0;
}
#r_searchList .innerList::before {
	order: 1;
}
#r_searchList .innerBox {
	margin: 10px;
	position: relative;
	height: 100%;
}
#r_searchList .name {
	margin-bottom: 5px;
}
#r_searchList .name a {
	color: #0000ff !important;
	font-size: 12px;
	font-weight: bold;
}
#r_searchList .imgWrap {
	text-align: center;
}
#r_searchList .imgWrap img {
	width: 100%;
  height: 136px;
  object-fit: contain;
}
#r_searchList .price {
	font-weight: bold;
	color: #c00;
	font-size: 14px;
	margin-bottom: 5px;
	text-align: center;
}
#r_searchList .else {
	text-align: left;
	display: none;
}
#r_searchList .else li {
	float: none;
	width: auto;
	display: inline;
}
#r_searchList .btnWrap {
	margin: 10px auto 5px;
	background: #e6e6e6;
	padding: 5px;
	text-align: center;
	/*position: absolute;*/
	bottom: 0;
	width: 100%;
}
#r_searchList .btnWrap a img {
	width: 100%;
}
#r_searchList .soldout {
	text-align: center;
	color: #cc0000;
}
.search-orijinal-box {
	text-align: left;
}
.search-orijinal-box {
	margin-bottom: 20px;
}
.search-orijinal-box .title {
	font-size: 16px;
	font-weight: bold;
}
.search-orijinal-box input, .search-orijinal-box select {
	border-width: 1px;
	border-style: solid;
	padding: 0px 3px;
	height: 30px;
	border-color: rgb(169, 169, 169);
}
.search-orijinal-box input[name="prize1"] {
	width: 89%;
}
/*----------------------------------------------------
  売り切れ時
----------------------------------------------------*/
#r_searchList .soldout {
  height: 136px;
  position: relative;
}
#r_searchList .soldout a .sold-out__text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  font-weight: bold;
}
#r_searchList .soldout a {
  width: 100%;
  height: 136px;
  z-index: 1;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#r_searchList .soldout a img {
  width: 100%;
  height: 136px;
  z-index: 0;
}
/*----------------------------------------------------
    まとめ買い #matomegai
----------------------------------------------------*/
/* まとめ買いタイトル */
#matomegai h2 {
	font-size: 14px;
	margin-bottom: 20px;
	background: url(/images/original_design_default/samplesource/3/h2title.png) no-repeat center;
	line-height: 60px;
	height: 60px;
	padding-left: 20px;
}
/* カテゴリーリスト */
#matomegai .innerList {
	overflow: hidden;
	_zoom: 1;
	letter-spacing: -.40em; /* 文字間を詰めて隙間を削除する */
	text-align: left;
}
#matomegai .innerList li {
	vertical-align: top;
	letter-spacing: normal; /* 文字間を通常に戻す */
	width: 25%;/* 商品数が4つなので100%÷4=25% */
	display: inline-block;
 /display: inline;  /* IE用ハック */
 /zoom: 1;  /* IE用ハック */
}
#matomegai .innerBox {
	margin: 10px;
	text-align: center;
}
#matomegai .detail {
	text-align: left;
}
#matomegai .name {
	margin-bottom: 5px;
}
#matomegai .imgWrap {
	text-align: center;
	margin-bottom: 5px;
}
#matomegai .price span {
	padding: 0 2px;
}
#matomegai .price {
	font-weight: bold;
	color: #333;
}
#matomegai .consumerPrice {
	font-size: 11px;
	color: #999;
	text-decoration: line-through;
}
#matomegai .else {
	text-align: left;
}
#matomegai .else li {
	float: none;
	width: auto;
	display: inline;
}
#matomegai .M_lumpinput {
	text-align: right;
}
#matomegai .content {
	border-top: 1px dashed #b2b2b2;
	padding: 10px 0;
	margin: 10px auto;
	border-bottom: 1px dashed #b2b2b2;
	font-size: 11px;
}
#matomegai .btnWrap {
	margin: 10px auto 5px;
	background: #e6e6e6;
	padding: 5px 0;
	text-align: left;
}
#matomegai .btnWrap .soldout {
	text-align: center;
	color: #cc0000;
}
#matomegai .btnWrap a, #matomegai .wishlistBtn {
	display: inline-block;
	text-indent: -9999em;
}
#matomegai .btnWrap a {
	width: 77px;
	height: 18px;
	margin-left: 5px;
}
#matomegai .wishlistBtn {
	width: 147px;
	height: 22px;
}
#matomegai .cartBtn {
	background: url("/images/original_design_default/samplesource/3/r_c_basketBtn.png") no-repeat;
}
#matomegai .quickBtn {
	background: url("/images/original_design_default/samplesource/3/r_c_buyBtn.png") no-repeat;
}
#matomegai .wishlistBtn {
	background: url("/images/original_design_default/samplesource/3/r_wishlistBtn.png") no-repeat;
}
#matomegai .btnWrap a:hover, #matomegai .wishlistBtn:hover {
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}
/*----------------------------------------------------
    買い物カゴ #basket
----------------------------------------------------*/
#r_basket {
	margin-bottom: 60px;
}
#basketTable {
	width: 100%;
	margin-top: 30px;
}
#basketTable th, #basketTable td {
	text-align: center;
	border-bottom: 1px solid #b2b2b2;
	padding: 6px;
}
#basketTable th {
	border-top: 2px solid #b2b2b2;
	border-bottom: 1px dashed #b2b2b2;
	white-space: nowrap;
}
#basketTable tr {
	display: inherit;
	width: 100%;
}
#basketTable .basketNum {
	width: 30px;
	padding: 0;
}
#basketTable .basketImg {
	width: 56px;
}
#basketTable .basketName {
	width: 400px;
	text-align: left;
}
#basketTable .basketMatomegai {
	margin-top: 4px;
	display: inline-block;
}
#basketTable .basketMatomegai a {
	border: 1px solid #999;
	padding: 2px 5px;
	font-size: 11px;
	display: inline-block;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #999;
	text-decoration: none;
}
#basketTable .basketMatomegai a:hover {
	background: #999;
	color: #fff;
}
.quantityWrap {

	display: table;
}
.quantityInput, .basketQunantity, .quantityAmend {
	display: table-cell;
	vertical-align: middle;
	padding: 0 2px;
}
#basketTable .basketQuantity td {
	border: none;
	padding: 0;
}
#basketTable .basketPoint {
	width: 70px;
}
#basketTable .basketPrice {
	width: 70px;
}
#basketTable .basketOption {
	text-align: left;
	margin-top: 4px;
}
#basketTable .basketHaisou {
	padding: 0;
}
#basketTable .carriageWrap {
	margin: 4px 0;
}
#basketTable .basketHaisou p {
	text-align: right;
}


#basketTable .basketHaisou .carriageMsg1 {
	color: #cc0000;
}
#basketTable .basketHaisou .carriageMsg2 {
	font-size: 11px;
}
#basketTable .basketBtns {
	width: 80px;
}
#basketTable .basketBtns img {
	margin-bottom: 2px;
}
#basketTable .basketTotal {
	text-align: right;
	background: #ebebeb;
	border-top: 3px solid #b2b2b2;
}
#basketTable .basketTotal em {
	font-weight: bold;
	font-size: 15px;
	color: #cc0000;
}
#basketTable .basketTotal a {
	text-decoration: underline;
	margin-left: 4px;
}
#basketTable .basketTotal a:hover {
	text-decoration: none;
}
#basketTable .totalWrap {
	width: 60%;
	margin: 0 0 0 auto;
}
#basketTable .totalItem {
	float: left;
	clear: left;
	width: 60%;
	text-align: right;
}
#basketTable .matomegaiWrap {
	margin-bottom: 4px;
}
#basketTable .basketEmpty p {
	text-align: center;
	margin: 10px auto;
}
#r_basket .btnWrap .btnBack {
	float: left;
	padding-top: 5px;
	margin-left: 10px;
}
#r_basket .btnWrap .btnOrder {
	float: right;
	margin-right: 10px;
}
/* Amazonボタン */
.amazonButtonWrap {
	margin-top: 10px;
}
.amazonButton {
	width: 205px;
}
/* お気に入りリスト */
#wishTable {
	width: 100%;
}
#wishTable th, #wishTable td {
	text-align: center;
	border-bottom: 1px solid #b2b2b2;
	padding: 6px;
}
#wishTable th {
	border-top: 2px solid #b2b2b2;
	border-bottom: 1px dashed #b2b2b2;
}
#wishTable .wishName {
	text-align: left;
	width: 240px;
}
#wishTable .wishQuantity input {
	margin-right: 4px;
}
/*----------------------------------------------------
    お知らせ #news
----------------------------------------------------*/
#r_news {
	margin-top: 30px;
}
#r_news #newsHead {
	text-align: left;
	border-bottom: 2px solid #b2b2b2;
	padding: 4px 0;
	font-size: 15px;
}
#r_news #newsHead span {
	margin-right: 10px;
	font-size: 11px;
	color: #999;
}
#r_news #newsContents {
	text-align: left;
	padding: 40px 20px;
	border-bottom: 1px dashed #b2b2b2;
	margin-bottom: 20px;
}
#r_news #newsAccess {
	text-align: right;
	font-size: 11px;
	color: #999;
	margin-top: 20px;
}
#r_news #newsNext {
	text-align: right;
	font-size: 11px;
	margin-bottom: 10px;
}
#r_news #newsList {
	margin-bottom: 20px;
}
#r_news #newsList .line {
	background: #fff;
}
#r_news #newsList .lims {
	border-bottom: 1px dashed #b2b2b2;
}
#r_news #newsListBtn {
	text-align: center;
}
/* ご利用ガイド */
#makebanner #guideMain {
	margin: 0 70px;
}
/*----------------------------------------------------
    カタログ #catalog
----------------------------------------------------*/
#catalog .ctlg_text {
	margin-top: 24px;
}
#r_catalog .catalogCart {
	text-align: right;
	margin: 8px 0;
}
/*****************************************************

    フッタ #footer


*****************************************************/
.pageTop {
	text-align: right;
	margin-top: 60px;
}
#footerWrap {
	width: 100%;
	background: #ccc;
	margin-top: 20px;
}
#footer {
	width: 960px;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 11px;
}
#f_nav {
	overflow: hidden;
	_zoom: 1;
	float: left;
}
#f_nav li {
	display: inline;
	padding: 0 1em 0 8px;
	background: url(/images/original_design_default/samplesource/3/footerDot.png) no-repeat left;
}
#f_nav li a:link, #f_nav li a:visited, #f_nav li a:active {
	text-decoration: none;
	color: #333;
}
#f_nav li a:hover {
	text-decoration: underline;
	color: #666;
}
#f_info {
	float: right;
	width: 400px;
	text-align: right;
	color: #666;
}
#f_info a {
	color: #666;
}
/*****************************************************

    2020　移行用css

*****************************************************/
header ul.ec_list li {
	box-sizing: content-box;
}
header .search-box #MakeShopTopSearchInput {
	width: 260px;
	padding: 0;
	height: 32px;
	box-sizing: border-box;
}
header .contact_ec, header .contact_repair {
	width: 48.9%;
	text-align: center;
	float: left;
}
.search-box #MakeShopTopSearchButton .search-btn {
	top: 29px !important;
	right: 0;
	padding: 0;
}
#contents {
	width: 960px;
	margin: auto;
}
.footer .half, .footer .full {
	box-sizing: content-box;
}
#guide {
	max-width: 640px;
	margin: auto;
	font-size: 15px;
	padding-top: 40px;
}

@media screen and (max-width: 640px) {
#guide {
	width: 96%;
}
}
#guide .sec {
	padding: 40px 0;
}
#guide .sec__in {
	width: 100%;
}
#guide .sec__in p, #guide .sec__in p + img, #guide .sec__in ul {
	margin-bottom: 40px;
}
#guide .sec__in p {
	font-size: 15px;
	line-height: 1.6;
}
#guide .link {
	padding: 15px 0;
	margin: 30px 0 0px;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}
#guide .sec__in ul li, #guide .link li {
	margin-bottom: 15px;
}
#guide h2 {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	display: inline-block !important;
	padding: 0 55px !important;
	border: none !important;
}
#guide h2:before, #guide h2:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 1px;
	background-color: black;
}
#guide h2:before {
	left: 0;
}
#guide h2:after {
	right: 0;
}
#guide h3 {
	color: #333;
	font-weight: bold;
	margin-bottom: 20px;
	border-left: 4px solid #333;
	padding-left: 7px;
}
#guide h4 {
	font-weight: bold;
	color: #000;
	margin-bottom: 6px;
}
.color-red {
	color: #ff0000;
}
.font-bold {
	font-weight: bold;
}
#guide table {
	width: 100%;
}
#guide .table-style01 th, #guide .table-style02 th, #guide .table-style01 td, #guide .table-style02 td {
	padding: 10px;
	border: 1px solid #ddd;
	font-size: 13px;
}
#guide td > p {
	font-size: 13px;
}
#guide .table-style01 th, #guide .table-style02 th {
	background: #f4f4f4;
}
/*----------------------------------------------------
  .table-style
----------------------------------------------------*/
.table-style01 th {
	width: 30%;
	text-align: left;
}
 @media only screen and (max-width:480px) {
.table-style01 th,  .table-style01 td {
	width: 100%;
	display: block;
	border-top: none;
}
.table-style01 tr:first-child th {
	border-top: 1px solid #ddd;
}
.table-style02 th, .table-style02 td {
	width: 20%;
	text-align: left;
}
@media only screen and (max-width: 480px) {
	 .table-style02 {
	margin: 0 -10px;
	}
	 .table-style02 tr {
	 display:block;
	 margin-bottom: 10px;
	}
	 .table-style02 th {
	 display:block;
	 width: 100%;
	}
	 .table-style02 td {
	 display: list-item;
	 width: 90%;
	 margin-left: 10%;
	 border:none;
	}
}
/*----------------------------------------------------
  ログイン
----------------------------------------------------*/
.top-login {
  text-align: center;		 
}
/*----------------------------------------------------
  レスポンシブ回避
----------------------------------------------------*/
@media screen and (max-width: 980px)　{
	header .left {
    width: 400px;
	}
	header .right {
    width: initial;
  }
	header .contact_ec p.title span img, 
	header .contact_repair p.title span img {
    width: 107px;
    height: auto;
  }
	.search-box {
    margin: 15px auto 45px 15px;
  }
}

/*----------------------------------------------------
  ランキング
----------------------------------------------------*/
#r_ranking .rankList{
    float:left;
    width:152px;
    position:relative;
}
#r_ranking em{
    display:block;
    text-indent:-9999em;
}
#r_ranking .rankImg{
    margin:5px auto;
}
#r_ranking #rank1 em{
    background:url(/images/original_design_default/samplesource/3/rankIcon1.png) no-repeat center;
    width:31px;
    height:25px;
}
#r_ranking #rank2 em{
    background:url(/images/original_design_default/samplesource/3/rankIcon2.png) no-repeat center;
    width:28px;
    height:22px;
}
#r_ranking #rank3 em{
    background:url(/images/original_design_default/samplesource/3/rankIcon3.png) no-repeat center;
    width:28px;
    height:22px;
}
#r_ranking #rank4 em{
    background:url(/images/original_design_default/samplesource/3/rankIcon4.png) no-repeat center;
    width:17px;
    height:17px;
}
#r_ranking #rank5 em{
    background:url(/images/original_design_default/samplesource/3/rankIcon5.png) no-repeat center;
    width:17px;
    height:17px;
}
#r_ranking p{
    text-align:left;
}
#r_ranking .rankPrice{
    font-weight:bold;
}
