.sub-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* 落ち着いたオフィスのイメージなど */
	background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop') no-repeat center center/cover;
	opacity: 0.4;
	z-index: 1;
}
.sub-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.sub-hero p {
	font-size: 1rem;
	opacity: 0.9;
	font-family: var(--font-base);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* --- セクション共通 --- */
section {
	padding: 5rem 0;
}
.section-title-wrapper {
	margin-bottom: 3rem;
	border-left: 5px solid var(--color-secondary);
	padding-left: 1.5rem;
}
.section-title {
	font-size: 1.8rem;
	color: var(--color-primary);
	margin-bottom: 0;
}
.section-subtitle-en {
	display: block;
	font-size: 0.85rem;
	color: var(--color-text-muted);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 0.3rem;
}

/* --- 会社概要テーブル --- */
.company-table {
	width: 100%;
	border-top: 2px solid var(--color-primary);
}
.company-table th, .company-table td {
	padding: 1.5rem;
	border-bottom: 1px solid #eee;
	vertical-align: top;
}
.company-table th {
	background-color: #f9f9f9;
	width: 25%;
	font-weight: 600;
	color: var(--color-primary);
}
@media (max-width: 768px) {
	.company-table th, .company-table td {
		display: block;
		width: 100%;
	}
	.company-table th {
		padding-bottom: 0.5rem;
		background-color: transparent;
		padding-left: 0;
	}
	.company-table td {
		padding-top: 0;
		padding-left: 0;
		padding-bottom: 1.5rem;
	}
}

/* --- 沿革 (Timeline) --- */
.timeline-list {
	position: relative;
	padding-left: 2rem;
	border-left: 2px solid #e0e0e0;
}
.timeline-item {
	position: relative;
	margin-bottom: 2.5rem;
}
.timeline-item::before {
	content: '';
	position: absolute;
	left: -2.6rem; /* Adjust based on border and padding */
	top: 5px;
	width: 1rem;
	height: 1rem;
	background-color: var(--color-secondary);
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px var(--color-secondary);
}
.timeline-year {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--color-primary);
	margin-bottom: 0.3rem;
	display: block;
}
.timeline-content {
	font-size: 0.95rem;
}

/* --- アクセス --- */
.map-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	background-color: #eee;
	overflow: hidden;
	margin-top: 1rem;
}
.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.access-info p {
	margin-bottom: 0.5rem;
}
.access-label {
	display: inline-block;
	min-width: 80px;
	font-weight: 600;
	color: var(--color-primary);
}

/* レスポンシブ調整 */
@media (max-width: 991px) {
	
}
