@charset "utf-8";

/* tvList */
.tvList {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 5px;
	padding-bottom: 20px;
	border-bottom: solid 1px #333;
	margin-bottom: 20px;
}
.tvList li {
	width: 24.4%;
	display: flex;
	flex-direction: column;
}
.tvList li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #333;
	border-radius: 10px;
	background-color: #fff;
	padding: 20px 10px;
	color: #333;
	text-align: center;
	flex-grow: 1;
}
.utilities .tvList li a {
	border: solid 1px #B02418;
}
.tvList li a:hover {
	opacity: 0.7;
}
.tvList li a span {
	display: inline-block;
	padding-left: 15px;
	background: url(/card/common2015/images/com_ic02.png) no-repeat 0 0.3em;
	text-decoration: none;
}
.tvList li a span::after {
	margin: 0 10px 0 5px;
	content: url(/card/common2015/images/blank.png);
	vertical-align: text-top;
}
@media only screen and (max-width: 767px) {
	.tvList {
		justify-content: space-between;
		gap: 10px 0;
	}
	.tvList li {
		width: 48.4%;
	}
	.tvList li a span {
		padding-left: 12px;
		background: url(/card/common2015/images/com_sp_ic02.png) no-repeat 0 0.4em;
		background-size: 6px 10px;
	}
	.tvList li a span::after {
		display: inline-block;
		width: 11px;
		height: 10px;
		margin: 0 10px 0 5px;
		background: url(/card/common2015/images/blank_sp.png) no-repeat 0 50%;
		background-size: 11px 10px;
		content: "";
		vertical-align: middle;
	}
}