/* =========================
  全体
========================= */
.tableout_black_red {
  margin: 56px auto;
}
/* =========================
  行
========================= */
.tableout_black_red .row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 16px 0px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
	transition:
    box-shadow .25s ease,
		transform .25s ease,
		background .25s ease;
	overflow: hidden;
}
.tableout_black_red .row:hover {
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
	transform: translateY(-2px);
}
/* 左端アクセント */
.tableout_black_red .row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(255,0,0,1);
  opacity: .35;
}
/* =========================
  左セル（黒ベース）
========================= */
.leftcell_black_red {
  width: 28%;
  min-width: 180px;
  padding: 18px 22px;
  background: rgba(0,0,0,.92);
  color: rgba(255,255,255,1);
  font-weight: 600;
  display: flex;
  align-items: center;
}
/* =========================
  右セル（白ベース）
========================= */
.rightcell_black_red {
  width: 72%;
  padding: 24px 32px 8px;
  background: rgba(255,255,255,1);
  line-height: 1.8;
}
/* =========================
  hover（上品）
========================= */
.tableout_black_red .row:hover::before {
  opacity: 1;
}
/* =========================
  テキスト
========================= */
.rightcell_black_red p {
  margin-bottom: 16px;
}
/* =========================
  リスト
========================= */
.rightcell_black_red ul {
  margin: 0px 0 32px;
  padding-left: 0;
  list-style: none;
}
.rightcell_black_red li {
  position: relative;
  padding-left: 20px;
}
.rightcell_black_red li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  background: rgba(255,0,0,1);
  border-radius: 50%;
}
/* =========================
  リンク
========================= */
.rightcell_black_red a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255,0,0,.4);
}
.rightcell_black_red i{
	color: rgba(255,0,0,1);
}
/* =========================
  スマホ
========================= */
@media (max-width: 768px) {
.tableout_black_red {
  margin: 32px auto;
}
  .leftcell_black_red,
  .rightcell_black_red {
    width: 100%;
  }
	.leftcell_black_red {
    padding: 14px 20px;
  }
}
