/* ----------------------------------------------
		会員名簿　MEMBERS
------------------------------------------------- */

body.second table.members {
  width: 95%;
  margin: 0 auto 100px auto;
  border-collapse: collapse;
  border: solid 1px #DDD;
}
body.second table.members tr:nth-child(odd) {
  background-color: #EEE;
}
body.second table.members tr:nth-child(even) {
  background-color: #FFF;
}
body.second table.members td {
  padding: 10px;
  width: 50%;
  border: dotted 1px #CCC;
  font-size: 1.5rem;
}
body.second table.members td a {
  color: #3E3A39;
}
body.second table.members td a:hover {
  opacity: 0.6;
}



/*ミニサイズ*/
@media only screen and (max-width: 768px) {
  
  body.second table.members {
    width: 100%;
  }
  body.second table.members tr:nth-child(odd) {
    background-color: #FFF;
  }
  body.second table.members td {
    width: 100%;
    display: block;
    border: none;
    border-bottom: dotted 1px #CCC;
  }
  body.second table.members td:nth-child(odd) {
  background-color: #EEE;
  }
  body.second table.members td.border_b {
    border: none;
  }
  body.second table.members td.blank {
    display: none;
  }



}
