.company-block{
	padding:50px 0;
}

.company-block__inner{
	max-width:1100px;
	margin:0 auto;
	padding:0 5vw;
}

/* 会社概要テーブル */
.company-table__tbl{
	width:100%;
	border-collapse:collapse;
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:14px;
	overflow:hidden;
}

.company-table__tbl th,
.company-table__tbl td{
	padding:18px 18px;
	border-top:1px solid #e5e7eb;
	vertical-align:top;
}

.company-table__tbl tr:first-child th,
.company-table__tbl tr:first-child td{
	border-top:none;
}

.company-table__tbl th{
	width:220px;
	background:#f8fafc;
	color:#111;
	font-weight:900;
	letter-spacing:0.02em;
}

.company-table__tbl td{
	color:#333;
	line-height:1.9;
}

.company-table__tbl a{
	color:var(--primary-color);
	text-decoration:none;
	font-weight:800;
}

.company-table__tbl a:hover{
	opacity:0.85;
}

/* セクション見出し（h2禁止対応） */
.section-title{
	margin:0 0 18px;
	padding:0 0 14px;
	border-bottom:1px solid #e5e7eb;
}

.section-title__jp{
	font-size:22px;
	font-weight:900;
	color:#111;
	letter-spacing:0.02em;
	line-height:1.2;
}

.section-title__en{
	margin-top:6px;
	font-size:12px;
	font-weight:800;
	letter-spacing:0.22em;
	color:#6b7280;
}

/* アクセス */
.access-wrap{
	display:flex;
	gap:28px;
	align-items:flex-start;
}

.access-map{
	flex:1.2;
	border:1px solid #e5e7eb;
	border-radius:14px;
	overflow:hidden;
	background:#fff;
}

.access-map iframe{
	display:block;
	width:100%;
	height:360px;
	border:0;
}

.access-map__placeholder{
	height:360px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#6b7280;
	background:#f8fafc;
}

.access-info{
	flex:1;
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:14px;
	padding:18px;
}

.access-info__list{
	margin:0;
	padding-left:18px;
	color:#333;
	line-height:1.9;
}

.access-info__list li{
	margin:0 0 8px;
}

.access-info__list li:last-child{
	margin-bottom:0;
}

/* スマホ */
@media screen and (max-width:800px){
	.company-block{
		padding:36px 0;
	}

	.company-table__tbl th{
		width:150px;
	}

	.access-wrap{
		flex-direction:column;
		gap:18px;
	}

	.access-map iframe,
	.access-map__placeholder{
		height:300px;
	}
}

/* さらに小さい端末：テーブルを縦積み */
@media screen and (max-width:600px){
	.company-table__tbl,
	.company-table__tbl tbody,
	.company-table__tbl tr,
	.company-table__tbl th,
	.company-table__tbl td{
		display:block;
		width:100%;
	}

	.company-table__tbl{
		border-radius:14px;
	}

	.company-table__tbl th{
		background:#f8fafc;
		border-top:1px solid #e5e7eb;
		padding:14px 16px 8px;
	}

	.company-table__tbl td{
		border-top:none;
		padding:0 16px 14px;
	}

	.company-table__tbl tr:first-child th{
		border-top:none;
	}
}