:root {
    /* gap */
    --side-gap-xl: 40px;
    --side-gap-l: 30px;
    --side-gap-m: 20px;
    --side-gap-s: 10px;
}

.pc {
    display: block;
}

.mo {
    display: none !important;
}

.tablet {
    display: block;
}

/* color */
.color-black {
    color: #000 !important;
}

.color-white {
    color: #fff !important;
}

.color-green {
    color: #2e815b !important;
}

.color-light-pink {
    color: #f29b76 !important;
}

.color-yellow {
    color: #f5a200 !important;
}

/* color */
.bg-black {
    background-color: #000 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-light-pink {
    background-color: #f29b76 !important;
}

.bg-light-pink02 {
    background-color: #fcf0ec !important;
}

.bg-yellow {
    background-color: #f5a200 !important;
}

.bg-light-yellow {
    background-color: #fcf2df !important;
}

/* 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 !important;
}

.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 */
.txt-center {
    text-align: center !important;
}

.txt-start {
    text-align: start !important;
}

.txt-end {
    text-align: end !important;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.font-bold {
    font-weight: bold !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;
}

.txt-balance {
    text-wrap: balance !important;
}

.txt-align-left {
    text-align: left !important;
}

.txt-nowrap {
    white-space: nowrap;
}

.txt-wrap {
    white-space: wrap !important;
}

/* text-truncate */
.txt-truncate-1 {
    overflow: hidden;
    display: inline-block !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.txt-truncate-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.txt-truncate-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.txt-truncate-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.txt-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;
    padding-bottom: 60px;
    margin-bottom: 60px;
    box-sizing: border-box;
}

.border-left {
    border-left: 1px solid #cdcdcd;
}

.border-right {
    border-right: 1px solid #cdcdcd;
}

.border {
    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 */
.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) !important;
}

.p-m {
    padding: var(--side-gap-m) !important;
}

.p-s {
    padding: var(--side-gap-s) !important;
}

.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);
}

[class^=indent-] {
    display: flex;
    gap: 3px;
    text-align: left;
}

.data-txt {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 5px;
}

.data-txt::before {
    content: attr(data-txt);
    white-space: nowrap;
}

.indent-dot,
.indent-dash,
.indent-ref,
.indent-ast,
.indent-ast02 {
    display: flex;
    gap: 5px;
}

.indent-dot::before {
    content: "•";
}

.indent-ast::before {
    content: "*";
}

.indent-ast02::before {
    content: "**";
}

.indent-dash::before {
    content: '-';
}

.indent-ref::before {
    content: '※';
}

.txt-ref {
    font-size: 95%;
    color: #8b8b8b;
}

.indent-ref {
    font-size: 95%;
    color: #8b8b8b;
}

@media screen and (max-width: 1024px) {
    .flex-column-lg {
        flex-direction: column !important;
    }
}

/* tablet */
@media screen and (max-width: 769px) {
    .pc {
        display: none !important;
    }

    .mo {
        display: block !important;
    }

    .d-block-md {
        display: block !important;
    }

    /* flex */
    .d-gird-md {
        display: grid !important;
    }

    .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-center-md {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flex-column-md {
        flex-direction: column !important;
    }

    .flex-wrap-md {
        flex-wrap: wrap !important;
    }

    .flex-column-reverse-md {
        flex-direction: column-reverse !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;
    }

    /* 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-xl-md {
        margin-bottom: var(--side-gap-xl) !important;
    }

    .mt-s-md {
        margin-top: var(--side-gap-s) !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-m-md {
        margin-top: var(--side-gap-m) !important;
    }

    .my-xl {
        margin-top: var(--side-gap-xl) !important;
        margin-bottom: var(--side-gap-xl) !important;
    }

    .mt-none-md {
        margin-top: 0 !important;
    }

    .my-l-md {
        margin-top: var(--side-gap-l) !important;
        margin-bottom: var(--side-gap-l) !important;
    }

    .pb-m-md {
        padding-bottom: var(--side-gap-m) !important;
    }

    .txt-center-md {
        text-align: center !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-center-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 */
    .txt-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;
    }

    .border-bottom {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}