@import url("common.css");

/* 会社概要 固有スタイル */
.company-overview .company-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
	text-align: center;
}

.company-overview .info-list {
	width: 100%;
	max-width: 540px;
}

.company-overview dt {
	font-weight: 700;
	color: var(--ink, #172026);
	font-size: 16px;
	margin-top: 18px;
}

.company-overview dd {
	margin: 6px 0 0 0;
	margin-bottom: 8px;
	color: var(--muted, #5d6972);
	font-size: 18px;
}

.map-wrapper {
	width: 100%;
	max-width: 900px;
}

.map-placeholder {
	background: #eef7f8;
	border: 1px dashed var(--line, #dbe4e7);
	padding: 40px;
	color: var(--muted, #5d6972);
	border-radius: 8px;
}

@media (max-width: 768px) {
	.company-overview .info-list {
		padding: 0 10px;
	}
}

/* 左:項目 / 右:内容 のテーブル風レイアウト */
.company-overview .info-list {
	width: 100%;
	max-width: 900px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.company-overview .info-list > div {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 20px;
	align-items: start;
	padding: 18px 22px;
	border-bottom: 1px solid #f1f6f7;
}

.company-overview .info-list > div:last-child {
	border-bottom: none;
}

.company-overview dt {
	font-weight: 700;
	color: #2b3a40;
	font-size: 15px;
}

.company-overview dd {
	margin: 0;
	color: #4b5b60;
	font-size: 16px;
	line-height: 1.6;
}

.company-overview a {
	color: #07677d;
	text-decoration: none;
	font-weight: 700;
}

/* モバイルでは縦並びにして可読性を確保 */
@media (max-width: 640px) {
	.company-overview .info-list > div {
		grid-template-columns: 1fr;
		padding: 14px 16px;
	}

	.company-overview dt {
		margin-bottom: 6px;
		font-size: 14px;
	}

	.company-overview dd {
		font-size: 15px;
	}
}

/* ヒーロー — company専用オーバーライド */
.hero {
	min-height: 640px;
	padding: 0;
	display: grid;
	align-items: center;
	justify-items: center;
}

.hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(10,20,30,0.25), rgba(10,20,30,0.45));
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
	transform: scale(1.02);
}

.hero-content {
	position: relative;
	z-index: 2;
	color: white;
	text-align: center;
	padding: 120px 20px;
	max-width: 1100px;
}

.hero-content h2 {
	font-size: 56px;
	line-height: 1.05;
	margin-bottom: 20px;
	font-weight: 800;
	text-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 28px;
	color: rgba(255,255,255,0.92);
}

.hero-actions {
	display: flex;
	gap: 18px;
	justify-content: center;
}

.btn.btn-primary {
	background-color: #ffc107;
	color: #1a3a52;
	padding: 14px 34px;
	border-radius: 8px;
	font-weight: 700;
}

.btn.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid rgba(255,255,255,0.9);
	padding: 12px 30px;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.hero-content h2 { font-size: 32px; }
	.hero-content { padding: 60px 16px; }
}
