
/*SPEC table*/
.table {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	max-width: 100%;
  color: #000;
}

.table h3 {
	font-weight: bold;
	font-size: 18px;
  padding-bottom: 0px !important;
}

.table b {
	display: block;
	margin: 3vw 0;
}

.table a {
	display: block;
	margin: auto;
	width: 80%;
	background-image: linear-gradient(to bottom, #7a00ff, #9300ff);
	color: #fff;
	font-size: 1vW;
	line-height: 3vW;
}

.table-cell-style {
	box-sizing: border-box;
	flex-grow: 1;
	width: 100%;
	padding: 0.8em 1.2em;
	overflow: hidden;
	list-style-type: none;
	outline: 1px solid #ddd;
	margin-top: 1px;
	margin-left: 1px;
  	font-weight: 300;
  	color: #000;
  	font-size: 16px;
}

.table-cell-style:first-child {
	outline: 1px solid #fff;
	background: transparent;
}

@media (max-width: 991px) {

	.table b {
		display: block;
		margin: 3vw 0;
	}

	.table a {
		display: block;
		margin: auto;
		width: 80%;
		background-image: linear-gradient(to bottom, #7a00ff, #9300ff);
		color: #fff;
		font-size: 4vW !important;
		line-height: 3vW;
	}

	.table .icon img {
		width: 30vw;
		margin: 0 auto !important;
		padding: 0;
	}

	.table-cell-style:first-child {
		display: none;
	}

	.table .photo img {
		width: 30vw;
		margin: 0;
		padding: 0;
	}

	hr {
		display: block;
		width: 100%;
		margin: 10px 0;
	}
}

.table-cell-td-lg-color {
	background-color: #f7f7f7;
}


.ttable-cell-style:nth-child(-n+3) {
	padding-top: 40px;
	padding-bottom: 40px;
}

.table-cell-style.cell-feature {
	text-align: center;
}

/* Table columns
================================== */
.table-cell {
	width: calc(25% - 1px);
}

.table-cell-a {
	width: calc(33% - 1px);
}

.table-cell-b {
	width: calc(33% - 1px);
}

.table-cell-box {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-orient: row;
	-webkit-box-direction: row;
	-moz-box-orient: row;
	-moz-box-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-webkit-box-pack: flex-start;
	-moz-box-pack: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;

	-webkit-box-align: left;
	-moz-box-align: left;
	-ms-flex-align: left;
	align-items: left;

	margin: 0 auto;

}

.table-cell-box>div {
	width: 50%;
	/* border-left-style: solid; */
}

@media (max-width: 991px) {

	/* Table columns
================================== */
	.table-cell {
		width: calc(25% - 1px);
	}

	.table-cell-a {
		width: calc(50% - 1px);
	}

	.table-cell-b {
		width: calc(50% - 1px);
	}

	.table-cell-style.cell-feature {
		width: 100%;
		text-align: center;
	}

	.table-cell-td-lg-color {
		background-color: white;
	}

	.table-cell-td-tit-color {
		font-weight: bold;
		background-color: #f7f7f7;
	}

	.table-cell-box {
		position: relative;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;

		-webkit-box-orient: column;
		-webkit-box-direction: column;
		-moz-box-orient: column;
		-moz-box-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;

		-webkit-box-pack: flex-start;
		-moz-box-pack: flex-start;
		-ms-flex-pack: flex-start;
		justify-content: flex-start;

		-webkit-box-align: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;

		margin: 0 auto;

	}

	.table-cell-box>div {
		width: 100% !important;
		border-left-style: solid;
	}

}

/*End SPEC table*/