@charset "utf-8";

#main{
  position: absolute;
  top: 80px;
  left: 400px;
  width: calc(100% - 400px);
  padding: 50px 60px 60px 60px;
}

#main ul{
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 20px;
}
#main ul li{
  line-height: 50px;
}
#main ul li:last-child a{
  font-weight: bold;
}

#main table{
  width: 100%;
}

#main table caption{
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--color-main);
  position: relative;
}
#main table caption span{
  position: absolute;
  right: 0px;
}
#main table caption span a{
  text-align: right;
  font-size: 16px;
}
#main table thead {
  box-shadow:0px 4px 9px rgba(0,0,0,.08);
  
}
#main table th{
  font-weight: bold;
  line-height: 1.4;
  padding:10px 0;
  vertical-align: middle;
}
#main table td{
  line-height: 1.4;
  border-bottom: 1px solid #D9D9D9;
  text-align: center;
  vertical-align: middle;
  padding: 20px 0;
}
/*#main table td:nth-child(3) a{
  text-overflow: ellipsis;
}
#main table td:nth-child(3){
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  width: 720px;
}*/
#main table tbody tr:hover{
  background: rgba(188, 210, 238, 0.2);
}