/*デスクトップ表示のときはヘッダー文の余白をつける*/
@media (min-width: 769px) {
	body {
		padding-top: 164px;
	}
}

/* ========================================
   ページヒーロー
======================================== */
.page-hero {
	width: 100%;
	height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

.page-hero__title {
	position: relative;
	z-index: 1;
	font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.15em;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* ========================================
   リード文
======================================== */
.company-lead {
	background-color: #fff;
	padding: 60px 20px;
}

.company-lead__content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.company-lead__content p {
	font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
	font-size: 16px;
	line-height: 2.4;
	color: var(--text-main);
}

/* ========================================
   会社概要テーブル
======================================== */
.company {
	background-color: #fff;
	padding: 0 20px 80px;
}

.company__inner {
	max-width: 600px;
	margin: 0 auto;
}

.company__table-wrap {
	width: 100%;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
}

.company-table tr {
	border-bottom: 1px solid #333550;
}

.company-table tr:first-child {
	border-top: 1px solid #333550;
}

.company-table th {
	font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-main);
	background-color: #f9f8f6;
	padding: 20px 24px;
	width: 160px;
	text-align: left;
	vertical-align: top;
	border-right: 1px solid #333550;
}

.company-table td {
	font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
	font-size: 13px;
	color: var(--text-main);
	background-color: #fff;
	padding: 20px 24px;
	line-height: 1.9;
	vertical-align: top;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 600px) {
	.page-hero {
		height: 150px;
	}

	.page-hero__title {
		font-size: 22px;
	}

	.company-lead__content p {
		font-size: 13px;
		text-align: left;
	}

	.company-table th {
		width: 100px;
		padding: 16px 12px;
		font-size: 12px;
	}

	.company-table td {
		padding: 16px 12px;
		font-size: 12px;
	}
}
