table{
  width: 90%;
  border-collapse: collapse;
	margin:auto;
}

table.table1 tr{
  border-bottom: solid 2px white;
}

table.table1 tr:last-child{
  border-bottom: none;
}

table.table1 th{
  position: relative;
  text-align: center;
  width: 30%;
  background-color: #232323;
  color: white;
  padding: 10px 0;
}

table.table1 th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #232323;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table.table1 td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}
.btn-partial-line {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  border-bottom: solid 3px #ff8c00;
  border-left: solid 3px #ff8c00;
  color: #ff8c00;
  transition: .4s;
}

.btn-partial-line:hover {
  padding-left: 0.7em;
  padding-right: 0.3em;
}


table.table01 {
	width:100%;
	border-right:#333333 solid 1px;
	border-collapse: collapse;
}
table.table01 thead th.red_bk {
	background:#2562cc;
	color:#FFF;
	padding:10px 15px;
	border-right:#FFF solid 1px;
	border-bottom:#FFF solid 1px;
}
table.table01 thead th {
	background:#333333;
	color:#FFF;
	padding:10px 15px;
	border-right:#FFF solid 1px;
	border-bottom:#FFF solid 1px;
}
table.table01 thead th:last-child {
	border-right:#333333 solid 1px;
}
table.table01 tbody th {
	background:#333333;
	color:#FFF;
	padding:10px 15px;
	border-bottom:#FFF solid 1px;
	vertical-align:top;
}
table.table01 tbody tr:last-child th {
	border-bottom:#333333 solid 1px;
}
table.table01 tbody td {
	background:#FFF;
	padding:10px 15px;
	border-left:#333333 solid 1px;
	border-bottom:#333333 solid 1px;
	vertical-align:top;
}

@media screen and (max-width: 640px) {
table.table01 thead {
	display:none;
}
table.table01 tbody th {
	display:block;
}
table.table01 tbody td {
	display:block;
}
table.table01 tbody td::before {
	content: attr(label);
	float: left;
	clear:both;
	font-weight:bold;
}
table.table01 tbody td p {
	padding-left:6em;
}
}








.btn-animation-02 {
  display: inline-block;
  text-align: center;
  background-color: #00bfff;
  border: 2px solid #00bfff;
  font-size: 24px;
  color: #00bfff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
}

.btn-animation-02 span {
  position: relative;
  z-index: 1;
}

.btn-animation-02::before,
.btn-animation-02::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-animation-02::before {
  left: 0;
}
.btn-animation-02::after {
  right: 0;
}

.btn-animation-02:hover:before,
.btn-animation-02:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-animation-02:hover {
  color: #FFF;
}