/**
 * テーマ設定用CSS
 * 呼出箇所：全てのページ
 * 個人作成
 */


/* table 11/4 */
#com table{
  width: 100%;
  border-collapse: collapse;
}

#com table tr{
  border-bottom: solid 2px white;
}

#com table tr:last-child{
  border-bottom: none;
}

#com table th{
  position: relative;
  width: 20%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 10px 0;
}

#com table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

#com table td{
  text-align: left;
  width: 80%;
  background-color: #eee;
  padding: 10px 0;
}

