@charset "utf-8";
/* ===================================================================
 style info : 個別のスタイル設定
=================================================================== */

/* ------------------------------------------------------ *
	header
 * ------------------------------------------------------ */

/* ------------------------------------------------------ *
	text
 * ------------------------------------------------------ */
/* ------------------------------------------------------ *
	box
 * ------------------------------------------------------ */
	


/* ------------------------------------------------------ *
	table
 * ------------------------------------------------------ */
table{
  width: 100%;
  border-collapse: collapse;
}

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

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

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

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;
}

table td{
  text-align: left !important;
	line-height: 1.8;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 10px 10px 20px;
	font-size: 16px;
}