@charset "utf-8";

/*============================
歴史
============================*/

#history .lead {
    font-weight: bold;
    margin-bottom: 30px;
}

#history dl {
    border-bottom: 1px solid #d8d8d8;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
}

#history dl::after {
    content: "";
    width: 140px;
    height: 3px;
    background: #00bbd5;
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    overflow: visible;
}

#history dt,
#history dd {
    padding: 15px 0;
    display: inline-block;
}

#history dt {
    width: 140px;
    font-weight: bold;
	align-self: flex-start;
}

#history dd {
    flex: 1;
}

#history figure {
    width: 260px;
    margin: 20px 0;
}

#history figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 768px) {
    #history dt {
        width: 100%;
        font-weight: bold;
        padding-bottom: 0;
        font-size: 16px;
    }

    #history dd {
        flex: 1;
    }
}
