/* 全国の施工会員ページのテーブル(ＲＷＤ)用CSS 　*/

table {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-collapse: collapse;
  width: 100%;
}



table th,
table td {
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  	font-size:15px;
}
table th {
  background-color: #efefef;
  text-align: left;
  font-weight: bold;
  font-size:15px;
}

/*  ★下記４つのwidthは合計を100%にすること　*/

table th.PHOTO,table td.PHOTO{
	width:10%;
}
table th.NAME,table td.NAME{
	width:25%;
}

table th.TIME,table td.TIME{
	width:15%;
}

table th.ADD,table td.ADD{
	width:40%;
}
table th.TEL,table td.TEL{
	width:10%;
}


/* タブレットレイアウト : 768 px以下のモバイルレイアウト */

@media screen and (max-width: 768px) {

table td,table th {
	  font-size:12px;
}
}

/* タブレットレイアウト : 481 px 以下の　モバイルレイアウト */

@media screen and (max-width: 481px) {
  table {
    border: none;
  }
  table thead {
    display: none;
  }
  table tr {
    border-top: 1px solid #ccc;
    display: block;
    margin-bottom: 20px;
  }
  table td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: block;
    padding: 10px;
    text-align: right;
	font-size:14px;

  }
  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
	font-size:14px;
  }

table th.PHOTO,table td.PHOTO{
	background-color: #efefef;	
	width:100%;
}	
table th.NAME,table td.NAME{
	width:100%;
}
table th.TIME,table td.TIME{
	width:100%;
}
table th.ADD,table td.ADD{
	width:100%;
}
table th.TEL,table td.TEL{
	width:100%;
}


}