/*------------ table style set 2------------*/
/********************************************************/
/* ＜table＞　線幅＝なし　線色＝なし
/********************************************************/

/*------------
table.table-01 {
  table-layout:auto;
  border: 0px; /* テーブル全体の枠線（太さ） */
  border-spacing: 0px; /* セルの間隔、各セルと枠線の間隔 
} 

table.table-01 th,td {
  border : 0px; /* セルの枠線（太さ・色・スタイル） */ 
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;  
  padding : 0px; /* セル内の余白 */
}

table.table-02 {
border-collapse: collapse;
border: none;
border-spacing: 0;
}
------------*/

table.noborder,
table.noborder th,
table.noborder td{
border:none;
}
