@charset "UTF-8";

/* section title */
.section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title-wrap .section-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.section-title-wrap .section-title.gap-4px {
    gap: 4px;
}

@media screen and (max-width: 768px) {
    .section-title-wrap {
        margin-bottom: 16px;
    }

    .section-title-wrap .section-title {
        gap: 4px;
    }

}

