#family_box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

#frame94 {
    position: relative;
    min-width: 160px;
    min-height: 160px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

#frame93 {
    min-width: 400px;
    max-width: 400px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;

    & .title {
        background-color: var(--g);
        color: var(--b);
        padding: 10px 40px;
        font-size: 32px;
        font-weight: 900;
        height: 80px;
        line-height: 1;
        width: min-content;
    }
    & .desc {
        display: flex;
        align-items: center;
        background-color: var(--g);
        color: var(--b);
        padding: 20px 40px;
        font-size: 18px;
        font-weight: 400;
        height: 80px;
        min-width: 100%;
    }
}

#logo_green {
    background-image: url("/src/logo_green.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 160px;
    height: 172px;
}

.text {
    width: 660px;
    color: var(--w);
    font-size: 24px;
    font-weight: 300;
}

.s {
    justify-content: space-around;
}

@media only screen and (max-width: 1440px) {
    .s {
        gap: 20px;
        text-align: center;
    }
    .ltr {
        justify-content: center;
    }
}

@media only screen and (max-width: 674px) {
    .text {
        width: 90%;
    }
    #family_box {
        min-width: 100%;
    }
    #frame93 {
        min-width: calc(100% - 160px);
    }
}

@media only screen and (max-width: 576px) {
    #family_box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #frame93 {
        align-items: center;
        & .title, & .desc {
            text-align: center;
            justify-content: center;
        }
    }
}