:root {
    /* gap */
    --side-gap-xl: 30px;
    --side-gap-l: 30px;
    --side-gap-m: 20px;
    --side-gap-s: 10px;
}

.pc {
    display: block;
}

.mo {
    display: none !important;
}

.tablet {
    display: block;
}

/* flex */
.d-flex {
    display: flex !important;
}

.align-center {
    align-items: center !important;
}

.align-start {
    align-items: start !important;
}

.align-end {
    align-items: end !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-around {
    justify-content: space-around !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-start {
    justify-content: start !important;
}

.justify-end {
    justify-content: end !important;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: end;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-row {
    flex-direction: row !important;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline {
    display: inline-block !important;
}

.hidden {
    visibility: hidden !important;
}

.opacity-0 {
    opacity: 0 !important;
}

/* overflow-hidden */
.overflow-hidden {
    overflow: hidden;
}

/* position */
.position-absolute {
    position: absolute !important;
}

.position-relative {
    position: relative !important;
}

.postion-unset {
    position: unset !important;
}

.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* text */
.text-center {
    text-align: center !important;
}

.text-start {
    text-align: start !important;
}

.text-end {
    text-align: end !important;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 7px;
}

.font-bold {
    font-weight: bold !important;
}

.font-normal {
    font-weight: 500 !important;
}

.font-light {
    font-weight: 400 !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-22 {
    font-size: 22px !important;
}

/* text-break */
.break-all {
    word-break: break-all !important;
}

.keep-all {
    word-break: keep-all !important;
}

.text-balance {
    text-wrap: balance !important;
}

.text-align-left {
    text-align: left !important;
}

.text-nowrap {
    white-space: nowrap;
}

.text-wrap {
    white-space: wrap !important;
}

.text-underline {
    text-decoration: underline;
    text-underline-position: under;
    text-underline-offset: 3px;
}

.vertical-middle {
    vertical-align: middle;
}

/* text-truncate */
.text-truncate-1 {
    overflow: hidden;
    display: inline-block !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-truncate-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-truncate-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text-truncate-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.text-truncate-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box !important;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* border */
.border-none {
    border: none !important;
}

.border-black {
    border: 2px solid #000;
}

.border-gray {
    border: 2px solid #8b8b8b;
}

.border-bottom {
    border-bottom: 1px solid #cdcdcd;
}

.border-left {
    border-left: 1px solid #cdcdcd;
}

.border-right {
    border-right: 1px solid #cdcdcd;
}

.border {
    width: 100%;
    height: 2px;
    background-color: #a3a3a3;
    margin: 20px 0;
}

.border-light {
    width: 100%;
    height: 2px;
    background-color: #ccc;
    margin: 30px 0;
}

.rounded-none {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: 1vw !important;
}

.rounded-2 {
    border-radius: 2vw !important;
}

.rounded-3 {
    border-radius: 3vw !important;
}

.rounded-4 {
    border-radius: 4vw !important;
}

.rounded-5 {
    border-radius: 5vw !important;
}

/* width */
.w-fit {
    width: fit-content !important;
}

.w-auto {
    width: auto !important;
}

.w-25 {
    width: 25% !important;
}

.w-33 {
    width: 33.33% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

/* height */
.h-fit {
    height: fit-content !important;
}

.h-auto {
    height: auto !important;
}

.h-50 {
    height: 50% !important;
}

.h-100 {
    height: 100% !important;
}

/* margin */
.m-none {
    margin: 0 !important;
}

.ml-none {
    margin-left: 0 !important;
}

.ml-l {
    margin-left: var(--side-gap-l) !important;
}

.ml-m {
    margin-left: var(--side-gap-m) !important;
}

.ml-s {
    margin-left: var(--side-gap-s) !important;
}

.mr-none {
    margin-right: 0 !important;
}

.mr-l {
    margin-right: var(--side-gap-l) !important;
}

.mr-m {
    margin-right: var(--side-gap-m) !important;
}

.mr-s {
    margin-right: var(--side-gap-s) !important;
}

.mt-none {
    margin-top: 0 !important;
}

.mt-l {
    margin-top: var(--side-gap-l) !important;
}

.mt-m {
    margin-top: var(--side-gap-m) !important;
}

.mt-s {
    margin-top: var(--side-gap-s) !important;
}

.mb-none {
    margin-bottom: 0 !important;
}

.mb-xl {
    margin-bottom: var(--side-gap-xl) !important;
}

.mb-l {
    margin-bottom: var(--side-gap-l) !important;
}

.mb-m {
    margin-bottom: var(--side-gap-m) !important;
}

.mb-s {
    margin-bottom: var(--side-gap-s) !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.mx-l {
    margin-left: var(--side-gap-l) !important;
    margin-right: var(--side-gap-l) !important;
}

.mx-m {
    margin-left: var(--side-gap-m) !important;
    margin-right: var(--side-gap-m) !important;
}

.mx-s {
    margin-left: var(--side-gap-s) !important;
    margin-right: var(--side-gap-s) !important;
}

.my-l {
    margin-top: var(--side-gap-l) !important;
    margin-bottom: var(--side-gap-l) !important;
}

.my-m {
    margin-top: var(--side-gap-m) !important;
    margin-bottom: var(--side-gap-m) !important;
}

.my-s {
    margin-top: var(--side-gap-s) !important;
    margin-bottom: var(--side-gap-s) !important;
}

/* padding */
.p-l {
    padding: var(--side-gap-l);
}

.p-m {
    padding: var(--side-gap-m);
}

.p-s {
    padding: var(--side-gap-s);
}

.pl-none {
    padding-left: 0 !important;
}

.pl-l {
    padding-left: var(--side-gap-l);
}

.pl-m {
    padding-left: var(--side-gap-m);
}

.pl-s {
    padding-left: var(--side-gap-s);
}

.pr-none {
    padding-right: 0 !important;
}

.pr-l {
    padding-right: var(--side-gap-l);
}

.pr-m {
    padding-right: var(--side-gap-m);
}

.pr-s {
    padding-right: var(--side-gap-s);
}

.pt-none {
    padding-top: 0 !important;
}

.pt-l {
    padding-top: var(--side-gap-l);
}

.pt-m {
    padding-top: var(--side-gap-m);
}

.pt-s {
    padding-top: var(--side-gap-s);
}

.pb-none {
    padding-bottom: 0 !important;
}

.pb-l {
    padding-bottom: var(--side-gap-l);
}

.pb-m {
    padding-bottom: var(--side-gap-m);
}

.pb-s {
    padding-bottom: var(--side-gap-s);
}

.px-l {
    padding-left: var(--side-gap-l);
    padding-right: var(--side-gap-l);
}

.px-m {
    padding-left: var(--side-gap-m);
    padding-right: var(--side-gap-m);
}

.px-s {
    padding-left: var(--side-gap-s);
    padding-right: var(--side-gap-s);
}

.py-l {
    padding-top: var(--side-gap-l);
    padding-bottom: var(--side-gap-l);
}

.py-m {
    padding-top: var(--side-gap-m);
    padding-bottom: var(--side-gap-m);
}

.py-s {
    padding-top: var(--side-gap-s);
    padding-bottom: var(--side-gap-s);
}

/* tablet */
@media screen and (max-width: 769px) {
    .pc {
        display: none !important;
    }

    .mo {
        display: block !important;
    }

    .d-block-md {
        display: block !important;
    }

    /* flex */
    .d-flex-md {
        display: flex !important;
    }

    .align-centter-md {
        align-items: center !important;
    }

    .align-start-md {
        align-items: start !important;
    }

    .align-end-md {
        align-items: end !important;
    }

    .justify-center-md {
        justify-content: center !important;
    }

    .jutify-between-md {
        justify-content: space-between !important;
    }

    .flex-column-md {
        flex-direction: column !important;
    }

    .flex-wrap-md {
        flex-wrap: wrap !important;
    }

    .flex-column-reverse-md {
        flex-direction: column-reverse !important;
    }

    /* postion */
    .position-unset-md {
        position: unset !important;
    }

    /* text-break */
    .break-all-md {
        word-break: break-all !important;
    }

    .keep-all-md {
        word-break: keep-all !important;
    }

    /* width */
    .w-auto-md {
        width: auto !important;
    }

    .w-50-md {
        width: 50% !important;
    }

    .w-60-md {
        width: 60% !important;
    }

    .w-75-md {
        width: 75% !important;
    }

    .w-100-md {
        width: 100% !important;
    }

    .w-fit-md {
        width: fit-content !important;
    }

    /* height */
    .h-auto-md {
        height: auto !important;
    }

    .mr-none-md {
        margin-right: 0 !important;
    }

    .ml-none-md {
        margin-left: 0 !important;
    }

    .mb-none-md {
        margin-bottom: 0 !important;
    }

    .mb-s-md {
        margin-bottom: var(--side-gap-s) !important;
    }

    .mb-m-md {
        margin-bottom: var(--side-gap-m) !important;
    }

    .mb-l-md {
        margin-bottom: var(--side-gap-l) !important;
    }

    .mx-auto-md {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ml-auto-md {
        margin-left: auto !important;
    }

    .mt-s-md {
        margin-top: var(--side-gap-s) !important;
    }

    .mt-none-md {
        margin-top: 0 !important;
    }

    .text-center-md {
        text-align: center !important;
    }

    /* padding */
    .pb-none-md {
        padding-bottom: 0 !important;
    }

    .pr-none-md {
        padding-right: 0 !important;
    }

    .border-none-md {
        border: none !important;
    }

    .gap-none-md {
        gap: 0 !important;
    }
}

/* mobile */
@media screen and (max-width: 576px) {
    .pc {
        display: none !important;
    }

    .mo {
        display: block !important;
    }

    .tablet {
        display: none !important;
    }

    /* flex */
    .d-flex-sm {
        display: flex !important;
    }

    .align-centter-sm {
        align-items: center !important;
    }

    .align-start-sm {
        align-items: start !important;
    }

    .align-end-sm {
        align-items: end !important;
    }

    .justify-center-sm {
        justify-content: center !important;
    }

    .jutify-between-sm {
        justify-content: space-between !important;
    }

    .flex-column-sm {
        flex-direction: column !important;
    }

    .flex-column-reverse-sm {
        flex-direction: column-reverse !important;
    }

    .flex-wrap-sm {
        flex-wrap: wrap !important;
    }

    /* width */
    .w-auto-sm {
        width: auto !important;
    }

    .w-50-sm {
        width: 50% !important;
    }

    .w-75-sm {
        width: 75% !important;
    }

    .w-80-sm {
        width: 80% !important;
    }

    .w-100-sm {
        width: 100% !important;
    }

    /* text */
    .text-center-sm {
        text-align: center !important;
    }

    /* text */
    .mr-none-sm {
        margin-right: 0 !important;
    }

    .mb-none-sm {
        margin-bottom: 0 !important;
    }

    .ml-s-sm {
        margin-left: var(--side-gap-s) !important;
    }

    .mb-s-sm {
        margin-bottom: var(--side-gap-s) !important;
    }

    .mb-m-sm {
        margin-bottom: var(--side-gap-m) !important;
    }

    /* font */
    .font-22 {
        font-size: 20px !important;
    }
}