/* @import url("base.css"); */

/* banner */
.banner {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: var(--padding-section-bottom);
}

/* notice */
.notice-title {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-bottom: 2px solid #4ea72e;
    padding: 0.5rem 0.5rem 0.3rem 0.5rem;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1em;
}
.notice-content {
    display: flex;
    justify-content: center;
    max-width: 920px;
    margin: auto;
    padding-top: 2rem;
    padding-bottom: 1rem;
}
.notice-lines{
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.notice-date {
    flex-basis: fit-content;
    flex-shrink: 1;
    text-align: start;
}
.notice-content .notice-lines .notice-line {
    width: 100%;
    display: flex;
    border-bottom: 2px solid var(--site-secondary-color);
    padding-top: 1.0rem;
}
.notice-line .notice-date {
    padding-right: 2rem;
}

.notice-text {
    flex: 1;
}
@media (max-width: 991px) {
    .notice-text {
        text-align: start;
    }
}
@media (min-width: 992px) {
    .notice-text {
        text-align: center;
    }
}

/* table */
.company-summary-wrapper {
    max-width: 840px
}
table.company-summary-table, table.company-summary-table th, table.company-summary-table td {
    border: 2px solid var(--site-secondary-color);
}
table.company-summary-table th {
    background-color: var(--site-primary-color);
    min-width: 92px;
}
