<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.under {
	background:linear-gradient(transparent 60%, #ff6 60%);
	font-weight: bold;
}
.text_red {
	font-weight: bold;
	color: #ff0000;
}
.m_box {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border: 1px solid #ccc;
}
.m_box dl {
	width: 50%;
}
.m_box dl:nth-of-type(1) {
	border-right: 1px solid #ccc;
}
.m_box dl dt {
	text-align: center;
	font-weight: bold;
	padding: 10px;
	background-color: #fae8e8;
}
.m_box dl:nth-of-type(2) dt {
	background-color: #eae8f9;
}
.m_box dl dd {
	padding: 10px;
	line-height: 1.5;
}

.p_table table {
	background: #fff;
	border: 1px solid #ccc;
	border-collapse: separate;
	border-spacing: 0;
	border-top: none;
	margin: 20px 0 10px;
	text-align: left;
	width: 100%;
}
.p_table table th {
	font-weight: bold;
	background-color: #FAFFF5;
}
.p_table table thead th {
	background: #7AB723;
	color: #fff;
	text-align: center;
}
.p_table table td,
.p_table table th {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	padding: 10px;
	vertical-align: top;
}
.p_table table td {
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	padding: 10px;
	vertical-align: top;
}
.p_table table thead th:first-child {
	border-left: none;
}
.p_table table tr th:first-child {
	border-left: none;
}


@media only screen and (max-width: 768px){
	.m_box dl {
		width: 100%;
	}
	.m_box dl:nth-of-type(1) {
		border-right: none;
	}
	
	.p_table table {
		font-size: 11px;
		line-height: 1.3;
	}
}</pre></body></html>