@charset "UTF-8";
/*------------------------------------------------------------

 盗難対策

------------------------------------------------------------*/
/*------------------------------------------------------------
 銅線ケーブル盗難
------------------------------------------------------------*/
.theft{
	padding: 1.5em;
	margin-top: 2em;
}
.theft .fbox{
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 0 1.875em;
}
.theft a{
	color: var(--color-text);
}
.theftTable{
	max-width: 520px;
	margin-bottom: 1.875em;
	border: 1px solid var(--color-text);
	border-bottom: none;
	background: var(--color-white);
}
.theftTable caption{
	font-weight: bold;
	margin-bottom: 5px;
	position: relative;
}
.theftTable caption span{
	display: inline-block;
	font-size: 0.875em;
	position: absolute;
	right: 0;
	bottom: 0;
}
.theftTable th{
	color: var(--color-white);
	text-align: center;
	font-weight: normal;
	border-bottom: 1px solid var(--color-text);
	background: #0171bd;
}
.theftTable th:first-child{
	width: 6em;
	border-right: 1px solid var(--color-text);
}
.theftTable td{
	padding: 0.5em 1em;
	border-bottom: 1px solid var(--color-text);
}
.theftTable td:first-child{
	text-align: center;
	padding: 0;
	border-right: 1px solid var(--color-text);
}
.theft > p{
	word-break: break-word;
}
@media screen and (max-width: 559px) {
	.theftTable{
		line-height: 1.4;
	}
	.theftTable caption{
		font-size: 1.154em;
	}
}