@charset "UTF-8";

body{
  margin: 0 auto;
  text-align: center;
}

table{
  margin: 0 auto;
  max-width: 1200px;
  border-collapse: collapse;/* tableタグでないと効かない */
}

th,td{
  border-style:solid;
  width: 80px;
  height: 50px;
}

th:nth-child(1),td:nth-child(1){
  color: red;
}

th:nth-child(7),td:nth-child(7){
  color: blue;
}

#nengetu{/* class属性にしたら、nth-childによって赤色のままだった。 */
  color:black;
  height: 25px;
}

p{
  color:red;
}