/* CSS Document */
/* =========================================================== */
/* データベース構築 */
/* =========================================================== */
.history-table{
    width: 100%;
}
.history-table tr{
    border-bottom: 1px solid var(--color-table-line);
}
.history-table tr:last-child{
    border-bottom: none;
}
.history-table th{
    color: var(--color-db);
    width: 240px;
}
.history-table th, .history-table td{
    padding: 0.6rem 4rem;
}
@media only screen and (max-width:  767.98px) {
    .history-table tr, .history-table th, .history-table td{
        display: block;
        width: 100%;
    }
    .history-table th{
        padding-bottom: 0;
    }
    .history-table td{
        padding-top: 0;
    }
}
/* データベースサマリー */
.database-summary{
    display: flex;
    justify-content: space-between;
}
.database-summary figure{
    max-width: 320px;
    margin-left: 2rem;
}
.database-summary figure img{
    max-width: 100%;
}
@media only screen and (max-width:  767.98px) {
    .database-summary{
        flex-direction: column-reverse;
    }
    .database-summary figure{
        display: block;
        margin: 0 auto 2rem;
    }
}
/* 国書データベースの特徴 */
.features-body{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-table-line);
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}
.features-body:last-child{
    border-bottom: none;
}
.features-body p{
    flex: 1;
}
.features-image{
    width: 150px;
    margin-left: 2rem;
}
.features-image img{
    width: 100%;
}
.photographing-notice img{
    width: 150px;
}
@media only screen and (max-width:  767.98px) {
    .features-body{
        flex-direction: column;
    }
    .features-body .features-image{
        margin: 0 auto;
    }
    .photographing-notice img{
        width: 120px;
        float: left;
        margin-bottom: 0;
        margin-right: 1rem;
    }
}
.manual-files{
    display: inherit;
}
.manual-files dt, .manual-files dd{
    display: block;
    width: inherit;
    border: none;
}
.manual-files dd{
    padding-left: 8rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-table-line);
}
.manual-files dd:last-of-type{
    border-bottom: 1px solid var(--color-table-line);
}
.manual-files dd ol{
    margin-top: 0;
}