/* ------------------------------
   qa-css
------------------------------ */

/* テーブル全体のスタイル */
.lp-table {
	width: 100%;
	max-width: 800px;
	margin: 20px auto;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e1e8ed;
	border-radius: 8px;
	overflow: hidden;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	line-height: 1.6;
}

/* ヘッダー(th)のスタイル */
.lp-table th {
	width: 30%;
	padding: 20px;
	background-color: #f8f9fa;
	color: #333;
	font-weight: bold;
	text-align: left;
	border-bottom: 1px solid #e1e8ed;
	border-right: 1px solid #e1e8ed;
	position: relative;
}

/* 画像のアクセント赤に合わせたボーダー */
.lp-table th::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 20px;
	background-color: #e60012; /* LPの赤色 */
}

/* セル(td)のスタイル */
.lp-table td {
	padding: 20px;
	background-color: #fff;
	color: #444;
	border-bottom: 1px solid #e1e8ed;
}

/* 最後の行のボーダーを消す */
.lp-table tr:last-child th,
.lp-table tr:last-child td {
	border-bottom: none;
}

/* 強調テキスト */
.highlight-text {
	color: #e60012;
	font-weight: bold;
	font-size: 1.1em;
}

/* レスポンシブ対応 (768px以下) */
@media screen and (max-width: 768px) {
	.lp-table, 
	.lp-table tbody, 
	.lp-table tr, 
	.lp-table th, 
	.lp-table td {
		display: block;
		width: 100%;
	}

	.lp-table th {
		width: 100%;
		border-right: none;
		padding: 12px 20px;
		background-color: #f1f3f5;
	}

	.lp-table td {
		padding: 15px 20px 25px;
	}

	.lp-table th::before {
		top: auto;
		bottom: 0;
		left: 20px;
		width: 30px;
		height: 2px;
		transform: none;
	}
}