.company.columns{
	display: flex;
	margin-bottom: 5em;
}
@media screen and (max-width: 568px) {
	.company.columns{
		display: block;
	}
}
.company.columns .column:first-child{
	margin: 0 3em 0 0;
}
@media screen and (max-width: 568px) {
	.company.columns .column:first-child{
		margin: 0 0 3em 0;
	}
}
table {
	width: 30em;
	border-collapse: collapse;
}
@media screen and (max-width: 568px) {
	table {
		width: 100%;
	}
}
table th, table td {
	border-bottom: 0.15em solid #000;
}
table th {
	position: relative;
	text-align: left;
	width: 20%;
	padding: 2em 0;
}
table th:after {
	content: "";
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	width: 0.15em;
	height: 20%;
}
table td {
	padding: 2em 0 2em 2em;
}
iframe{
	width: 40em;
	height: 30em;
	filter: grayscale(100%);
}
@media screen and (max-width: 568px) {
	iframe{
		width: 100%;
	}
}




.acbox{
	width: auto;
	margin-bottom: 5em;
}
.acbox label{
	width: auto;
	text-align: center;
	position: relative;
	display: block;
	padding: 1em;
	cursor: pointer;
	border-bottom: solid 0.2em;
}
.acbox input{
	display: none;
}
.acbox label:after{
	content:"＋";
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -0.95em;
}
.acbox input:checked ~ label::after {
	content:"―";
}
.acbox div{
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.15s;
}
.acbox input:checked ~ div{
	height: auto;
	padding: 1em 0;
	opacity: 1;
}
.acbox-under{
	font-size: 0.9em;
	color: #555555;
}