@charset "utf-8";
/* CSS Document */

/*タブコンテンツ全体の要素*/

.ruijiTable{
  margin-top: 2em;
}

.ruijiItem {
  width: 100%;
  margin: auto;
}
.ruijiItem img{
  display: block;/* 横スクロールでの固定 */
  height: auto;
  max-width: 100%;
}
/*このページの商品です*/
.ruijiView{
  color: #FFFFFF;
  /*font-weight: bold;*/
}

/*コンテンツ部分の基本設定*/
.content_wrap {
  width: 100%;
  margin-top: 10px;
  overflow-x: auto; /* tableタグのはみ出た要素を隠す */
  white-space: nowrap; /* テキストの折り返しなし */
}

	
/*比較表のスタイル*/
table.lineup {
  width: 1000px;
  table-layout: fixed;
  border-collapse: separate;
  font-size: 1rem;
  margin: 0 auto;
  padding-bottom: 20px;
  letter-spacing: -0.02rem;
  line-height: 1.2rem;
}
table tr.img {
  background: #fff;
}
	
table th.lineup {
  position: sticky;
  left: 0;
  width: 80px;
  vertical-align: middle;
  border: solid 1px #fff;
  color: #fff;
  padding: 10px 10px;
  text-align: center;
}
table th.lineup:before{　/* 表内の手前にアイコンを追加したい場合に記入 */
  content: ""; 
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
}
/*table td.img {
	display: auto;
    width: 100%;
}*/
/* 画像の周りに白い枠線を引く */
table td.img {
  position: relative;
    /*display: inline-block;*/
  width: 100%;
  z-index: -1;/* スクロール時に一番下に表示 */
}

table td.img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid rgb(255 255 255 / 100%);
  box-sizing: border-box;
}
	
table td.center {
  vertical-align: middle;
  border: solid 1px #fff;
  padding: 10px;
  text-align: center;
  white-space: normal;
  background: #e7e3e1;
}
table td.center2 {
  vertical-align: middle;
  border: solid 1px #fff;
  padding: 10px;
  text-align: center;
  font-size:120%;
  white-space: normal;
  color: #FFFFFF;
  background: #2E905A;
}



table tr:nth-child(odd) td.center {
  background: #f5f1ee;
}

@media screen and (max-width: 767px) {
    
table.lineup {
  width: 700px;
  font-size: 98%;
  line-height: 1rem;    
}
table th.lineup {
  padding: 10px 10px;
  width: 30px;
}
table td.lineup {
  padding: 3px 5px;
}
}	


