div.pieces {
    margin: 10px 0 20px;
    text-align: right;
}

div.pieces a::before {
    font-family: FontAwesome;
    content: "\f001";
}

table#concerts {
	border-collapse: separate;
	border-spacing: 10px;
	margin: 10px auto;
}

table#concerts td {
	width: 300px;
	vertical-align: top;
	background: transparent url(../media/images/history/info_bottom.png) no-repeat bottom center;
}

table#concerts td div.wrapper {
	padding: 8px 13px;
	background: transparent url(../media/images/history/info_top.png) no-repeat top center;
}

table#concerts td.over {
	background: transparent url(../media/images/history/info_bottom_over.png) no-repeat bottom center;
}

table#concerts td.over div.wrapper {
	background: transparent url(../media/images/history/info_top_over.png) no-repeat top center;
}

table#concerts td div.poster {
	float: left;
}

table#concerts td div.poster img {
	width: 80px;
}

table#concerts td div.right {
	width: 180px;
	float: right;
}

table#concerts td div.sub {
	font-size: 90%;
}

table#concerts td h2 {
	font-size: 115%;
	margin: 2px 0 6px;
}

table#concerts td div.detail {
	margin-top: 4px;
	text-align: right;
}

table#concerts td div.detail a {
	background: transparent url(../images/anchor_arrow.png) no-repeat center left;
	padding-left: 10px;
}

ul.history {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

ul.history li {
    width: 50%;
    box-sizing: border-box;
    margin-top: 10px;
}

ul.history li a {
    display: flex;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

ul.history li a:hover {
    background-color: #FFFBF2;
    border-color: #D4931C;
}

ul.history li a .poster {
    flex: 0 0 130px;
    line-height: 1;
    font-size: 1px;
}

ul.history li a .poster img {
    width: 130px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

ul.history li a .text {
    flex: 1 1 auto;
}

ul.history li a .poster + .text {
    margin-left: 15px;
}

ul.history li:nth-child(odd) {
    padding-right: 5px;
}

ul.history li:nth-child(even) {
    padding-left: 5px;
}

ul.history li .text .sub,
ul.history li .text .date,
ul.history li .text .place {
    font-size: 14px;
}

ul.history li .text h2 {
    font-weight: bold;
    font-size: 18px;
}

ul.history li .text .date {
    margin-top: 10px;
}

@media screen and (max-width: 700px) {
    ul.history {
        display: block;
        margin-top: 15px;
    }
    .wrapper ul.history li {
        margin: 0 0 10px;
        padding: 0;
        width: 100%;
    }
    .wrapper ul.history li .poster {
        flex: 0 0 90px;
    }
    .wrapper ul.history li .poster img {
        width: 90px;
    }
    .wrapper ul.history li a {
        padding: 8px;
    }
}