.cp_pricetable2 {
	margin: 0 auto;
	padding: 0em;
	border-spacing: 1px 0;
	border-radius: 6px;
	background: #e8effc;
}
.cp_pricetable2 td {
	height: 50px;
	padding: 0 20px;
	text-align: center;
	border-bottom: 1px solid #cdcdcd;
    vertical-align: middle;
}
/*main tableブロック*/
.cp_pricetable2 tbody td {
	width: 25%;
	text-align: center;
    font-weight: bold;
}
/* --リスト名ブロック */
.cp_pricetable2 tbody td:first-child {
	font-size: 1em;
	width: auto;
	text-align: left;
	white-space: nowrap;
    text-align: center;
    font-weight: bold;
}

/* --2,3列目 */
.cp_pricetable2 td:nth-child(2),
.cp_pricetable2 td:nth-child(3) {
	border-right: 1px solid #ffffff;
	background: #a9bce2;
}
/* --4列目 */
.cp_pricetable2 td:nth-child(4) {
	color: #ffffff;
	background: #131874;
}
/*Header テキストブロック*/
.cp_pricetable2 thead td {
	font-size: 1em;
	font-weight: bold;
	border-top: none;
	border-radius: 6px 6px 0 0;
    vertical-align: middle;
}
/*Footer ボタンブロック*/
.cp_pricetable2 tfoot td {
	border-bottom: none;
	border-radius: 0 0 6px 6px;
}
/*ボタンデザイン*/
.cp_pricetable2 a.cp_btn {
	position: relative;
	z-index: 1;
	display: block;
	overflow: hidden;
	width: 100px;
	margin-right: auto;
	margin-left: auto;
	padding: 0.3em 1em;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	border: 1px solid #da3c41;
	border-radius: 4px;
	background: #da3c41;
}
.cp_pricetable2 .cp_btn:after {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 0;
	content: '';
	transition: 0.3s;
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg);
	opacity: 0;
	background: #ffffff;
}
.cp_pricetable2 .cp_btn:hover {
	color: #da3c41;
}
.cp_pricetable2 .cp_btn:hover:after {
	height: 250%;
	opacity: 1;
}
.cp_pricetable2 .cp_btn:active:after {
	height: 350%;
	opacity: 1;
}
