@charset "utf-8";
/* ===========================================================

	Title: finance.css
	Created: 2018-10-1

=========================================================== */
/* ===========================================================

	interest
	
=========================================================== */
.interest-list {
    display: flex;
    justify-content: space-between;
	margin: 0 -10px;
}
.interest-list dl {
    position: relative;
    width: 100%;
    padding: 30px;
    margin: 0 10px 20px;
    border: solid 3px #e5e5e5;
    text-align: center;
}
.interest-list dt {
	margin: 0 0 5px;
}
.interest-list em {
    color: #aa9359;
    font-size: 4.0rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin-right: 0.1em;
}
@media screen and (max-width: 1200px) {
	.interest-list {
		display: block;
		margin: 0;
	}
	.interest-list dl {
		width: 100%;
		display: flex;
		justify-content: center;
    	align-items: flex-end;
    	padding: 20px;
		margin: 0 0 10px;
	}
	.interest-list dt {
		padding: 0 1em;
	}
}
@media screen and (max-width: 767px) {
	.interest-list dl {
		display: block;
	}
}