:root {
    --tit-margin: 80px;
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.wide section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
}

.wide section::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: var(--bg-img);
    opacity: var(--bg-opactiy);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.wide section .bg-obj {
    display: block;
    position: absolute;
    pointer-events: none;
}

.bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

/* content-title */
.text.white *,
.content-title.white * {
    color: #fff;
}

.text.white .btn,
.content-title.white .btn {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

.text.center *,
.content-title.center * {
    text-align: center;
}

.text.center .btn,
.content-title.center .btn {
    margin-left: auto;
    margin-right: auto;
}

.content-title {
    position: relative;
    margin-bottom: var(--tit-margin);
}

.content-title * {
    word-break: keep-all;
}

.content-title .tit-label {
    display: block;
    width: fit-content;
    font-size: var(--f22);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff;
    background-color: var(--color-primary);
    padding: 12px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
}

.content-title.center .tit-label {
    margin-left: auto;
    margin-right: auto;
}

.content-title.white .tit-label {
    background-color: #fff;
    color: var(--color-primary);
}

.content-title .tit-label::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    display: block;
    width: 20px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url("/themes/basic/assets/images/tit_obj.svg");
}

.content-title p.sub-tit {
    color: var(--color-mute);
    font-size: var(--f32);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 22px;
}

.content-title.white p.sub-tit {
    color: #fff;
    opacity: 0.8;
}

.content-title h3 {
    font-family: 'TTTtangsbudaejjigaeB';
    font-size: var(--f60);
    font-weight: 800;
    line-height: 1;
}

.content-title h3.multi-line {
    font-size: var(--f55);
    line-height: 1.3;
}

.content-title h3 span {
    color: var(--color-primary);
}

.content-title.white h3 span {
    color: var(--color-text);
}

.content-title .desc {
    font-size: var(--f24);
    line-height: 1.65;
    margin-top: 30px;
}

.content-title .desc b {
    font-weight: 600;
}

.italic {
    display: inline-block;
    transform: skewX(-10deg);
    padding-left: 3px;
}

.counter-reset {
    counter-reset: num-label;
}

.num-label {
    --label-size: 60px;
    display: block;
    background-image: url("/themes/basic/assets/images//num_label.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: var(--label-size);
    height: var(--label-size);
    display: flex;
    align-items: center;
    justify-content: center;
}

.num-label:after {
    content: counter(num-label, decimal-leading-zero);
    counter-increment: num-label;
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

/* 리스트 체크 */
ul.check-list {
    --icon-width: 20px;
    text-align: left;
}

ul.check-list li {
    --gap: 10px;
    padding-left: calc(var(--icon-width) + var(--gap));
    position: relative;
    font-size: var(--f20);
    word-break: keep-all;
}

ul.check-list li * {
    word-break: keep-all;
}

ul.check-list li~li {
    margin-top: 12px;
}

ul.check-list li::before {
    content: '';
    background-image: url(/themes/basic/assets/images/list_check.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: var(--icon-width);
    height: calc(1em * var(--line-height));
    display: inline-block;

    position: absolute;
    left: 0;
}

ul.check-list li span {
    color: var(--color-primary);
    font-weight: 600;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
    :root {
        --tit-margin: 65px;
    }

    /* content-title */
    .content-title .tit-label {
        padding: 10px 20px;
        margin-bottom: 25px;
    }

    .content-title .tit-label::after {
        width: 18px;
    }

    .content-title p.sub-tit {
        margin-bottom: 18px;
    }

    .content-title .desc {
        margin-top: 20px;
    }

    .num-label {
        --label-size: 52px;
    }

    .num-label:after {
        font-size: 18px;
    }

    /* 리스트 체크 */
    ul.check-list {
        --icon-width: 15px;
    }

    ul.check-list li {
        --gap: 8px;
    }

}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
    :root {
        --tit-margin: 35px;
    }

    /* content-title */
    .content-title .tit-label {
        padding: 8px 16px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .content-title .tit-label::after {
        width: 15px;
    }

    .content-title p.sub-tit {
        margin-bottom: 15px;
    }

    .content-title .desc {
        font-size: 14px;
        line-height: 1.55;
        margin-top: 16px;
    }

    .num-label {
        --label-size: 40px;
    }

    .num-label:after {
        font-size: 15px;
    }

    /* 리스트 체크 */
    ul.check-list {
        --icon-width: 13px;
    }

    ul.check-list li {
        --gap: 6px;
    }

    ul.check-list li~li {
        margin-top: 10px;
    }
}