@charset "utf-8";
/* CSS Document */

/*
* MAP
******************************************************/
.googlemaps {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    background:var(--color-rgba-blue);
}
.googlemaps embed,.googlemaps iframe,
.googlemaps object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*
* HISTORY
******************************************************/
.history-wrapper{
    width: 100%;
    margin: auto;
}
.history-content{
    color:var(--color-theme-primary);
}
.history-caption{
    font-weight: var(--font-bold);
    text-align: center;
}
.history-list{
    margin: 75px 0;
}
.history-row{
    display: flex;
    flex-wrap: wrap;
    border-top: 2px #a2b4ca solid;
    padding: 10px 0;
}
@media print, screen and (min-width: 1080px) {
    .history-row{
        flex-wrap: nowrap;
    }
}
.history-item-year{
    margin-right: 5px;
    padding-left: 15px;
}
.history-item-detail{
    color:initial;
    width: 100%;
    padding: 0 15px 0 40px;
}
@media print, screen and (min-width: 1080px) {
    .history-item-year{
        width: 75px;
        text-align: right;
    }
    .history-item-month{
        width: 60px;
        text-align: right;
    }
    .history-item-detail{
        color:initial;
        width: calc(100% - 125px);
    }
}