/* ======================================================================
   04-utilities.css | Utilities（小さな補助クラス）
====================================================================== */
.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-8 {
    margin-top: 8px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.p-0 {
    padding: 0 !important;
}

.px-16 {
    padding-inline: 16px !important;
}

.flex {
    display: flex !important;
}

.inline-flex {
    display: inline-flex !important;
}

.items-center {
    align-items: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.gap-8 {
    gap: 8px !important;
}

.gap-12 {
    gap: 12px !important;
}

.text-muted {
    color: var(--color-muted) !important;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hidden {
    display: none !important;
}

.no-lightbox {
    pointer-events: none;
}

/* 大学アイコン等の誤反応防止 */