
/*--------------------------------------------------------------
# せいわのわが運営
--------------------------------------------------------------*/
#company_overview {
    .section_title {
        word-break: keep-all;
        overflow-wrap: anywhere;

        &::before {
            width: min(12vw, 6.5rem);
            aspect-ratio: 65 / 63;
            background-image: url(/assets/img/icon_overview.png);
        }
    }
}
/*--------------------------------------------------------------
# 法人概要
--------------------------------------------------------------*/
#company_outline {
    padding: 7rem 0;
    @media (min-width:768px) {
        padding: 10rem 0 8.4rem;
    }

    .section_title::before {
        width: min(12vw, 4.3rem);
        aspect-ratio: 43 / 53;
        background-image: url(/assets/img/icon_outline.png);
    }

    .outline_list div {
        display: flex;
        max-width: 90rem;
        margin: 0 auto 1.5em;
        padding-bottom: 1.5em;
        gap: 2em;
        border-bottom: 1px solid #AAA;
        @media (min-width: 768px) {
            gap: 3em;
        }

        & dt {
            font-weight: 400;
            width: 6em;
            flex-shrink: 0;
        }

        & dd {
            & ul {
                & li {
                    display: inline-block;
                }
                & li:not(:last-child)::after {
                    content: "、";
                }
            }
        }
    }
}
