/*///////////////////////// 공통 css /////////////////////////*/

/* form */
.form-wrap {
    display: flex;
    flex-flow: column;
    gap: 32px;
}
.form-list {
    width: 100%;
    gap: 32px;
    flex-flow: wrap;
}
.form-item {
    gap: 16px;
    width: 100%;
}
.form-item.half {
    width: calc(50% - 16px);
}
.form-item .item-default {
    font-size: 16px;
    font-weight: bold;
}
.form-item .item-default .guide-txt {
    font-weight: normal;
    margin-top: 4px;
}
.form-item .item-user {
    gap: 16px;
}
.form-input-wrap {
    gap: 8px;
    color: #fff;
}
.form-input-wrap.col-group {
    align-items: center;
}
.form-input-wrap .form-input {
    min-width: unset;
}
.form-input {
    width: 100%;
    padding: 0 16px;
    height: 52px;
    border: 1px solid #d8d8d8;
    font-size: 16px;
    border-radius: 4px;
}
.form-input.w400 {
    width: 400px;
    min-width: unset;
}
.form-input.disable {
    background: #f5f5f5;
}
.form-date {
    padding-right: 30px;
    cursor: pointer;
    background-image: url(/Images/FO/tlsk/icon-calendar.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: right 8px center;
}
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d8d8d8;
    background: #fff;
    height: 400px;
    font-size: 17px;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: #aeaeae;
}

.form-sticker-wrap {
    position: relative;
}
.form-sticker-wrap .form-sticker {
    font-size: 16px;
    color: #aeaeae;
    position: absolute;
    right: 16px;
    bottom: 16px;
}
.form-sticker-wrap .form-textarea {
    padding-bottom: 40px;
}

.form-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.form-footer-txt {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
}
.form-submit-btn {
    width: 100%;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 56px;
    background: #0134ff;
    border: 1px solid #0134ff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    transition: 0.2s;
    border-radius: 28px;
}
.form-submit-btn.cancel-btn {
    background: #292a3e;
    border-color: #292a3e;
}
.form-submit-btn.disable {
    background: #aeaeae;
    border-color: #aeaeae;
}

@media screen and (max-width: 1280px) {
    .form-wrap {
        gap: 16px;
    }
    .form-list {
        gap: 24px 8px;
    }
    .form-item {
        gap: 8px;
    }
    .form-item.half {
        width: 100%;
    }
    .form-item .item-default {
        font-size: 14px;
    }
    .form-input-wrap {
        gap: 8px;
    }
    .form-input {
        font-size: 14px;
        height: 48px;
    }
    .form-input.w400 {
        width: 100%;
        max-width: unset;
        min-width: calc(100% - 32px);
    }
    .form-textarea {
        padding: 16px;
        height: 160px;
        font-size: 14px;
    }

    .form-sticker-wrap .form-sticker {
        font-size: 14px;
        right: 8px;
        bottom: 8px;
    }
    .form-sticker-wrap .form-textarea {
        padding-bottom: 24px;
    }

    .form-footer {
        margin-top: 24px;
    }
    .form-footer-txt {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .form-submit-btn {
        height: 48px;
        line-height: 48px;
        font-size: 14px;
    }

    .guide-txt {
        font-size: 12px;
    }
}

/* form - 체크박스 */
.checked-item {
    align-items: center;
    gap: 8px;
}
.checked-item .icon {
    width: 20px;
    height: 20px;
    border: 1px solid #9999a6;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checked-item .icon i {
    color: #aeaeae;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
}
.checked-item .txt {
    font-size: 16px;
    font-weight: 600;
    color: #121331;
    line-height: 1.5;
}
.checked-item .link {
    display: inline-block;
    color: #009eff;
    text-decoration: underline;
    font-weight: 600;
}
.form-checkbox:checked + .checked-item .icon {
    border: 1px solid #0134ff;
    background: #0134ff;
}
.form-checkbox:checked + .checked-item .icon i {
    color: #fff;
}

@media screen and (max-width: 1440px) {
    .checked-item {
        gap: 6px;
    }
    .checked-item .txt {
        font-size: 14px;
    }
}

/* form - 라디오 */
.form-radio + .checked-item .icon {
    width: 20px;
    height: 20px;
    border: 1px solid #e4e4e4;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: relative;
}
.form-radio + .checked-item .icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0134ff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.form-radio:checked + .checked-item .txt {
    color: #fff;
}
/* .form-radio:checked + .checked-item .icon { border: 1px solid #0134ff; background: #0134ff; } */
.form-radio:checked + .checked-item .icon::after {
    display: block;
}
@media screen and (max-width: 1440px) {
    .form-radio + .checked-item .icon {
        width: 20px;
        height: 20px;
        border: 1px solid #bfbfbf;
        background: #fff;
        border-radius: 50%;
        display: block;
        position: relative;
    }
    .form-radio + .checked-item .icon::after {
        content: "";
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #0134ff;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: none;
    }
    .form-radio:checked + .checked-item {
        color: #0134ff;
    }
    .form-radio:checked + .checked-item .icon {
        border: 1px solid #0134ff;
        background: #fff;
    }
    .form-radio:checked + .checked-item .icon::after {
        display: block;
    }
}

.select-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}
.select-check {
    height: 50px;
}
.select-check .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    position: relative;
    background: #fff;
    transition: 0.2s;
}
.select-check .icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #0134ff;
    opacity: 0;
    transition: 0.2s;
}
input:checked ~ .select-check .icon {
    border: 1px solid #0134ff;
}
input:checked ~ .select-check .icon::after {
    opacity: 1;
}

.select-group.wrap .select-item {
    width: 50%;
}
.select-item.checkbox .select-check .icon {
    width: 17px;
    height: 17px;
    border-radius: 2px;
}
.select-item.checkbox .select-check .icon::after {
    display: none;
}
.select-item.checkbox .select-check .icon i {
    width: 100%;
    font-size: 12px;
    text-align: center;
    line-height: 15px;
    color: #fff;
    font-weight: bold;
}
.select-item.checkbox input:checked ~ .select-check .icon {
    background: #0134ff;
}

.close-btn {
    position: absolute;
    font-size: 32px;
    cursor: pointer;
    top: 24px;
    right: 24px;
    z-index: 9;
}
.modal-menu-wrap {
    top: 0;
    left: unset;
    height: 100dvh;
    width: 300px;
    right: 0;
    transform: translateX(100%);
    transition: 0.2s;
}
.modal-container.active .modal-menu-wrap {
    transform: translateX(0);
}
.modal-menu-wrap .select-group {
    max-height: calc(100dvh - 151px);
    overflow: auto;
}
.modal-menu-wrap .select-group::-webkit-scrollbar {
    display: none;
}

.modal-notice-txt {
    position: fixed;
    top: 50%;
    width: calc(100% - 32px);
    max-width: 480px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.25;
    background: #000;
    border-radius: 4px;
    color: #fff;
    opacity: 0;
    display: none;
    transform: 0.2s;
}
.modal-notice-txt.active {
    display: block;
    animation: fadeInOut 2s forwards;
}
@keyframes fadeInOut {
    0%,
    99% {
        opacity: 0;
    }
    10%,
    90% {
        opacity: 0.75;
    }
    100% {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .modal-wrap {
        max-width: unset;
        width: 100%;
        height: 100dvh;
        border-radius: 0;
        padding: 40px 20px;
    }
    .close-btn {
        font-size: 24px;
        top: 20px;
        right: 20px;
    }
    .modal-title {
        font-size: 20px;
    }
    .modal-sub-title {
        font-size: 14px;
        margin-top: 8px;
    }

    .modal-footer {
        margin-top: 24px;
    }
    .modal-footer-btn {
        height: 48px;
        line-height: 48px;
        font-size: 16px;
        padding: 0 16px;
    }

    .modal-alert {
        border: 1px solid #e4e4e4;
        height: auto;
        width: calc(100% - 40px);
        padding: 40px 16px 32px;
        max-width: 320px;
        text-align: center;
        border-radius: 16px;
        left: 50%;
        right: unset;
        top: 50%;
        bottom: unset;
        transform: translate(-50%, -50%);
    }
    .modal-alert .icon {
        display: block;
        width: 24px;
        margin: 0 auto;
        font-size: 24px;
        margin-bottom: 16px;
    }
    .modal-alert .modal-title-wrap {
        margin-bottom: 16px;
    }
    .modal-alert .modal-title-wrap .icon {
        margin-bottom: 8px;
    }
    .modal-alert .modal-title {
        font-size: 20px;
    }
    .modal-alert-txt {
        font-size: 14px;
        line-height: 1.5;
    }
    .modal-alert .modal-footer {
        margin-top: 32px;
    }
    .modal-alert .modal-footer-btn {
        width: 100%;
        height: 48px;
        line-height: 46px;
        font-size: 14px;
    }
    .modal-alert .close-btn {
        font-size: 24px;
        top: 16px;
        right: 16px;
    }

    .modal-select-wrap {
        width: 100%;
        top: unset;
        height: auto;
        transform: translateX(-50%) translateY(100%);
        bottom: 0;
        border-radius: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 16px;
        transition: 0.2s;
    }
    .modal-container.active .modal-select-wrap {
        transform: translateX(-50%) translateY(0%);
    }
    .modal-select-wrap .modal-title-wrap {
        text-align: center;
        padding-top: 20px;
        position: relative;
        margin-bottom: 16px;
    }
    .modal-select-wrap .modal-title-wrap::after {
        content: "";
        display: block;
        width: 104px;
        height: 2px;
        background: #f0f0f0;
        border-radius: 2px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .modal-select-wrap .close-btn {
        top: 36px;
    }

    .select-item:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }
    .select-check {
        height: 50px;
    }
    .select-check .icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 1px solid #e1e1e1;
        position: relative;
        background: #fff;
        transition: 0.2s;
    }
    .select-check .icon::after {
        content: "";
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #0134ff;
        opacity: 0;
        transition: 0.2s;
    }
    input:checked ~ .select-check .icon {
        border: 1px solid #0134ff;
    }
    input:checked ~ .select-check .icon::after {
        opacity: 1;
    }

    .select-group.wrap .select-item {
        width: 50%;
    }
    .select-item.checkbox .select-check .icon {
        width: 17px;
        height: 17px;
        border-radius: 2px;
    }
    .select-item.checkbox .select-check .icon::after {
        display: none;
    }
    .select-item.checkbox .select-check .icon i {
        width: 100%;
        font-size: 12px;
        text-align: center;
        line-height: 15px;
        color: #fff;
        font-weight: bold;
    }
    .select-item.checkbox input:checked ~ .select-check .icon {
        background: #0134ff;
    }

    .modal-menu-wrap {
        top: 0;
        left: unset;
        height: 100dvh;
        width: 300px;
        right: 0;
        transform: translateX(100%);
        transition: 0.2s;
    }
    .modal-container.active .modal-menu-wrap {
        transform: translateX(0);
    }
    .modal-menu-wrap .select-group {
        max-height: calc(100dvh - 151px);
        overflow: auto;
    }
    .modal-menu-wrap .select-group::-webkit-scrollbar {
        display: none;
    }

    .modal-notice-txt {
        position: fixed;
        top: 50%;
        width: calc(100% - 32px);
        max-width: 480px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 99999;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 1.25;
        background: #000;
        border-radius: 4px;
        color: #fff;
        opacity: 0;
        display: none;
        transform: 0.2s;
    }
    .modal-notice-txt.active {
        display: block;
        animation: fadeInOut 2s forwards;
    }
    @keyframes fadeInOut {
        0%,
        99% {
            opacity: 0;
        }
        10%,
        90% {
            opacity: 0.75;
        }
        100% {
            display: none;
        }
    }
}

/* index */
.index {
    background-color: #121331;
    overflow: hidden;
}
.index-title-wrap {
    display: flex;
    flex-flow: column;
    gap: 24px;
    position: relative;
    margin-bottom: clamp(32px, 5.7vh, 56px);
    padding-top: clamp(32px, 5.7vh, 56px);
}
.index-title-wrap.center {
    text-align: center;
}
.index-title-icon {
    display: block;
    position: absolute;
    width: 32px;
    height: 28px;
    top: 0;
    left: 0;
    clip-path: polygon(100% 0, 100% 50%, 0 100%, 0 50%);
    background-color: #0134ff;
}
.index-title-wrap.center .index-title-icon {
    left: 50%;
    transform: translateX(-50%);
}
.index-title {
    font-size: clamp(22px, 3vw, 56px);
    color: #fff;
}
.index-sub-title {
    font-size: clamp(14px, 1.25vw, 24px);
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
}
.index-sub-title.min {
    font-size: clamp(14px, 1vw, 20px);
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
}
.index-txt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 1280px) {
    .index .index-title-wrap {
        text-align: center;
    }
    .index .index-title-icon {
        left: 50%;
        transform: translateX(-50%);
    }
    .index-title-wrap {
        gap: 8px;
        padding-top: 32px;
    }
    .index-title-icon {
        width: 18px;
        height: 16px;
    }
    .index-txt {
        font-size: 14px;
    }

    html.has-scroll-init {
        width: 100vw;
        overflow-x: hidden;
    }
}

/* index - s1 */
.s1 {
    height: 100vh;
    position: relative;
    z-index: 0;
}
.s1::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: clamp(40px, 12vh, 120px);
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, #121331, rgba(0, 0, 0, 0));
    z-index: 1;
}
.s1-slide {
    height: 100vh;
}
.s1-slide .swiper-slide {
    position: relative;
}
.s1 .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.s1 .bg-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 19, 49, 0.3);
    z-index: 1;
}
.s1 .bg-img > * {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.s1 .title-wrap {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: clamp(24px, 4vh, 40px);
    padding: 0 24px;
}
.s1 .icon {
    width: clamp(88px, 8.75vw, 168px);
}
.s1 .title {
    font-size: clamp(24px, 2.5vw, 48px);
    line-height: 1.33;
    font-weight: bold;
    color: #fff;
}
.s1 .sub-title {
    font-size: clamp(15px, 1.25vw, 24px);
    line-height: 1.5;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
}
.s1 .txt {
    font-size: clamp(14px, 0.83vw, 16px);
    line-height: 1.5;
    color: #fff;
}
.s1-slide .s1-slide-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    bottom: clamp(40px, 15vh, 152px);
    z-index: 2;
}
.s1-slide .s1-slide-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    opacity: 0.2;
    transition: 0.3s;
}
.s1-slide .s1-slide-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.cursor-scroll {
    width: clamp(24px, 1.67vw, 32px);
    height: clamp(42px, 2.9vw, 56px);
    border-radius: clamp(12px, 0.83vw, 16px);
    border: 2px solid #fff;
    position: absolute;
    bottom: clamp(24px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}
.cursor-scroll .cursor-pointer {
    position: absolute;
    width: clamp(8px, 0.625vw, 12px);
    height: clamp(8px, 0.625vw, 12px);
    border-radius: 50%;
    background: #fff;
    top: clamp(2px, 0.4vw, 8px);
    left: clamp(2px, 0.4vw, 8px);
    animation: pointer 1s infinite;
}
@keyframes pointer {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    80% {
        transform: translateY(150%);
        opacity: 1;
    }
    100% {
        transform: translateY(150%);
        opacity: 0;
    }
}

@media screen and (max-width: 1280px) {
    .cursor-scroll {
        width: 24px;
        height: 42px;
        border-radius: 12px;
        bottom: 24px;
    }
    .cursor-scroll .cursor-pointer {
        width: 8px;
        height: 8px;
        top: 2px;
        left: 6px;
    }
}

/* index - s2 */
.s2 {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.s2 .bg-img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.s2 .container {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 0;
}
.s2 .index-title-icon {
    left: 12.5vw;
}
.s2 .index-title-wrap {
    padding-left: 12.5vw;
}
.s2 .scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    cursor: pointer;
    padding-left: 12.5vw;
}
.s2 .scroll-container::-webkit-scrollbar {
    display: none;
}
.s2 .scroll-container.dragging {
    user-select: none;
    cursor: grabbing;
}

.s2 .item-wrap {
    display: flex;
    gap: 40px;
    width: 3200px;
}
.s2 .item {
    width: 600px;
    height: 400px;
    border-radius: 16px;
    padding: 48px;
    padding-bottom: 64px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.s2 .item:nth-child(2n) {
    margin-top: 40px;
}
/* .s2 .item { transform: translateY(0); } */
.s2 .item .more-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.s2 .item .more-btn i {
    font-size: 32px;
    color: #121331;
    transform: rotate(-45deg);
}
.s2 .item .num {
    font-size: 20px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.4);
}
.s2 .item .txt-wrap {
    overflow: hidden;
}
.s2 .item .txt-group {
    display: flex;
    flex-flow: column;
    gap: 16px;
    transform: translateY(calc(100% - 88px));
    transition: 0.3s;
}
.s2 .item:hover .txt-group {
    transform: translateY(0);
}
.s2 .item .sub-title {
    font-size: 20px;
    color: #fff;
}
.s2 .item .title {
    font-size: clamp(24px, 4vh, 40px);
    color: #fff;
    font-weight: bold;
}
.s2 .item .txt {
    font-size: clamp(14px, 0.83vw, 16px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 8px;
}
.s2 .item-img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: auto;
}

/* .s2 .index-title-icon,
.s2 .index-title,
.s2 .index-sub-title,
.s2 .item-wrap { opacity: 0; transform: translateY(40px); } */

@media screen and (max-width: 1680px) {
    .s2 .item-wrap {
        width: 2560px;
    }
    .s2 .item {
        width: 480px;
        height: 320px;
        padding: 32px;
    }
    .s2 .item .title {
        font-size: 32px;
    }
}

@media screen and (max-width: 1280px) {
    .s2 {
        height: auto;
        max-height: unset;
        padding: 40px 0;
    }
    .s2 .bg-img {
        display: none;
    }
    .s2 .container {
        padding: 0 16px;
    }
    .s2 .index-title-icon {
        left: 50%;
    }
    .s2 .index-title-wrap {
        padding-left: 0;
    }
    .s2 .scroll-container {
        padding-left: 0;
        overflow: visible;
    }
    .s2 .item-wrap {
        width: 100%;
        flex-flow: column;
        gap: 16px;
        align-items: center;
    }
    .s2 .item {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 8px;
        padding: 24px;
        padding-bottom: 32px;
    }
    .s2 .item:nth-child(2n) {
        margin-top: 0px;
    }
    .s2 .item .more-btn {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
    }
    .s2 .item .more-btn i {
        font-size: 20px;
    }
    .s2 .item .num {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .s2 .item .txt-wrap {
        overflow: hidden;
    }
    .s2 .item .txt-group {
        gap: 8px;
        transform: translateY(0);
    }
    .s2 .item .sub-title {
        font-size: 14px;
    }
    .s2 .item .title {
        font-size: 20px;
    }
    .s2 .item .txt {
        font-size: 13px;
    }

    .s2 .item-wrap {
        opacity: 1;
        transform: translateY(0);
    }
}

/* index - s3 */
.s3 {
    height: 100vh;
    position: relative;
}
.s3 .bg-img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
}
.s3 .container {
    height: 100%;
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-start;
    padding: 0 12.5vw;
    padding-top: calc(10vh + 72px);
}
.s3 .item-default {
    width: 420px;
}
.s3 .index-title-wrap {
    margin-bottom: 16vh;
}
.s3 .item-user {
    width: calc(100% - 420px);
}
.s3 .item-nav-slide .slide-item {
    font-size: clamp(18px, 1.25vw, 24px);
    line-height: clamp(56px, 6.5vh, 64px);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 16px;
}
.s3 .item-nav-slide .slide-item .icon {
    opacity: 0;
}
.s3 .item-nav-slide .slide-item.swiper-slide-thumb-active {
    opacity: 1;
    font-size: clamp(24px, 1.67vw, 32px);
    color: #fff;
}
.s3 .item-nav-slide .slide-item.swiper-slide-thumb-active .icon {
    opacity: 1;
}
.s3 .item-slide {
    overflow: unset;
}
.s3 .item-slide .swiper-slide {
    transition: 0.2s;
}
.s3 .item-slide .swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
}
.s3 .item {
    position: relative;
    display: flex;
    flex-flow: column;
}
.s3 .item-num {
    font-size: clamp(80px, 8.3vw, 160px);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 0;
}
.s3 .item .sub-title {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}
.s3 .item .title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}
.s3 .item .more-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.s3 .item .more-btn:hover {
    background: #0134ff;
    border-color: #0134ff;
}
.s3 .item .more-btn i {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
}
.s3 .item .txt-wrap {
    display: flex;
    flex-flow: column;
    gap: 12px;
}
.s3 .item .txt {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    padding-left: 10px;
    position: relative;
}
.s3 .item .txt::after {
    content: "";
    display: block;
    width: 2px;
    height: 18px;
    background: #0134ff;
    position: absolute;
    left: 0;
    top: 3px;
}
.s3 .item-img {
    position: relative;
    width: 100%;
    height: calc(80vh - 298px);
    margin-top: 56px;
}
.s3 .item-img img {
    min-width: 100%;
    width: auto;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: calc(100% + 120px);
    object-fit: contain;
    object-position: center bottom;
    display: block;
    margin: 0 auto;
}

/* .s3 .index-title-icon,
.s3 .index-title,
.s3 .index-sub-title,
.s3 .item-nav-slide,
.s3 .item-user { opacity: 0; transform: translateY(40px); } */

.s3 .item-slide .item-slide-pagination {
    display: none;
}

@media screen and (max-width: 1680px) {
    .s3 .index-title-wrap {
        margin-bottom: 8vh;
    }
}

@media screen and (max-width: 1280px) {
    .s3 {
        height: auto;
        padding: 40px 0;
    }
    .s3 .bg-img {
        display: none;
    }
    .s3 .container {
        flex-flow: column-reverse;
        padding: 0 16px;
        padding-top: 0;
    }
    .s3 .item-default {
        width: 100%;
    }
    .s3 .index-title-wrap {
        margin-bottom: 24px;
    }
    .s3 .item-user {
        width: 100%;
    }
    .s3 .item-nav-slide {
        display: none;
    }
    .s3 .item {
        position: relative;
        display: flex;
        flex-flow: column;
    }
    .s3 .item-num {
        font-size: 40px;
        bottom: 50%;
    }
    .s3 .item .sub-title {
        font-size: 14px;
    }
    .s3 .item .title {
        font-size: 22px;
        width: 100%;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .s3 .item .more-btn {
        background: #0134ff;
        border-color: #0134ff;
    }
    .s3 .item .more-btn i {
        font-size: 20px;
    }
    .s3 .item .txt-wrap {
        gap: 8px;
    }
    .s3 .item .txt {
        font-size: 13px;
    }
    .s3 .item .txt::after {
        height: 15px;
        top: 2px;
    }
    .s3 .item-img {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 60%;
        margin-top: 32px;
    }
    .s3 .item-img img {
        width: 100%;
        max-width: unset;
        object-position: center;
    }

    .s3 .item-slide {
        padding-bottom: 32px;
    }
    .s3 .item-slide .item-slide-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    .s3 .item-slide .item-slide-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.4);
        opacity: 1;
        margin: 0;
        transition: 0.2s;
    }
    .s3 .item-slide .item-slide-pagination .swiper-pagination-bullet-active {
        background: #0134ff;
    }
}

/* index - s4 */
.s4 {
    height: 100vh;
    position: relative;
    z-index: 1;
}
.s4::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: clamp(40px, 12vh, 120px);
    top: -10px;
    left: 0;
    right: 0;
    background-image: linear-gradient(to bottom, #121331 0, #121331 10px, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.s4 .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.s4 .bg-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 19, 49, 0.3);
    z-index: 1;
}
.s4 .bg-img > * {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.s4 .container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: clamp(40px, 5vh, 56px);
}
.s4 .partners-slide-wrap {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 32px;
}
.s4 .partners-slide {
    width: 100%;
}
.s4 .partners-slide .swiper-wrapper {
    transition-timing-function: linear;
}
.s4 .partners-slide-item {
    width: 100%;
    padding-top: 50%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}
.s4 .partners-slide-item img {
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
}

/* .s4 .index-title-icon,
.s4 .index-title,
.s4 .index-sub-title,
.s4 .partners-slide-wrap { opacity: 0; transform: translateY(40px); } */

@media screen and (max-width: 1280px) {
    .s4 {
        height: auto;
    }
    .s4::after {
        display: none;
    }
    .s4 .container {
        gap: 0;
        padding: 0 16px 80px;
    }
    .s4 .partners-slide-wrap {
        max-width: 768px;
        width: 100%;
        height: calc(100vw - 32px);
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-flow: row;
        gap: 8px;
    }
    .s4 .partners-slide {
        width: 100%;
    }
    .s4 .partners-slide .swiper-wrapper {
        transition-timing-function: linear;
    }
    .s4 .partners-slide .swiper-slide {
        height: fit-content !important;
    }
    .s4 .partners-slide-item {
        border-radius: 8px;
    }
    .s4 .partners-slide-item img {
        width: calc(100% - 24px);
        height: calc(100% - 24px);
    }
}

/* subpage */
.subpage {
    background-color: #121331;
    overflow: hidden;
}
.subpage-nav-wrap {
    position: absolute;
    top: calc(100vh - 56px);
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    z-index: 99;
    display: flex;
    height: 64px;
    border-radius: 32px;
    overflow: hidden;
}
.subpage-nav-item {
    width: 256px;
    background: rgba(7, 68, 211, 0.6);
    line-height: 64px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}
.subpage .index-title-wrap {
    padding-top: clamp(24px, 4.8vh, 48px);
}
.subpage .index-title {
    font-size: clamp(22px, 2vw, 40px);
}

@media screen and (max-width: 1280px) {
    .subpage-nav-wrap {
        position: fixed;
        top: 48px;
        left: 0;
        transform: none;
        right: 0;
        height: 40px;
        border-radius: 0;
        overflow-x: auto;
        gap: 24px;
        padding: 0 16px;
        background: rgba(7, 68, 211, 0.6);
    }
    .subpage-nav-wrap::-webkit-scrollbar {
        display: none;
    }
    .subpage-nav-item {
        width: auto;
        background: none;
        line-height: 40px;
        font-size: 14px;
        white-space: nowrap;
    }
    .subpage .index-title-wrap {
        padding-top: clamp(24px, 4.8vh, 48px);
    }
    .subpage .index-title {
        font-size: clamp(22px, 2vw, 40px);
    }

    .aos-animate {
        transition-delay: 0s !important;
    }
}

/* subpage - section 공통 */
.section-wrap {
    display: flex;
    flex-flow: column;
    gap: 280px;
    padding: 240px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.section-wrap .bg-img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    z-index: -1;
}
.section {
    position: relative;
}
.section-anchor {
    position: absolute;
    top: calc((-100vh + 100%) / 2);
    z-index: -1;
}

.section .item-wrap {
    display: flex;
}
.section .item-wrap.type01 {
    gap: 24px;
}
.section .item-wrap.type01-1 {
    gap: 40px;
}
.section .item-wrap.type01 .item {
    width: 100%;
    padding: 32px 0;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    position: relative;
}
.section .item-wrap.type01 .item::after {
    content: "";
    display: block;
    position: absolute;
    width: 48px;
    height: 8px;
    background: #0134ff;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.section .item-wrap.type01 .item-img {
    width: 190px;
    height: 120px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 36px;
}
.section .item-wrap .item-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.5;
}
.section .item-wrap .item-sub-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.5;
}
.section .item-wrap .item-txt {
    font-size: 16px;
    line-height: 1.5;
}

@media screen and (max-width: 1280px) {
    .section-wrap {
        gap: 80px;
        padding: 80px 0;
    }
    .section-wrap .bg-img {
        display: none;
    }
    .section-anchor {
        top: -128px;
    }

    .section .item-wrap {
        flex-flow: wrap;
        justify-content: center;
    }
    .section .item-wrap.type01 {
        max-width: 816px;
        margin: 0 auto;
    }
    .section .item-wrap.type01-1 {
        gap: 40px;
    }
    .section .item-wrap.type01 .item {
        width: 100%;
        max-width: 256px;
        padding: 32px 24px;
        padding-top: 24px;
    }
    .section .item-wrap.type01 .item-img {
        width: 160px;
        height: 104px;
        margin-bottom: 16px;
    }
    .section .item-wrap .item-title {
        font-size: 16px;
    }
    .section .item-wrap .item-sub-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .section .item-wrap .item-txt {
        font-size: 14px;
    }
}

/* subpage - section 슬라이드 */
.section-slide-wrap .title-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.section-slide-wrap .title-wrap .icon {
    width: 80px;
}
.section-slide-wrap .title-wrap .title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    gap: 8px;
}
.section-slide-wrap .title-wrap .title.col-group {
    align-items: center;
}
.section-slide-wrap .title-wrap .sub-title {
    font-size: 20px;
}
.section-slide-wrap .title-wrap .img {
    width: auto;
    height: 50px;
    object-fit: contain;
    object-position: left center;
}
.section-slide-wrap .title-wrap .txt {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}
.section-slide-wrap .title-wrap .txt-bg {
    background: #0134ff;
    width: fit-content;
}
.section-slide-wrap .title-wrap .sub-txt {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}
.section-slide-wrap .title-wrap .txt-wrap {
    display: flex;
    flex-flow: column;
    gap: 12px;
    margin-left: 56px;
}
.section-more-btn {
    margin-left: auto;
    width: 220px;
    height: 52px;
    border-radius: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background: #0134ff;
    border: 1px solid #0134ff;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    transition: 0.2s;
}
.section-more-btn:hover {
    background: #fff;
    color: #0134ff;
}
.section-slide-group {
    display: flex;
    gap: 56px;
    align-items: center;
}
.section-slide-wrap .item-default {
    width: calc(65% - 56px);
    padding-bottom: 32px;
    position: relative;
}
.section-slide-wrap .item-user {
    width: 35%;
    display: flex;
    flex-flow: column;
    gap: 40px;
}
.section-slide {
    border-radius: 16px;
    overflow: hidden;
}
.section-slide-img {
    width: 100%;
    padding-top: 54.5%;
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
}
.section-slide-img img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-position: center;
    object-fit: cover;
}
.section-nav-slide-item {
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    gap: 16px;
    transition: 0.3s;
}
.section-nav-slide-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.section-nav-slide-item .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}
.section-nav-slide-item .txt-group {
    width: calc(100% - 48px - 16px);
    display: flex;
    flex-flow: column;
    gap: 8px;
}
.section-nav-slide-item .title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}
.section-nav-slide-item .txt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}
.section-slide-group .section-slide-pagination {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.section-slide-group .section-slide-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
    transition: 0.3s;
}
.section-slide-group .section-slide-pagination .swiper-pagination-bullet-active {
    background: #0134ff;
}

.section-nav-slide .swiper-slide {
    cursor: pointer;
    opacity: 0.5;
}
.section-nav-slide .swiper-slide-thumb-active {
    opacity: 1;
}
.section-nav-slide .swiper-slide-thumb-active .section-nav-slide-item {
    border-bottom: 2px solid #0134ff;
}
.section-nav-slide .swiper-slide-thumb-active .section-nav-slide-item .icon {
    background-color: #0134ff;
}
.section-nav-slide .swiper-slide:last-child {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 1280px) {
    .section-slide-wrap .title-wrap {
        flex-flow: column;
        margin-bottom: 16px;
        gap: 16px;
        text-align: center;
    }
    .section-slide-wrap .title-wrap .icon {
        width: 40px;
    }
    .section-slide-wrap .title-wrap .title {
        font-size: 24px;
        gap: 8px;
    }
    .section-slide-wrap .title-wrap .title.col-group {
        align-items: center;
    }
    .section-slide-wrap .title-wrap .sub-title {
        font-size: 20px;
    }
    .section-slide-wrap .title-wrap .img {
        height: 40px;
        object-position: center;
    }
    .section-slide-wrap .title-wrap .txt {
        font-size: 14px;
    }
    .section-slide-wrap .title-wrap .sub-txt {
        font-size: 14px;
    }
    .section-slide-wrap .title-wrap .txt-wrap {
        align-items: center;
        text-align: center;
        gap: 8px;
        margin-left: 0;
    }
    .section-more-btn {
        margin: 0 auto;
        width: 167px;
        height: 48px;
        border-radius: 24px;
        font-size: 13px;
    }
    .section-slide-group {
        flex-flow: wrap;
        gap: 16px;
    }
    .section-slide-wrap .item-default {
        width: 100%;
        padding-bottom: 40px;
    }
    .section-slide-wrap .item-user {
        width: 100%;
        gap: 16px;
    }
    .section-nav-slide-item {
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        gap: 8px;
    }
    .section-nav-slide-item .icon {
        width: 40px;
        height: 40px;
    }
    .section-nav-slide-item .icon img {
        width: 20px;
        height: 20px;
    }
    .section-nav-slide-item .txt-group {
        width: calc(100% - 40px - 8px);
    }
    .section-nav-slide-item .title {
        font-size: 15px;
    }
    .section-nav-slide-item .txt {
        font-size: 13px;
    }
    .section-slide-group .section-slide-pagination {
        position: absolute;
        bottom: 16px;
    }
    .section-slide-group .section-slide-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .section-nav-slide {
        width: 100%;
    }
    .section-nav-slide .swiper-slide-thumb-active .section-nav-slide-item {
        border-bottom: 1px solid #0134ff;
    }
}

/* subpage - 로고 스크롤 */
.tlk-scroll-wrap {
    padding-top: 80px;
    text-align: center;
}
.tlk-scroll-wrap .txt {
    color: #fff;
    line-height: 1.4;
}
.tlk-scroll-wrap .txt.opacity {
    color: rgba(255, 255, 255, 0.7);
}
.tlk-scroll-wrap .txt.fs18 {
    font-size: 18px;
}
.tlk-scroll-wrap .txt.fs32 {
    font-size: 32px;
}
.tlk-scroll-wrap .txt.fs40 {
    font-size: 40px;
}
.tlk-scroll-wrap .txt.margin-top {
    margin-top: 40px;
}
.tlk-scroll-wrap .txt-bg {
    background: #0134ff;
    padding: 0 8px;
}
.tlk-scroll-wrap .bar {
    display: block;
    width: 2px;
    height: 176px;
    background: #fff;
    margin: 80px auto;
}
.tlk-scroll-wrap .fill-img-wrap {
    width: 258px;
    height: 266px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 56px;
}
.tlk-scroll-wrap .fill-img-wrap .default-img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.tlk-scroll-wrap .fill-img-wrap .fill-img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    height: 0%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

@media screen and (max-width: 1280px) {
    .tlk-scroll-wrap {
        padding-top: 40px;
    }
    .tlk-scroll-wrap .txt.fs18 {
        font-size: 14px;
    }
    .tlk-scroll-wrap .txt.fs32 {
        font-size: 18px;
    }
    .tlk-scroll-wrap .txt.fs40 {
        font-size: 20px;
    }
    .tlk-scroll-wrap .txt.margin-top {
        margin-top: 40px;
    }
    .tlk-scroll-wrap .bar {
        width: 1px;
        height: 120px;
        margin: 40px auto;
    }
    .tlk-scroll-wrap .fill-img-wrap {
        width: 118px;
        height: 122px;
        margin-bottom: 24px;
    }
    .tlk-scroll-wrap .fill-img-wrap .default-img {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }
    .tlk-scroll-wrap .fill-img-wrap .fill-img {
        position: absolute;
        width: 100%;
        object-fit: cover;
        object-position: bottom;
        height: 0%;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
}

/* subpage - 프로세스 */
.process-wrap {
    display: flex;
    flex-flow: wrap;
    gap: 92px 0;
}
.process-group {
    display: flex;
    width: 100%;
    position: relative;
}
.process-group::after {
    content: "";
    display: block;
    position: absolute;
    width: calc(100vw - ((100vw - 1440px) / 2));
    height: 1px;
    background: #fff;
    top: 0;
    z-index: -1;
}
.process-group:nth-child(1)::after {
    left: 0;
}
.process-group:nth-child(2)::after {
    right: 25%;
}
.process-item {
    width: 100%;
    padding-top: 52px;
    display: flex;
    flex-flow: column;
    gap: 24px;
    position: relative;
}
.process-item::after {
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #121331;
}
.process-item.active::after {
    border-color: #0134ff;
    background-color: #0134ff;
}
.process-item .item-img {
    width: 128px;
}
.process-item .title-wrap {
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.process-item .sub-title {
    font-size: 16px;
    color: #fff;
}
.process-item .title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
.process-item .txt-wrap {
    display: flex;
    flex-flow: column;
    gap: 8px;
}
.process-item .txt {
    font-size: 16px;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}
.process-item .txt::after {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    left: 0;
    top: 9px;
}

.section .item-wrap.type02 {
    gap: 32px;
}
.section .item-wrap.type02 .item {
    width: 100%;
    padding: 24px 0 32px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    cursor: pointer;
}
.section .item-wrap.type02 .item:not(.aos-animate) {
    transition: 0.2s;
}
.section .item-wrap.type02 .item-img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    margin-bottom: 24px;
    position: relative;
}
.section .item-wrap.type02 .item-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.2s;
}
.section .item-wrap.type02 .item-img .default {
    mix-blend-mode: multiply;
    animation-play-state: paused;
}
.section .item-wrap.type02 .item-img .active {
    opacity: 0;
    visibility: hidden;
    mix-blend-mode: lighten;
}
.section .item-wrap.type02 .num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0134ff;
    line-height: 48px;
    margin: 0 auto 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    transition: 0.2s;
}
.section .item-wrap.type02 .more-btn {
    width: 56px;
    height: 56px;
    margin-top: 24px;
    border-radius: 50%;
    border: 1px solid #0134ff;
    background: #fff;
    line-height: 54px;
    font-size: 24px;
    color: #0134ff;
}

.section .item-wrap.type02 .item:hover .item-img .default {
    display: none;
    opacity: 0;
    visibility: hidden;
}
.section .item-wrap.type02 .item:hover .item-img .active {
    opacity: 1;
    visibility: visible;
}
.section .item-wrap.type02 .item:hover {
    background: #0134ff;
    transition: 0.2s;
}
.section .item-wrap.type02 .item:hover .num {
    background: #0022aa;
}
.section .item-wrap.type02 .item:hover .item-title,
.section .item-wrap.type02 .item:hover .item-txt {
    color: #fff;
}
.section .item-wrap.type02 .item:hover::after {
    background: #fff;
}

@media screen and (max-width: 1280px) {
    .process-wrap {
        gap: 40px 0;
    }
    .process-group {
        flex-flow: wrap;
        gap: 40px 0;
        transform: translate3d(0, 0, 0);
        opacity: 1 !important;
    }
    .process-group::after {
        width: 1px;
        height: calc(100% + 40px);
    }
    .process-group:nth-child(1)::after {
        left: 10px;
    }
    .process-group:nth-child(2)::after {
        height: calc(80% - 20px);
        right: unset;
        left: 10px;
    }
    .process-item {
        padding-top: 0;
        padding-left: 36px;
        gap: 16px;
    }
    .process-item::after {
        width: 20px;
        height: 20px;
        transform: none;
    }
    .process-item .item-img {
        width: 80px;
    }
    .process-item .title-wrap {
        gap: 8px;
    }
    .process-item .sub-title {
        font-size: 14px;
    }
    .process-item .title {
        font-size: 20px;
    }
    .process-item .txt-wrap {
        display: flex;
        flex-flow: column;
        gap: 8px;
    }
    .process-item .txt {
        font-size: 13px;
    }
    .process-item .txt::after {
        width: 4px;
        height: 4px;
        top: 8px;
    }

    .section .item-wrap.type02 {
        gap: 24px;
        flex-flow: wrap;
        max-width: 536px;
        margin: 0 auto;
    }
    .section .item-wrap.type02 .item {
        max-width: 256px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .section .item-wrap.type02 .item-img {
        width: 104px;
        height: 104px;
        margin-bottom: 16px;
    }
    .section .item-wrap.type02 .num {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 13px;
    }
    .section .item-wrap.type02 .more-btn {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 20px;
    }
}

/* subpage - 포트폴리오 */
.portfolio-wrap {
    display: flex;
    gap: 40px;
    flex-flow: wrap;
}
.portfolio-item {
    width: calc((100% - 40px * 2) / 3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-flow: column;
}
.portfolio-item .img-wrap {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}
.portfolio-item .img-wrap img {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
}
.portfolio-item .txt-wrap {
    padding: 32px 40px 0;
    margin-bottom: 40px;
}
.portfolio-item .title {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 24px;
}
.portfolio-item .txt-group {
    display: flex;
    flex-flow: column;
    gap: 12px;
}
.portfolio-item .txt {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    position: relative;
}
.portfolio-item .txt.bar {
    padding-left: 10px;
}
.portfolio-item .txt.bar::after {
    content: "";
    display: block;
    width: 2px;
    height: 18px;
    background: #0134ff;
    position: absolute;
    left: 0;
    top: 3px;
}
.portfolio-item .btn-wrap {
    padding: 0 40px 56px;
    margin-top: auto;
}
.portfolio-item .more-btn {
    margin-top: auto;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 8px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    transition: 0.2s;
}
.portfolio-item .more-btn:hover {
    background: #0134ff;
    border-color: #0134ff;
}

@media screen and (max-width: 1280px) {
    .portfolio-wrap {
        gap: 16px;
    }
    .portfolio-item {
        width: 100%;
        border-radius: 16px;
    }
    .portfolio-item .txt-wrap {
        padding: 24px 24px 0;
        margin-bottom: 32px;
    }
    .portfolio-item .title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .portfolio-item .txt-group {
        gap: 8px;
    }
    .portfolio-item .txt {
        font-size: 13px;
    }
    .portfolio-item .txt.bar::after {
        height: 16px;
    }
    .portfolio-item .btn-wrap {
        padding: 0 24px 24px;
    }
    .portfolio-item .more-btn {
        height: 48px;
        font-size: 14px;
    }
}

/* subpage - detail_page */
.detail_page .subpage-nav-wrap {
    width: 100%;
    top: 72px;
    transform: none;
    left: 0;
    max-width: unset;
    border-radius: 0;
    background: #0744d3;
    justify-content: center;
}
.detail_page .subpage-nav-item {
    max-width: 260px;
}
.detail_page .subpage-nav-item.active {
    text-decoration: underline;
}
.detail_page .detail-top .index-title-wrap {
    padding-top: 0;
}
.detail_page .detail-top .index-sub-title {
    font-size: 20px;
}
.detail_page .detail-top .index-title {
    font-size: 48px;
}
.detail_page .section-wrap {
    padding-top: 216px;
}

.category-item-wrap {
    display: flex;
    flex-flow: wrap;
}
.category-item-wrap.per_5 {
    gap: 24px;
}
.category-item-wrap.per_4 {
    gap: 32px;
}
.category-item-wrap.per_2 {
    gap: 40px;
    justify-content: center;
}
.category-item {
    padding-top: 56px;
    padding-bottom: 48px;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}
.category-item.logo {
    background: none;
    background-image: url(/Images/FO/tlsk/tlk_border.svg);
    background-repeat: no-repeat;
    background-size: 140px;
    background-position: center;
}
.category-item-wrap.per_5 .category-item {
    width: calc((100% - 24px * 4) / 5);
    padding-bottom: 32px;
}
.category-item-wrap.per_4 .category-item {
    width: calc((100% - 32px * 3) / 4);
}
.category-item-wrap.per_2 .category-item {
    width: 100%;
    max-width: 400px;
}
.category-item .item-img {
    width: 104px;
    height: 104px;
    object-fit: contain;
    object-position: center;
}
.category-item-wrap.per_2 .category-item .item-img {
    width: 150px;
    height: 130px;
}
.category-item .item-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}

.detail_page .portfolio-item {
    text-align: left;
}
.detail_page .portfolio-item .title {
    font-size: 24px;
}

.detail-item-wrap {
    display: flex;
    flex-flow: wrap;
    gap: 32px;
}
.detail-item-wrap .item {
    width: 100%;
    padding: 48px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.1);
}
.detail-item-wrap .item.half {
    width: calc(50% - 16px);
}
.detail-item-wrap .item.black-box {
    text-align: center;
    background-image: url(/Images/FO/tlsk/si_3_black.png);
    background-repeat: no-repeat;
    background-size: 84px;
    background-position: left 40px center;
}
.detail-item-wrap .item.white-box {
    text-align: center;
    background-image: url(/Images/FO/tlsk/si_3_white.png);
    background-repeat: no-repeat;
    background-size: 84px;
    background-position: left 40px center;
}
.detail-item-wrap .item-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
.detail-item-wrap .item-txt-wrap {
    display: flex;
    flex-flow: wrap;
    gap: 12px 0;
}
.detail-item-wrap .item-txt {
    width: calc(100% / 3);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}
.detail-item-wrap .item-txt.dot {
    padding-left: 16px;
    position: relative;
}
.detail-item-wrap .item-txt.dot::after {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    left: 0;
    top: 10px;
}

.research-item {
    display: flex;
    gap: 90px;
    align-items: flex-end;
}
.research-item.reverse {
    flex-flow: row-reverse;
}
.research-item .item-img {
    width: 100%;
}
.research-item .item-txt-wrap {
    width: 100%;
}
.research-item .item-title-wrap {
    display: flex;
    flex-flow: column;
    gap: 16px;
    margin-bottom: 32px;
}
.research-item .item-sub-title {
    font-size: 18px;
    color: #fff;
}
.research-item .item-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    padding: 0 8px;
    background-color: #0134ff;
    width: fit-content;
}
.research-item .item-txt {
    font-size: 18px;
    color: #fff;
}
.research-item .item-sub-txt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}
.research-item .section-more-btn {
    margin-top: 40px;
    margin-left: 0;
}

@media screen and (max-width: 1280px) {
    .detail_page .subpage-nav-wrap {
        top: 48px;
        justify-content: unset;
        background: rgba(7, 68, 211, 0.6);
    }
    .detail_page .subpage-nav-item {
        max-width: unset;
    }
    .detail_page .detail-top .index-sub-title {
        font-size: 15px;
    }
    .detail_page .detail-top .index-title {
        font-size: 24px;
    }
    .detail_page .section-wrap {
        padding-top: 128px;
    }

    .category-item-wrap.per_5 {
        gap: 8px;
    }
    .category-item-wrap.per_4 {
        gap: 8px;
    }
    .category-item-wrap.per_2 {
        gap: 8px;
    }
    .category-item {
        padding-top: 32px;
        padding-bottom: 24px;
        gap: 24px;
        border-radius: 16px;
    }
    .category-item.logo {
        background-size: 76px;
    }
    .category-item-wrap.per_5 .category-item {
        width: calc((100% - 8px * 4) / 5);
        padding-bottom: 32px;
    }
    .category-item-wrap.per_4 .category-item {
        width: calc((100% - 8px * 3) / 4);
    }
    .category-item .item-img {
        width: 64px;
        height: 64px;
    }
    .category-item-wrap.per_2 .category-item .item-img {
        width: 96px;
        height: 80px;
    }
    .category-item .item-title {
        font-size: 16px;
    }

    .detail_page .portfolio-item .title {
        font-size: 20px;
    }

    .detail-item-wrap {
        gap: 8px;
    }
    .detail-item-wrap .item {
        padding: 24px;
        border-radius: 16px;
    }
    .detail-item-wrap .item.half {
        width: calc(50% - 4px);
    }
    .detail-item-wrap .item.black-box {
        background-size: 40px;
        background-position: left 24px center;
    }
    .detail-item-wrap .item.white-box {
        background-size: 40px;
        background-position: left 24px center;
    }
    .detail-item-wrap .item-title {
        font-size: 20px;
    }
    .detail-item-wrap .item-txt-wrap {
        gap: 8px 0;
    }
    .detail-item-wrap .item-txt {
        width: calc(100% / 2);
        font-size: 15px;
    }
    .detail-item-wrap .item-txt.dot::after {
        top: 8.5px;
    }

    .research-item {
        flex-flow: column;
        gap: 24px;
    }
    .research-item.reverse {
        flex-flow: column;
    }
    .research-item .item-title-wrap {
        margin-bottom: 24px;
    }
    .research-item .item-sub-title {
        font-size: 14px;
    }
    .research-item .item-title {
        font-size: 24px;
    }
    .research-item .item-txt {
        font-size: 15px;
    }
    .research-item .item-sub-txt {
        font-size: 13px;
    }
    .research-item .section-more-btn {
        margin-top: 24px;
    }
}

@media screen and (max-width: 768px) {
    .category-item-wrap.per_5 .category-item {
        width: calc((100% - 8px) / 2);
        padding-bottom: 32px;
    }
    .category-item-wrap.per_4 .category-item {
        width: calc((100% - 8px) / 2);
    }
    .detail-item-wrap .item.half {
        width: 100%;
    }
    .detail-item-wrap .item-txt {
        width: 100%;
    }
}

/* subpage - 정부 R&D 사업 */
.process-step-wrap {
    display: flex;
    flex-flow: column;
    gap: 120px;
    position: relative;
}
.process-step-item {
    display: flex;
    gap: 96px;
    align-items: flex-end;
}
.process-step-item .item-img {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    opacity: 0.4;
    transition: 0.3s;
}
.process-step-item.item-1 .item-img {
    background-image: url(/Images/FO/tlsk/process_step_1.png);
}
.process-step-item.item-2 .item-img {
    background-image: url(/Images/FO/tlsk/process_step_2.png);
}
.process-step-item.item-3 .item-img {
    background-image: url(/Images/FO/tlsk/process_step_3.png);
}
.process-step-item .item-txt-wrap {
    width: 100%;
    display: flex;
    flex-flow: column;
}
.process-step-item .item-txt-wrap *:not(.item-num) {
    opacity: 0.4;
    transition: 0.3s;
}
.process-step-item .item-num {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #0134ff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 24px;
}
.process-step-item .item-label {
    padding: 0 16px;
    line-height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    color: #fff;
    width: fit-content;
    margin-bottom: 16px;
}
.process-step-item .item-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 24px;
}
.process-step-item .item-txt-group {
    display: flex;
    flex-flow: column;
    gap: 8px;
}
.process-step-item .item-txt {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}
.process-step-item .item-txt::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.process-step-item:nth-child(2n) {
    flex-flow: row-reverse;
}
.process-step-item:nth-child(2n) .item-img {
    background-position: left center;
}
.process-step-item:nth-child(2n) .item-txt-wrap {
    align-items: flex-end;
    text-align: right;
}
.process-step-item:nth-child(2n) .item-txt {
    padding-left: 0;
    padding-right: 16px;
}
.process-step-item:nth-child(2n) .item-txt::after {
    left: unset;
    right: 0;
}

.process-step-item.active .item-img {
    opacity: 1;
}
.process-step-item.active .item-txt-wrap *:not(.item-num) {
    opacity: 1;
}
.process-step-item.active .item-label {
    background-color: #0134ff;
}
.process-step-item.active.item-1 .item-img {
    background-image: url(/Images/FO/tlsk/process_step_1_active.png);
}
.process-step-item.active.item-2 .item-img {
    background-image: url(/Images/FO/tlsk/process_step_2_active.png);
}
.process-step-item.active.item-3 .item-img {
    background-image: url(/Images/FO/tlsk/process_step_3_active.png);
}

.process-step-bar {
    position: absolute;
    width: 2px;
    height: calc(100% + 32px);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.3);
}
.process-step-bar-active {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0%;
    background: #0134ff;
}
.process-step-bar-active::after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0134ff;
    opacity: 0.5;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}
.process-step-bar-active::before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0134ff;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.consulting-process-wrap {
    display: flex;
    gap: 40px;
}
.consulting-process-group {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.consulting-process-item {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    color: #fff;
}
.consulting-process-item.item-title {
    font-size: 24px;
    font-weight: bold;
}
.consulting-process-item.item-txt {
    font-size: 20px;
}
.consulting-process-group.group-1 .item-title {
    background: #0744d3;
}
.consulting-process-group.group-1 .item-txt {
    background: rgba(7, 68, 211, 0.6);
}
.consulting-process-group.group-2 .item-title {
    background: #3f0abd;
}
.consulting-process-group.group-2 .item-txt {
    background: rgba(63, 10, 189, 0.6);
}
.consulting-process-group.group-3 .item-title {
    background: #6a0abd;
}
.consulting-process-group.group-3 .item-txt {
    background: rgba(106, 10, 189, 0.6);
}

@media screen and (max-width: 1280px) {
    .process-step-wrap {
        gap: 40px;
    }
    .process-step-item {
        flex-flow: column;
        gap: 24px;
        padding-left: 48px;
    }
    .process-step-item .item-img {
        height: 80px;
        background-position: left center;
    }
    .process-step-item .item-num {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 13px;
        margin-bottom: 16px;
    }
    .process-step-item .item-label {
        padding: 0 12px;
        line-height: 24px;
        border-radius: 4px;
        font-size: 15px;
    }
    .process-step-item .item-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    .process-step-item .item-txt {
        font-size: 13px;
    }
    .process-step-item .item-txt::after {
        top: 8px;
    }

    .process-step-item:nth-child(2n) {
        flex-flow: column;
    }
    .process-step-item:nth-child(2n) .item-txt-wrap {
        align-items: flex-start;
        text-align: left;
    }
    .process-step-item:nth-child(2n) .item-txt {
        padding-left: 16px;
        padding-right: 0;
    }
    .process-step-item:nth-child(2n) .item-txt::after {
        left: 0;
        right: unset;
    }

    .process-step-bar {
        height: calc(100% + 32px);
        left: 15px;
        transform: none;
    }
    .process-step-bar-active::after {
        width: 32px;
        height: 32px;
    }
    .process-step-bar-active::before {
        width: 8px;
        height: 8px;
    }

    .consulting-process-wrap {
        gap: 16px;
    }
    .consulting-process-group {
        gap: 8px;
    }
    .consulting-process-item {
        height: 52px;
        border-radius: 8px;
    }
    .consulting-process-item.item-title {
        font-size: 20px;
    }
    .consulting-process-item.item-txt {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .consulting-process-wrap {
        flex-flow: wrap;
        gap: 24px;
    }
}

/* subpage - 해외 IT 아웃소싱 */
.section .item-wrap.type03 {
    flex-flow: column;
    gap: 40px;
}
.section .item-wrap.type03 .item {
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 56px 80px;
    display: flex;
    position: relative;
    overflow: hidden;
}
.section .item-wrap.type03 .item::after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 128px;
    border-radius: 8px;
    background: #0134ff;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}
.section .item-wrap.type03 .item-txt-wrap {
    display: flex;
    flex-flow: column;
    gap: 24px;
}
.section .item-wrap.type03 .item-num {
    font-size: 32px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.4);
}
.section .item-wrap.type03 .item-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}
.section .item-wrap.type03 .item-txt-group {
    display: flex;
    flex-flow: column;
    gap: 8px;
}
.section .item-wrap.type03 .item-txt {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}
.section .item-wrap.type03 .item-txt::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}
.section .item-wrap.type03 .item-img {
    width: auto;
    height: 240px;
    position: absolute;
    right: 80px;
}

.section .item-wrap.type03 .item:nth-child(2n) {
    flex-flow: row-reverse;
    align-items: flex-end;
    text-align: right;
}
.section .item-wrap.type03 .item:nth-child(2n)::after {
    left: unset;
    right: -8px;
}
.section .item-wrap.type03 .item:nth-child(2n) .item-img {
    right: unset;
    left: 80px;
}
.section .item-wrap.type03 .item:nth-child(2n) .item-txt {
    padding-left: 0;
    padding-right: 16px;
}
.section .item-wrap.type03 .item:nth-child(2n) .item-txt::after {
    left: unset;
    right: 0;
}

@media screen and (max-width: 1280px) {
    .section .item-wrap.type03 {
        gap: 16px;
    }
    .section .item-wrap.type03 .item {
        border-radius: 16px;
        padding: 32px 24px;
        flex-flow: column;
        gap: 24px;
    }
    .section .item-wrap.type03 .item::after {
        width: 56px;
        height: 4px;
        border-radius: 4px;
        left: 24px;
        top: 0;
        transform: translateY(-50%);
    }
    .section .item-wrap.type03 .item-txt-wrap {
        gap: 16px;
    }
    .section .item-wrap.type03 .item-num {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .section .item-wrap.type03 .item-title {
        font-size: 20px;
        margin-bottom: 0;
    }
    .section .item-wrap.type03 .item-txt {
        font-size: 13px;
    }
    .section .item-wrap.type03 .item-txt::after {
        width: 4px;
        height: 4px;
        top: 8px;
    }
    .section .item-wrap.type03 .item-img {
        height: 170px;
        position: static;
        object-fit: contain;
        object-position: center;
    }

    .section .item-wrap.type03 .item:nth-child(2n) {
        flex-flow: column;
        align-items: flex-start;
        text-align: left;
    }
    .section .item-wrap.type03 .item:nth-child(2n)::after {
        left: 24px;
        right: unset;
    }
    .section .item-wrap.type03 .item:nth-child(2n) .item-txt {
        padding-left: 16px;
        padding-right: 0;
    }
    .section .item-wrap.type03 .item:nth-child(2n) .item-txt::after {
        left: 0;
        right: unset;
    }
}

/* subpage - About Us */
.section .item-wrap.type02-1 {
    gap: 24px;
}
.section .item-wrap.type02-1 .item {
    padding-top: 32px;
    padding-bottom: 40px;
    position: relative;
}
.section .item-wrap.type02-1 .item::after {
    content: "";
    display: block;
    position: absolute;
    width: 48px;
    height: 8px;
    background: #0134ff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section .item-wrap.type02-1 .item:hover .item-sub-title {
    color: #fff;
}
/* .section .item-wrap.type02-1 .item:hover { background: #fff; }
.section .item-wrap.type02-1 .item-img { width: 100px; height: 100px; }
.section .item-wrap.type02-1 .item:hover .item-title { color: #0134ff; }
.section .item-wrap.type02-1 .item:hover .item-txt { color: inherit; } */

.section .item-wrap.type04 {
    gap: 32px;
    flex-flow: wrap;
}
.section .item-wrap.type04 .item {
    width: calc((100% - 32px * 3) / 4);
    background: #fff;
    border-radius: 16px;
}
.section .item-wrap.type04 .item-img {
    padding: 24px;
}
.section .item-wrap.type04 .item-img img {
    width: 100%;
    height: 112px;
    object-fit: contain;
    object-position: center;
}
.section .item-wrap.type04 .item-title {
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    border-top: 1px solid #e4e4e4;
    margin-bottom: 0;
}

@media screen and (max-width: 1280px) {
    .section .item-wrap.type02-1 {
        gap: 16px;
    }

    .section .item-wrap.type04 {
        gap: 16px;
        max-width: 616px;
        margin: 0 auto;
    }
    .section .item-wrap.type04 .item {
        width: calc((100% - 16px) / 2);
        max-width: 300px;
    }
    .section .item-wrap.type04 .item-img {
        padding: 16px;
    }
    .section .item-wrap.type04 .item-img img {
        height: 96px;
    }
    .section .item-wrap.type04 .item-title {
        font-size: 16px;
    }
}
@media screen and (max-width: 640px) {
    .section .item-wrap.type04 .item {
        width: 100%;
    }
    .section .item-wrap.type04-1 {
        gap: 8px;
    }
    .section .item-wrap.type04-1 .item {
        width: calc((100% - 8px) / 2);
        max-width: unset;
    }
    .section .item-wrap.type04-1 .item-img img {
        height: 56px;
    }
}

/* subpage - board */
.board {
    background: #fff;
    padding-top: 72px;
    padding-bottom: 160px;
}
@media screen and (max-width: 1280px) {
    .board {
        padding-top: 88px;
        padding-bottom: 80px;
    }
}

/* subpage - newsroom */
.newsroom-top {
    position: relative;
    padding-top: 144px;
    margin-bottom: 120px;
}
.newsroom-top::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: calc(100% - 100px);
    background: #f5f5f5;
    top: 0;
    left: 0;
    right: 0;
}
.newsroom-top::after {
    content: "Newsroom";
    display: block;
    position: absolute;
    font-family: "Klmm", sans-serif;
    font-size: 120px;
    font-weight: bold;
    color: #fff;
    right: 0;
    top: 32px;
}
.newsroom-slide-wrap {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}
.newsroom-slide {
    overflow: unset;
}
.newsroom-slide .swiper-slide {
    opacity: 0;
    transition: 1s;
}
.newsroom-slide .swiper-slide-active {
    opacity: 1;
}
.newsroom-slide-item {
    display: flex;
    align-items: center;
    gap: 48px;
}
.newsroom-slide-item .item-img {
    width: 55%;
    position: relative;
    padding-top: calc(55% * 0.6475);
    border-radius: 24px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
    overflow: hidden;
}
.newsroom-slide-item .item-img img {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
}
.newsroom-slide-item .item-txt-wrap {
    width: calc(45% - 48px);
    display: flex;
    flex-flow: column;
    gap: 24px;
    background: #f5f5f5;
}
.newsroom-slide-item .item-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc((1em * 1.4) * 2);
}
.newsroom-slide-item .item-txt {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: rgba(18, 19, 49, 0.7);
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc((1em * 1.5) * 2);
}
.newsroom-slide-item .item-sub-txt {
    font-size: 14px;
    color: rgba(18, 19, 49, 0.4);
}

.newsroom-slide-wrap .newsroom-slide-pagintaion {
    display: flex;
    gap: 16px;
    position: absolute;
    left: calc(55% + 48px);
    top: 64px;
    bottom: unset;
    transition: 0.8s;
}
.newsroom-slide-wrap .newsroom-slide-pagintaion .swiper-pagination-bullet {
    margin: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #e4e4e4;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: 1;
    transition: 0.3s;
}
.newsroom-slide-wrap .newsroom-slide-pagintaion .swiper-pagination-bullet-active {
    background: #121331;
}
.newsroom-slide-handler {
    display: flex;
    gap: 16px;
    position: absolute;
    left: calc(55% + 48px);
    bottom: 52px;
    z-index: 1;
    gap: 8px;
    align-items: center;
}
.newsroom-slide-btn {
    font-size: 24px;
    color: #aeaeae;
    cursor: pointer;
}
.slide-bar {
    width: 160px;
    height: 2px;
    position: relative;
    background: rgba(174, 174, 174, 0.2);
}
.slide-bar::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #aeaeae;
}
.slide-bar.active::after {
    animation: bar 5s ease;
    animation-play-state: running;
}
.slide-bar.paused::after {
    animation-play-state: paused;
}
@keyframes bar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.board-list {
    display: flex;
    flex-flow: wrap;
    gap: 40px;
}
.board-item {
    width: calc((100% - 40px * 2) / 3);
}
.board-item .item-img {
    width: 100%;
    padding-top: 65%;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}
.board-item .item-img img {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
}
.board-item .item-txt-wrap {
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.board-item .item-txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc((1em * 1.5) * 2);
}
.board-item .item-sub-txt {
    font-size: 14px;
    color: rgba(18, 19, 49, 0.4);
}

@media screen and (max-width: 1280px) {
    .newsroom-top {
        padding-top: 40px;
        margin-bottom: 40px;
    }
    .newsroom-top::before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: calc(100% - 44px);
        background: #f5f5f5;
        top: 0;
        left: 0;
        right: 0;
    }
    .newsroom-top::after {
        font-size: 48px;
        top: 0;
    }
    .newsroom-slide-wrap {
        padding: 0 16px;
        padding-bottom: 76px;
    }
    .newsroom-slide-item {
        flex-flow: column;
        gap: 72px;
    }
    .newsroom-slide-item .item-img {
        width: 100%;
        padding-top: 64.75%;
        border-radius: 16px;
    }
    .newsroom-slide-item .item-txt-wrap {
        width: 100%;
        gap: 16px;
        background: none;
    }
    .newsroom-slide-item .item-title {
        font-size: 18px;
    }
    .newsroom-slide-item .item-txt {
        font-size: 14px;
    }
    .newsroom-slide-item .item-sub-txt {
        font-size: 12px;
    }

    .newsroom-slide-wrap .newsroom-slide-pagintaion {
        gap: 8px;
        left: 16px;
        top: calc(((100vw - 32px) * 0.6475) + 24px);
    }
    .newsroom-slide-wrap .newsroom-slide-pagintaion .swiper-pagination-bullet {
        font-size: 12px;
    }
    .newsroom-slide-handler {
        gap: 8px;
        left: 16px;
        bottom: 0;
        gap: 8px;
    }
    .newsroom-slide-btn {
        font-size: 20px;
    }

    .board-list {
        gap: 24px;
    }
    .board-item {
        width: calc((100% - 24px) / 2);
    }
    .board-item .item-img {
        border-radius: 8px;
        margin-bottom: 16px;
    }
    .board-item .item-txt {
        font-size: 14px;
    }
    .board-item .item-sub-txt {
        font-size: 12px;
    }
}

@media screen and (max-width: 640px) {
    .board-item {
        width: 100%;
    }
}

/* 게시글 상세 */
.board_detail {
    padding-top: 120px;
    padding-bottom: 160px;
    min-height: calc(100vh - 287px);
    background: #fff;
}
.board_detail .container {
    max-width: 1200px;
}
.board_detail .title-wrap {
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e4e4e4;
}
.board_detail .title-wrap .sub-title {
    font-size: 18px;
    font-weight: bold;
    color: #0134ff;
}
.board_detail .title-wrap .title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
}
.board_detail .title-wrap .txt-group {
    gap: 32px;
}
.board_detail .title-wrap .txt {
    font-size: 14px;
}
.board_detail .title-wrap .txt strong {
    font-weight: 500;
}
.board_detail .con-wrap {
    padding: 40px 0 96px;
    max-width: 900px;
    margin: 0 auto;
}
.board_detail .con-wrap * {
    font-size: inherit;
    line-height: inherit;
}
.board_detail .con-wrap img {
    max-width: 100%;
    width: unset;
}
.file-download-group {
    gap: 8px;
    margin-bottom: 24px;
}
.file-download-wrap {
    height: 52px;
    align-items: center;
    padding: 0 16px;
    background: #e8f7fe;
    border-radius: 4px;
    gap: 8px;
}
.file-download-wrap .icon {
    font-size: 20px;
    color: #009eff;
}
.file-download-wrap .file-title {
    font-size: 16px;
    width: calc(100% - 56px);
    min-width: 136px;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.board_detail .btm-item-wrap {
    width: 100%;
    border-top: 1px solid #121331;
    border-bottom: 1px solid #121331;
}
.board_detail .btm-item-wrap .item {
    display: flex;
    align-items: center;
    padding: 24px 0;
}
.board_detail .btm-item-wrap .item:not(:last-child) {
    border-bottom: 1px solid #e4e4e4;
}
.board_detail .btm-item-wrap .item-default {
    width: 114px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: bold;
}
.board_detail .btm-item-wrap .item-user {
    width: calc(100% - 114px);
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.5;
}
.board_detail .btm-item-wrap .item:hover .item-user {
    text-decoration: underline;
}

.board-detail-list {
    gap: 24px;
}
.board-detail-item .item-title {
    width: 122px;
    font-size: 17px;
    font-weight: bold;
    position: relative;
    line-height: 1.5;
}
.board-detail-item .item-title::after {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 18px;
    background: #d5d5d5;
    right: 0;
    top: 4px;
}
.board-detail-item .item-txt {
    width: calc(100% - 122px);
    padding-left: 24px;
    font-size: 17px;
    line-height: 1.5;
}

@media screen and (max-width: 1280px) {
    .board_detail {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .board_detail .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .board_detail .title-wrap {
        padding: 0;
        padding-bottom: 24px;
        border-top: 0;
        gap: 12px;
    }
    .board_detail .title-wrap .sub-title {
        font-size: 14px;
    }
    .board_detail .title-wrap .title {
        font-size: 18px;
    }
    .board_detail .title-wrap .txt-group {
        gap: 24px;
        width: 100%;
        justify-content: center;
    }
    .board_detail .title-wrap .txt {
        font-size: 13px;
    }
    .board_detail .con-wrap {
        padding: 24px 0;
    }
    .file-download-group {
        gap: 8px;
    }
    .file-download-wrap {
        height: 40px;
        padding: 0 16px;
    }
    .file-download-wrap i {
        font-size: 16px;
    }
    .file-download-wrap .file-title {
        font-size: 14px;
        width: calc(100% - 48px);
    }
    .board_detail .btm-item-wrap .item {
        padding: 16px 0;
    }
    .board_detail .btm-item-wrap .item-default {
        width: 72px;
        gap: 8px;
        font-size: 13px;
    }
    .board_detail .btm-item-wrap .item-user {
        width: calc(100% - 72px);
        font-size: 13px;
    }

    .board-detail-list {
        gap: 16px;
    }
    .board-detail-item .item-title {
        width: 96px;
        font-size: 14px;
    }
    .board-detail-item .item-title::after {
        height: 14px;
    }
    .board-detail-item .item-txt {
        width: calc(100% - 96px);
        padding-left: 16px;
        font-size: 14px;
    }
}

/* subpage - 담당부서 */
.department-wrap {
    display: flex;
    flex-flow: wrap;
    gap: 40px;
}
.department-item {
    width: calc((100% - 40px * 2) / 3);
    border-radius: 24px;
    background: #fff;
    padding: 0 24px;
}
.department-item .item-txt-wrap {
    display: flex;
    flex-flow: column;
    text-align: center;
    gap: 24px;
    padding: 40px 24px 48px;
}
.department-item .item-title {
    font-size: 24px;
    font-weight: bold;
}
.department-item .item-txt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(18, 19, 49, 0.7);
}

.faq-item {
    display: block;
}
.faq-item.hidden {
    display: none;
}

@media screen and (max-width: 1280px) {
    .department-wrap {
        display: flex;
        flex-flow: wrap;
        gap: 24px;
    }
    .department-item {
        width: calc((100% - 24px) / 2);
        border-radius: 16px;
    }
    .department-item .item-txt-wrap {
        gap: 16px;
        padding: 24px 16px 40px;
    }
    .department-item .item-title {
        font-size: 20px;
    }
    .department-item .item-txt {
        font-size: 13px;
    }
}
@media screen and (max-width: 640px) {
    .department-item {
        width: 100%;
    }
}

/* subpage - 공지사항 */
.cs-top {
    padding: 184px 0 80px;
}
.cs-title-wrap {
    display: flex;
    align-items: flex-end;
    margin-bottom: 24px;
}
.cs-title-group {
    gap: 24px;
}
.cs-title-group.col-group {
    align-items: baseline;
}
.cs-title {
    font-size: 56px;
    font-weight: bold;
}
.cs-sub-title {
    font-size: 20px;
    color: rgba(18, 19, 49, 0.6);
}

.search-wrap {
    margin-left: auto;
    width: 100%;
    max-width: 360px;
    position: relative;
}
.search-input {
    width: 100%;
    height: 56px;
    border-radius: 28px;
    border: 1px solid #121331;
    padding: 0 24px;
    padding-right: 48px;
    font-size: 16px;
    font-weight: 600;
}
.search-input::placeholder {
    color: #aeaeae;
}
.search-btn {
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.notice-list {
    margin-top: 0;
    border-top: 2px solid #121331;
    border-bottom: 2px solid #121331;
}
.notice-item {
    padding: 20px 24px;
    padding-left: 0;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    cursor: pointer;
}
.notice-item:hover {
    background: #f5f5f5;
}
.notice-item:not(:last-child) {
    border-bottom: 1px solid #e4e4e4;
}
.notice-item .txt-wrap {
    width: 100%;
    align-items: center;
    gap: 16px;
}
.notice-item .txt {
    max-width: calc(100% - 88px - 16px);
    font-size: 20px;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notice-item .date-wrap {
    width: 88px;
}
.notice-item .date-wrap .day {
    font-size: 40px;
    font-weight: bold;
    color: #a4a4a4;
    transition: 0.2s;
    text-align: center;
}
.notice-item .date-wrap .month {
    font-size: 17px;
    font-weight: 300;
    color: #a4a4a4;
    transition: 0.2s;
    text-align: center;
}
.notice-item .icon {
    display: none;
    width: 56px;
    height: 56px;
    margin-left: 24px;
    text-align: left;
}
.notice-item.top .icon {
    display: block;
}
.notice-item.top .date-wrap .day,
.notice-item.top .date-wrap .month {
    display: none;
}
.notice-item.top .txt {
    font-weight: bold;
}
.notice-item .more-btn {
    font-size: 32px;
    transition: 0.2s;
    margin-left: auto;
}

@media screen and (max-width: 1280px) {
    .cs-top {
        display: none;
    }
    .cs-title-wrap {
        flex-flow: wrap;
        gap: 16px;
        margin-bottom: 24px;
    }
    .detail_page .cs-title-wrap {
        padding-top: 40px;
    }
    .cs-title-group {
        gap: 8px;
        flex-flow: column-reverse;
    }
    .cs-title {
        font-size: 24px;
    }
    .cs-sub-title {
        font-size: 15px;
    }

    .search-input {
        height: 48px;
        padding: 0 16px;
        padding-right: 40px;
        font-size: 14px;
    }
    .search-btn {
        font-size: 20px;
        right: 16px;
        top: 50%;
    }

    .notice-list {
        border-top: 1px solid #121331;
        border-bottom: 1px solid #121331;
    }
    .notice-item {
        padding: 16px 0;
    }
    .notice-item .txt-wrap {
        gap: 8px;
    }
    .notice-item .txt {
        max-width: calc(100% - 56px - 32px);
        font-size: 14px;
        line-height: 1.5;
        display: -webkit-box;
        word-wrap: break-word;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: calc((14px * 1.5) * 2);
        white-space: unset;
    }
    .notice-item .date-wrap {
        width: 56px;
    }
    .notice-item .date-wrap .day {
        font-size: 20px;
    }
    .notice-item .date-wrap .month {
        font-size: 12px;
    }
    .notice-item .icon {
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }
    .notice-item .more-btn {
        font-size: 16px;
    }
}

/* subpage - 자주묻는질문 */
.cs-tab-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}
.cs-tab {
    width: 100%;
    max-width: 200px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e4e4e4;
    font-size: 15px;
    color: #aeaeae;
    transition: 0.2s;
    border-radius: 26px;
    cursor: pointer;
}
.cs-tab.active {
    background: #121331;
    border-color: #121331;
    color: #fff;
}

.faq-contents-wrap {
    border-top: 2px solid #121331;
    border-bottom: 2px solid #121331;
}
.faq-contents-item {
    border-bottom: 1px solid #e4e4e4;
    width: 100%;
    cursor: pointer;
}
.faq-contents-item.hidden {
    display: none;
}
.faq-contents-item .icon {
    display: block;
    font-size: 32px;
    line-height: 56px;
}
.faq-contents-item .content-wrap {
    padding: 20px 24px;
    display: flex;
    width: 100%;
    align-items: flex-start;
    min-height: 88px;
    position: relative;
    background: #fff;
    transition: 0.2s;
}
.faq-contents-item .faq-text {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-align: center;
    background: #0134ff;
    font-size: 32px;
    line-height: 56px;
    font-weight: bold;
    color: #fff;
}
.faq-contents-item .faq-title-wrap {
    width: calc(100% - 88px);
    padding: 0 24px;
    padding-top: 13px;
    display: flex;
    gap: 16px;
    align-items: baseline;
}
.faq-contents-item .faq-title {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.faq-contents-item .faq-label {
    font-size: 20px;
    font-weight: 600;
    color: #0134ff;
    white-space: nowrap;
}

.faq-contents-item .answer-wrap {
    background: #f5f5f5;
    border-top: 1px solid #e4e4e4;
    display: none;
}
.faq-contents-item .answer-wrap .content-wrap {
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
    background: none;
}
.faq-contents-item .answer-wrap .faq-text {
    background: #fff;
    color: #0134ff;
}
.faq-contents-item .answer-wrap .faq-title-wrap {
    padding-top: 0;
}
.faq-contents-item .answer-wrap .faq-txt {
    font-size: 18px;
    line-height: 1.5;
}

.faq-contents-item.active .faq-title {
    white-space: unset;
}
.faq-contents-item.active .answer-wrap {
    display: block;
}
.faq-contents-item.active .icon {
    transform: rotate(180deg);
}

@media screen and (max-width: 1280px) {
    .cs-tab-wrap {
        margin-bottom: 16px;
        gap: 8px;
    }
    .cs-tab {
        height: 36px;
        font-size: 13px;
        color: #aeaeae;
        transition: 0.2s;
        border-radius: 26px;
        cursor: pointer;
    }
    .cs-tab.active {
        background: #121331;
        border-color: #121331;
        color: #fff;
    }

    .faq-contents-wrap {
        border-top: 1px solid #121331;
        border-bottom: 1px solid #121331;
    }
    .faq-contents-item .icon {
        font-size: 16px;
        line-height: 32px;
    }
    .faq-contents-item .content-wrap {
        padding: 8px;
        min-height: 48px;
    }
    .faq-contents-item .faq-text {
        width: 32px;
        height: 32px;
        font-size: 16px;
        line-height: 32px;
    }
    .faq-contents-item .faq-title-wrap {
        width: calc(100% - 48px);
        padding: 0 16px;
        padding-top: 5px;
        gap: 8px;
    }
    .faq-contents-item .faq-title {
        font-size: 14px;
    }
    .faq-contents-item .faq-label {
        font-size: 14px;
    }

    .faq-contents-item .answer-wrap .content-wrap {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .faq-contents-item .answer-wrap .faq-txt {
        font-size: 14px;
    }
}
@media screen and (max-width: 640px) {
    .faq-contents-item .faq-text {
        display: none;
    }
    .faq-contents-item .faq-title-wrap {
        width: calc(100% - 16px);
        padding-left: 0;
    }
}

/* subpage - 1:1 문의하기 */
.inquiry-title-wrap {
    padding-top: 56px;
    align-items: flex-start;
}
.inquiry-title-wrap .cs-sub-title {
    font-weight: bold;
    color: #0134ff;
}
.cs-txt {
    line-height: 1.5;
    font-size: 16px;
    color: rgba(18, 19, 49, 0.7);
}
.inquiry-title-wrap .section-more-btn {
    margin-top: 48px;
}
.inquiry-top {
    margin-bottom: 56px;
}

.file-upload-wrap {
    gap: 16px;
}
.file-upload-btn {
    width: 100%;
    height: 52px;
    line-height: 52px;
    text-align: center;
    background: #707070;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.agree-wrap {
    gap: 16px;
}

@media screen and (max-width: 1280px) {
    .inquiry-title-wrap {
        padding-top: 0;
    }
    .inquiry-title-wrap .cs-title-group {
        flex-flow: column;
    }
    .cs-txt {
        font-size: 13px;
    }
    .inquiry-title-wrap .section-more-btn {
        margin-top: 0;
        width: 100%;
    }
    .inquiry-top {
        margin-bottom: 24px;
    }

    .file-upload-wrap {
        gap: 8px;
    }
    .file-upload-btn {
        height: 48px;
        line-height: 48px;
        border-radius: 2px;
        font-size: 14px;
    }
    .agree-wrap {
        gap: 8px;
    }
}

/* subpage - contact us */
.contact-us {
    position: relative;
    bottom: -160px;
    background-color: #121331;
    background-image: url(/Images/FO/tlsk/bg_4.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top 32px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding: 120px 0 160px;
}
.contact-us-wrap {
    display: flex;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 32px;
}
.contact-us-wrap .index-title-wrap {
    margin-bottom: 0;
}
.contact-us-txt {
    font-size: 18px;
    color: #fff;
    line-height: 2;
}
.contact-us-map {
    height: 640px;
    border-radius: 40px;
    overflow: hidden;
}
.contact-us-map .root_daum_roughmap,
.contact-us-map .root_daum_roughmap .wrap_map {
    width: 100%;
    height: 100%;
}
.contact-us-map .root_daum_roughmap .wrap_controllers,
.contact-us-map .root_daum_roughmap .cont {
    display: none;
}

@media screen and (max-width: 1280px) {
    .contact-us {
        bottom: -80px;
        background-image: none;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        padding: 40px 0;
    }
    .contact-us-wrap {
        flex-flow: wrap;
        margin-bottom: 24px;
        gap: 8px;
    }
    .contact-us-wrap .section-more-btn {
        margin: 0;
    }
    .contact-us-txt {
        font-size: 14px;
    }
    .contact-us-map {
        height: 240px;
        border-radius: 16px;
    }
}

/* subpage - 1:1 문의 내역 */
.inquiry-list {
    border-top: 2px solid #121331;
    border-bottom: 2px solid #121331;
}
.inquiry-item {
    padding: 32px 24px;
    display: flex;
    align-items: center;
}
.inquiry-item:not(:last-child) {
    border-bottom: 1px solid #e4e4e4;
}
.inquiry-item .item-label {
    width: 104px;
    line-height: 36px;
    text-align: center;
    border-radius: 18px;
    background: #707070;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}
.inquiry-item .item-label.active {
    background: #0134ff;
}
.inquiry-item .item-txt-wrap {
    width: calc(100% - 104px - 150px);
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 16px;
}
.inquiry-item .item-title {
    font-size: 18px;
    font-weight: 600;
    color: #0134ff;
    white-space: nowrap;
}
.inquiry-item .item-txt {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.inquiry-item .item-sub-txt {
    width: 150px;
    text-align: right;
    font-size: 16px;
    color: #aeaeae;
}

@media screen and (max-width: 1280px) {
    .inquiry-list {
        border-top: 1px solid #121331;
        border-bottom: 1px solid #121331;
    }
    .inquiry-item {
        padding: 16px 0;
        flex-flow: column;
        gap: 12px;
        align-items: flex-start;
    }
    .inquiry-item .item-label {
        width: 72px;
        line-height: 24px;
        font-size: 13px;
    }
    .inquiry-item .item-txt-wrap {
        width: 100%;
        flex-flow: column;
        align-items: flex-start;
        gap: 8px;
        padding-left: 0;
    }
    .inquiry-item .item-title {
        font-size: 14px;
    }
    .inquiry-item .item-txt {
        font-size: 14px;
        line-height: 1.4;
        display: -webkit-box;
        word-wrap: break-word;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: calc((1em * 1.4) * 2);
        white-space: unset;
    }
    .inquiry-item .item-sub-txt {
        width: fit-content;
        text-align: left;
        font-size: 12px;
    }

    .inquiry_modal .modal-alert {
        top: unset;
        transform: none;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: unset;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
}

/* subpage - 1:1 문의 내역 - 상세 */
.inquiry_detail .title-wrap {
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    padding: 24px 0;
    position: relative;
    padding-right: 104px;
}
.inquiry_detail .title-wrap .title {
    font-size: 24px;
}
.inquiry_detail .title-wrap .txt {
    font-size: 16px;
    color: #aeaeae;
}
.inquiry_detail .title-wrap .label {
    width: 104px;
    line-height: 36px;
    text-align: center;
    border-radius: 18px;
    background: #707070;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    right: 0;
    top: 24px;
}
.inquiry_detail .title-wrap .label.active {
    background: #0134ff;
}
.inquiry_detail .con-wrap {
    max-width: unset;
    padding: 24px 0;
}

.inquiry-detail-wrap {
    border-top: 2px solid #121331;
    border-bottom: 2px solid #121331;
}
.inquiry-detail-item:not(:last-child) {
    border-bottom: 1px solid #121331;
}
.inquiry-detail-item .a-content {
    padding: 24px;
    background: #f5f5f5;
    margin: 24px 0;
}
.inquiry-detail-item .a-content .txt-group {
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
}
.inquiry-detail-item .a-content .txt {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}
.inquiry-detail-item .a-content .sub-txt {
    color: #aeaeae;
    font-size: 14px;
}
.inquiry-detail-item .a-content .item-txt {
    font-size: 16px;
    line-height: 1.5;
    align-items: flex-start;
}

.inquiry-review {
    padding: 80px 0;
    border-bottom: 2px solid #121331;
}
.inquiry-review-wrap {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.inquiry-review-title-wrap {
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 16px;
    padding-bottom: 40px;
    border-bottom: 1px solid #aeaeae;
}
.inquiry-review-title {
    font-size: 24px;
    font-weight: bold;
}
.inquiry-review-sub-title {
    font-size: 16px;
    line-height: 1.5;
}
.review-score-wrap {
    padding: 48px 0;
}
.review-score-btn-wrap {
    justify-content: center;
    gap: 8px;
}
.review-score-btn {
    width: 48px;
    height: 48px;
    position: relative;
    background-image: url(/Images/FO/tlsk/star.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.review-score-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.review-score-btn.active::before {
    background-image: url(/Images/FO/tlsk/star_active.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 9;
}
.review-score-txt {
    text-align: center;
    margin-top: 16px;
    font-weight: bold;
    font-size: 20px;
}
.inquiry-review .form-submit-btn {
    max-width: unset;
}

@media screen and (max-width: 1280px) {
    .inquiry_detail .title-wrap {
        padding-right: 0;
        padding: 16px 0;
    }
    .inquiry_detail .title-wrap .title {
        font-size: 18px;
    }
    .inquiry_detail .title-wrap .txt {
        font-size: 12px;
    }
    .inquiry_detail .title-wrap .label {
        width: 72px;
        line-height: 24px;
        font-size: 13px;
        position: static;
        margin-bottom: 4px;
    }
    .inquiry_detail .con-wrap {
        padding: 16px 0;
    }

    .inquiry-detail-item .a-content {
        padding: 16px;
        margin: 16px 0;
    }
    .inquiry-detail-item .a-content .txt-group {
        gap: 8px;
    }
    .inquiry-detail-item .a-content .txt {
        font-size: 14px;
    }
    .inquiry-detail-item .a-content .sub-txt {
        font-size: 12px;
    }
    .inquiry-detail-item .a-content .item-txt {
        font-size: 14px;
    }

    .inquiry-review {
        padding: 40px 0;
    }
    .inquiry-review-title {
        font-size: 18px;
    }
    .inquiry-review-sub-title {
        font-size: 14px;
    }
    .review-score-wrap {
        padding: 40px 0;
    }
    .review-score-btn {
        width: 36px;
        height: 36px;
    }
    .review-score-txt {
        font-size: 16px;
    }
}

/* 개인정보 처리방침 */
.policy {
    background: #fff;
    padding-top: 160px;
    padding-bottom: 160px;
}
.policy .index-title {
    color: #121331;
}
.policy .index-sub-title {
    color: #707070;
}
.policy-wrap {
    display: flex;
    flex-flow: column;
    gap: 48px;
}
.policy-wrap * {
    font-size: 18px;
    line-height: 1.8;
}
.policy-top {
    padding: 40px 48px;
    background: #e8f7fe;
}
.policy-title {
    font-weight: bold;
}
.policy-main-title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #aeaeae;
    margin-bottom: 10px;
}
.policy-sub-txt {
    font-size: 16px;
    color: #707070;
    margin-top: 16px;
}
.policy-group {
    display: flex;
    flex-flow: column;
    gap: 8px;
}
.policy-wrap .padding-left {
    padding-left: 16px;
}

@media screen and (max-width: 1280px) {
    .policy {
        padding-top: 96px;
        padding-bottom: 80px;
    }
    .policy-wrap {
        gap: 32px;
    }
    .policy-wrap * {
        font-size: 14px;
    }
    .policy-top {
        padding: 16px;
    }
    .policy-main-title {
        font-size: 16px;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .policy-sub-txt {
        font-size: 12px;
        margin-top: 8px;
    }
    .policy-wrap .padding-left {
        padding-left: 8px;
    }
}
