@charset "utf-8";

.disposal-method-detail dl dt {
	width: 150px;
}

.disposal-method-detail dl dd {
	width: calc(100% - 150px);
	padding-left: 10px;
}

.disposal-method-detail table {
	width: 100%;
	border: 1px solid #ccc;
	margin-top: 25px;
}

.disposal-method-detail table tr {
	border-bottom: 1px solid #ccc;
}

.disposal-method-detail table tr:last-of-type {
	border-bottom: none;
}

.disposal-method-detail table th {
	background-color: #eee;
	border-right: 1px solid #ccc;
	width: 20%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.disposal-method-detail table th,
.disposal-method-detail table td {
	padding: 8px;
}

.disposal-method-detail table td {
	text-align: left;
	width: 80%;
}

.disposal-method-detail table td ul {
	padding-left: 25px;
	list-style-type: disc;
}


@media only screen and (max-width: 768px){


.disposal-method-detail dl dt {
	margin: 0 auto 10px;
}

.disposal-method-detail dl dd {
	width: 100%;
	padding-left: 0;
}

.disposal-method-detail table th {
	border-bottom: 1px solid #ccc;
}

.disposal-method-detail table th,
.disposal-method-detail table td {
	width: 100%;
	display: block;
}


}