/*
 * ACF Button
 * ------------------------------------------------------------------------------------------------
*/
.acf_button_block {
	margin-left: -15px;
	margin-right: -15px;
}
.acf_button_block a {
	margin-left: 15px;
	margin-right: 15px;
}
.acf_button_block:not(:last-child) a {
	margin-bottom: 30px;
}






/*
 * Content Table
 * ------------------------------------------------------------------------------------------------
*/
.is-style-table-design-1 table {
	font-size: 12px;
	width: 100%;
	table-layout: fixed;
}
.is-style-table-design-1 table tr.row_title td {
	background-color: #d2d2d2;
}
.is-style-table-design-1 table tr.row_title + tr.row_title td {
	background-color: #f5f5f5;
}
.is-style-table-design-1 table td {
	background-color: #f5f5f5;
	padding: 5px 15px;
}
@media (max-width: 767px) {
	.is-style-table-design-1 table {
		display: block;
	}
	.is-style-table-design-1 tbody {
		display: block;
	}
	.is-style-table-design-1 table tr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.is-style-table-design-1 table tr td {
		display: block;
		width: auto;
		width: 50%;
	}
	.is-style-table-design-1 table tr td:empty {
		display: none;
	}
	.is-style-table-design-1 table tr td:nth-child(odd) {
		text-align: left;
	}
	.is-style-table-design-1 table tr td:nth-child(even) {
		text-align: right;
	}
	.is-style-table-design-1 table tr.row_title td {
		width: 100%;
	}
	.is-style-table-design-1 table tr td[colspan="4"] {
		width: 100%;
	}
}
@media (max-width: 500px) {
	.is-style-table-design-1 table {
		font-size: 12px;
		width: 100%;
		table-layout: initial;
	}
	.is-style-table-design-1 table td {
		padding: 5px 15px;
	}
}






