/* 会社概要ページ専用 CSS */

/* テーブル全体を中央寄せする */
.about-us-table {
	margin: 32px auto;
	max-width: 800px;
	width: 100%;
}

/* テーブルの罫線を非表示にし、セルを左揃え */
.about-us-table table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.about-us-table td {
	text-align: left;
	padding: 16px 16px;
	border: none;
	vertical-align: top;
	font-size: 22px;
	line-height: 24px;
}

.about-us-table a {
	color: #0645ad; /* ブラウザ標準に近い青色 */
	text-decoration: underline;
}

.about-us-table a:hover {
	color: #0b0080;
	text-decoration: none; /* 下線を消すなど好みに調整 */
}

/* Googleマップを中央配置する */
iframe[src*="google.com/maps"] {
	display: block;
	margin: 32px auto;
	max-width: 100%;
	width: 800px;
	height: 500px;
	border: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}

/* モバイル用レスポンシブ */
@media screen and (max-width: 768px) {
	.about-us-table td,
	.about-us-table th {
		font-size: 14px;
		padding: 6px;
	}

	.about-us-table {
		margin: 0 auto;
		max-width: 100%;
	}
}