/* expenses details */
.expenses_list_wrapper {
	margin: 2% 3%;
}
.expenses_list {
	display: flex;
	flex-flow: column;
	padding: 0 1.5em;
	color: rgba(76,46,48,1);
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
}
.expenses_element {
	display: flex;
	flex-flow: column;
	border-bottom: 1px dashed #000;
	margin: 3% 5%;
}
.expenses_title {
	border: 2px solid #000;
	border-radius: 5px;
	text-align: center;
	padding: 2% 0;
}
.expenses_money {
	text-align: center;
}
.expenses_money, .expenses_description {
	margin-top: 2%;
}
.expenses_description_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0 10%;
    border-top: 1px dashed #000;
}
.expenses_description li::before {
    content: "･";
}
.expenses_description li {
    display: flex;
}
.expenses_description_title, .expenses_description_money {
    width: 3.2em;
    display: flex;
    justify-content: center;
}

/* Implement for tablet (521 + 134) */
@media screen and (min-width: 655px) {
	.expenses_list {
		flex-flow: row wrap;
		justify-content: center;
	}
	.expenses_element {
		width: 39%;
	}
}
/* Implement PC (961 + 308) */
@media screen and (min-width: 1269px) {
	.expenses_element {
		width: 19%;
		padding-left: 2%;
		padding-right: 2%;
		margin-left: 1%;
		margin-right: 1%;
	}
}