.section1_component {
    height: 64px;

    display: flex;
    flex-direction: column;

    /*@media(max-width: 1300px) {*/
    /*    align-items: center;*/
    /*}*/

    @media(max-width: 744px) {
        height: auto;
        /*padding: 30px 0;*/
    }
}

.section1_contents {
    position: relative;
    flex:1;

    display: flex;
    flex-direction: row;
    align-items: center;
    /*justify-content: center;*/
    gap: 24px;

    /*@media(max-width: 1300px) {*/
    /*    width: 800px;*/
    /*}*/

    @media(max-width: 744px) {
        width: 100%;
        flex-direction: column;
        gap: 8px;
        align-items: normal;
    }
}

.section1_box {
    display: flex;
    flex-direction: column;

    > p {
        &:first-child {
            color: #A5A5A5;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
        }

        &:last-child {
            color: #FFF;
            font-size: 26px;
            font-style: normal;
            font-weight: 600;
            line-height: 25px;
        }
    }

    @media(max-width: 984px) {
        > p {
            &:first-child {
                font-size: 12px;
                line-height: 100%;
            }

            &:last-child {
                font-size: 24px;
            }
        }
    }

    @media(max-width: 744px) {
        > p {
            &:first-child {
                font-size: 12px;
                line-height: 100%;
                margin-bottom: 6px;
            }

            &:last-child {
                font-size: 24px;
            }
        }
    }
}

.section1_dummy {
    width: 1px;
    height: 100%;
    background: linear-gradient(rgba(165, 165, 165, 0.00) 0%, #A5A5A5 50%, rgba(165, 165, 165, 0.00) 100%);

    @media(max-width: 744px) {
        width: 113px;
        height: 1px;
        background: linear-gradient(90deg, rgba(165, 165, 165, 0.00) 0%, #A5A5A5 50%, rgba(165, 165, 165, 0.00) 100%);
    }
}
