@charset "utf-8";
/* CSS Document */

.date {
    font-size: 1.8rem;
    display: block;
}

.event-panel {
    display: flex;
    flex-direction: column;
}
.event-panel .thumbnail{
    display: flex;
    flex-direction: column;
}
.event-panel .thumbnail .thumbnail-inner{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.event-panel .thumbnail img{
    max-width: 180px;
    padding: 0.8rem;
}
.event-panel .thumbnail a:hover{
    opacity: 0.7;
}
.event-panel table tr {
    border-bottom: 5px solid #FFF;
}

.event-panel table th {
    white-space: nowrap;
    background: #F8F8F8;
    font-weight: normal;
}

.event-panel table td,
.event-panel table th {
    padding: 0.4rem 2rem;
    display: block;
}

.event-panel table dd {
    padding-left: 2rem;
    margin-bottom: 1rem;
}
.event-panel h4{
    font-size: 1.6rem;
}
.event-panel h5{
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0.4rem 0;
    border: 1px solid #CCC;
    padding: 0.2rem;
}
.event-panel h6{
    background: #ececec;
    padding: 0.2rem;
}
@media screen and (min-width: 780px) {
    .event-panel {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .event-panel table td,
    .event-panel table th {
        padding: 0.4rem 2rem;
        display: table-cell;
    }
}