/* =========================================================
   会社案内 ページ専用スタイル
   ========================================================= */

/* ---- 代表挨拶（タイトル上、本文下の縦積み） ---- */
.greeting__wrap {
	/* 2カラムをやめて縦積み。タイトル左寄せ、本文は右寄りに配置 */
}
.greeting__body {
	margin-top: 42px;
	margin-left: auto;
	max-width: 900px;
	font-family: var(--ff-jp);
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	color: #231815;
}
.greeting__sign {
	margin-top: 30px;
	text-align: right;
	font-size: 16px;
}

/* ---- 経営理念 ---- */
.mission__inner { text-align: center; }
.mission__title { text-align: center; }
.mission__phrase {
	margin-top: 46px;
	font-family: var(--ff-jp);
	font-size: 30px;
	font-weight: 500;
	color: #231815;
	line-height: 1.6;
}

/* ---- 会社概要（左タイトル / 右テーブルの2カラム） ---- */
.info__wrap {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 60px;
	align-items: start;
}
.info__body { min-width: 0; }

.info-table {
	width: 100%;
	border-top: 1px solid #DADADA;
}
.info-table__row {
	display: flex;
	border-bottom: 1px solid #DADADA;
	padding: 18px 0;
}
/* ゼブラ：奇数行に #F4F6F5 の背景 */
.info-table__row:nth-of-type(odd) {
	background: #F4F6F5;
}
.info-table__row dt {
	flex-shrink: 0;
	width: 180px;
	padding-left: 20px;
	font-family: var(--ff-jp);
	font-size: 16px;
	font-weight: 700;
	color: #231815;
}
.info-table__row dd {
	flex: 1;
	padding-left: 20px;
	font-family: var(--ff-jp);
	font-size: 16px;
	font-weight: 400;
	color: #231815;
}

.info-map-wrap {
	margin-top: 50px;
}
.info-map {
	width: 100%;
	background: #EFEFEE;
	overflow: hidden;
}
.info-map iframe { display: block; width: 100%; }

/* ---- 対応エリア ---- */
.area__title { text-align: center; }
.area__body {
	margin-top: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}
.area__map {
	flex-shrink: 0;
	width: 380px;
	max-width: 100%;
}
.area__map img { width: 100%; height: auto; display: block; }
.area__text {
	font-family: var(--ff-jp);
	font-size: 18px;
	font-weight: 400;
	line-height: 2;
	color: #231815;
}
.area__list {
	margin-top: 8px;
	font-size: 20px;
	font-weight: 500;
}

/* =========================================================
   SP
   ========================================================= */
@media (max-width: 768px) {
	.info__wrap {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.greeting__body { margin-top: 24px; font-size: 13px; line-height: 1.9; max-width: 100%; }
	.greeting__sign { margin-top: 20px; font-size: 13px; }

	.mission__phrase { margin-top: 26px; font-size: 18px; line-height: 1.7; }

	.info-table__row { flex-direction: column; padding: 12px 12px; }
	.info-table__row dt { width: 100%; padding-left: 0; font-size: 13px; }
	.info-table__row dd { padding-left: 0; margin-top: 4px; font-size: 13px; }

	.info-map-wrap { margin-top: 30px; }
	.info-map iframe { height: 260px; }

	.area__body { margin-top: 24px; flex-direction: column; gap: 20px; }
	.area__map { width: 80%; }
	.area__text { text-align: center; font-size: 14px; }
	.area__list { font-size: 15px; }
}
