/*  最近見た商品    縦スクロール  CSS */
@charset "utf-8";

/* 外枠 */
#out_table{
margin:5px auto 5px;  width:98%;
padding:0px;
border-spacing:0px;
  text-align:center;
  font-size:13px;
  background-color:#ffffff;
  border-radius:10px;
  border:1px solid #d2d2d2;
}

/* タイトル */
#title_recent{
  text-align:center;
  font-size:14px; margin:0; padding:5px 0 5px;
  font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  text-shadow:1.1px 1.1px 1px #aaaaaa; letter-spacing:0.2em;
}


/* 外枠のラッパー */
.sly-vertical-wrapper {
  width: 100%;
  text-align: center;
}

/* フレーム（ここで表示する高さを制限する） */
.v-frame {
  width: 100%;
  height: 356px; /* アイテム数個分が表示される高さに設定 */
  overflow: hidden;
  margin: 0 0 1px;
}

.v-frame ul {
  list-style: none; 
  margin: 0;
  padding: 0;
}

/* アイテム */
.v-frame li {
  width: 100%;
  height: 70px; /* 各アイテムの高さ */
  margin-bottom: 1px; /* アイテム間の余白 */
  line-height: 70px;
  box-sizing: border-box;
}

/* ▼▲ボタンのスタイル */
.btn-prev, .btn-next {
  width: 100%;
  padding: 3px 0 3px; font-size:12px; border:1px solid #d0fffe; border-radius:10px;
  cursor: pointer;
}
/* 最初のアイテムのとき、上ボタンを半透明にする（クリックも無効化） */
.btn-prev.disabled,
/* 最後のアイテムのとき、下ボタンを半透明にする */
.btn-next.disabled {
  opacity: 0.3;
  pointer-events: none; /* クリックイベントを無効化 */
}




.vertical_table_0{
  background: #f6f6f6;   /* アイテム背景  */
  padding:0;
  margin:0 0 2px;
  border-top:1px solid #d9dcdc;
  font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}
.vertical_table_0 table{ 
	width:100%;  height:70px;  /* 商品データ 縦*/
	margin:0;padding:0; border-spacing:0;
}
/*画像表示部*/
.vertical_table1{
  width:90px;height:100%;
	margin:0;padding:0; 
}
.vertical_table1 img{ padding:0; margin:0; vertical-align:middle;}

/*データ表示部*/
.vertical_table2{
  text-align:left;vertical-align:top; 
  padding:5px 1px 0 1px; 
  font-size:12px;
  line-height:130%;
  font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}
.vertical_head{font-size:10px;}/*商品名*/
.vertical_number{font-size:9px;}/*型番*/
.vertical_price{/*価格*/
  color:#ff0000;
  font-weight:bold;
  font-size:11px;
  letter-spacing:0.05em;
}
.vertical_unit_tax{/*税込*/
  color:#000000;
  font-weight:normal;
  font-size:10px;
}
.vertical_price2{/*価格後テキスト*/
  color:#ff0000;
  font-size:10px;
  letter-spacing:0.05em;
}

/* オンマウス時の背景色*/
.vertical_table_0 a{display:block;width:100%;height:100%; text-decoration:none;}
.vertical_table_0 a:hover {background-color:#d7e3f4;}

/* ×削除ボタン 縦 */
.delbutton{width:15px;}
.delbutton a{ text-decoration:none;  font-size:13px; vertical-align:middle;}
.delbutton a:hover{ background-color:#ffdbed;}


/******* レスポンシブ *******/
@media screen and (max-width:760px){
#out_table{ width:97%; margin:0 auto 0;}

}