@charset "UTF-8";

/* 서브페이지 공통 */
h3.sub_tit {
    color: #333;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.76px;
}

p.sub_txt {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

p.sub_top_txt {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.96px;
}

.eng_sub_tit {
    color: #333;
    padding: 10px 20px;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    border-radius: 9999px;
    border-radius: 9999px;
    display: block;
    width: fit-content;
    border: 1px solid #333;
    text-align: center;
}

.point_g {
    color: var(--color-primary);
}

b.point_g {
    font-weight: 700;
}

@keyframes blink-effect {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink {
    animation: blink-effect 1s infinite;
    transition: 0.3s;
}

.bounce1 {
    animation: bounce1 2s ease infinite;
}

.bounce2 {
    animation: bounce2 2s ease infinite;
}

@keyframes bounce1 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 768px) {
    h3.sub_tit {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    p.sub_txt {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    p.sub_top_txt {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .eng_sub_tit {
        font-size: 16px;
    }
}

/* 눈물클리닉 나무의 특별함 페이지 */

.tears_1_1 {
    padding: 100px 0;
    position: relative;
    background: url('/img/sub/tears_1_1_bg.png') center center / cover no-repeat;
}

.tears_1_1 .tit_wrap {
    margin-bottom: 60px;
}

.tears_1_1 .sub_tit {
    margin-bottom: 24px;
}

.tears_1_1 .sub_txt {
    margin-bottom: 24px;
}

.tears_1_1 .n_txt {
    margin-bottom: 24px;
}

.tears_1_1 .guide {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.72px;
    border-radius: 9999px;
    border: 1px solid var(--color-primary);
    padding: 10px 24px;
    background: var(--color-primary);
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.tears_1_1 .guide::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('/img/sub/tears_1_1_icon1.png') center center / 100% no-repeat;
    animation: blink-effect 1s infinite;
    transition: 0.3s;
}

.tears_1_1 .center {
    width: 448px;
    height: 373px;
    background: url('/img/sub/tears_1_1_img1.png') center center / 100% no-repeat;
    color: #fff;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.543px;
    padding-top: 220px;
    box-sizing: border-box;
    margin: 0 auto;
}

.tears_1_1 .con_wrap {
    position: relative;
    padding-bottom: 270px;
}

.tears_1_1 .c_wrap {
    position: absolute;
    top: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: -25px;
    gap: 38px;
}

.tears_1_1 .c_con {
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 9999px;
    border: 1px solid var(--color-primary);
    text-align: center;
    position: relative;
    cursor: pointer;
}

.tears_1_1 .c_con img {
    margin-bottom: 12px;
}

.tears_1_1 .c_con b {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.96px;
    margin-bottom: 6px;
}

.tears_1_1 .c_con p {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

.tears_1_1 .c_con:nth-child(2) {
    margin-top: 426px;
}

.tears_1_1 .c_con::before {
    content: '';
    position: absolute;
    display: block;
    height: 92px;
    width: 8px;
    background: url('/img/sub/tears_1_1_line.png') center center/ 100% no-repeat;
}

.tears_1_1 .c_con:nth-child(1)::before {
    transform: rotate(122deg);
    right: -17px;
    bottom: -24px;
}

.tears_1_1 .c_con:nth-child(2)::before {
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
}

.tears_1_1 .c_con:nth-child(3)::before {
    transform: rotate(235deg);
    left: -17px;
    bottom: -24px;
}

.tears_1_1 .tears_pop {
    position: absolute;
    padding: 15px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(45, 75, 43, 0.25);
    max-width: 430px;
    text-align: left;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.tears_1_1 .tears_pop .inner {
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.tears_1_1 .tears_pop .img_cover {
    max-width: 160px;
}

.tears_1_1 .tears_pop .txt_wrap {
    flex: 1;
}

.tears_1_1 .tears_pop b {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.8px;
    display: block;
    margin-bottom: 10px;
}

.tears_1_1 .tears_pop p {
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.64px;
}

.tears_1_1 .tears_pop .close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
}

.tears_1_1 .tears_pop_1 {
    top: 670px;
    left: 50%;
    transform: translateX(-130%);
}

.tears_1_1 .tears_pop_2 {
    bottom: 50px;
    right: 50%;
    transform: translateX(120%);
}

.tears_1_1 .tears_pop_3 {
    top: 620px;
    right: 50%;
    transform: translateX(170%);
}

.tears_1_1 .tears_pop.on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.tears_1_1 .tears_pop.on .inner {
    transform: translateY(0);
}

@media screen and (max-width: 1680px) {
    .tears_1_1 .tears_pop_3 {
        right: 5vw;
        transform: translateX(0);
    }
}

@media screen and (max-width: 1280px) {
    .tears_1_1 .tears_pop_1 {
        left: 5vw;
        transform: translateX(0);
    }

    .tears_1_1 .tears_pop_2 {
        right: 5vw;
        transform: translateX(0);
    }
}

@media screen and (max-width: 1024px) {
    .tears_1_1 {
        padding: 80px 0;
    }

    .tears_1_1 .tit_wrap {
        margin-bottom: 80px;
    }

    .tears_1_1 .con_wrap {
        padding-bottom: 130px;
    }

    .tears_1_1 .center {
        width: 202px;
        height: 167px;
        padding-top: 102px;
        font-size: 17px;
        letter-spacing: -0.698px;
    }

    .tears_1_1 .c_wrap {
        gap: 0;
    }

    .tears_1_1 .c_con {
        width: 108px;
        height: 108px;
    }

    .tears_1_1 .c_con::before {
        width: 5px;
        height: 32px;
    }

    .tears_1_1 .c_con img {
        width: 36px;
        height: 36px;
        margin-bottom: 5px;
    }

    .tears_1_1 .c_con b {
        font-size: 14px;
        letter-spacing: -0.56px;
        margin-bottom: 0;
    }

    .tears_1_1 .c_con p {
        font-size: 10px;
    }

    .tears_1_1 .c_con:nth-child(2) {
        margin-top: 210px;
    }

    .tears_1_1 .c_con:nth-child(1)::before {
        right: -8px;
        bottom: 0;
    }

    .tears_1_1 .c_con:nth-child(2)::before {
        top: -33px;
    }

    .tears_1_1 .c_con:nth-child(3)::before {
        left: -8px;
        bottom: 0;
    }

    .tears_1_1 .tears_pop {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 768px) {
    .tears_1_1 .sub_tit {
        margin-bottom: 16px;
    }

    .tears_1_1 .guide {
        font-size: 14px;
        letter-spacing: -0.56px;
        align-items: center;
    }

    .tears_1_1 .sub_txt {
        margin-bottom: 16px;
    }

    .tears_1_1 .tears_pop {
        padding: 9px;
        min-width: 280px;
    }

    .tears_1_1 .tears_pop .inner {
        gap: 10px;
    }

    .tears_1_1 .tears_pop .img_cover {
        max-width: 105px;
    }

    .tears_1_1 .tears_pop .txt_wrap {
        flex: 1;
    }

    .tears_1_1 .tears_pop .img_cover img {
        width: 100%;
    }

    .tears_1_1 .tears_pop b {
        font-size: 15px;
        letter-spacing: -0.6px;
        margin-bottom: 5px;
    }

    .tears_1_1 .tears_pop p {
        font-size: 12px;
        letter-spacing: -0.48px;
    }

    .tears_1_1 .tears_pop .close {
        top: 10px;
        right: 10px;
    }
}

.tears_1_2 {
    background: var(--color-green-bg);
    padding: 120px 0;
}

.tears_1_2 h3 {
    margin-bottom: 16px;
}

.tears_1_2 .eng_sub_tit {
    margin: 0 auto 24px;
}

.tears_1_2 .tit_wrap {
    margin-bottom: 60px;
}

.tears_1_2 .con_wrap {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 10px;
}

.tears_1_2 .list_wrap {
    width: 50%;
    max-width: 490px;
}

.tears_1_2 .list_wrap .list {
    display: flex;
    padding: 20px 30px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid #a9bfad;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.45s;
}

.tears_1_2 .list.on {
    background: var(--color-primary);
}

.tears_1_2 .list.on span.num {
    background: #fff;
    color: var(--color-primary);
}

.tears_1_2 .list.on b,
.tears_1_2 .list.on p {
    color: #fff;
}

.tears_1_2 .list_wrap .list:not(:last-child) {
    margin-bottom: 10px;
}

.tears_1_2 .list_wrap .guide {
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #333;
    padding: 20px 30px;
    color: #fff;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 24px */
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.tears_1_2 .list_wrap .guide:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('/img/sub/tears_1_2_arrow.png') center center / cover no-repeat;
    animation: blink-effect 1s infinite;
}

.tears_1_2 .list_wrap span.num {
    color: #fff;
    border-radius: 9999px;
    background: var(--color-primary);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.8px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.45s;
    padding-top: 3px;
    box-sizing: border-box;
}

.tears_1_2 .list b {
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    transition: 0.45s;
    letter-spacing: -0.88px;
    /* text-align: justify; */
}

.tears_1_2 .list p {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.72px;
    transition: 0.45s;
}

.tears_1_2 .img_wrap {
    flex: 1;
    max-width: 457px;
    position: relative;
}

.tears_1_2 .img_wrap>img {
    width: 100%;
}

.tears_1_2 .img_wrap .over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.tears_1_2 .img_wrap .over .img {
    position: absolute;
    z-index: 1;
}

.tears_1_2 .img_wrap .over .img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(66, 191, 95, 0.2);
    border-radius: 999px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scale 1.2s infinite ease-in-out;
    z-index: -1;
}

.tears_1_2 .img_wrap .over_1 .img {
    top: 17%;
    left: 15%;
}

.tears_1_2 .img_wrap .over_2 .img:nth-child(2) {
    top: 35%;
    left: 67%;
}

.tears_1_2 .img_wrap .over_2 .img:nth-child(3) {
    top: 45%;
    left: 63%;
}

.tears_1_2 .img_wrap .over_3 .img:nth-child(2) {
    top: 37%;
    left: 76%;
}

.tears_1_2 .img_wrap .over_3 .img:nth-child(3) {
    top: 48%;
    left: 74%;
}

.tears_1_2 .img_wrap .over_4 .img {
    top: 48%;
    left: 87%;
}

.tears_1_2 .img_wrap .over_5 .img {
    top: 72%;
    left: 81%;
}

.tears_1_2 .img_wrap .over.on {
    opacity: 1;
    visibility: visible;
}

@keyframes scale {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@media screen and (max-width: 1024px) {
    .tears_1_2 .list_wrap .list {
        padding: 20px 10px;
    }

    .tears_1_2 .list b {
        font-size: 19px;
    }

    .tears_1_2 .list p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

@media screen and (max-width: 768px) {
    .tears_1_2 {
        padding: 80px 0;
    }

    .tears_1_2 .tit_wrap {
        width: 90%;
        margin: 0 auto 40px;
    }

    .tears_1_2 .con_wrap {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .tears_1_2 .img_wrap {
        max-width: 375px;
    }

    .tears_1_2 .list_wrap {
        width: 100%;
        max-width: unset;
    }

    .tears_1_2 .list_wrap .list {
        padding: 10px;
    }

    .tears_1_2 .list_wrap span.num {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_1_2 .list b {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_1_2 .list_wrap .guide {
        font-size: 14px;
        letter-spacing: -0.56px;
        padding: 10px;
    }

    .tears_1_2 .list p {
        font-size: 14px;
    }
}

.tears_1_3 {
    padding: 120px 0;
}

.tears_1_3 .inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

.tears_1_3 .sub_tit {
    margin-bottom: 24px;
}

.tears_1_3 .sub_tit span {
    font-weight: 400;
}

.tears_1_3 .tit_wrap {
    margin-bottom: 60px;
}

.tears_1_3 .lottie_wrap {
    width: 150px;
    height: 160px;
    overflow: hidden;
    margin: 0 auto;
}

.tears_1_3 .lottie_wrap .inner {
    transform: translate(-20%, -20%);
}

.tears_1_3 .con_wrap {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.tears_1_3 ._cover {
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
}

.tears_1_3 .txt_wrap {
    padding: 40px 2vw;
    width: 40%;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.tears_1_3 .txt_wrap:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url('/img/sub/tears_1_3_icon.png') center center / 100% no-repeat;
    margin-bottom: 24px;
}

.tears_1_3 .txt_wrap strong {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.8px;
    margin-bottom: 24px;
}

.tears_1_3 .txt_wrap .his b {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
    display: block;
}

.tears_1_3 .txt_wrap .his ul {
    margin-bottom: 24px;
}

.tears_1_3 .txt_wrap .his ul li {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: -0.72px;
}

.tears_1_3 .txt_wrap .his a {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.72px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--color-primary);
    padding: 10px 30px;
    box-sizing: border-box;
    width: fit-content;
}

.tears_1_3 .txt_wrap .his a::after {
    content: '';
    display: block;
    width: 15px;
    height: 12px;
    background: url('/img/sub/tears_1_3_arrow.png') center center / cover no-repeat;
}

@media screen and (max-width: 1280px) {
    .tears_1_3 .br_none {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .tears_1_3 {
        padding: 80px 0;
    }

    .tears_1_3 .tit_wrap {
        margin-bottom: 40px;
    }

    .tears_1_3 .sub_tit span {
        font-size: 24px;
    }

    .tears_1_3 .con_wrap {
        flex-direction: column;
    }

    .tears_1_3 .txt_wrap {
        width: 100%;
        padding: 30px 16px;
    }

    .tears_1_3 .txt_wrap strong {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .tears_1_3 .txt_wrap .his b {
        font-size: 18px;
        letter-spacing: -0.72px;
        margin-bottom: 10px;
    }

    .tears_1_3 .txt_wrap .his ul li {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_1_3 .txt_wrap .his a {
        font-size: 16px;
        letter-spacing: -0.64px;
        line-height: 1;
    }
}

.tears_1_4 {
    display: flex;
    align-items: center;
    background: #f7f7f7;
}

.tears_1_4 ._cover {
    width: 50%;
}

.tears_1_4 .txt_wrap {
    padding-left: 3.1vw;
    max-width: 650px;
}

.tears_1_4 .txt_wrap span.eng {
    color: #ccc;
    font-family: var(--font-spectral);
    font-size: 48px;
    font-weight: 400;
    line-height: 120%;
    display: block;
    margin-bottom: 24px;
}

.tears_1_4 .txt_wrap strong {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.28px;
    margin-bottom: 24px;
}

.tears_1_4 .txt_wrap strong span {
    color: #e75252;
}

.tears_1_4 .txt_wrap p {
    color: var(--color-text-secondary);

    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 28.8px */
    letter-spacing: -0.72px;
}

@media screen and (max-width: 1280px) {
    .tears_1_4 {
        align-items: normal;
    }

    .tears_1_4 .txt_wrap {
        width: 50%;
        padding: 30px 0 30px 3.1vw;
    }

    .tears_1_4 ._cover img {
        object-position: right;
    }
}

@media screen and (max-width: 768px) {
    .tears_1_4 {
        flex-direction: column;
    }

    .tears_1_4 ._cover {
        width: 100%;
    }

    .tears_1_4 .txt_wrap {
        width: 100%;
        max-width: unset;
        padding: 40px 5vw 80px;
        box-sizing: border-box;
    }

    .tears_1_4 .txt_wrap span.eng {
        font-size: 32px;
    }

    .tears_1_4 .txt_wrap strong {
        font-size: 24px;

        letter-spacing: -0.96px;
    }

    .tears_1_4 .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.tears_1_5 {
    padding: 120px 0;
    background: url('/img/sub/tears_1_5_bg.png') center center / cover no-repeat;
}

.tears_1_5 .cont {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3.1vw;
    justify-content: space-between;
}

.tears_1_5 .cont:not(:last-child) {
    margin-bottom: 40px;
}

.tears_1_5 .txt_wrap {}

.tears_1_5 .txt_wrap strong {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.28px;
    margin-bottom: 24px;
}

.tears_1_5 .txt_wrap strong span {
    color: var(--color-primary);
}

.tears_1_5 .txt_wrap p.txt_1 {
    color: #fff;
    border-radius: 999px;
    border: 1px solid #ececec;
    padding: 10px 30px;
    background: var(--color-primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.12px;
    box-sizing: border-box;
    margin-bottom: 24px;
}

.tears_1_5 .txt_wrap p.txt_2 {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.72px;
}

.tears_1_5 .txt_wrap p.txt_2:not(:last-child) {
    margin-bottom: 10px;
}

.tears_1_5 .txt_wrap p.txt_2 span.box {
    color: #fff;
    padding: 6px;
    background: var(--Color, var(--color-primary));
}

.tears_1_5 .txt_wrap p.txt_2 b {
    font-weight: 700;
    color: #333;
}

@media screen and (max-width: 768px) {
    .tears_1_5 {
        padding: 80px 0;
    }

    .tears_1_5 .cont {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .tears_1_5 .cont:last-child {
        flex-direction: column-reverse;
    }

    .tears_1_5 .txt_wrap strong {
        font-size: 24px;
        letter-spacing: -0.96px;
        margin-bottom: 16px;
    }

    .tears_1_5 .txt_wrap p.txt_1 {
        font-size: 20px;
        letter-spacing: -0.8px;
        margin-bottom: 16px;
    }

    .tears_1_5 .txt_wrap p.txt_2 {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_1_5 .txt_wrap p.txt_2:nth-child(2) {
        line-height: 220%;
    }
}

.sec_about {
    padding: 100px 0;
    background: url('/img/sub/tears_2_1_bg.png') center center / cover no-repeat;
}

.sec_about .tit_wrap {
    margin-bottom: 40px;
}

.sec_about .tit_wrap p {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.96px;
    margin-bottom: 10px;
}

.sec_about .img_wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-green-light);
    width: fit-content;
    margin: 0 auto 40px;
}

.sec_about .con_wrap p {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    max-width: 640px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .sec_about {
        padding: 80px 0;
    }

    .sec_about .tit_wrap p {
        font-size: 20px;
        letter-spacing: -0.8px;
        margin-bottom: 3px;
    }

    .sec_about .img_wrap {
        width: 90%;
    }

    .sec_about .img_wrap img {
        width: 100%;
    }

    .sec_about .con_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
        max-width: 90%;
        margin: 0 auto;
    }
}

.tears_2_2 {
    padding: 120px 0;
    background: var(--color-green-bg);
    text-align: center;
}

.tears_2_2 .tit_wrap {
    margin-bottom: 60px;
}

.tears_2_2 .tit_wrap h3 {
    margin-bottom: 16px;
}

.tears_2_2 .eng_sub_tit {
    margin: 0 auto 24px;
}

.tears_2_2 .con_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.2vw;
    width: 90%;
    margin: 0 auto;
}

.tears_2_2 ._cover {
    max-width: 457px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #a9bfad;
}

.tears_2_2 .txt_wrap {
    display: flex;
}

.tears_2_2 .txt_wrap .round {
    width: 300px;
    height: 300px;
    border-radius: 999px;
    border: 1px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(1.05);
}

.tears_2_2 .txt_wrap .round .case {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.8px;
    padding: 3px 10px;
    border-radius: 999px;
    display: block;
    margin: 0 auto 10px;
    box-sizing: border-box;
    background: var(--color-primary);
}

.tears_2_2 .txt_wrap .round:nth-child(2) .case {
    background: #24562f;
}

.tears_2_2 .txt_wrap .round p {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
    max-width: 250px;
    margin: 0 auto;
}

.tears_2_2 .txt_wrap .round p b {
    color: var(--Color, var(--color-primary));
    font-weight: 700;
}

.tears_2_2 .txt_wrap .round:nth-child(2) p b {
    color: #23562f;
}

@media screen and (max-width: 1024px) {
    .tears_2_2 .con_wrap {
        flex-direction: column;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .tears_2_2 {
        padding: 80px 0;
    }

    .tears_2_2 .eng_sub_tit {
        margin: 0 auto 16px;
    }

    .tears_2_2 .txt_wrap {
        flex-direction: column;
    }

    .tears_2_2 .tit_wrap {
        margin-bottom: 40px;
    }

    .tears_2_2 .txt_wrap .round {
        width: 275px;
        height: 275px;
        transform: scale(1.1);
    }

    .tears_2_2 .txt_wrap .round .case {
        font-size: 18.75px;
        letter-spacing: -0.75px;
    }

    .tears_2_2 .txt_wrap .round p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.tears_2_3 {
    padding: 120px 0;
    background: url('/img/sub/tears_2_3_bg.png') center center / cover no-repeat;
    text-align: center;
}

.tears_2_3 p.top_txt {
    color: #ccc;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    transition: 0.45s;
}

.tears_2_3 p.top_txt.aos-animate>span {
    animation: color 0.5s linear forwards;
}

.tears_2_3 .top_img {
    display: flex;
    gap: 12px;
    margin: 24px 0;
}

.tears_2_3 .top_img img {
    width: 50%;
    border-radius: 20px;
}

.tears_2_3 .bottom_txt::before {
    content: '';
    display: block;
    width: 6px;
    height: 0;
    background: url('/img/sub/tears_2_3_line.png') center center / contain no-repeat;
    transition: 0.5s;
    position: absolute;
    top: 24px;
    left: 50%;
    transition-delay: 0.3s;
}

.tears_2_3 .bottom_txt {
    position: relative;
    padding-top: 211px;
}

.tears_2_3 .bottom_txt.aos-animate::before {
    height: 163px;
}

.tears_2_3 .bottom_txt .box {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.2px;
    background: var(--Color, var(--color-primary));
    padding: 10px 20px;
    width: fit-content;
    margin: 0 auto;
}

.tears_2_3 .bottom_txt .box b {
    font-weight: 700;
}

.tears_2_3 .bottom_txt .box:first-child {
    margin-bottom: 10px;
}

.tears_2_3 .bottom_txt p {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    margin-top: 24px;
}

@keyframes color {
    0% {
        color: #ccc;
    }

    100% {
        color: #333;
    }
}

@media screen and (max-width: 768px) {
    .tears_2_3 {
        padding: 80px 0;
    }

    .tears_2_3 p.top_txt {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .tears_2_3 p.top_txt br {
        display: none;
    }

    .tears_2_3 .bottom_txt {
        padding-top: 151px;
    }

    .tears_2_3 .bottom_txt .box {
        background: transparent;
        padding: 0;
    }

    .tears_2_3 .bottom_txt.aos-animate::before {
        height: 100px;
    }

    .tears_2_3 .bottom_txt .box {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .tears_2_3 .bottom_txt .box>span {
        padding: 6px 16px;
        display: block;
        width: fit-content;
        margin: 0 auto;
        background: var(--Color, var(--color-primary));
    }

    .tears_2_3 .bottom_txt .box>span:first-child {
        margin-bottom: 10px;
    }

    .tears_2_3 .bottom_txt p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_2_3 .top_img {
        flex-direction: column;
    }

    .tears_2_3 .top_img img {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}

.tears_2_4 {
    padding: 60px 0;
    background: url('/img/sub/tears_2_4_bg.png') center center / cover no-repeat;
    text-align: center;
}

.tears_2_4 p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -1.28px;
}

.tears_2_4 p b {
    font-weight: 700;
}

.tears_2_4 strong {
    font-size: 60px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -2.4px;
    background: linear-gradient(91deg,
            #ffe65b 49.19%,
            #fff2d9 75.14%,
            #f8bb14 101.09%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
    .tears_2_4 {
        padding: 40px 0;
        background: url('/img/sub/tears_2_4_bg_m.png') center center / cover no-repeat;
    }

    .tears_2_4 p {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .tears_2_4 strong {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
}

.tears_2_5 {
    padding: 120px 0;
}

.tears_2_5 .w_1360 {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.tears_2_5 ._cover {
    max-width: 620px;
    border-radius: 15px;
    overflow: hidden;
    flex: 1;
}

.tears_2_5 .txt_wrap {
    width: 50%;
}

.tears_2_5 .txt_wrap .eng {
    color: #ccc;
    font-family: var(--font-spectral);
    font-size: 48px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 24px;
    display: block;
}

.tears_2_5 .txt_wrap>p {
    color: #333;
    font-size: 30px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.2px;

    margin-bottom: 24px;
}

.tears_2_5 .txt_wrap>p .box {
    color: #fff;
    /* font-size: 30px; */
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.2px;
    padding: 3px 6px;
    background: var(--Color, var(--color-primary));
}

.tears_2_5 .txt_wrap ul {}

.tears_2_5 .txt_wrap ul li {
    padding: 10px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.8px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.tears_2_5 .txt_wrap ul li::before {
    content: '';
    display: block;
    background: url('/img/sub/tears_2_5_icon.png') center center / 100% no-repeat;
    width: 35px;
    height: 35px;
}

.tears_2_5 .txt_wrap ul li:not(:last-child) {
    margin-bottom: 12px;
}

.tears_2_5 .txt_wrap ul li .tears_2_5 .txt_wrap ul li p {}

.tears_2_5 .txt_wrap ul li p b {
    color: var(--Color, var(--color-primary));
    font-weight: 700;
}

.tears_2_5 .txt_wrap .br_block {
    display: none;
}

@media screen and (max-width: 1350px) {
    .tears_2_5 .txt_wrap .br_block {
        display: block;
    }

    .tears_2_5 .txt_wrap .br_none {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .tears_2_5 .txt_wrap {
        width: 60%;
    }

    .tears_2_5 .txt_wrap .eng {
        font-size: 36px;
    }

    .tears_2_5 .txt_wrap>p {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .tears_2_5 .txt_wrap ul li {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

@media screen and (max-width: 768px) {
    .tears_2_5 {
        padding: 80px 0;
    }

    .tears_2_5 .w_1360 {
        flex-direction: column;
        gap: 40px;
    }

    .tears_2_5 .txt_wrap {
        width: 100%;
    }

    .tears_2_5 .txt_wrap>p .box {
        margin-bottom: 6px;
        display: inline-block;
    }
}

.tears_3_1 {
    background: url('/img/sub/tears_3_1_bg.png') center center / cover no-repeat;
}

.tears_3_2 {
    padding: 120px 0;
    background: var(--color-green-bg);
}

.tears_3_2 .tit_wrap {
    margin-bottom: 40px;
}

.tears_3_2 .tit_wrap h3 {
    margin-bottom: 16px;
}

.tears_3_2 .eng_sub_tit {
    margin: 0 auto 24px;
}

.tears_3_2 .con_wrap {
    display: flex;
    justify-content: center;
    gap: 3.1vw;
    align-items: center;
    margin-bottom: 40px;
}

.tears_3_2 .img_wrap {
    position: relative;
    width: fit-content;
    border-radius: 950px;
    overflow: hidden;
}

.tears_3_2 .img_wrap img {
    width: 100%;
}

.tears_3_2 .img_wrap::before {
    content: '';
    display: block;
    width: 100%;
    height: var(--overheight, '0%');
    background: url('/img/sub/tears_3_2_img1_over.png') 0 0 / 100% no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.tears_3_2 ul li {
    color: #b5b5b5;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    padding: 10px 30px 10px 10px;
    box-sizing: border-box;
}

.tears_3_2 ul li::before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background: url('/img/sub/tears_2_5_icon_g.png') center center / 100% no-repeat;
    transition: 0.3s;
}

.tears_3_2 ul li.on::before {
    background: url('/img/sub/tears_2_5_icon.png') center center / 100% no-repeat;
}

.tears_3_2 ul li.on {
    color: var(--Color, var(--color-primary));
}

.tears_3_2 ul li:not(:last-child) {
    margin-bottom: 12px;
}

.tears_3_2 ul li p {
    flex: 1;
}

.tears_3_2 .box {
    padding: 20px 100px;
    display: flex;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid var(--Color, var(--color-primary));
    background: var(--Color, var(--color-primary));
    width: fit-content;
    margin: 0 auto;
}

.tears_3_2 .box:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url('/img/sub/tears_3_2_icon.png') center center / 100% no-repeat;
    animation: bounce2 2s ease infinite;
}

.tears_3_2 .box p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .tears_3_2 {
        padding: 80px 0;
    }

    .tears_3_2 .tit_wrap {
        margin-bottom: 30px;
    }

    .tears_3_2 .img_wrap {
        width: 90px;
        height: 337px;
    }

    .tears_3_2 .img_wrap::before {
        background: url('/img/sub/tears_3_2_img1_over_m.png') 0 0 / 100% no-repeat;
    }

    .tears_3_2 .con_wrap {
        width: 90%;
        margin: 0 auto 30px;
        gap: 10px;
    }

    .tears_3_2 ul li {
        font-size: 14px;
        letter-spacing: -0.56px;
        padding: 10px 20px 10px 10px;
    }

    .tears_3_2 ul li::before {
        width: 28px;
        height: 28px;
    }

    .tears_3_2 ul {
        width: calc(100% - 100px);
    }

    .tears_3_2 .box {
        max-width: 90%;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 20px 15px;
        align-items: center;
    }

    .tears_3_2 .box p {
        font-size: 14px;
        letter-spacing: -0.56px;
        text-align: left;
        flex: 1;
    }
}

.tears_3_3 {
    padding: 120px 0;
    background: url('/img/sub/tears_3_3_bg.png') center center / cover no-repeat;
}

.tears_3_3 .img_wrap {
    display: flex;
    justify-content: center;
    gap: 4vw;
    margin-bottom: 60px;
}

.tears_3_3 .img_wrap .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tears_3_3 .img_wrap .col:nth-child(1) {
    color: #d9875a;
    width: 452px;
    height: 447px;
    background: url('/img/sub/tears_3_3_img1.png') center center/ cover no-repeat;
    animation: bounce1 7s ease infinite;
}

.tears_3_3 .img_wrap .col:nth-child(2) {
    width: 378px;
    height: 378px;
    color: #1670b9;
    background: url('/img/sub/tears_3_3_img2.png') center center/ 100% no-repeat;
    animation: bounce1 10s ease infinite;
}

.tears_3_3 .img_wrap .col:nth-child(1) span {
    background-color: #d9875a;
}

.tears_3_3 .img_wrap .col:nth-child(2) span {
    background-color: #1670b9;
}

.tears_3_3 .img_wrap .col p {
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.44px;
}

.tears_3_3 .img_wrap .col b {
    font-size: 100px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -4px;
}

.tears_3_3 .img_wrap .col span {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.12px;
    padding: 10px;
}

.tears_3_3 .txt_wrap {
    display: flex;
    align-items: center;
}

.tears_3_3 .txt_wrap>div {
    flex: 1;
    display: flex;
    align-items: center;
}

.tears_3_3 .txt_wrap dt {
    color: #d9875a;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    margin-bottom: 10px;
}

.tears_3_3 .txt_wrap dd {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.tears_3_3 .txt_wrap dd b {
    font-weight: 700;
    color: #dd9e70;
}

.tears_3_3 .txt_wrap>div:nth-child(2) dt {
    color: #1670b9;
}

.tears_3_3 .txt_wrap>div:nth-child(2) dd b {
    color: #1670b9;
}

.tears_3_3 .txt_wrap>div:first-child::after {
    content: '';
    display: block;
    width: 1px;
    height: 114px;
    background: var(--color-border);
    margin: 0 3.1vw;
}

@media screen and (max-width: 768px) {
    .tears_3_3 {
        padding: 80px 0;
    }

    .tears_3_3 .img_wrap {
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .tears_3_3 .img_wrap .col p {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .tears_3_3 .img_wrap .col b {
        font-size: 60px;
        letter-spacing: -2.4px;
    }

    .tears_3_3 .img_wrap .col span {
        font-size: 18px;
        letter-spacing: -0.72px;
        padding: 5px;
    }

    .tears_3_3 .img_wrap .col:nth-child(1) {
        width: 298px;
        height: 295px;
    }

    .tears_3_3 .img_wrap .col:nth-child(2) {
        width: 249px;
        height: 249px;
    }

    .tears_3_3 .txt_wrap {
        flex-direction: column;
    }

    .tears_3_3 .txt_wrap dt {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .tears_3_3 .txt_wrap dd {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_3_3 .txt_wrap>div {
        flex-direction: column;
    }

    .tears_3_3 .txt_wrap>div:first-child::after {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
}

.tears_3_4 {
    padding: 120px 0;
    background: url('/img/sub/tears_3_4_bg.png') center center / cover no-repeat;
}

.tears_3_4 .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.tears_3_4 .txt_wrap {}

.tears_3_4 .txt_wrap .small {
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.tears_3_4 .img_wrap {
    max-width: 50%;
}

.tears_3_4 .img_wrap img {
    width: 100%;
}

.tears_3_4 .txt_wrap strong {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.28px;
    margin-bottom: 24px;
}

.tears_3_4 .txt_wrap p.bottom {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.72px;
    max-width: 610px;
}
.tears_3_4 .s3_4_swiper{
    position: relative;
}   
.tears_3_4 .s3_4_swiper .swiper-pagination{
    position: absolute;
    bottom: -60px;
    width: 100%;
}
.tears_3_4 .s3_4_swiper .swiper-pagination-bullet {
    background: #000;
    width: calc(33.33% - 40px);
    max-width: 200px;
    height: 3px;
    border-radius: 0;
    opacity: 0.3;
    background-color: #8F8F8F;
    transition: all 0.3s ease;
}
.tears_3_4 .s3_4_swiper .swiper-pagination-bullet-active {
    background: var(--color-primary) ;
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .tears_3_4 {
        padding: 80px 0;
        background: url('/img/sub/tears_3_4_bg_m.png') center center / cover no-repeat;
    }

    .tears_3_4 .inner {
        flex-direction: column;
        gap: 40px;
    }

    .tears_3_4 .img_wrap {
        max-width: 400px;
    }

    .tears_3_4 .txt_wrap .small {
        font-size: 18px;
        letter-spacing: -0.72px;
        margin-bottom: 6px;
    }

    .tears_3_4 .txt_wrap strong {
        font-size: 24px;
        letter-spacing: -0.96px;
        margin-bottom: 16px;
    }

    .tears_3_4 .txt_wrap p.bottom {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_3_4 .s3_4_swiper .swiper-pagination{
        bottom: -40px;
    }
}

.tears_3_5 {
    padding: 120px 0;
}

.tears_3_5 .tit_wrap {
    margin-bottom: 60px;
}

.tears_3_5 .tit_wrap h3 {
    margin-bottom: 10px;
}

.tears_3_5 .tit_wrap p {
    text-align: center;
    color: #333;
    font-size: 44px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -1.76px;
}

.tears_3_5 .tit_wrap p b {
    color: #faaf33;
    font-weight: 700;
}

.tears_3_5 .con_wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 90%;
    margin: 0 auto 60px;
    align-items: center;
}

.tears_3_5 .img_wrap {
    max-width: 480px;
}

.tears_3_5 .txt_wrap {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.8px;
    padding: 40px 2.1vw;
    border: 1px solid var(--color-border);
    max-width: 480px;
    border-radius: 20px;
    box-sizing: border-box;
}

.tears_3_5 .strong_wrap {
    display: flex;
    align-items: center;
    background: var(--Color, var(--color-primary));
    gap: 10px;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 9999px;
    width: fit-content;
    margin: 0 auto;
    max-width: 90%;
}

.tears_3_5 .strong_wrap strong {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.2px;
    text-align: center;
    flex: 1;
}

.tears_3_5 .strong_wrap strong b {
    font-weight: 700;
}

.tears_3_5>.strong_wrap::before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background: url('/img/sub/tears_3_5_icon.png') center center / 100% no-repeat;
}

@media screen and (max-width: 768px) {
    .tears_3_5 {
        padding: 80px 0;
    }

    .tears_3_5 .tit_wrap {
        margin-bottom: 40px;
    }

    .tears_3_5 .tit_wrap p {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .tears_3_5 .con_wrap {
        flex-direction: column;
        gap: 20px;
        margin: 0 auto 20px;
    }

    .tears_3_5 .txt_wrap {
        padding: 20px;
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_3_5 .strong_wrap strong {
        font-size: 16px;
        letter-spacing: -0.64px;
        text-align: left;
    }
}

.tears_3_6 {
    padding: 120px 0;
    background: url('/img/sub/tears_3_6_bg.png') center center / cover no-repeat;
}

.tears_3_6 .con_wrap {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.tears_3_6 .img_wrap {
    max-width: 580px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.tears_3_6 .txt_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 1px solid var(--color-border);
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    background: var(--Color, var(--color-primary));
}

.tears_3_6 .img_wrap:last-child .txt_wrap {
    background: #2d9c7d;
}

.tears_3_6 .txt_wrap p {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.2px;
}

@media screen and (max-width: 768px) {
    .tears_3_6 {
        padding: 80px 0;
    }

    .tears_3_6 .con_wrap {
        flex-direction: column;
    }

    .tears_3_6 .img_wrap {
        margin: 0 auto;
    }

    .tears_3_6 .txt_wrap {
        padding: 15px 10px;
    }

    .tears_3_6 .txt_wrap p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
}

.tears_3_7 {
    padding: 120px 0;
    background: url('/img/sub/tears_3_7_bg.png') center center / cover no-repeat;
}

.tears_3_7 h3 {
    margin-bottom: 16px;
}

.tears_3_7 h3 span {
    font-weight: 400;
}

.tears_3_7 .eng_sub_tit {
    margin: 0 auto 24px;
}

.tears_3_7 .tit_wrap {
    margin-bottom: 120px;
}

.tears_3_7 .con_wrap {}

.tears_3_7 .con_wrap .img_wrap {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.tears_3_7 .con_wrap p {
    position: absolute;
    color: var(--Color, var(--color-primary));
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
    transition: 0.45s;
    opacity: 0;
}

.tears_3_7 .con_wrap .img_wrap.aos-animate p {
    opacity: 1;
}

.tears_3_7 .con_wrap p.txt1 {
    top: -60px;
    left: calc(50% - 85px);
    text-align: center;
    transition-delay: 0.3s;
}

.tears_3_7 .con_wrap p.txt2 {
    right: -120px;
    top: 24%;
    transition-delay: 0.8s;
}

.tears_3_7 .con_wrap p.txt3 {
    right: -10px;
    bottom: 10%;
    transition-delay: 1.3s;
}

.tears_3_7 .con_wrap p.txt4 {
    bottom: 10%;
    left: -24px;
    transition-delay: 1.8s;
}

.tears_3_7 .con_wrap p.txt5 {
    top: 24%;
    left: -120px;
    text-align: right;
    transition-delay: 2.3s;
}

@media screen and (max-width: 1024px) {
    .tears_3_7 .con_wrap .img_wrap {
        width: 340px;
    }

    .tears_3_7 .con_wrap p.txt2 {
        right: -132px;
    }

    .tears_3_7 .con_wrap p.txt5 {
        left: -140px;
    }

    .tears_3_7 .con_wrap p.txt3 {
        bottom: 0;
    }

    .tears_3_7 .con_wrap p.txt4 {
        bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .tears_3_7 {
        padding: 80px 0;
    }

    .tears_3_7 .tit_wrap {
        margin-bottom: 60px;
    }

    .tears_3_7 h3 {
        margin-bottom: 12px;
    }

    .tears_3_7 .eng_sub_tit {
        margin: 0 auto 16px;
    }

    .tears_3_7 .con_wrap p {
        font-size: 14px;
        letter-spacing: -0.56px;
    }

    .tears_3_7 .con_wrap p.txt1 {
        top: 25px;
        left: calc(50% - 66px);
    }

    .tears_3_7 .con_wrap p.txt2 {
        text-align: right;
        right: 0;
        top: 35%;
    }

    .tears_3_7 .con_wrap p.txt3 {
        right: 5px;
        bottom: 3%;
    }

    .tears_3_7 .con_wrap p.txt4 {
        bottom: 3%;
        left: -3px;
    }

    .tears_3_7 .con_wrap p.txt5 {
        left: 0;
        top: 35%;
        text-align: left;
    }
}

.tears_3_8 {
    padding: 120px 0;
    background: url('/img/sub/tears_3_8_bg.png') center center / cover no-repeat;
}

.tears_3_8 .tit_wrap {
    padding: 0 20px;
}

.tears_3_8 h3.sub_tit {
    margin-bottom: 24px;
}

.tears_3_8 .con_wrap {
    box-sizing: border-box;

    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 60px auto 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.tears_3_8 .img_wrap {
    width: 36.75%;
    max-width: 441px;

    display: flex;
    justify-content: center;
}

.tears_3_8 .text_wrap {
    width: 63.25%;
}

.tears_3_8 .text_wrap ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tears_3_8 .text_wrap ul li {
    display: flex;
    gap: 16px;

    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(155, 177, 171, 0.25);

    padding: 20px 30px 16px 20px;
}

.tears_3_8 .text_wrap ul li .icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;

    background: #F7F7F7;

    flex-shrink: 0;
}

.tears_3_8 .text_wrap ul li .icon img {
    width: 62.5%;
    height: 62.5%;
    object-fit: contain;
}

.tears_3_8 .text_wrap ul li .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;

    font-size: 18px;
}

.tears_3_8 .text_wrap ul li .text strong {
    font-size: 1.22em;
    font-weight: 600;
}

.tears_3_8 .text_wrap ul li:nth-child(1) .text strong {
    color: var(--color-primary);
}

.tears_3_8 .text_wrap ul li:nth-child(2) .text strong {
    color: #379C65;
}

.tears_3_8 .text_wrap ul li:nth-child(3) .text strong {
    color: var(--color-teal);
}

.tears_3_8 .text_wrap ul li:nth-child(4) .text strong {
    color: #158781;
}

.tears_3_8 .text_wrap ul li:nth-child(5) .text strong {
    color: var(--color-teal-dark);
}

.tears_3_8 .text_wrap ul li .text p {
    color: #474747;
    line-height: 1.4;
}
.tears_3_8 .con_wrap {
    max-width: 1360px;
    padding: 0;
    gap: 0;
}
.tears_3_8 .img_wrap {
    width: 43.5%;
    max-width: 596px;
}
.tears_3_8 .text_wrap {
    width: 56.5%;
}
@media (max-width: 1400px) {
    .tears_3_8 .con_wrap {
        padding: 0 20px;
    }
}
@media screen and (max-width: 1024px) {
    .tears_3_8 .text_wrap ul li .text {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .tears_3_8 {
        padding: 80px 0;
    }
    
    .tears_3_8 .con_wrap {
        flex-direction: column;
    }

    .tears_3_8 .img_wrap {
        width: 80%;
        max-width: 360px;
    }

    .tears_3_8 .text_wrap {
        width: 100%;
        max-width: 600px;
    }

    .tears_3_8 .text_wrap ul li {
        flex-direction: column;
    }
    .tears_3_8 .img_wrap {
        width: 80%;
    }
    .tears_3_8 .text_wrap {
        width: 100%;
    }
}


.tears_4_1 {
    background: url('/img/sub/tears_4_1_bg.png') center center / cover no-repeat;
}

.tears_4_1 .bottom_txt {
    margin-top: 180px;
}

.tears_4_1 .box {
    width: fit-content;
    margin: 0 auto;
    background: var(--color-primary);
    padding: 10px 20px;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.2px;
}

.tears_4_1 .box b {
    font-weight: 700;
}

.tears_4_1 .box:first-child {
    margin-bottom: 10px;
}

.tears_4_1 .box_wrap {
    margin-bottom: 40px;
}

.tears_4_1 .bottom_txt {
    position: relative;
}

.tears_4_1 .bottom_txt::before {
    content: '';
    display: block;
    position: absolute;
    top: -140px;
    left: 50%;
    width: 6px;
    height: 0;
    background: url('/img/sub/tears_4_1_line.png') center center / 100% no-repeat;
    transition: 0.3s;
}

.tears_4_1 .bottom_txt.aos-animate::before {
    height: 103px;
}

.tears_4_1 .bottom_txt a {
    margin: 0 auto;
    padding: 6px;
    display: block;
    width: fit-content;
    border-radius: 34px;
    border: 1px solid #ffd473;
    background: linear-gradient(180deg, #2d4b41 0%, rgba(12, 12, 12, 0.3) 80%),
        linear-gradient(180deg, #6f299d 0%, rgba(12, 12, 12, 0.1) 80%);
}

.tears_4_1 .bottom_txt a span::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url('/img/sub/tears_4_1_icon1.png') center center / 100% no-repeat;
    animation: blink-effect 1s infinite;
}

.tears_4_1 .bottom_txt a span {
    color: #fff;
    font-family: Paperlogy;
    font-size: 20px;
    font-weight: 700;
    border-radius: 9999px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 40px;
    box-sizing: border-box;
    background: linear-gradient(149deg, var(--color-primary-medium) 12.74%, var(--color-primary-dark) 84.83%),
        linear-gradient(149deg, #6f35b6 12.74%, #4f1b8f 84.83%);
    line-height: normal;
}

@media screen and (max-width: 1024px) {
    .tears_4_1 .box {
        background: transparent;
        padding: 0;
    }

    .tears_4_1 .box span {
        background: var(--color-primary);
        display: block;
        width: fit-content;
        padding: 6px 16px;
        margin: 0 auto 10px;
    }

    .tears_4_1 .box:first-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .tears_4_1 .bottom_txt {
        margin-top: 100px;
    }

    .tears_4_1 .bottom_txt::before {
        width: 3px;
        top: -80px;
    }

    .tears_4_1 .bottom_txt.aos-animate::before {
        height: 60px;
    }

    .tears_4_1 .box {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .tears_4_1 .bottom_txt a span {
        font-size: 18px;
    }
}

.tears_4_2 {
    background: var(--color-green-bg);
    padding: 120px 0;
}

.tears_4_2 .tit_wrap {
    margin-bottom: 40px;
}

.tears_4_2 h3 span {
    font-weight: 400;
}

.tears_4_2 .tit_wrap .round {
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    background: url('/img/sub/tears_4_2_round.png') center center / 100% no-repeat;
    width: 187px;
    height: 59px;
    position: relative;
    margin: 0 auto 20px;
    display: block;
}

.tears_4_2 .tit_wrap .round span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.tears_4_2 ul {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.tears_4_2 ul li {
    padding: 12px 30px 12px 12px;
    box-sizing: border-box;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tears_4_2 ul li:not(:last-child) {
    margin-bottom: 12px;
}

.tears_4_2 ul li span {
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    line-height: 160%;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--Color, var(--color-primary));
}

.tears_4_2 ul li:nth-child(2) span {
    background: #2d6652;
}

.tears_4_2 ul li:nth-child(3) span {
    background: #20463b;
}

.tears_4_2 ul li p {
    color: #474747;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .tears_4_2 {
        padding: 80px 0;
    }

    .tears_4_2 .tit_wrap .round {
        width: 140px;
        height: 44px;
        font-size: 16px;
    }

    .tears_4_2 ul li {
        flex-direction: column;
        padding: 12px;
    }

    .tears_4_2 ul li span {
        font-size: 16px;
    }

    .tears_4_2 ul li p {
        font-size: 16px;
        letter-spacing: -0.64px;
        text-align: center;
    }
}

.tears_4_3 {
    padding: 120px 0;
    background: url('/img/sub/tears_4_3_bg.png') center center / cover no-repeat;
}

.tears_4_3 h3 {
    margin-bottom: 40px;
}

.tears_4_3 .con_wrap {
    width: 90%;
    display: flex;
    gap: 2.1vw;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.tears_4_3 ul {
    max-width: 600px;
}

.tears_4_3 ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.tears_4_3 ul li {
    border-bottom: 1px solid var(--color-border);
}

.tears_4_3 ul li span {
    color: var(--Color, var(--color-primary));
    font-family: 'Bodoni MT';
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.76px;
}

.tears_4_3 ul li p {
    color: #606060;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

.bfaf-comparison-slider {
    width: 55%;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bfaf-comparison-slider figure {
    max-height: 340px;
    aspect-ratio: 480/340;
    background: #070707;
    width: 100%;
}

.bfaf-comparison-slider {
    position: relative;
    margin: 2px;
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.15);
    user-select: none;
    overflow: hidden;
    border-radius: 20px;
    touch-action: pan-x;
}

.bfaf-comparison-slider>figure:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.bfaf-comparison-slider>figure>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.bfaf-comparison-slider>figure:first-of-type>figcaption {
    position: absolute;
    font-size: 20px;
    width: 100%;
    padding: 7px 15px;
    bottom: 0;
    left: 0;
    color: #fff;
    background: #222;
}

.bfaf-comparison-slider>figure:last-of-type>figcaption {
    position: absolute;
    font-size: 20px;
    text-align: right;
    width: 100%;
    padding: 7px 15px;
    bottom: 0;
    right: 0;
    color: #fff;
    background: var(--Color, var(--color-primary));
}

.bfaf-comparison-slider>.slider {
    position: absolute;
    left: 50%;
    background: #000;
    height: 100%;
    width: 2px;
    top: 0;
}

.bfaf-comparison-slider .slider-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
}

.bfaf-comparison-slider .slider_over_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.3s;
}

.bfaf-comparison-slider.on .slider_over_wrap {
    opacity: 0;
    visibility: hidden;
}

.bfaf-comparison-slider .slider_over {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.bfaf-comparison-slider .slider_over img {
    width: 64px;
}

.bfaf-comparison-slider .slider_over p {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

@media screen and (max-width: 1024px) {
    .tears_4_3 .con_wrap {
        flex-direction: column;
    }

    .bfaf-comparison-slider {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .tears_4_3 {
        padding: 80px 0;
    }

    .bfaf-comparison-slider>figure:first-of-type>figcaption {
        font-size: 14px;
    }

    .bfaf-comparison-slider>figure:last-of-type>figcaption {
        font-size: 14px;
    }

    .bfaf-comparison-slider .slider_over_wrap {
        width: 150px;
        height: 150px;
    }

    .bfaf-comparison-slider .slider_over img {
        width: 40px;
    }

    .tears_4_3 .con_wrap {
        gap: 30px;
    }

    .tears_4_3 ul li {
        padding: 10px 0px;
    }

    .tears_4_3 ul li span {
        font-size: 30px;
        letter-spacing: -1.2px;
    }

    .tears_4_3 ul li p {
        font-size: 15px;
        letter-spacing: -0.64px;
    }
}

.sec_intro {
    background: url('/img/sub/pedia_1_1_bg.png') center center / cover no-repeat;
    padding: 100px 0;
}

.sec_intro .con_wrap {
    display: flex;
    justify-content: center;
    gap: 2.1vw;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.sec_intro .txt_wrap {
    max-width: 600px;
}

.sec_intro .txt_wrap h3 {
    text-align: left;
    margin-bottom: 24px;
}

.sec_intro .txt_wrap p {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.sec_intro .txt_wrap p b {
    color: var(--Color, var(--color-primary));
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .sec_intro .txt_wrap .br_none {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .sec_intro {
        padding: 80px 0;
    }

    .sec_intro .con_wrap {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .sec_intro .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .sec_intro .txt_wrap br {
        display: none;
    }

    .sec_intro .txt_wrap h3 {
        margin-bottom: 16px;
    }
}

.pedia_1_2 {
    padding: 120px 0;
    background: var(--color-green-bg);
}

.pedia_1_2 h3 {
    margin-bottom: 16px;
}

.pedia_1_2 .eng_sub_tit {
    margin: 0 auto 24px;
}

.pedia_1_2 .tit_wrap {
    margin-bottom: 60px;
}

.pedia_1_2 .con_wrap {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 2.1vw;
    justify-content: center;
    max-width: 1230px;
}

.pedia_1_2 .con_wrap li {
    flex: 1;
}

.pedia_1_2 .img_wrap {
    position: relative;
    width: fit-content;
    margin: 0 auto 24px;
}

.pedia_1_2 .img_wrap p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.2px;
    white-space: nowrap;
}

.pedia_1_2 ul li:first-child .img_wrap p {
    color: var(--Color, var(--color-primary));
}

.pedia_1_2 .txt_wrap p {
    color: #356340;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

@media screen and (max-width: 768px) {
    .pedia_1_2 {
        padding: 80px 0;
    }

    .pedia_1_2 .con_wrap {
        flex-direction: column;
        gap: 30px;
    }

    .pedia_1_2 .tit_wrap {
        margin-bottom: 40px;
    }

    .pedia_1_2 .img_wrap {
        margin: 0 auto 16px;
    }

    .pedia_1_2 .img_wrap p {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .pedia_1_2 .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.sec_round {
    padding: 120px 0;
    background: url('/img/sub/pedia_1_3_bg.png') center center / cover no-repeat;
}

.sec_round .tit_wrap {
    width: 90%;
    margin: 0 auto 50px;
}

.sec_round .eng_sub_tit {
    margin: 16px auto 24px;
}

.sec_round .con_wrap {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.sec_round .con_wrap .con {
    opacity: 0;
    transition: 0.45s;
    width: 250px;
    height: 250px;
    border-radius: 999px;
    border: 1px solid #afd2b7;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(1.15);
}

.sec_round .con_wrap.aos-animate .con {
    opacity: 1;
}

.sec_round .con_wrap.aos-animate .con:nth-child(1) {
    transition-delay: 0.3s;
}

.sec_round .con_wrap.aos-animate .con:nth-child(2) {
    transition-delay: 0.8s;
}

.sec_round .con_wrap.aos-animate .con:nth-child(3) {
    transition-delay: 1.3s;
}

.sec_round .con_wrap.aos-animate .con:nth-child(4) {
    transition-delay: 1.8s;
}

.sec_round .con_wrap.aos-animate .con:nth-child(5) {
    transition-delay: 2.3s;
}

.sec_round .con_wrap .con img {
    width: 65px;
}

.sec_round .con_wrap p {
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.64px;
}

.pedia_1_3 .tit_wrap h3 {
    margin-bottom: 16px;
}

.pedia_1_3 .tit_wrap p {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    margin-bottom: 65px;
}

@media screen and (max-width: 1280px) {
    .sec_round .con_wrap .con {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 1024px) {
    .sec_round .con_wrap {
        max-width: 600px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .sec_round {
        padding: 80px 0;
        background: url('/img/sub/pedia_1_3_bg_m.png') center center / cover no-repeat;
    }

    .sec_round .con_wrap {
        max-width: 400px;
    }

    .sec_round .con_wrap .con {
        width: 150px;
        height: 150px;
    }

    .sec_round .con_wrap .con img {
        width: 45px;
    }

    .sec_round .con_wrap p {
        font-size: 13px;
        font-weight: 700;
        line-height: 160%;
        letter-spacing: -0.52px;
    }

    .pedia_1_3 .tit_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
        width: 90%;
        margin: 0 auto 40px;
    }
}

.pedia_1_4 {
    padding: 120px 0;
    background: #f7f7f7;
}

.pedia_1_4 .tit_wrap {
    margin-bottom: 60px;
}

.pedia_1_4 .eng_sub_tit {
    margin: 16px auto 24px;
}

.pedia_1_4 .img_wrap {
    max-width: 90%;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.pedia_1_4 .img_wrap img {
    margin: 24px auto;
}

.pedia_1_4 .img_wrap strong {
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.pedia_1_4 .img_wrap p {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.56px;
}

@media screen and (max-width: 768px) {
    .pedia_1_4 {
        padding: 80px 0;
    }

    .pedia_1_4 .tit_wrap {
        margin-bottom: 40px;
    }

    .pedia_1_4 .sub_txt {
        max-width: 90%;
        margin: 0 auto;
    }

    .pedia_1_4 .sub_txt br {
        display: none;
    }

    .pedia_1_4 .img_wrap img {
        margin: 16px auto;
    }

    .pedia_1_4 .img_wrap strong {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .pedia_1_4 .img_wrap p {
        font-size: 12px;
        letter-spacing: -0.48px;
        max-width: 350px;
        margin: 0 auto;
    }
}

.pedia_1_5 {
    padding: 176px 0;
    background: url('/img/sub/pedia_1_5_bg.png?ver=1') center center / cover no-repeat;
    color: #fff;
    text-align: center;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 36.4px */
    letter-spacing: -1.04px;
}

.pedia_1_5 p.aos-animate>span {
    animation: fade 1s linear forwards;
    opacity: 0;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .pedia_1_5 {
        padding: 160px 0;
        font-size: 20px;
        letter-spacing: -0.8px;
        background: url('/img/sub/pedia_1_5_bg_m.png?ver=1') center center / cover no-repeat;
    }

    .pedia_1_5 p {
        width: 90%;
        margin: 0 auto;
    }

    .pedia_1_5 p br {
        display: none;
    }
}

.pedia_1_n1 {
    overflow: hidden;
    background: url('/img/sub/pedia_1_n1_bg.png') center center / cover no-repeat;
}

.pedia_1_n1 .w_1280 {
    position: relative;
    padding: 120px 0;
    display: flex;
    gap: 3.1vw;
    align-items: center;
}

.pedia_1_n1 .txt_wrap {
    width: 50%;
}

.pedia_1_n1 .g_wrap {
    flex: 1;
    width: 100%;
}

.pedia_1_n1 .sub_tit {
    text-align: left;
    margin-bottom: 24px;
}

.pedia_1_n1 .sub_txt {
    text-align: left;
    margin-bottom: 24px;
}

.pedia_1_n1 .txt_wrap b.box {
    color: #fff;
    background: var(--color-primary);
    font-size: 30px;
    padding: 10px 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.2px;
    display: block;
    box-sizing: border-box;
    width: fit-content;
}

.pedia_1_n1 .g_wrap>img {
    position: absolute;
    right: -300px;
    bottom: -120px;
}

.pedia_1_n1 .g_wrap table {
    width: 100%;
    text-align: center;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: 0px 4px 10px 0px rgba(72, 97, 71, 0.25);
    margin-bottom: 10px;
    background: #fff;
}

.pedia_1_n1 .g_wrap table .img_sec th {
    padding: 0;
    background: #356440;
    height: 85px;
}

.pedia_1_n1 .g_wrap table .img_sec th._cover:nth-child(2) {
    background: url('/img/sub/pedia_1_n1_img2.png') center center / cover no-repeat;
}

.pedia_1_n1 .g_wrap table .img_sec th._cover:nth-child(3) {
    background: url('/img/sub/pedia_1_n1_img3.png') center center / cover no-repeat;
}

.pedia_1_n1 .g_wrap table .img_sec th._cover:nth-child(4) {
    background: url('/img/sub/pedia_1_n1_img4.png') center center / cover no-repeat;
}

.pedia_1_n1 .g_wrap table .img_sec th._cover:nth-child(5) {
    background: url('/img/sub/pedia_1_n1_img5.png') center center / cover no-repeat;
}

.pedia_1_n1 .g_wrap table th {
    padding: 10px 20px;
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.64px;
    vertical-align: middle;
}

.pedia_1_n1 .g_wrap table td {
    padding: 10px 20px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.64px;
    vertical-align: middle;
    background: #e8f3e4;
}

.pedia_1_n1 .g_wrap table td.o {
    background: #ffe3c8;
}

.pedia_1_n1 .g_wrap table td.left {
    color: var(--Color, var(--color-primary));
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.64px;
    background: #f4faf0;
}

.pedia_1_n1 .g_wrap>p {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.56px;
}

@media screen and (max-width: 1500px) {
    .pedia_1_n1 .w_1280 {
        width: 70%;
    }

    .pedia_1_n1 .g_wrap table th {
        padding: 10px 5px;
    }

    .pedia_1_n1 .g_wrap table td {
        padding: 10px 5px;
    }

    .pedia_1_n1 .g_wrap>img {
        bottom: -150px;
    }
}

@media screen and (max-width: 1150px) {
    .pedia_1_n1 .w_1280 {
        width: 90%;
    }

    .pedia_1_n1 .g_wrap>img.pc_block {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .pedia_1_n1 .w_1280 {
        flex-direction: column;
    }

    .pedia_1_n1 .txt_wrap {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .pedia_1_n1 .w_1280 {
        padding: 80px 0;
        gap: 40px;
    }

    .pedia_1_n1 .g_wrap>img.mobile_block {
        position: static;
        margin: 0 auto;
        max-width: 181px;
    }

    .pedia_1_n1 .sub_tit {
        margin-bottom: 16px;
        text-align: center;
    }

    .pedia_1_n1 .sub_txt {
        text-align: center;
        margin-bottom: 16px;
    }

    .pedia_1_n1 .txt_wrap b.box {
        font-size: 18px;
        letter-spacing: -0.72px;
        background: transparent;
        padding: 0;
        margin: 0 auto;
    }

    .pedia_1_n1 .txt_wrap b.box>span {
        padding: 6px 10px;
        display: block;
        width: fit-content;
        background: var(--Color, var(--color-primary));
        margin: 0 auto 6px;
    }

    .pedia_1_n1 .g_wrap table th {
        font-size: 14px;
        letter-spacing: -0.56px;
        padding: 10px 3px;
    }

    .pedia_1_n1 .g_wrap table td {
        font-size: 12px;
        letter-spacing: -0.48px;
        padding: 10px 5px;
    }

    .pedia_1_n1 .g_wrap table td.left {
        font-size: 14px;
        letter-spacing: -0.56px;
    }

    .pedia_1_n1 .g_wrap>p {
        font-size: 10px;

        letter-spacing: -0.4px;
    }
}

.pedia_1_6 {
    padding: 120px 0;
    background: url('/img/sub/pedia_1_6_bg.png') center center / cover no-repeat;
}

.pedia_1_6 .tit_wrap {
    width: 90%;
    margin: 0 auto 60px;
}

.pedia_1_6 .tit_wrap h3 {
    margin-bottom: 16px;
}

.pedia_1_6 .tit_wrap .sub_txt {
    margin-bottom: 16px;
}

.pedia_1_6 .tit_wrap strong {
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.pedia_1_6 .tit_wrap strong:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url('/img/sub/tears_1_3_icon.png') center center / 100% no-repeat;
    margin-right: 16px;
}

.pedia_1_6 .tit_wrap strong:after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url('/img/sub/tears_1_3_icon_1.png') center center / 100% no-repeat;
    margin-left: 16px;
}

.pedia_1_6 .eng_sub_tit {
    margin: 16px auto 24px;
}

.pedia_1_6 .con_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 940px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 40px;
}

.pedia_1_6 .con {
    width: calc(50% - 20px);
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
    background: #fff;
    box-sizing: border-box;
}

.pedia_1_6 .con a {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.pedia_1_6 .con a:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(0deg,
            rgba(85, 155, 78, 0.85) 0%,
            rgba(85, 155, 78, 0.85) 100%);
    transition: 0.3s;
}

.pedia_1_6 .con_wrap .con_inner {
    padding: 130px 0;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--Color, var(--color-primary));
}

.pedia_1_6 .con_wrap .con:nth-child(1) a {
    background: url('/img/sub/pedia_1_6_img1.png') center center / cover no-repeat;
}

.pedia_1_6 .con_wrap .con:nth-child(3) a {
    background: url('/img/sub/pedia_1_6_img2.png') center center / cover no-repeat;
}

.pedia_1_6 .con_wrap .con:nth-child(2) a {
    background: url('/img/sub/pedia_1_6_img3.png') center center / cover no-repeat;
}

.pedia_1_6 .con_wrap .con:nth-child(4) a {
    background: url('/img/sub/pedia_1_6_img4.png') center center / cover no-repeat;
}

.pedia_1_6 .con strong {
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.473px;
    margin-bottom: 16px;
}

.pedia_1_6 .con span {
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
    padding: 6px 24px;
    box-sizing: border-box;
    border-radius: 999px;
    border: 1px solid var(--Color, var(--color-primary));
    margin: 0 auto;
    /* transition: 0.3s; */
}

.pedia_1_6 .con span:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url('/img/sub/pedia_1_6_arrow.png') center center / 100% no-repeat;
    transition: 0.3s;
}

.pedia_1_6 .con:hover a:before {
    opacity: 1;
}

.pedia_1_6 .con:hover .con_inner {
    color: #fff;
}

.pedia_1_6 .con:hover span {
    border: 1px solid #fff;
}

.pedia_1_6 .con:hover span:after {
    background: url('/img/sub/pedia_1_6_arrow_hover.png') center center / 100% no-repeat;
}

@media screen and (max-width: 768px) {
    .pedia_1_6 {
        padding: 80px 0;
    }

    .pedia_1_6 .tit_wrap {
        width: 90%;
        margin: 0 auto 40px;
    }

    .pedia_1_6 .tit_wrap .sub_txt {
        margin-bottom: 6px;
    }

    .pedia_1_6 .tit_wrap strong {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .pedia_1_6 .tit_wrap strong:before {
        width: 30px;
        height: 30px;
    }

    .pedia_1_6 .tit_wrap strong:after {
        width: 30px;
        height: 30px;
    }

    .pedia_1_6 .con_wrap {
        gap: 14px;
    }

    .pedia_1_6 .con {
        padding: 5px;
        border-radius: 8px;
        width: calc(50% - 7px);
    }

    .pedia_1_6 .con a {
        border-radius: 8px;
    }

    .pedia_1_6 .con strong {
        font-size: 18px;
        letter-spacing: -0.72px;
        margin-bottom: 0;
    }

    .pedia_1_6 .con span {
        display: none;
    }

    .pedia_1_6 .con_wrap .con_inner {
        padding: 56px 0;
    }
}

.pedia_1_n2 {
    padding-top: 120px;
    background: url('/img/sub/pedia_1_n2_bg.png') center center / cover no-repeat;
}

.pedia_1_n2 .w_1280 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.pedia_1_n2 .img_wrap {
    max-width: 560px;
}

.pedia_1_n2 .txt_wrap {
    width: 50%;
}

.pedia_1_n2 .txt_wrap .tit_wrap p {
    color: var(--color-text-secondary);
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 33.6px */
    letter-spacing: -0.96px;
    margin-bottom: 10px;
}

.pedia_1_n2 .txt_wrap .sub_tit {
    text-align: left;
    margin-bottom: 24px;
}

.pedia_1_n2 .txt_wrap .sub_tit .box {
    color: #fff;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    background: var(--Color-2, var(--color-teal));
    line-height: 120%;
    /* 52.8px */
    padding: 6px 10px;
    letter-spacing: -1.76px;
}

.pedia_1_n2 .txt_wrap>p {
    color: var(--color-text-secondary);
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.8px;
    margin-bottom: 24px;
}

.pedia_1_n2 .txt_wrap>p b {
    color: var(--Color-2, var(--color-teal));
    font-weight: 700;
}

.pedia_1_n2 .txt_wrap>strong {
    color: var(--Color-2, var(--color-teal));
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

@media screen and (max-width: 1280px) {
    .pedia_1_n2 .txt_wrap .sub_tit .box {
        font-size: 35px;
    }
}

@media screen and (max-width: 1024px) {
    .pedia_1_n2 .w_1280 {
        align-items: flex-end;
    }

    .pedia_1_n2 .txt_wrap {
        width: 75%;
        padding-bottom: 50px;
    }

    .pedia_1_n2 .txt_wrap .sub_tit {
        line-height: 1;
    }

    .pedia_1_n2 .txt_wrap .sub_tit .box {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .pedia_1_n2 .txt_wrap .tit_wrap p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
}

@media screen and (max-width: 768px) {
    .pedia_1_n2 {
        padding-top: 80px;
    }

    .pedia_1_n2 .w_1280 {
        flex-direction: column-reverse;
    }

    .pedia_1_n2 .txt_wrap {
        width: 100%;
    }

    .pedia_1_n2 .txt_wrap>p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .pedia_1_n2 .txt_wrap>strong {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .pedia_1_n2 .txt_wrap {
        padding-bottom: 60px;
    }
}

.pedia_2_1 .img_wrap {
    border-radius: 20px;
    overflow: hidden;
}

.pedia_2_1 .txt_wrap {
    max-width: 406px;
}

@media screen and (max-width: 1440px) {
    .pedia_2_2 .con_wrap .con {
        width: 200px;
        height: 200px;
    }

    .pedia_2_2 .con_wrap p {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .pedia_2_2 .con_wrap .con:nth-child(3) {
        margin-top: 10px;
    }

    .pedia_2_2 .con_wrap .con:nth-child(4) {
        margin-top: 10px;
    }

    .pedia_2_2 .con_wrap .con:nth-child(5) {
        margin-top: -10px;
    }
}

@media screen and (max-width: 768px) {
    .pedia_2_2 .con_wrap .con {
        width: 150px;
        height: 150px;
    }

    .pedia_2_2 .con_wrap p {
        max-width: 80%;
    }

    .pedia_2_2 .con_wrap .con:nth-child(3) {
        margin-top: 10px;
    }

    .pedia_2_2 .con_wrap .con:nth-child(4) {
        margin-top: 10px;
    }

    .pedia_2_2 .con_wrap .con:nth-child(5) {
        margin-top: -10px;
    }
}

.sec_cure {
    padding: 120px 0;
    background: url('/img/sub/pedia_2_3_bg.png') center center / cover no-repeat;
}

.sec_cure .eng_sub_tit {
    margin: 16px auto 24px;
}

.sec_cure .tit_wrap {
    width: 90%;
    margin: 0 auto 60px;
}

.sec_cure .con_wrap {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.sec_cure .con_wrap li:not(:last-child) {
    margin-bottom: 30px;
}

.sec_cure .con_wrap li {
    display: flex;
    gap: 30px;
}

.sec_cure ._cover {
    width: 45%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-green-light);
}

.sec_cure .txt_wrap {
    flex: 1;
    display: flex;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--color-green-light);
    background: linear-gradient(180deg, #e9f8eb 0%, #e9f8eb 100%);
    padding: 60px 3.1vw;
    box-sizing: border-box;
}

.sec_cure .txt_wrap strong {
    color: #22572e;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.96px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.sec_cure .txt_wrap strong::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background: url('/img/sub/pedia_2_3_icon.png') center center / 100% no-repeat;
}

.sec_cure .txt_wrap p {
    color: var(--Color, var(--color-primary));
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.72px;
}

@media screen and (max-width: 768px) {
    .sec_cure {
        padding: 80px 0;
    }

    .sec_cure .eng_sub_tit {
        margin: 16px auto;
    }

    .sec_cure .tit_wrap {
        margin-bottom: 40px;
    }

    .sec_cure .con_wrap li {
        flex-direction: column;
        gap: 12px;
    }

    .sec_cure ._cover {
        width: 100%;
    }

    .sec_cure .con_wrap li:nth-child(2) {
        flex-direction: column-reverse;
    }

    .sec_cure .txt_wrap {
        padding: 30px 20px;
    }

    .sec_cure .txt_wrap strong {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .sec_cure .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.pedia_3_1 .img_wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-green-light);
    max-width: 480px;
}

.pedia_3_1 .txt_wrap p:not(:last-child) {
    margin-bottom: 16px;
}

.pedia_3_2 {
    background: url('/img/sub/pedia_3_2_bg.png') center center / cover no-repeat;
    padding: 120px 0;
}

.pedia_3_2 .eng_sub_tit {
    margin: 16px auto 40px;
}

.pedia_3_2 .txt_wrap {
    text-align: center;
    max-width: 1310px;
    color: #ccc;
    margin: 0 auto;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    padding-bottom: 208px;
}

.pedia_3_2 .txt_wrap.aos-animate p>span {
    animation: color 0.5s linear forwards;
}

.pedia_3_2 .con_wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 24px;
    max-width: 1030px;
    margin: 0 auto;
    position: relative;
}

.pedia_3_2 .txt_wrap::after {
    content: '';
    display: block;
    width: 6px;
    height: 0;
    background: url('/img/sub/pedia_3_2_line.png') center center / 100% no-repeat;
    position: absolute;
    top: calc(100% - 187px);
    left: 50%;
    transition: 0.3s;
    transition-delay: 3s;
}

.pedia_3_2 .txt_wrap.aos-animate::after {
    height: 163px;
}

.pedia_3_2 .con_wrap .con {
    width: calc(50% - 15px);
    text-align: center;
}

.pedia_3_2 .con_wrap .img_wrap {
    width: fit-content;
    margin-bottom: 10px;
}

.pedia_3_2 .con .txt strong {
    color: var(--Color, var(--color-primary));
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
    margin-bottom: 10px;
}

.pedia_3_2 .con .txt p {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

@media screen and (max-width: 768px) {
    .pedia_3_2 .con_wrap .img_wrap {
        margin: 0 auto 10px;
    }

    .pedia_3_2 .txt_wrap {
        font-size: 20px;
        letter-spacing: -0.8px;
        padding-bottom: 114px;
        width: 90%;
        margin: 0 auto;
    }

    .pedia_3_2 .txt_wrap::after {
        width: 3px;
        top: calc(100% - 98px);
    }

    .pedia_3_2 .txt_wrap.aos-animate::after {
        height: 82px;
    }

    .pedia_3_2 .con_wrap {
        width: 90%;
        row-gap: 30px;
    }

    .pedia_3_2 .con_wrap .con {
        width: 100%;
    }

    .pedia_3_2 .con .txt strong {
        font-size: 20px;
        letter-spacing: -0.8px;
        margin-bottom: 6px;
    }

    .pedia_3_2 .con .txt p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.pedia_3_3 {
    padding: 120px 0;
    background: var(--color-green-bg);
}

.pedia_3_3 .tit_wrap {
    margin-bottom: 40px;
}

.pedia_3_3 h3 {
    margin-bottom: 24px;
}

.pedia_3_3 .con_wrap {
    display: flex;
    gap: 2.1vw;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.pedia_3_3 .con_wrap ._cover {
    max-width: 480px;
    border-radius: 20px;
    border: 1px solid var(--color-green-light);
    overflow: hidden;
}

.pedia_3_3 .con_wrap ul li::before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background: url('/img/sub/pedia_3_3_icon.png') center center / 100% no-repeat;
}

.pedia_3_3 .con_wrap ul li {
    display: flex;
    padding: 10px 30px 10px 10px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    align-items: center;
    background: #fff;
    gap: 10px;
}

.pedia_3_3 .con_wrap ul li:not(:last-child) {
    margin-bottom: 12px;
}

.pedia_3_3 .con_wrap ul li p {
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
    flex: 1;
}

@media screen and (max-width: 1024px) {
    .pedia_3_3 .con_wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .pedia_3_3 {
        padding: 80px 0;
    }

    .pedia_3_3 h3 {
        margin-bottom: 16px;
    }

    .pedia_3_3 .con_wrap ul li p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.pedia_4_1 .img_wrap {
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .pedia_4_3 .con_wrap .con:nth-child(3) {
        margin-top: -10px;
    }
}

.eyelid_1_1 {
    background: linear-gradient(180deg,
            rgba(201, 217, 196, 0) 60%,
            rgba(201, 217, 196, 0.2) 100%),
        linear-gradient(0deg, #5b6f65 0%, #5b6f65 100%), #fff;
    padding: 100px 0;
    background-blend-mode: normal, color, normal;
    position: relative;
}

.eyelid_1_1 .sub_tit {
    margin-bottom: 130px;
}

.eyelid_1_1 .con_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 130px;
    position: relative;
}

.eyelid_1_1 .con {
    width: 242px;
    height: 242px;
    transform: scale(1.2);
    border-radius: 9999px;
    border: 1px solid #80c18f;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: 1s;
}

.eyelid_1_1 .con1 {
    position: absolute;
    opacity: 0;
}

.eyelid_1_1 .con3 {
    position: absolute;
    opacity: 0;
}

.eyelid_1_1 .con_wrap.active .con1 {
    transform: translateX(100%) scale(1.2);
    opacity: 1;
    transition-delay: 0.5s;
}

.eyelid_1_1 .con_wrap.active .con3 {
    transform: translateX(-100%) scale(1.2);
    opacity: 1;
    transition-delay: 1s;
}

.eyelid_1_1 .con span {
    color: var(--color-primary);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.2px;
}

.eyelid_1_1 .con:nth-child(2) {
    background: var(--Color, var(--color-primary));
    position: relative;
    z-index: 0;
}

.eyelid_1_1 .con:nth-child(2) span {
    color: #fff;
    font-family: Jua;
    font-size: 33px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.92px;
}

.eyelid_1_1 .bottom_txt {
    text-align: center;
    color: #333;
    font-size: 30px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.2px;
}

.eyelid_1_1 .bottom_txt .box {
    color: #fff;
    background: #faaf33;
    padding: 8px 10px;
    box-sizing: border-box;
    display: inline-block;
}

.eyelid_1_1 p.side_txt {
    position: absolute;
    right: 10px;
    top: 40px;
    color: #e5ecdc;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 66.96px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

@media screen and (max-width: 1024px) {
    .eyelid_1_1 .con {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_1_1 {
        padding: 80px 0;
    }

    .eyelid_1_1 .sub_tit {
        width: 90%;
        margin: 0 auto 20px;
    }

    .eyelid_1_1 .con_wrap {
        flex-direction: column;
        align-items: center;
    }

    .eyelid_1_1 .con {
        width: 264px;
        height: 264px;
        transform: scale(1.1);
    }

    .eyelid_1_1 .con_wrap.active .con1 {
        transition-delay: 0s;
        transform: translateY(-100%) scale(1.1);
    }

    .eyelid_1_1 .con_wrap.active .con3 {
        transform: translateY(100%) scale(1.1);
    }

    .eyelid_1_1 .con span {
        font-size: 26px;
    }

    .eyelid_1_1 .con:nth-child(2) span {
        font-size: 34px;
    }

    .eyelid_1_1 .con_wrap {
        margin-bottom: 50px;
        height: 906px;
    }

    .eyelid_1_1 .bottom_txt {
        font-size: 24px;
        letter-spacing: -0.96px;
        line-height: 160%;
    }

    .eyelid_1_1 .bottom_txt .box {
        padding: 3px 10px;
    }
}

.eyelid_1_2 {
    display: flex;
    padding: 120px 0;
    align-items: flex-end;
    gap: 10px;
    justify-content: space-between;
}

.eyelid_1_2 .left_wrap {
    display: flex;
    flex: 1;
    align-items: flex-end;
    max-width: 48%;
    justify-content: space-between;
}

.eyelid_1_2 .left_wrap img:nth-child(1) {
    width: 48%;
}

.eyelid_1_2 .left_wrap img:nth-child(2) {
    width: 50%;
}

.eyelid_1_2 .right_wrap {
    padding: 90px 4.7vw;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: center;
}

.eyelid_1_2 .right_wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #f8faf4;
    z-index: -1;
    transition: 1.2s cubic-bezier(0, 0, 0.27, 0.99);
}

.eyelid_1_2.on .right_wrap::after {
    width: 100%;
}

.eyelid_1_2 .right_wrap>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eyelid_1_2 .right_wrap strong {
    color: var(--Color, var(--color-primary));
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    border: 5px solid #d1ded4;
    padding: 12px 24px;
    box-sizing: border-box;
    width: fit-content;
    margin-bottom: 40px;
}

.eyelid_1_2 .right_wrap strong::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('/img/sub/eyelid_1_2_icon1.png') center center / 100% no-repeat;
}

.eyelid_1_2 .right_wrap ul li {
    display: flex;
    align-items: center;
}

.eyelid_1_2 .right_wrap ul li:not(:last-child) {
    margin-bottom: 7px;
}

.eyelid_1_2 .right_wrap ul li span {
    color: var(--Color, var(--color-primary));
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
    min-width: 80px;
}

.eyelid_1_2 .right_wrap ul li p {
    color: #3e512d;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

@media screen and (max-width: 1024px) {
    .eyelid_1_2 .right_wrap {
        padding: 60px 3.7vw;
    }

    .eyelid_1_2 .right_wrap strong {
        font-size: 18px;
        letter-spacing: -0.72px;
        margin-bottom: 40px;
        padding: 10px 16px;
    }

    .eyelid_1_2 .right_wrap strong::before {
        width: 20px;
        height: 20px;
    }

    .eyelid_1_2 .right_wrap ul li span {
        font-size: 16px;
        letter-spacing: -0.64px;
        min-width: 76px;
    }

    .eyelid_1_2 .left_wrap {
        max-width: unset;
    }

    .eyelid_1_2 .right_wrap ul li p {
        font-size: 14px;
        letter-spacing: -0.56px;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_1_2 {
        flex-direction: column;
        gap: 40px;
        padding: 80px 0;
    }

    .eyelid_1_2 .right_wrap {
        width: 100%;
    }

    .eyelid_1_2 .right_wrap>div {
        width: fit-content;
        margin: 0 auto;
    }

    .eyelid_1_2 .left_wrap {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .eyelid_1_2 .left_wrap img:nth-child(2) {
        margin-right: auto;
        width: 90%;
        max-width: 350px;
    }
}

.eyelid_1_3 {
    padding: 70px 0 120px;
    background: url('/img/sub/eyelid_1_3_bg.png') center center / cover no-repeat;
}

.eyelid_1_3 .img_wrap {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.eyelid_1_3 .bottom_txt .box {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1.44px;
}

@media screen and (max-width: 768px) {
    .eyelid_1_3 {
        padding: 50px 0;
    }

    .eyelid_1_3 .bottom_txt .box {
        font-size: 24px;
        letter-spacing: -0.96px;
    }
}

.eyelid_2_2 {
    padding: 120px 0;
    background: var(--color-green-bg);
}

.eyelid_2_2 .sub_tit {
    margin-bottom: 40px;
}

.eyelid_2_2 .eng_sub_tit {
    margin: 0 auto 40px;
}

.eyelid_2_2 .con_wrap {
    display: flex;
    gap: 2.1vw;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.eyelid_2_2 .con_wrap img {}

.eyelid_2_2 .con_wrap ul {}

.eyelid_2_2 .con_wrap ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px 12px 12px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
}

.eyelid_2_2 .con_wrap ul li:not(:last-child) {
    margin-bottom: 12px;
}

.eyelid_2_2 .con_wrap ul li span {
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    line-height: 160%;
    padding: 0 16px;
    box-sizing: border-box;
    border-radius: 999px;
}

.eyelid_2_2 .con_wrap ul li:nth-child(1) span {
    background: var(--color-primary);
}

.eyelid_2_2 .con_wrap ul li:nth-child(2) span {
    background: #2d6652;
}

.eyelid_2_2 .con_wrap ul li:nth-child(3) span {
    background: #20463b;
}

.eyelid_2_2 .con_wrap ul li:nth-child(4) span {
    background: #20463b;
}

.eyelid_2_2 .con_wrap ul li p {
    color: #474747;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.8px;
    flex: 1;
}

@media screen and (max-width: 1024px) {
    .eyelid_2_2 .con_wrap ul li span {
        font-size: 14px;
    }

    .eyelid_2_2 .con_wrap ul li p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_2_2 {
        padding: 80px 0;
    }

    .eyelid_2_2 .sub_tit {
        margin-bottom: 16px;
    }

    .eyelid_2_2 .con_wrap {
        flex-direction: column;
        gap: 40px;
    }

    .eyelid_2_2 .con_wrap ul li {
        border-radius: 20px;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        gap: 5px;
        box-sizing: border-box;
    }
}

.eyelid_2_3 {
    padding: 120px 0;
    text-align: center;
    background: url('/img/sub/eyelid_2_3_bg.png') center center / cover no-repeat;
}

.eyelid_2_3 .sub_tit {
    margin-bottom: 40px;
}

.eyelid_2_3 ul {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto 40px;
}

.eyelid_2_3 ul li {
    display: flex;
    align-items: center;
}

.eyelid_2_3 ul li:not(:last-child)::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url('/img/sub/eyelid_2_3_arrow.png') center center / 100% no-repeat;
    margin: 0 1vw;
}

.eyelid_2_3 ul li>div {
    border-radius: 20px;
    overflow: hidden;
}

.eyelid_2_3 ul li ._cover {}

.eyelid_2_3 ul li p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
    padding: 2px 0;
}

.eyelid_2_3 ul li:nth-child(1) p {
    background: var(--Color, var(--color-primary));
}

.eyelid_2_3 ul li:nth-child(2) p {
    background: var(--color-teal);
}

.eyelid_2_3 ul li:nth-child(3) p {
    background: var(--color-teal-dark);
}

.eyelid_2_3 p.bottom {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .eyelid_2_3 {
        padding: 80px 0;
    }

    .eyelid_2_3 ul {
        flex-direction: column;
        align-items: center;
    }

    .eyelid_2_3 ul li {
        flex-direction: column;
    }

    .eyelid_2_3 ul li p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .eyelid_2_3 p.bottom {
        font-size: 18px;
        letter-spacing: -0.72px;
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }

    .eyelid_2_3 p.bottom br {
        display: none;
    }

    .eyelid_2_3 ul li:not(:last-child)::after {
        margin: 20px 0;
        transform: rotate(90deg);
    }
}

.eyelid_2_4 {
    padding: 120px 0;
    background: url('/img/sub/eyelid_2_4_bg.png') center center / cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.eyelid_2_4 .sub_tit {
    margin-bottom: 60px;
}

.eyelid_2_4 .con_wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    z-index: 1;
}

.eyelid_2_4 .con_wrap::after {
    content: '';
    display: block;
    width: 217px;
    height: 215px;
    background: url('/img/sub/eyelid_2_4_circle.png') center center / 100% no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    z-index: -1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(50%, -50%) rotate(360deg);
    }
}

.eyelid_2_4 .con {
    position: relative;
}

.eyelid_2_4 .con>div {
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.eyelid_2_4 .con>span {
    color: #fff;
    text-align: center;
    font-family: Jua;
    font-size: 22px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.88px;
    padding: 10px 20px 10px 12px;
    border-radius: 999px;
    background: var(--Color, var(--color-primary));
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eyelid_2_4 .con:nth-child(2)>span {
    background: var(--color-teal);
}

.eyelid_2_4 .con>span:before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background: url('/img/sub/eyelid_2_4_icon1.png') center center / 100% no-repeat;
}

.eyelid_2_4 .con .txt_wrap {
    padding: 20px;
    background: #fff;
}

.eyelid_2_4 .con .txt_wrap {
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.88px;
    background: var(--Color, var(--color-primary));
    box-sizing: border-box;
}

.eyelid_2_4 .con:nth-child(2) .txt_wrap {
    background: var(--color-teal);
}

.eyelid_2_4 .con .txt_wrap b {
    color: #ffe694;
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .eyelid_2_4 .con_wrap {
        width: 90%;
        margin: 0 auto;
    }

    .eyelid_2_4 .br_none {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_2_4 {
        padding: 80px 0;
    }

    .eyelid_2_4 .sub_tit {
        margin-bottom: 40px;
    }

    .eyelid_2_4 .con_wrap {
        flex-direction: column;
        width: fit-content;
    }

    .eyelid_2_4 .con_wrap::after {
        width: 150px;
        height: 150px;
    }

    .eyelid_2_4 .con {
        width: 90%;
        margin: 0 auto;
    }

    .eyelid_2_4 .con>span:before {
        width: 25px;
        height: 25px;
    }

    .eyelid_2_4 .con>span {
        font-size: 18px;
        letter-spacing: -0.72px;
        padding: 5px 10px;
    }

    .eyelid_2_4 .con .txt_wrap {
        min-height: 120px;
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.eyelid_2_5 {
    padding: 120px 0;
}

.eyelid_2_5 .tit_wrap {
    margin-bottom: 60px;
}

.eyelid_2_5 h3 {
    margin-bottom: 24px;
    font-weight: 400;
}

.eyelid_2_5 h3 span {
    font-weight: 700;
}

.eyelid_2_5 .con_wrap {
    display: flex;
    gap: 2.1vw;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.eyelid_2_5 .con_wrap {
    display: flex;
    justify-content: center;
    gap: 1.6vw;
}

.eyelid_2_5 .con_wrap ul li {
    display: flex;
    padding: 10px 30px 10px 10px;
    align-items: center;
    border-radius: 999px;
    gap: 10px;
    border: 1px solid var(--color-border);
}

.eyelid_2_5 .con_wrap ul li:not(:last-child) {
    margin-bottom: 12px;
}

.eyelid_2_5 .con_wrap ul li:before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background: url('/img/sub/tears_2_5_icon.png') center center / 100% no-repeat;
}

.eyelid_2_5 .con_wrap ul li p {
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 1024px) {
    .eyelid_2_5 .img_wrap {
        flex: 1;
    }

    .eyelid_2_5 .con_wrap ul {
        flex: 1;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_2_5 {
        padding: 80px 0;
    }

    .eyelid_2_5 .tit_wrap {
        margin-bottom: 40px;
    }

    .eyelid_2_5 .sub_txt {
        width: 90%;
        margin: 0 auto;
        max-width: 500px;
    }

    .eyelid_2_5 .con_wrap {
        flex-direction: column;
        gap: 30px;
    }

    .eyelid_2_5 .con_wrap ul li:before {
        width: 25px;
        height: 25px;
    }

    .eyelid_2_5 .con_wrap ul li p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.eyelid_3_2 {
    background: url('/img/sub/eyelid_3_2_bg.png') center center / cover no-repeat;
    padding: 120px 0;
    text-align: center;
}

.eyelid_3_2 .tit_wrap {
    width: 90%;
    margin: 0 auto;
}

.eyelid_3_2 .tit_wrap img {
    margin: 0 auto 40px;
}

.eyelid_3_2 .tit_wrap p {
    color: #333;
    font-size: 36px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -1.44px;
}

.eyelid_3_2 .box_wrap {
    margin-bottom: 50px;
}

.eyelid_3_2 .con_wrap ul {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.eyelid_3_2 .con_wrap ul li {
    width: 255px;
    height: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid #afd2b7;
    transform: scale(1.15);
    opacity: 0;
    transition: 0.45s;
}

.eyelid_3_2 .con_wrap ul.aos-animate li {
    opacity: 1;
}

.eyelid_3_2 .con_wrap ul.aos-animate li:nth-child(1) {
    transition-delay: 0.3s;
}

.eyelid_3_2 .con_wrap ul.aos-animate li:nth-child(2) {
    transition-delay: 0.8s;
}

.eyelid_3_2 .con_wrap ul.aos-animate li:nth-child(3) {
    transition-delay: 1.3s;
}

.eyelid_3_2 .con_wrap p {
    color: var(--Color, var(--color-primary));
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.76px;
}

@media screen and (max-width: 1024px) {
    .eyelid_3_2 .con_wrap ul li {
        width: 220px;
        height: 220px;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_3_2 {
        padding: 80px 0;
    }

    .eyelid_3_2 .tit_wrap img {
        max-width: 60px;
    }

    .eyelid_3_2 .tit_wrap p {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .eyelid_3_2 .con_wrap ul {
        flex-wrap: wrap;
        max-width: 450px;
    }

    .eyelid_3_2 .con_wrap ul li {
        width: 160px;
        height: 160px;
    }

    .eyelid_3_2 .con_wrap ul li img {
        width: 45px;
    }

    .eyelid_3_2 .con_wrap p {
        font-size: 12px;
        letter-spacing: -0.56px;
    }

    .eyelid_3_2 .con_wrap ul li:nth-child(3) {
        margin-top: -10px;
    }
}

.eyelid_3_3 {
    padding: 120px 0;
}

.eyelid_3_3 .tit_wrap {
    width: 90%;
    margin: 0 auto 100px;
}

.eyelid_3_3 .tit_wrap h3 {
    margin-bottom: 16px;
}

.eyelid_3_3 .tit_wrap span {
    margin: 0 auto 24px;
}

.eyelid_3_3 ul {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}

.eyelid_3_3 ul li {
    display: flex;
    align-items: center;
    gap: 5.2vw;
}

.eyelid_3_3 ul li:not(:last-child) {
    margin-bottom: 60px;
}

.eyelid_3_3 ul li .img_wrap {
    flex: 1;
    min-width: 40%;
}

.eyelid_3_3 ul li .img_wrap.twin_wrap {
    display: flex;
}

.eyelid_3_3 ul li .txt_wrap {
    max-width: 500px;
    width: 50%;
}

.eyelid_3_3 ul li.twin_wrap .txt_wrap {
    max-width: 384px;
}

.eyelid_3_3 ul li.twin_wrap .img_wrap {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.eyelid_3_3 ul li.twin_wrap .img_wrap img {
    flex: 1;
    max-width: calc(50% - 5px);
}

.eyelid_3_3 ul li .txt_wrap span {
    color: var(--Color, var(--color-primary));
    font-family: var(--font-poppins);
    font-size: 20px;
    padding: 10px 20px;
    display: block;
    box-sizing: border-box;
    width: fit-content;
    font-weight: 400;
    border-radius: 999px;
    border: 1px solid var(--Color, var(--color-primary));
    line-height: 120%;
    margin-bottom: 20px;
}

.eyelid_3_3 ul li .txt_wrap strong {
    color: #171717;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.96px;
    display: block;
    margin-bottom: 22px;
}

.eyelid_3_3 ul li .txt_wrap p {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.72px;
}

@media screen and (max-width: 768px) {
    .eyelid_3_3 {
        padding: 80px 0;
    }

    .eyelid_3_3 .tit_wrap h3 {
        margin-bottom: 16px;
    }

    .eyelid_3_3 .tit_wrap span {
        margin: 0 auto 16px;
    }

    .eyelid_3_3 ul li {
        flex-direction: column;
        gap: 20px;
    }

    .eyelid_3_3 .tit_wrap {
        margin: 0 auto 40px;
    }

    .eyelid_3_3 ul li .txt_wrap {
        width: 100%;
    }

    .eyelid_3_3 ul li .txt_wrap span {
        font-size: 16px;
        letter-spacing: -0.6px;
        padding: 6px 15px;
    }

    .eyelid_3_3 ul li .txt_wrap strong {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .eyelid_3_3 ul li .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .eyelid_3_3 ul li:nth-child(2) {
        flex-direction: column-reverse;
    }

    .eyelid_3_3 ul li.twin_wrap .txt_wrap {
        max-width: 500px;
    }
}

.eyelid_3_4 {
    overflow: hidden;
    padding: 120px 0;
    background: url('/img/sub/eyelid_3_4_bg.png') center center / cover no-repeat;
    position: relative;
    z-index: 1;
}

.eyelid_3_4::after {
    content: '';
    display: block;
    width: 217px;
    height: 215px;
    background: url('/img/sub/eyelid_2_4_circle.png') center center / 100% no-repeat;
    position: absolute;
    top: 240px;
    right: 0;
    transform: translateX(50%);
    z-index: -1;
    animation: rotate 10s linear infinite;
}

.eyelid_3_4 .tit_wrap {
    margin-bottom: 60px;
}

.eyelid_3_4 .tit_wrap p {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.28px;
}

.eyelid_3_4 .con:not(:last-child) {
    margin-bottom: 80px;
}

.eyelid_3_4 .con .box {
    display: flex;
    background: #fff;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--Color, var(--color-primary));
    margin-bottom: 30px;
}

.eyelid_3_4 .con:nth-child(2) .box {
    border: 1px solid var(--color-teal);
}

.eyelid_3_4 .con:nth-child(3) .box {
    border: 1px solid var(--color-teal-dark);
}

.eyelid_3_4 .con:nth-child(4) .box {
    border: 1px solid #3a4442;
}

.eyelid_3_4 .con .box strong {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
    padding: 10px 20px;
    box-sizing: border-box;
    background: var(--Color, var(--color-primary));
}

.eyelid_3_4 .con:nth-child(2) .box strong {
    background: var(--color-teal);
}

.eyelid_3_4 .con:nth-child(3) .box strong {
    background: var(--color-teal-dark);
}

.eyelid_3_4 .con:nth-child(4) .box strong {
    background: #3a4442;
}

.eyelid_3_4 .con .box p {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

.eyelid_3_4 .con4 .list_wrap:nth-child(2) {
    margin-bottom: 30px;
}

.eyelid_3_4 .con4 .list_wrap p.case {
    margin-bottom: 30px;
    text-align: center;
}

.eyelid_3_4 .con4 .list_wrap p.case span {
    color: var(----main, #00491e);
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
}

.eyelid_3_4 .con4 .list_wrap p.case b {
    color: #3a4442;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
}

.eyelid_3_4 .con4 .list_wrap p.case {
    color: #3a4442;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.96px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.eyelid_3_4 .con ul {
    display: flex;
}

.eyelid_3_4 .con ul li {
    display: flex;
    align-items: center;
    opacity: 0;
    transition: 0.45s;
}

.eyelid_3_4 .con.aos-animate ul li {
    opacity: 1;
}

.eyelid_3_4 .con.aos-animate ul li:nth-child(1) {
    transition-delay: 0.3s;
}

.eyelid_3_4 .con.aos-animate ul li:nth-child(2) {
    transition-delay: 0.8s;
}

.eyelid_3_4 .con.aos-animate ul li:nth-child(3) {
    transition-delay: 1.3s;
}

.eyelid_3_4 .con.aos-animate ul li:nth-child(4) {
    transition-delay: 1.8s;
}

.eyelid_3_4 .con ul li>div {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
    flex: 1;
}

.eyelid_3_4 .con ul li:not(:last-child)::after {
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    margin: 0 16px;
    background: url('/img/sub/eyelid_3_4_arrow.png') center center / 100%;
}

.eyelid_3_4 .con:nth-child(2) ul li:not(:last-child)::after {
    background: url('/img/sub/eyelid_3_4_arrow_2.png') center center / 100%;
}

.eyelid_3_4 .con:nth-child(3) ul li:not(:last-child)::after {
    background: url('/img/sub/eyelid_3_4_arrow_3.png') center center / 100%;
}

.eyelid_3_4 .con:nth-child(4) ul li:not(:last-child)::after {
    background: url('/img/sub/eyelid_3_4_arrow_4.png') center center / 100%;
}

.eyelid_3_4 .con ul li {
    width: calc(25% + 42px);
}

.eyelid_3_4 .con ul li:last-child {
    width: 25%;
}

.eyelid_3_4 .con ul li .txt_wrap {
    padding: 30px 10px;
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.eyelid_3_4 .con:nth-child(2) ul li .txt_wrap {
    color: var(--color-teal);
}

.eyelid_3_4 .con:nth-child(3) ul li .txt_wrap {
    color: var(--color-teal-dark);
}

.eyelid_3_4 .con:nth-child(4) ul li .txt_wrap {
    color: #3a4442;
}

@media screen and (max-width: 1024px) {
    .eyelid_3_4 .con4 .list_wrap p.case span {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .eyelid_3_4 .con4 .list_wrap p.case b {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .eyelid_3_4 .con4 .list_wrap p.case {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_3_4 {
        padding: 80px 0;
    }

    .eyelid_3_4::after {
        width: 150px;
        height: 150px;
        top: 160px;
    }

    .eyelid_3_4 .tit_wrap {
        margin-bottom: 40px;
    }

    .eyelid_3_4 .tit_wrap p {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .eyelid_3_4 .con .box {
        flex-direction: column;
        align-items: unset;
        gap: 0;
        max-width: 500px;
        margin: 0 auto 15px;
    }

    .eyelid_3_4 .con .box strong {
        width: 100%;
        padding: 10px;
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .eyelid_3_4 .con .box p {
        font-size: 16px;
        letter-spacing: -0.64px;
        padding: 10px;
    }

    .eyelid_3_4 .con ul {
        flex-direction: column;
        align-items: center;
    }

    .eyelid_3_4 .con ul li {
        flex-direction: column;
        width: 100%;
        max-width: 500px;
    }

    .eyelid_3_4 .con ul li:last-child {
        width: 100%;
    }

    .eyelid_3_4 .con:not(:last-child) {
        margin-bottom: 40px;
    }

    .eyelid_3_4 .con ul li .txt_wrap {
        padding: 10px;
        font-size: 18px;
    }

    .eyelid_3_4 .con ul li:not(:last-child)::after {
        transform: rotate(90deg);
        margin: 16px 0;
    }

    .eyelid_3_4 .con4 .list_wrap p.case {
        flex-wrap: wrap;
        row-gap: 5px;
        justify-content: flex-start;
        text-align: left;
    }
}

.eyelid_4_1 {
    padding: 100px 0;
    background: url('/img/sub/eyelid_4_1_bg.png') center center / cover no-repeat;
}

.eyelid_4_1 .tit_wrap {
    margin-bottom: 40px;
}

.eyelid_4_1 .sub_top_txt {
    margin-bottom: 10px;
}

.eyelid_4_1 .sub_tit {
    margin-bottom: 40px;
}

.eyelid_4_1 .img_wrap {
    display: flex;
    justify-content: center;
    gap: 1.6vw;
    width: 90%;
    margin: 0 auto 40px;
}

.eyelid_4_1 .img_wrap img {
    width: calc(50% - 0.8vw);
    max-width: 480px;
}

.eyelid_4_1 .b_box {
    display: flex;
    gap: 20px;
    width: fit-content;
    max-width: 90%;
    margin: 0 auto 40px;
    background: url('/img/sub/eyelid_4_1_ballon.png') center center / 100% 100% no-repeat;
    padding: 76px 40px 30px;
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.eyelid_4_1 .box {
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.2px;
    background: var(--Color, var(--color-primary));
    padding: 10px 20px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 10px;
}

.eyelid_4_1 .box b {
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .eyelid_4_1 {
        padding: 80px 0;
    }

    .eyelid_4_1 .sub_top_txt {
        margin-bottom: 6px;
    }

    .eyelid_4_1 .sub_tit {
        margin-bottom: 24px;
    }

    .eyelid_4_1 .b_box {
        background: url('/img/sub/eyelid_4_1_ballon_m.png') center center / 100% 100% no-repeat;
        padding: 50px 20px 24px;
        font-size: 16px;
        letter-spacing: -0.64px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 337px;
    }

    .eyelid_4_1 .b_box img {
        width: 24px;
        height: 24px;
    }

    .eyelid_4_1 .box {
        background: transparent;
        font-size: 16px;
        letter-spacing: -0.64px;
        padding: 0;
        margin: 0 auto;
    }

    .eyelid_4_1 .box span {
        display: block;
        background: var(--Color, var(--color-primary));
        padding: 6px 16px;
        width: fit-content;
        margin: 0 auto 10px;
    }
}

.eyelid_3_1 .img_wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-green-light);
    width: fit-content;
    margin: 0 auto 40px;
}

.eyelid_3_1 .img_wrap img {
    width: 100%;
    max-width: unset;
}

@media screen and (max-width: 768px) {
    .eyelid_3_1 .img_wrap {
        width: 90%;
    }
}

.eyelid_4_3 {
    padding: 120px 0;
    background: linear-gradient(180deg,
            rgba(193, 223, 179, 0) 48.76%,
            rgba(195, 239, 175, 0.2) 100%),
        #fff;
    text-align: center;
}

.eyelid_4_3 .tit_wrap {
    margin-bottom: 60px;
}

.eyelid_4_3 .tit_wrap h3 {
    margin-bottom: 16px;
}

.eyelid_4_3 .eng_sub_tit {
    margin: 0 auto 24px;
}

.eyelid_4_3 .con_wrap {
    display: flex;
    gap: 20px;
}

.eyelid_4_3 .con_wrap dl {
    flex: 1;
}

.eyelid_4_3 .con_wrap dt {
    color: #333;
    font-size: 24px;
    border-radius: 999px;
    border: 4px solid var(--color-primary);
    background: #fff;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 40px;
    position: relative;
}

.eyelid_4_3 .con_wrap dt::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--color-border);
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
}

.eyelid_4_3 .con_wrap dd {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
    padding: 60px 10px;
    max-height: 170px;
    border: 1px solid var(--color-border);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background: #fff;
}

.eyelid_4_3 .con_wrap dd p {
    max-width: 355px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .eyelid_4_3 {
        padding: 80px 0;
    }

    .eyelid_4_3 .tit_wrap h3 {
        margin-bottom: 10px;
    }

    .eyelid_4_3 .eng_sub_tit {
        margin: 0 auto 16px;
    }

    .eyelid_4_3 .tit_wrap {
        margin-bottom: 40px;
    }

    .eyelid_4_3 .con_wrap {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }

    .eyelid_4_3 .con_wrap dt {
        font-size: 18px;
        letter-spacing: -0.72px;
        padding: 6px;
    }

    .eyelid_4_3 .con_wrap dd {
        font-size: 16px;
        letter-spacing: -0.64px;
        padding: 30px 10px;
    }
}

.eyelid_5_2 {
    padding: 120px 0;
    background: url('/img/sub/eyelid_5_2_bg.png') center center / cover no-repeat;
}

.eyelid_5_2 .tit_wrap {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.eyelid_5_2 .sub_tit {
    margin-bottom: 24px;
}

.eyelid_5_2 .sub_txt {
    max-width: 520px;
    margin: 0 auto;
}

.eyelid_5_2 .con_wrap {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    max-width: 870px;
    position: relative;
}

.eyelid_5_2 ul {
    position: relative;
    z-index: 1;
}

.eyelid_5_2 ul li {
    display: flex;
    align-items: center;
    position: relative;
    width: fit-content;
}

.eyelid_5_2 ul li:not(:last-child) {
    margin-bottom: 20px;
}

.eyelid_5_2 ul li:before {
    content: '';
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    background: url('/img/sub/eyelid_5_2_icon.png') center center / 100% no-repeat;
    margin-right: -10px;
}

.eyelid_5_2 ul li>div {
    display: flex;
    align-items: center;
    background: var(--Color, var(--color-primary));
    padding: 1px 30px;
    gap: 13px;
}

.eyelid_5_2 ul li::after {
    content: '';
    display: block;
    width: 38px;
    height: 71px;
    background: url('/img/sub/eyelid_5_2_pol.png') center center / 100% no-repeat;
    position: absolute;
    right: -38px;
}

.eyelid_5_2 ul li span {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.96px;
}

.eyelid_5_2 ul li p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.8px;
}

.eyelid_5_2 .img_wrap {
    position: absolute;
    right: 0;
    max-width: 330px;
}

@media screen and (max-width: 768px) {
    .eyelid_5_2 {
        padding: 80px 0;
        background: url('/img/sub/eyelid_5_2_bg_m.png') center center / cover no-repeat;
    }

    .eyelid_5_2 .con_wrap {
        flex-direction: column;
        gap: 24px;
    }

    .eyelid_5_2 .img_wrap {
        position: static;
    }

    .eyelid_5_2 ul li {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .eyelid_5_2 ul li:not(:last-child) {
        margin-bottom: 12px;
    }

    .eyelid_5_2 ul li>div {
        flex-direction: column;
        padding: 24px 20px 12px 20px;
        width: 100%;
        border-radius: 16px;
        box-sizing: border-box;
        gap: 3px;
    }

    .eyelid_5_2 ul li::after {
        content: none;
    }

    .eyelid_5_2 ul li:before {
        margin-bottom: -24px;
        width: 48px;
        height: 48px;
    }

    .eyelid_5_2 ul li:not(:last-child)::after {
        content: '';
        display: block;
        width: 17px;
        height: 9px;
        background: url('/img/sub/eyelid_5_2_pol_m.png') center center / 100% no-repeat;
        position: static;
        margin-top: 12px;
    }

    .eyelid_5_2 ul li span {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .eyelid_5_2 ul li p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.eyelid_5_3 {
    background: #fff;
}

.eyelid_5_3 .bottom_txt {
    margin-top: 0;
}

.eyelid_5_3 .bottom_txt::before {
    content: none;
}

.eyelid_5_3 .box {
    font-size: 44px;
    letter-spacing: -1.76px;
    font-weight: 700;
    background: var(--color-primary);
    padding: 7px 10px;
}

.eyelid_5_3 .box span {
    display: inline;
    padding: 0;
    background: transparent;
}

.eyelid_5_3 .box_wrap p {
    color: #333;
    font-size: 36px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -1.44px;
}

.eyelid_5_3 .box_wrap {
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .eyelid_5_3 .box {
        font-size: 30px;
    }

    .eyelid_5_3 .box_wrap p {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_5_3 .box {
        font-size: 19px;
        padding: 0;
        background: transparent;
    }

    .eyelid_5_3 .box_wrap p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .eyelid_5_3 .box span {
        display: block;
        width: fit-content;
        padding: 3px 5px;
        background: var(--color-primary);
    }
}

.eyelid_5_4 {
    background: var(--color-green-bg);
    padding: 120px 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.eyelid_5_4 .tit_wrap {
    margin-bottom: 40px;
}

.eyelid_5_4 .sub_top_txt {
    margin-bottom: 10px;
}

.eyelid_5_4 .sub_tit {
    margin-bottom: 10px;
}

.eyelid_5_4 .eng_sub_tit {
    margin: 0 auto 24px;
}

.eyelid_5_4 .con_wrap {
    display: flex;
    justify-content: center;
    gap: 2.1vw;
    max-width: 965px;
    width: 90%;
    margin: 0 auto;
}

.eyelid_5_4 .img_wrap {
    flex: 1;
}

.eyelid_5_4 .txt_wrap {
    width: calc(50% - 2.1vw);
    padding: 40px 3.1vw;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.eyelid_5_4 .txt_wrap strong:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url('/img/sub/eyelid_5_4_icon1.png') center center / 100% no-repeat;
    margin-bottom: 24px;
}

.eyelid_5_4 .txt_wrap strong {
    color: var(--Color, var(--color-primary));
    font-size: 30px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
}

.eyelid_5_4 .txt_wrap p {
    color: #546c4d;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .eyelid_5_4 {
        padding: 80px 0;
    }

    .eyelid_5_4 .sub_top_txt {
        margin-bottom: 6px;
    }

    .eyelid_5_4 .sub_tit {
        margin-bottom: 6px;
    }

    .eyelid_5_4 .eng_sub_tit {
        margin: 0 auto 16px;
    }

    .eyelid_5_4 .con_wrap {
        flex-direction: column;
        gap: 20px;
    }

    .eyelid_5_4 .img_wrap img {
        margin: 0 auto;
    }

    .eyelid_5_4 .txt_wrap {
        width: 100%;
        padding: 25px 13px;
    }

    .eyelid_5_4 .txt_wrap strong:before {
        width: 24px;
        height: 24px;
        margin-bottom: 12px;
    }

    .eyelid_5_4 .txt_wrap strong {
        font-size: 24px;
        letter-spacing: -0.96px;
        margin-bottom: 15px;
    }

    .eyelid_5_4 .txt_wrap p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
}

.eyelid_4_4 {
    padding: 120px 0;
    background: url('/img/sub/eyelid_4_4_bg.png') center center / cover no-repeat;
}

.eyelid_4_4 .sub_tit {
    margin-bottom: 24px;
}

.eyelid_4_4 .tit_wrap {
    width: 90%;
    margin: 0 auto 90px;
}

.eyelid_4_4 .tit_wrap::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 736px;
    height: 1px;
    background: var(--color-border);
    margin: 60px auto 0;
}

.eyelid_4_4 .img_wrap {
    position: relative;
    /* margin-bottom: 24px; */
    text-align: center;
    display: flex;
    font-size: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.eyelid_4_4 .img_wrap .img {
    font-size: 0;
}

.eyelid_4_4 .img_tit {
    /* position: absolute; */
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    padding: 6px 40px;
    border-radius: 9999px;
    background: var(--Color-2, var(--color-teal));
    display: block;
    width: fit-content;
    margin: 0 auto 24px;
    /* top: 0; */
    /* left: 50%; */
    /* transform: translate(-50%, -40%); */
    letter-spacing: -1.44px;
}

.eyelid_4_4 .img_wrap p.img_txt {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
    padding: 2px 0;
    background: var(--Color, var(--color-primary));
    box-sizing: border-box;
}

.eyelid_4_4 .img:nth-child(2) p.img_txt {
    background: var(--color-teal);
}

.eyelid_4_4 .img:nth-child(3) p.img_txt {
    background: var(--color-teal-dark);
}

.eyelid_4_4 .con_wrap {
    width: 90%;
    margin: 0 auto;
}

.eyelid_4_4 .con_wrap p {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .eyelid_4_4 {
        padding: 80px 0;
    }

    .eyelid_4_4 .img_wrap {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto 24px;
        border-radius: 0;
    }

    .eyelid_4_4 .img_wrap .img {
        border-radius: 20px;
        overflow: hidden;
    }

    .eyelid_4_4 .img_wrap .img:not(:last-child) {
        margin-bottom: 15px;
    }

    .eyelid_4_4 .img_tit {
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .eyelid_4_4 .img_wrap p.img_txt {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .eyelid_4_4 .tit_wrap {
        margin: 0 auto 50px;
    }

    .eyelid_4_4 .tit_wrap::after {
        margin: 30px auto 0;
    }

    .eyelid_4_4 .con_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.eyelid_4_5 {
    padding: 120px 0;
    background: var(--color-green-bg);
    position: relative;
}

.eyelid_4_5::after {
    content: '';
    display: block;
    width: 217px;
    height: 215px;
    background: url('/img/sub/eyelid_2_4_circle.png') center center / 100% no-repeat;
    position: absolute;
    top: 200px;
    right: 0;
    transform: translateX(50%);
    z-index: 1;
    animation: rotate 10s linear infinite;
}

.eyelid_4_5 .sub_tit {
    margin-bottom: 40px;
}

.eyelid_4_5 ul {
    display: flex;
    max-width: 1060px;
    margin: 0 auto 60px;
    gap: 16px;
    flex-wrap: wrap;
}

.eyelid_4_5 ul li {
    width: calc(50% - 8px);
    background: #fff;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    padding: 10px 30px 10px 10px;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
}

.eyelid_4_5 ul li:before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background: url('/img/sub/tears_2_5_icon.png') center center / 100% no-repeat;
}

.eyelid_4_5 ul li p {
    flex: 1;
}

.eyelid_4_5 strong {
    color: var(--color-primary);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    margin-bottom: 40px;
}

.eyelid_4_5 .box_wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.eyelid_4_5 .box_wrap .box {
    max-width: 320px;
    border-radius: 20px;
    overflow: hidden;
}

.eyelid_4_5 .box_wrap .box p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    background: var(--Color, var(--color-primary));
    line-height: 160%;
    letter-spacing: -0.8px;
    padding: 2px 0px;
}

.eyelid_4_5 .box_wrap .box:nth-child(3) p {
    background: var(--color-teal);
}

@media screen and (max-width: 1024px) {
    .eyelid_4_5 {
        padding: 80px 0;
    }

    .eyelid_4_5::after {
        display: none;
    }

    .eyelid_4_5 ul {
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .eyelid_4_5 ul li {
        width: 100%;
        font-size: 16px;
        letter-spacing: -0.64px;
        padding: 10px;
    }

    .eyelid_4_5 ul li:before {
        width: 25px;
        height: 25px;
    }

    .eyelid_4_5 strong {
        font-size: 24px;
        letter-spacing: -0.96px;
        margin-bottom: 20px;
    }

    .eyelid_4_5 .box_wrap {
        flex-direction: column;
        gap: 12px;
    }

    .eyelid_4_5 .box_wrap .box p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .eyelid_4_5 .box_wrap .arrow {
        transform: rotate(90deg);
    }
}

.eyelid_5_5 {
    padding: 120px 0;
}

.eyelid_5_5 .sub_tit {
    margin-bottom: 40px;
}

.eyelid_5_5 .con_wrap {
    width: 90%;
    margin: 0 auto;
}

.eyelid_5_5 .con_wrap ul {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}

.eyelid_5_5 .con_wrap ul li .img_wrap {
    margin-bottom: 12px;
}

.eyelid_5_5 .con_wrap ul li p {
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
}

.eyelid_5_5 .bottom_txt:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url('/img/sub/eyelid_5_5_icon.png') center center / 100% no-repeat;
    animation: bounce2 2s ease infinite;
}

.eyelid_5_5 .bottom_txt {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid var(--Color, var(--color-primary));
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    background: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 20px;
    box-sizing: border-box;
    font-weight: 700;
    padding: 20px 100px;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .eyelid_5_5 {
        padding: 80px 0;
    }

    .eyelid_5_5 .con_wrap ul {
        flex-direction: column;
    }

    .eyelid_5_5 .con_wrap ul li .img_wrap img {
        margin: 0 auto;
    }

    .eyelid_5_5 .con_wrap ul li p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .eyelid_5_5 .bottom_txt {
        flex-direction: column;
        font-size: 15px;
        letter-spacing: -0.64px;
        width: 100%;
        max-width: 500px;
        padding: 20px 15px;
    }
}

.retina_1_1 {
    background: url('/img/sub/retina_1_1_bg.png') center center / cover no-repeat;
    padding: 120px 0;
}

.retina_1_1 .tit_wrap {
    margin-bottom: 40px;
}

.retina_1_1 .sub_top_txt {
    margin-bottom: 10px;
}

.retina_1_1 .img_wrap {
    width: fit-content;
    margin: 0 auto 40px;
}

.retina_1_1 .con_wrap {
    width: 90%;
    margin: 0 auto;
}

.retina_1_1 .con_1 {
    margin-bottom: 60px;
}

.retina_1_1 .con_1 p {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.retina_1_1 .con_2 ul.box {
    display: flex;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
    padding: 20px 3.1vw;
    box-sizing: border-box;
    border: 1px solid #abc4b1;
    background: linear-gradient(180deg, #69aa78 0%, #3c7349 100%);
    text-align: center;
}

.retina_1_1 .con_2 ul.box li span {
    color: #fff;

    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.retina_1_1 .con_2 ul.box li strong {
    color: #fff;

    font-size: 80px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -3.2px;
}

.retina_1_1 .con_2 ul.box li:first-child {
    display: flex;
    align-items: center;
}

.retina_1_1 .con_2 ul.box li:first-child:after {
    content: '';
    display: block;
    width: 1px;
    height: 123px;
    background: #fff;
    margin: 0 2vw;
}

.retina_1_1 .con_2 .txt_wrap {
    margin-top: 60px;
}

.retina_1_1 .con_2 p.top_txt {
    color: #ccc;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    text-align: center;
}

.retina_1_1 .con_2 p.top_txt>span {
    color: #ccc;
}

.retina_1_1 .con_2 p.top_txt.aos-animate>span {
    animation: color 0.5s linear forwards;
}

.retina_1_1 .con_2 .bottom_txt {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    margin-top: 180px;
}

.retina_1_1 .con_2 .bottom_txt:before {
    content: '';
    display: block;
    position: absolute;
    top: -140px;
    left: 50%;
    width: 6px;
    height: 0;
    background: url(/img/sub/tears_4_1_line.png) center center / 100% no-repeat;
    transition: 0.3s;
}

.retina_1_1 .con_2 .bottom_txt.aos-animate::before {
    height: 103px;
}

@media screen and (max-width: 768px) {
    .retina_1_1 {
        padding: 80px 0;
    }

    .retina_1_1 .con_1 {
        margin-bottom: 30px;
    }

    .retina_1_1 .con_1 p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .retina_1_1 .con_2 .txt_wrap {
        margin-top: 40px;
    }

    .retina_1_1 .con_2 ul.box {
        flex-direction: column;
        padding: 20px;
        width: 100%;
        max-width: 500px;
    }

    .retina_1_1 .con_2 ul.box li span {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .retina_1_1 .con_2 ul.box li:first-child {
        flex-direction: column;
    }

    .retina_1_1 .con_2 ul.box li:first-child:after {
        width: 100%;
        height: 1px;
        margin: 20px auto;
    }

    .retina_1_1 .con_2 ul.box li strong {
        font-size: 36px;
        letter-spacing: -1.44px;
    }

    .retina_1_1 .con_2 p.top_txt {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .retina_1_1 .con_2 .bottom_txt {
        /* margin-top: 100px; */
        font-size: 16px;
        letter-spacing: -0.64px;
        max-width: 480px;
        margin: 100px auto 0;
    }

    .retina_1_1 .con_2 .bottom_txt.aos-animate::before {
        height: 60px;
    }

    .retina_1_1 .con_2 .bottom_txt::before {
        width: 3px;
        top: -80px;
    }
}

.retina_1_2 {
    padding: 120px 0;
}

.retina_1_2 .sub_tit {
    margin-bottom: 16px;
}

.retina_1_2 .sub_tit p {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -1.44px;
}

.retina_1_2 .eng_sub_tit {
    margin: 0 auto 24px;
}

.retina_1_2 .sub_txt_1 {
    margin-bottom: 24px;
}

.retina_1_2 .tit_wrap {
    margin-bottom: 40px;
}

.retina_1_2 .con_wrap {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    gap: 24px;
}

.retina_1_2 .con_wrap li {
    border-radius: 20px;
    overflow: hidden;
}

.retina_1_2 .con_wrap li p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
    background: var(--Color, var(--color-primary));
    padding: 6px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .retina_1_2 {
        padding: 80px 0;
    }

    .retina_1_2 .sub_tit p {
        font-size: 25px;
        letter-spacing: -1px;
    }

    .retina_1_2 .tit_wrap {
        width: 90%;
        margin: 0 auto 30px;
    }

    .retina_1_2 .eng_sub_tit {
        margin: 0 auto 16px;
    }

    .retina_1_2 .sub_txt_1 {
        margin-bottom: 8px;
    }

    .retina_1_2 .con_wrap {
        flex-direction: column;
    }

    .retina_1_2 .con_wrap li {
        width: fit-content;
        margin: 0 auto;
    }

    .retina_1_2 .con_wrap li p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.retina_1_3 {
    padding: 120px 0;
    background: url('/img/sub/retina_1_3_bg.png') center center / cover no-repeat;
}

.retina_1_3 .tit_wrap {
    width: 90%;
    margin: 0 auto 60px;
}

.retina_1_3 .sub_tit p {
    color: #333;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -1.44px;
}

.retina_1_3 .sub_tit {
    margin-bottom: 16px;
}

.retina_1_3 .eng_sub_tit {
    margin: 0 auto 24px;
}

.retina_1_3 .con_wrap {
    display: flex;
    gap: 3.1vw;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
}

.retina_1_3 .con_wrap li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.retina_1_3 .con_wrap li:not(:last-child) {
    margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
    .retina_1_3 {
        padding: 80px 0;
    }

    .retina_1_3 .sub_tit {
        margin-bottom: 8px;
    }

    .retina_1_3 .sub_tit p {
        font-size: 25px;
        letter-spacing: -1px;
    }

    .retina_1_3 .eng_sub_tit {
        margin: 0 auto 16px;
    }

    .retina_1_3 .tit_wrap {
        margin: 0 auto 40px;
    }

    .retina_1_3 .con_wrap {
        flex-direction: column;
        max-width: fit-content;
    }

    .retina_1_3 .con_wrap li:not(:last-child) {
        margin-bottom: 30px;
    }

    .retina_1_3 .con_wrap li {
        margin-bottom: 30px;
    }

    .retina_1_3 .con_wrap:last-child li:last-child {
        margin-bottom: 0;
    }

    .retina_1_3 .con_wrap li img {
        width: 50px;
    }

    .retina_1_3 .con_wrap li {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.retina_2_1 {
    padding: 100px 0;
    background: url('/img/sub/retina_2_1_bg.png') center center / cover no-repeat;
    text-align: center;
}

.retina_2_1 .tit_wrap {
    margin-bottom: 40px;
}

.retina_2_1 .tit_wrap p {
    color: #333;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.96px;
    margin-bottom: 10px;
}

.retina_2_1 .tit_wrap p b {
    font-weight: 700;
}

.retina_2_1 .tit_wrap p b>span {
    position: relative;
    opacity: 0;
}

.retina_2_1 .tit_wrap p.aos-animate b>span {
    animation: fade 0.5s linear forwards;
}

.retina_2_1 .tit_wrap p.aos-animate b>span.num0 {
    animation-delay: 0.2s !important;
}

.retina_2_1 .tit_wrap p.aos-animate b>span.num1 {
    animation-delay: 0.5s !important;
}

.retina_2_1 .tit_wrap p.aos-animate b>span.num2 {
    animation-delay: 0.8s !important;
}

.retina_2_1 .tit_wrap p b>span:before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 99px;
    background: #333;
    position: absolute;
    top: -8px;
    left: 50%;
}

.retina_2_1 ul {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.retina_2_1 ul li {
    border-radius: 20px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.retina_2_1 ul li p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.08px;
    padding: 12px 0px;
    background: var(--Color, var(--color-primary));
}

.retina_2_1 ul li:last-child p {
    font-weight: 400;
    background: var(--01, #f1f1f1);
    letter-spacing: -0.08px;
    color: #666;
}

.retina_2_1 .con_wrap p.bottom_txt {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .retina_2_1 {
        padding: 60px 0;
    }

    .retina_2_1 .tit_wrap p {
        font-size: 20px;
        margin-bottom: 0;
        line-height: 1.7;
    }

    .retina_2_1 ul {
        flex-direction: column;
    }

    .retina_2_1 ul li {
        width: fit-content;
        margin: 0 auto;
    }

    .retina_2_1 ul li p {
        font-size: 18px;
        padding: 5px 0;
    }

    .retina_2_1 .con_wrap p.bottom_txt {
        font-size: 16px;
        letter-spacing: -0.64px;
        max-width: 370px;
        margin: 0 auto;
    }
}

.retina_2_2 {
    padding: 120px 0;
    background: url('/img/sub/retina_2_2_bg.png') center center / cover no-repeat;
    text-align: center;
}

.retina_2_2 .tit_wrap {
    margin-bottom: 40px;
}

.retina_2_2 .tit_wrap p {
    color: #333;
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.44px;
}

.retina_2_2 .con_wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.retina_2_2 ul {
    display: flex;
    gap: 1.6vw;
}

.retina_2_2 ul li {
    flex: 1;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: #fff;
}

.retina_2_2 ul li .img_wrap img {
    width: 100%;
}

.retina_2_2 ul li .txt_wrap {
    padding: 30px 24px;
}

.retina_2_2 ul li .txt_wrap span {
    color: var(--Color, var(--color-primary));
    display: block;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid var(--Color, var(--color-primary));
    padding: 4px 16px;
    font-size: 20px;
    box-sizing: border-box;
    font-weight: 700;
    margin: 0 auto 10px;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.retina_2_2 ul li .txt_wrap strong {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.retina_2_2 ul li .txt_wrap p {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

.retina_2_2 ul li .txt_wrap p.txt_1 {
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .retina_2_2 {
        padding: 80px 0;
    }

    .retina_2_2 .tit_wrap p {
        font-size: 25px;
        letter-spacing: -1px;
    }

    .retina_2_2 ul {
        flex-direction: column;
        gap: 30px;
    }

    .retina_2_2 ul li {
        flex: unset;
        max-width: 550px;
        margin: 0 auto;
    }

    .retina_2_2 ul li .txt_wrap {
        padding: 20px 16px;
    }

    .retina_2_2 ul li .img_wrap img {
        width: 100%;
    }

    .retina_2_2 ul li .txt_wrap span {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .retina_2_2 ul li .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.retina_2_3 {
    padding: 120px 0;
    text-align: center;
}

.retina_2_3 .tit_wrap {
    margin-bottom: 60px;
}

.retina_2_3 .tit_wrap p {
    color: #333;
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.44px;
}

.retina_2_3 .con_wrap {
    margin-bottom: 60px;
}

.retina_2_3 .con_wrap ul {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.retina_2_3 .con_wrap ul li {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.retina_2_3 .con_wrap ul li p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.08px;
    padding: 10px;
    background: var(--Color, var(--color-primary));
}

.retina_2_3 .img_wrap {
    position: relative;
}

.retina_2_3 .img_click {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.retina_2_3 .img_click.active {
    opacity: 1;
}

.retina_2_3 .img_click span {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

.retina_2_3 .img_click span::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('/img/sub/retina_2_3_icon1.png') center center / 100% no-repeat;
    margin: 0 auto 10px;
}

.retina_2_3 .con_wrap p.notice {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.72px;
    border-radius: 9999px;
    background: #333;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 24px;
    box-sizing: border-box;
    margin: 0 auto;
}

.retina_2_3 .con_wrap p.notice:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('/img/sub/retina_2_3_icon2.png') center center / 100% no-repeat;
    margin-right: 10px;
    animation: fade 1s linear infinite;
}

.retina_2_3 p.bottom_txt {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 1024px) {
    .retina_2_3 .con_wrap {
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .retina_2_3 .con_wrap ul {
        flex-wrap: wrap;
    }

    .retina_2_3 .con_wrap ul li {
        flex: unset;
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 768px) {
    .retina_2_3 {
        padding: 80px 0;
    }

    .retina_2_3 .tit_wrap {
        margin-bottom: 40px;
    }

    .retina_2_3 .tit_wrap p {
        font-size: 25px;
        letter-spacing: -1px;
    }

    .retina_2_3 .img_click span {
        font-size: 14px;
        letter-spacing: -0.56px;
    }

    .retina_2_3 .con_wrap ul {
        gap: 8px;
    }

    .retina_2_3 .con_wrap ul li {
        width: calc(50% - 4px);
    }

    .retina_2_3 .con_wrap ul li p {
        font-size: 16px;
        letter-spacing: -0.64px;
        padding: 5px 10px;
    }

    .retina_2_3 .con_wrap p.notice {
        flex-direction: column;
        gap: 10px;
        font-size: 16px;
        letter-spacing: -0.64px;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .retina_2_3 p.bottom_txt {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.retina_2_4 .banner {
    background: var(--color-primary);
    padding: 30px 0;
    overflow: hidden;
}

.retina_2_4 .banner p {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.28px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.retina_2_4 .banner p:before {
    content: '';
    display: block;
    width: 115px;
    height: 142px;
    background: url('/img/sub/retina_2_4_icon1.png') center center / 100% no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-110%, -50%);
}

.retina_2_4 .con_wrap {
    padding: 80px 0;
    background: url('/img/sub/retina_2_4_bg.png') center center / cover no-repeat;
}

.retina_2_4 .con_wrap .w_1280 {
    display: flex;
    gap: 3.1vw;
    align-items: center;
    justify-content: center;
}

.retina_2_4 .con_wrap dt {
    color: var(--Color, var(--color-primary));
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.28px;
    margin-bottom: 24px;
}

.retina_2_4 .con_wrap dd {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.72px;
}

.retina_2_4 .br_block {
    display: none;
}

@media screen and (max-width: 1440px) {
    .retina_2_4 .br_block {
        display: block;
    }

    .retina_2_4 .banner p {
        font-size: 24px;
        letter-spacing: -0.96px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 768px) {
    .retina_2_4 .br_block {
        display: none;
    }

    .retina_2_4 .banner p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        font-size: 18px;
        letter-spacing: -0.72px;
        max-width: 500px;
    }

    .retina_2_4 .banner p:before {
        position: static;
        transform: translate(0);
        width: 50px;
        height: 64px;
    }

    .retina_2_4 .con_wrap .w_1280 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .retina_2_4 .img_wrap {
        max-width: 200px;
    }

    .retina_2_4 .con_wrap dt {
        margin-bottom: 10px;
        font-size: 26px;
        letter-spacing: -1.04px;
    }

    .retina_2_4 .con_wrap dd {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.retina_3_1 {
    padding: 100px 0;
    background: url('/img/sub/retina_3_1_bg.png') center center / cover no-repeat;
}

.retina_3_1 .sub_tit {
    margin-bottom: 60px;
}

.retina_3_1 .con_wrap {
    text-align: center;
}

.retina_3_1 .con_wrap img {
    margin: 0 auto 60px;
}

.retina_3_1 .con_wrap p {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .retina_3_1 {
        padding: 60px 0;
    }

    .retina_3_1 .sub_tit {
        margin-bottom: 30px;
    }

    .retina_3_1 .con_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .retina_3_1 .con_wrap img {
        margin-bottom: 40px;
    }
}

.retina_3_2 {
    padding: 100px 0;
    background: url('/img/sub/retina_2_2_bg.png') center center / cover no-repeat;
}

.retina_3_2 .tit_wrap {
    margin-bottom: 60px;
}

.retina_3_2 .sub_tit {
    margin-bottom: 40px;
}

.retina_3_2 .sub_txt_1 {
    margin-bottom: 24px;
}

.retina_3_2 ul {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.retina_3_2 ul li {
    flex: 1;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

.retina_3_2 ul li p {
    background: var(--Color, var(--color-primary));
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: -0.08px;
    padding: 12px 0;
}

.retina_3_2 ul li:last-child p {
    color: #666;
    font-weight: 400;
    background: var(--01, #f1f1f1);
}

@media screen and (max-width: 768px) {
    .retina_3_2 {
        padding: 80px 0;
    }

    .retina_3_2 .tit_wrap {
        margin-bottom: 40px;
    }

    .retina_3_2 .sub_tit {
        margin-bottom: 20px;
    }

    .retina_3_2 .sub_txt br {
        display: none;
    }

    .retina_3_2 .sub_txt_1 {
        margin-bottom: 12px;
    }

    .retina_3_2 ul {
        flex-direction: column;
        gap: 30px;
    }

    .retina_3_2 ul li p {
        padding: 5px 0;
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.retina_3_3 .con {
    background: #fff;
}

.retina_3_3 .con:nth-child(2) {
    background: #f7f7f7;
}

.retina_3_3 .con .w_1280 {
    display: flex;
    padding: 120px 0;
    gap: 2.1vw;
}

.retina_3_3 .sub_tit {
    text-align: left;
}

.retina_3_3 .img_wrap {
    flex: 1;
    min-width: 40%;
}

.retina_3_3 .txt_wrap {
    max-width: 640px;
}

.retina_3_3 .txt_wrap .sub_tit {
    margin-bottom: 40px;
}

.retina_3_3 .txt_wrap p.sub_txt {
    text-align: left;
    margin-bottom: 40px;
}

.retina_3_3 dl {
    margin-bottom: 40px;
}

.retina_3_3 dt {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--Color, var(--color-primary));
    width: fit-content;
    margin-bottom: 12px;
}

.retina_3_3 dt::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('/img/sub/retina_2_3_icon1.png') center center / 100% no-repeat;
    margin-right: 10px;
}

.retina_3_3 dd {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.retina_3_3 .click_wrap {
    display: flex;
    padding: 10px 30px;
    border-bottom: 2px solid var(--Color, var(--color-primary));
    background: #f9fdf7;
    color: var(--Color, var(--color-primary));
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.88px;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
}

.retina_3_3 .click_wrap::after {
    content: '';
    width: 12px;
    height: 6px;
    background: url('/img/sub/retina_3_3_arrow.png') center center / 100% no-repeat;
    transform: rotate(180deg);
    transition: 0.45s;
}

.retina_3_3 .click_wrap.active::after {
    transform: rotate(0deg);
}

.retina_3_3 .click_wrap + ul,
.retina_3_3 .click_wrap + ul + p.bottom {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    margin-bottom: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, margin 0.3s ease;
}

.retina_3_3 .click_wrap.active + ul,
.retina_3_3 .click_wrap.active + ul + p.bottom {
    max-height: 1000px;
    opacity: 1;
}

.retina_3_3 .click_wrap.active + ul + p.bottom {
    margin-top: 16px;
}

.retina_3_3 .list_wrap li {
    display: flex;
}

.retina_3_3 .list_wrap li p {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    box-sizing: border-box;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
    background: #f7f7f7;
}

.retina_3_3 .list_wrap li:first-child p {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
}

.retina_3_3 .list_wrap li:nth-child(2n) p {
    background: #ffff;
}

.retina_3_3 .list_wrap p.bottom {
    margin-top: 16px;
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

@media screen and (max-width: 1024px) {
    .retina_3_3 .con .w_1280 {
        flex-direction: column;
    }

    .retina_3_3 .txt_wrap {
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .retina_3_3 .con .w_1280 {
        padding: 80px 0;
    }

    .retina_3_3 .txt_wrap .sub_tit {
        margin-bottom: 20px;
    }

    .retina_3_3 dt {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .retina_3_3 dt::before {
        width: 18px;
        height: 18px;
    }

    .retina_3_3 dd {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .retina_3_3 .click_wrap {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .retina_3_3 .list_wrap li p {
        font-size: 16px;
        letter-spacing: -0.64px;
        padding: 10px;
    }

    .retina_3_3 .list_wrap p.bottom {
        font-size: 14px;
        letter-spacing: -0.56px;
    }
}

.retina_3_4 {
    background: var(--color-green-bg);
    padding: 120px 0;
}

.retina_3_4 .tit {
    margin-bottom: 60px;
}

.retina_3_4 .sub_tit {
    margin-bottom: 24px;
}

@media screen and (max-width: 1024px) {
    .retina_3_4 {
        padding: 80px 0;
    }

    .retina_3_4 .con_wrap ul {
        justify-content: center;
    }

    .retina_3_4 .tit {
        margin-bottom: 40px;
    }

    .retina_3_4 .sub_tit {
        margin-bottom: 16px;
    }
}

.retina_4_1 h3.sub_tit {
    font-weight: 400;
}

.retina_4_1 h3.sub_tit span {
    font-weight: 700;
}

.retina_4_1 .con_wrap p {
    max-width: unset;
}

.retina_4_1 .img_wrap {
    width: fit-content;
}

.retina_4_2 {
    padding: 120px 0;
}

.retina_4_2 .tit_wrap {
    margin-bottom: 40px;
}

.retina_4_2 .tit_wrap p {
    color: #333;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.44px;
    margin-bottom: 10px;
}

.retina_4_2 .sub_tit {
    margin-bottom: 10px;
}

.retina_4_2 .eng_sub_tit {
    margin: 0 auto;
}

.retina_4_2 ul {
    display: flex;
    gap: 1.6vw;
}

.retina_4_2 ul li img {
    margin-bottom: 12px;
}

.retina_4_2 ul li p {
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
    .retina_4_2 {
        padding: 80px 0;
    }

    .retina_4_2 .tit_wrap p {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .retina_4_2 ul {
        flex-wrap: wrap;
        max-width: 500px;
        margin: 0 auto;
    }

    .retina_4_2 ul li {
        width: calc(50% - 0.8vw);
    }

    .retina_4_2 ul li p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.retina_4_3 {
    background: var(--color-green-bg);
    padding: 120px 0;
}

.retina_4_3 .w_1280 {
    display: flex;
    align-items: center;
    gap: 5.2vw;
    justify-content: center;
}

.retina_4_3 .txt_wrap>span {
    color: #333;
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.44px;
}

.retina_4_3 .txt_wrap h3 {
    text-align: left;
    margin-bottom: 24px;
}

.retina_4_3 .txt_wrap p {
    color: var(--color-text-secondary);

    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.8px;
}

@media screen and (max-width: 1024px) {
    .retina_4_3 .w_1280 {
        gap: 1vw;
    }

    .retina_4_3 .txt_wrap>span {
        font-size: 30px;
    }

    .retina_4_3 .img_wrap {
        max-width: 50%;
    }

    .retina_4_3 .txt_wrap p {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .retina_4_3 {
        padding: 80px 0;
    }

    .retina_4_3 .w_1280 {
        flex-direction: column;
    }

    .retina_4_3 .img_wrap {
        max-width: unset;
    }

    .retina_4_3 .txt_wrap {
        text-align: center;
    }

    .retina_4_3 .txt_wrap>span {
        font-size: 25px;
        letter-spacing: -1px;
    }

    .retina_4_3 .txt_wrap h3 {
        margin-bottom: 16px;
        text-align: center;
    }

    .retina_4_3 .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.retina_5_1 {
    padding: 100px 0;
    background: url('/img/sub/retina_5_1_bg.png') center center / cover no-repeat;
}

.retina_5_1 ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.retina_5_1 .con_1 ul li {
    border: 1px solid var(--color-border);
    background: #fff;
}

.retina_5_1 .con_1 ul li p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
    background: var(--color-primary);
    padding: 6px 0px;
}

.retina_5_1 .con_1 ul li:last-child p {
    background: #333;
}

.retina_5_1 .con_2 .txt_wrap {
    margin-top: 24px;
}

.retina_5_1 .con_2 .bottom_txt {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .retina_5_1 {
        padding: 80px 0;
    }

    .retina_1_1 .tit_wrap {
        margin-bottom: 30px;
    }

    .retina_5_1 ul {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .retina_1_1 .img_wrap {
        margin: 0 auto 30px;
    }

    .retina_5_1 .con_1 ul li p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
}

.retina_5_2 {
    padding: 120px 0;
}

.retina_5_2 h3.sub_tit {
    margin-bottom: 10px;
}

.retina_5_2 .eng_sub_tit {
    margin: 0 auto 40px;
}

.retina_5_2 .con_wrap {
    max-width: 970px;
    margin: 0 auto;
}

.retina_5_2 .con_1 {
    margin-bottom: 40px;
}

.retina_5_2 .con_1 ul {
    display: flex;
    gap: 10px;
}

.retina_5_2 .con_1 ul li {
    flex: 1;
}

.retina_5_2 .con_1 ul li .img_wrap {
    border-radius: 20px;
    overflow: hidden;
}

.retina_5_2 .con_1 ul li .img_wrap p {
    color: var(--00-white, #fff);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.4px;
    padding: 7px 0;
    background: var(--color-primary);
}

.retina_5_2 .con_1 ul li:last-child .img_wrap p {
    background: var(--color-teal);
}

.retina_5_2 .con_1 ul li .img_wrap ._cover {}

.retina_5_2 .con_1 ul li .txt_wrap {
    padding: 20px 20px 0;
    color: var(--color-text-dark);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.36px;
}

.retina_5_2 .con_1 ul li .txt_wrap p:not(:last-child) {
    margin-bottom: 10px;
}

.retina_5_2 .con_2 .g_tit {
    color: var(--00-white, #fff);
    text-align: center;
    font-size: 20px;
    background: var(--color-teal-dark);
    font-weight: 700;
    padding: 7px 0px;
    line-height: 150%;
    letter-spacing: -0.4px;
}

.retina_5_2 .con_2 .g_con {
    background: #f7f7f7;
    padding: 40px 2.3vw;
    box-sizing: border-box;
}

.retina_5_2 .con_2 .graph {
    display: flex;
}

.retina_5_2 .con_2 .graph .left li {}

.retina_5_2 .con_2 .graph .left li:first-child span {
    padding: 27px 12px 27px 0;
}

.retina_5_2 .con_2 .graph .left span {
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.674px;
    padding-top: 55px;
    padding-right: 12px;
    display: block;
    box-sizing: border-box;
    text-align: right;
}

.retina_5_2 .con_2 .graph_wrap {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.retina_5_2 .con_2 .graph .right {
    flex: 1;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    display: flex;
    justify-content: center;
    background: #fff;
    align-items: flex-end;
    text-align: center;
    position: relative;
}

.retina_5_2 .con_2 .graph .right .bar_wrap {
    padding: 0 24px;
}

.retina_5_2 .con_2 .graph .right .bar_wrap b {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.962px;
    display: block;
    margin-bottom: 12px;
}

.retina_5_2 .con_2 .graph .bar {
    height: 0;
    overflow: hidden;
    transition: 1s;
}

.retina_5_2 .con_2.active .graph .bar_wrap:first-child .bar {
    height: 64px;
}

.retina_5_2 .con_2.active .graph .bar_wrap:nth-child(2) .bar {
    height: 276px;
}

.retina_5_2 .con_2 .graph .bar span {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.6px;
    display: block;
    border-radius: 999px 999px 0px 0px;
    box-sizing: border-box;
}

.retina_5_2 .con_2 .graph .right .bar_wrap:first-child .bar span {
    padding: 8px 14px;

    background: linear-gradient(180deg, #60625b 0%, rgba(96, 98, 91, 0) 100%);
}

.retina_5_2 .con_2 .graph .right .bar_wrap:nth-child(2) .bar span {
    padding: 114px 14px;
    background: linear-gradient(180deg, var(--color-teal-dark) 0%, rgba(23, 82, 77, 0) 100%);
}

.retina_5_2 .con_2 .graph .right .box {
    position: absolute;
    padding: 20px 42px;
    border-radius: 20px;
    color: var(--color-teal-dark);
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    top: 20%;
    left: 20%;
    text-align: center;
}

.retina_5_2 .con_2 .graph .right .box p {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
}

.retina_5_2 .con_2 .graph .right .box b {
    font-size: 44px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.76px;
}

.retina_5_2 .con_2 .graph .right .small_txt {
    position: absolute;
    color: #a9a9a9;
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
    top: 20px;
    right: 30px;
}

.retina_5_2 .con_2 .bottom_txt {
    color: var(--800, var(--color-text-dark));
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.36px;
}

.retina_5_2 .con_2 .bottom_txt p:first-child {
    margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
    .retina_5_2 .con_2 .graph .right .box {
        left: 6%;
    }
}

@media screen and (max-width: 768px) {
    .retina_5_2 {
        padding: 80px 0;
    }

    .retina_5_2 .eng_sub_tit {
        margin: 0 auto 30px;
    }

    .retina_5_2 .con_1 ul {
        flex-direction: column;
        gap: 30px;
    }

    .retina_5_2 .con_1 ul li .img_wrap p {
        font-size: 18px;
        letter-spacing: -0.36px;
    }

    .retina_5_2 .con_1 ul li .txt_wrap {
        padding: 20px 10px 0;
        font-size: 16px;
        letter-spacing: -0.32px;
    }

    .retina_5_2 .con_2 .g_tit {
        font-size: 18px;
        letter-spacing: -0.36px;
    }

    .retina_5_2 .con_2 .graph .right .box {
        padding: 7px 15px;
    }

    .retina_5_2 .con_2 .graph .right .box p {
        font-size: 14px;
        letter-spacing: -0.566px;
    }

    .retina_5_2 .con_2 .graph .right .box b {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .retina_5_2 .con_2 .graph .left span {
        font-size: 13px;
        letter-spacing: -0.52px;
    }

    .retina_5_2 .con_2 .graph .right .small_txt {
        font-size: 14.158px;
        letter-spacing: -0.566px;
        right: 18px;
        top: 10px;
    }

    .retina_5_2 .con_2 .graph .left span {
        padding-top: 42px;
        padding-right: 10px;
    }

    .retina_5_2 .con_2 .graph .left li:first-child span {
        padding: 21px 10px 21px 0;
    }

    .retina_5_2 .con_2 .graph .right .bar_wrap {
        padding: 0 13px;
    }

    .retina_5_2 .con_2 .graph .bar span {
        font-size: 31px;
        letter-spacing: -1.259px;
    }

    .retina_5_2 .con_2 .graph .right .bar_wrap b {
        font-size: 18.922px;
        margin-bottom: 9px;
        letter-spacing: -0.757px;
    }

    .retina_5_2 .con_2 .bottom_txt {
        font-size: 16px;
        letter-spacing: -0.32px;
    }
}

.retina_5_3 {
    padding: 120px 0;
    background: var(--color-green-bg);
}

.retina_5_3 .tit_wrap {
    margin-bottom: 40px;
}

.retina_5_3 h3.sub_tit {
    margin-bottom: 10px;
}

.retina_5_3 .eng_sub_tit {
    margin: 0 auto 24px;
}

.retina_5_3 .sub_txt_1 {
    margin-bottom: 24px;
}

.retina_5_3 ul {
    display: flex;
    gap: 1.6vw;
}

.retina_5_3 ul li {
    flex: 1;
}

.retina_5_3 ul li p {
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.retina_5_3 ul li .img_wrap {
    margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
    .retina_5_3 {
        padding: 80px 0;
    }

    .retina_5_3 .tit_wrap {
        margin-bottom: 30px;
    }

    .retina_5_3 ul {
        gap: 20px;
        flex-direction: column;
    }

    .retina_5_3 ul li p {
        font-size: 18px;
        letter-spacing: -0.36px;
    }

    .retina_5_3 ul li .img_wrap img {
        margin: 0 auto;
    }
}

.myopia_2_1 {
    padding: 120px 0;
    background: url('/img/sub/myopia_2_1_bg.png') no-repeat center center / cover;
}

.myopia_2_1 p {
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 40px;
}

.myopia_2_1 p.aos-animate>span {
    opacity: 0;
}

.myopia_2_1 p.aos-animate>span {
    animation: fade 1s linear forwards;
}

.myopia_2_1 .img_wrap {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.myopia_2_2 {
    padding: 100px 0;
}

.myopia_2_2 .w_1360 {
    display: flex;
    gap: 3.1vw;
    justify-content: center;
    align-items: center;
}

.myopia_2_2 .txt_wrap h3 .box {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    padding: 4px 10px;
    background: var(--Color, var(--color-primary));
    display: inline-block;
    margin-right: 12px;
}

.myopia_2_2 .txt_wrap h3 {
    margin-bottom: 24px;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.myopia_2_2 .txt_wrap p {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

@media screen and (max-width: 1280px) {
    .myopia_2_2 .br_none {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .myopia_2_2 {
        padding: 80px 0;
        text-align: center;
    }

    .myopia_2_2 .w_1360 {
        flex-direction: column;
    }

    .myopia_2_2 .txt_wrap h3 .box {
        font-size: 26px;
        letter-spacing: -1.04px;
        margin-right: 6px;
    }

    .myopia_2_2 .txt_wrap h3 {
        justify-content: center;
        /* column-gap: 8px; */
    }

    .myopia_2_2 .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.32px;
    }
}

.myopia_2_3 {
    padding: 120px 0;
    background: url('/img/sub/myopia_2_3_bg.png') center center / cover no-repeat;
}

.myopia_2_3 .inner {
    max-width: 1120px;
    width: 90%;
    margin: 0 auto;
}

.myopia_2_3 ul li {
    display: flex;
    align-items: center;
    gap: 3.1vw;
}

.myopia_2_3 ul li:not(:last-child) {
    margin-bottom: 40px;
}

.myopia_2_3 .img_wrap {
    flex: 1;
}

.myopia_2_3 .txt_wrap {
    max-width: 600px;
}

.myopia_2_3 .txt_wrap span {
    color: var(--Color, var(--color-primary));
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    border-radius: 999px;
    border: 1px solid var(--Color, var(--color-primary));
    letter-spacing: -1.28px;
    padding: 4px 20px;
    display: block;
    margin-bottom: 24px;
    box-sizing: border-box;
    width: fit-content;
}

.myopia_2_3 .txt_wrap>p {
    color: var(--color-text-secondary);
    font-size: 22px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.88px;
    margin-bottom: 24px;
}

.myopia_2_3 .txt_wrap .box {
    border-radius: 20px;
    background: #ececec;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 10px;
    border-radius: 20px;
    padding: 20px;
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.72px;
}

.myopia_2_3 .txt_wrap .box:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('/img/sub/myopia_2_3_icon1.png') center center / 100% no-repeat;
}

.myopia_2_3 .txt_wrap .box p {
    flex: 1;
}

@media screen and (max-width: 1024px) {
    .myopia_2_3 .inner {
        width: 90%;
    }

    .myopia_2_3 .txt_wrap {
        max-width: 60%;
    }

    .myopia_2_3 .txt_wrap span {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .myopia_2_3 .txt_wrap>p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .myopia_2_3 .txt_wrap .box {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

@media screen and (max-width: 768px) {
    .myopia_2_3 {
        padding: 80px 0;
    }

    .myopia_2_3 ul li {
        flex-direction: column;
        gap: 20px;
    }

    .myopia_2_3 .txt_wrap {
        max-width: 460px;
    }

    .myopia_2_3 .txt_wrap span {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .myopia_2_3 ul li:nth-child(2) {
        flex-direction: column-reverse;
    }
}

.myopia_2_4 {
    background: var(--color-green-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.myopia_2_4:after {
    content: '';
    display: block;
    width: 270px;
    height: 270px;
    background: url('/img/sub/eyelid_2_4_circle.png') center center / cover no-repeat;
    position: absolute;
    right: 0;
    top: 230px;
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.myopia_2_4 h3 {
    margin-bottom: 40px;
}

.myopia_2_4 ul {
    max-width: 1180px;
    margin: 0 auto;
}

.myopia_2_4 ul li {
    padding: 10px 30px 10px 10px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
}

.myopia_2_4 ul li:not(:last-child) {
    margin-bottom: 12px;
}

.myopia_2_4 ul li:before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background: url('/img/sub/tears_2_5_icon.png') center center / 100% no-repeat;
}

.myopia_2_4 ul li p {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .myopia_2_4 {
        padding: 80px 0;
    }

    .myopia_2_4:after {
        width: 200px;
        height: 200px;
    }

    .myopia_2_4 h3 {
        margin-bottom: 30px;
    }

    .myopia_2_4 ul li {
        border-radius: 20px;
        font-size: 16px;
        letter-spacing: -0.64px;
        align-items: flex-start;
    }

    .myopia_2_4 ul li:before {
        width: 25px;
        height: 25px;
    }
}

.myopia_3_1 .img_wrap {
    margin-bottom: 0;
}

.myopia_3_1 .con_wrap p {
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .myopia_3_1 .tit_wrap {
        margin-bottom: 20px;
    }
}

.myopia_3_2 {
    padding: 120px 0;
}

.myopia_3_2 .tit_wrap {
    margin-bottom: 40px;
}

.myopia_3_2 .sub_tit {
    margin-bottom: 24px;
}

.myopia_3_2 ul {
    display: flex;
    justify-content: center;
}

.myopia_3_2 ul li {
    display: flex;
    align-items: center;
    color: #999;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
    opacity: 0;
    transition: 0.45s;
}

.myopia_3_2 ul.aos-animate li {
    opacity: 1;
}

.myopia_3_2 ul.aos-animate li:nth-child(1) {
    transition-delay: 0.3s;
}

.myopia_3_2 ul.aos-animate li:nth-child(2) {
    transition-delay: 0.8s;
}

.myopia_3_2 ul li:last-child {
    color: var(--Color, var(--color-primary));
}

.myopia_3_2 ul li .img_wrap {
    margin-bottom: 12px;
}

.myopia_3_2 ul li:not(:last-child)::after {
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    background: url('/img/sub/eyelid_3_4_arrow.png') center center / 100% no-repeat;
    margin: 0 24px;
}

@media screen and (max-width: 768px) {
    .myopia_3_2 {
        padding: 80px 0;
    }

    .myopia_3_2 p.sub_txt {
        max-width: 530px;
        margin: 0 auto;
    }

    .myopia_3_2 .tit_wrap {
        margin-bottom: 30px;
    }

    .myopia_3_2 .sub_tit {
        margin-bottom: 16px;
    }

    .myopia_3_2 ul {
        flex-direction: column;
    }

    .myopia_3_2 ul li {
        flex-direction: column;
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .myopia_3_2 ul li .img_wrap {
        margin-bottom: 8px;
    }

    .myopia_3_2 ul li:not(:last-child)::after {
        transform: rotate(90deg);
        margin: 24px 0;
    }
}

.myopia_3_3 {
    padding: 120px 0;
    background: var(--color-green-bg);
}

.myopia_3_3 .inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.myopia_3_3 .tit_wrap {
    margin-bottom: 60px;
}

.myopia_3_3 .sub_tit {
    margin-bottom: 24px;
}

.myopia_3_3 ul li {
    display: flex;
    gap: 2.1vw;
}

.myopia_3_3 ul li:not(:last-child) {
    margin-bottom: 60px;
}

.myopia_3_3 ul li ._cover {
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    max-width: 620px;
}

.myopia_3_3 ul li .txt_wrap {
    width: 480px;
    box-sizing: border-box;
    padding: 40px 30px;
}

.myopia_3_3 ul li .txt_wrap span {
    color: var(--Color, var(--color-primary));
    margin-bottom: 20px;
    font-family: var(--font-poppins);
    font-size: 40px;
    font-weight: 700;
    line-height: 140%;
    display: block;
    letter-spacing: -1.6px;
}

.myopia_3_3 ul li .txt_wrap strong {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
    margin-bottom: 20px;
}

.myopia_3_3 ul li .txt_wrap p {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

@media screen and (max-width: 1024px) {
    .myopia_3_3 ul li .txt_wrap {
        width: 365px;
    }
}

@media screen and (max-width: 768px) {
    .myopia_3_3 {
        padding: 80px 0;
    }

    .myopia_3_3 .tit_wrap {
        margin-bottom: 30px;
    }

    .myopia_3_3 .sub_tit {
        margin-bottom: 16px;
    }

    .myopia_3_3 ul li {
        flex-direction: column;
        gap: 0;
    }

    .myopia_3_3 ul li:not(:last-child) {
        margin-bottom: 30px;
    }

    .myopia_3_3 ul li ._cover {
        flex: unset;
        max-width: unset;
        height: 200px;
    }

    .myopia_3_3 ul li .txt_wrap {
        width: 100%;
        padding: 20px 0;
    }

    .myopia_3_3 ul li .txt_wrap span {
        font-size: 26px;
        margin-bottom: 0;
    }

    .myopia_3_3 ul li .txt_wrap strong {
        margin-bottom: 10px;
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .myopia_3_3 ul li .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.myopia_3_4 {
    padding: 120px 0;
    background: url('/img/sub/myopia_3_4_bg.png') center center / cover no-repeat;
}

.myopia_3_4 .tit_wrap {
    margin-bottom: 60px;
}

.myopia_3_4 .eng_sub_tit {
    margin: 0 auto;
}

.myopia_3_4 .sub_tit {
    margin-bottom: 16px;
}

.myopia_3_4 ul {
    display: flex;
    justify-content: center;
}

.myopia_3_4 ul li {
    width: 255px;
    height: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid #afd2b7;
    transform: scale(1.1);
    opacity: 0;
    transition: 0.45s;
}

.myopia_3_4 ul.aos-animate li {
    opacity: 1;
}

.myopia_3_4 ul.aos-animate li:nth-child(1) {
    transition-delay: 0.3s;
}

.myopia_3_4 ul.aos-animate li:nth-child(2) {
    transition-delay: 0.6s;
}

.myopia_3_4 ul.aos-animate li:nth-child(3) {
    transition-delay: 0.9s;
}

.myopia_3_4 ul.aos-animate li:nth-child(4) {
    transition-delay: 1.2s;
}

.myopia_3_4 ul li img {
    width: 73px;
}

.myopia_3_4 ul li p {
    color: var(--Color, var(--color-primary));
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.76px;
}

@media screen and (max-width: 1150px) {
    .myopia_3_4 ul li {
        width: 180px;
        height: 180px;
    }

    .myopia_3_4 ul li img {
        width: 50px;
    }

    .myopia_3_4 ul li p {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .myopia_3_4 {
        padding: 80px 0;
    }

    .myopia_3_4 .tit_wrap {
        margin-bottom: 45px;
    }

    .myopia_3_4 ul {
        flex-wrap: wrap;
        max-width: 450px;
        margin: 0 auto;
    }

    .myopia_3_4 ul li {
        width: 150px;
        height: 150px;
    }

    .myopia_3_4 ul li img {
        width: 45px;
    }

    .myopia_3_4 ul li p {
        line-height: 140%;
        font-size: 14px;
        letter-spacing: -0.56px;
    }
}

.myopia_3_5 {
    padding: 120px 0;
    background: url('/img/sub/myopia_3_5_bg.png') center center / cover no-repeat;
}

.myopia_3_5 .tit_wrap {
    margin-bottom: 60px;
}

.myopia_3_5 .sub_tit {
    margin-bottom: 16px;
}

.myopia_3_5 .eng_sub_tit {
    margin: 0 auto 24px;
}

.myopia_3_5 ul {
    display: flex;
    gap: 1vw;
}

.myopia_3_5 ul li {
    width: calc(25% - 0.75vw);
    transition: 0.7s;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.myopia_3_5 ul li:hover {
    width: 40%;
}

.myopia_3_5 ul li ._cover {
    height: 100%;
}

.myopia_3_5 ul li .txt_wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.88px;
    height: 0;
    transition: 0.7s;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.myopia_3_5 ul li:hover .txt_wrap {
    height: 170px;
}

.myopia_3_5 ul li p {
    opacity: 0;
    transition: 0.3s;
    transition-delay: 0.3s;
}

.myopia_3_5 ul li:hover p {
    opacity: 1;
}

.myopia_3_5 .tit_wrap .guide {
    display: none;
}

@media screen and (max-width: 768px) {
    .myopia_3_5 {
        padding: 80px 0;
    }

    .myopia_3_5 .tit_wrap {
        margin-bottom: 40px;
    }

    .myopia_3_5 .sub_tit {
        margin-bottom: 8px;
    }

    .myopia_3_5 .eng_sub_tit {
        margin: 0 auto 16px;
    }

    .myopia_3_5 ul {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }

    .myopia_3_5 ul li {
        width: 100%;
        height: unset;
    }

    .myopia_3_5 ul li:hover {
        width: 100%;
    }

    .myopia_3_5 ul li .txt_wrap {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .myopia_3_5 .tit_wrap .guide {
        font-size: 14px;
        letter-spacing: -0.56px;
        align-items: center;
        color: #fff;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: -0.72px;
        border-radius: 9999px;
        border: 1px solid var(--color-primary);
        padding: 10px 24px;
        background: var(--color-primary);
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        width: fit-content;
        margin: 16px auto 0;
    }

    .myopia_3_5 .tit_wrap .guide::before {
        content: '';
        display: block;
        width: 24px;
        height: 24px;
        background: url('/img/sub/tears_1_1_icon1.png') center center / 100% no-repeat;
        animation: blink-effect 1s infinite;
        transition: 0.3s;
    }
}

.myopia_4_2 {
    padding: 120px 0;
}

.myopia_4_2 .inner {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.myopia_4_2 .sub_tit {
    margin-bottom: 24px;
}

.myopia_4_2 .tit_wrap {
    margin-bottom: 40px;
}

.myopia_4_2 .img_wrap {
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: #fff;
    padding: 30px 4.9vw;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.myopia_4_2 ul {
    display: flex;
    gap: 24px;
}

.myopia_4_2 ul li {
    flex: 1;
    padding: 30px 24px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    text-align: center;
    font-family: Pretendard;
}

.myopia_4_2 ul li strong {
    color: #869876;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.myopia_4_2 ul li p {
    color: #404040;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.72px;
}

@media screen and (max-width: 768px) {
    .myopia_4_2 {
        padding: 80px 0;
    }

    .myopia_4_2 .tit_wrap {
        margin-bottom: 30px;
    }

    .myopia_4_2 .sub_tit {
        margin-bottom: 16px;
    }

    .myopia_4_2 .img_wrap {
        padding: 20px 4.9vw;
        flex-direction: column;
        gap: 20px;
    }

    .myopia_4_2 ul {
        flex-direction: column;
    }

    .myopia_4_2 ul li strong {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .myopia_4_2 ul li p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.myopia_4_4 {
    padding: 120px 0;
    background: var(--color-green-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.myopia_4_4::after {
    content: '';
    display: block;
    width: 270px;
    height: 270px;
    background: url('/img/sub/eyelid_2_4_circle.png') center center / cover no-repeat;
    position: absolute;
    right: 0;
    top: 230px;
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.myopia_4_4 .sub_tit {
    margin-bottom: 40px;
}

.myopia_4_4 .con_wrap {
    display: flex;
    justify-content: center;
    gap: 2.1vw;
    align-items: center;
}

.myopia_4_4 .img_wrap {}

.myopia_4_4 ul li {
    display: flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    color: var(--Color, var(--color-primary));
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
    background: #fff;
    gap: 10px;
    padding: 10px 30px 10px 10px;
}

.myopia_4_4 ul li:not(:last-child) {
    margin-bottom: 12px;
}

.myopia_4_4 ul li:before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background: url('/img/sub/tears_2_5_icon.png') center center / 100% no-repeat;
}

@media screen and (max-width: 1024px) {
    .myopia_4_4 .img_wrap {
        max-width: 45%;
    }

    .myopia_4_4 ul li {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

@media screen and (max-width: 768px) {
    .myopia_4_4 {
        padding: 80px 0;
    }

    .myopia_4_4 .img_wrap {
        max-width: 100%;
    }

    .myopia_4_4 .con_wrap {
        flex-direction: column;
    }

    .myopia_4_4::after {
        width: 150px;
        height: 150px;
    }

    .myopia_4_4 ul li {
        padding: 10px;
    }

    .myopia_4_4 ul li:before {
        width: 27px;
        height: 27px;
    }
}

.myopia_4_5 {
    padding: 120px 0;
    background: url('/img/sub/myopia_4_5_bg.png') center center / cover no-repeat;
}

.myopia_4_5 .tit_wrap img {
    max-width: 120px;
    margin: 0 auto 40px;
}

.myopia_4_5 .con_wrap {
    padding-top: 180px;
    text-align: center;
    position: relative;
}

.myopia_4_5 .con_wrap::before {
    content: '';
    display: block;
    width: 6px;
    height: 0;
    background: url('/img/sub/tears_4_1_line.png') center center / 100% no-repeat;
    position: absolute;
    left: 50%;
    top: 40px;
    transition: 0.45s;
}

.myopia_4_5 .con_wrap.aos-animate::before {
    height: 103px;
}

.myopia_4_5 .txt_wrap:not(:last-child) {
    margin-bottom: 16px;
}

.myopia_4_5 .con_wrap p {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    width: fit-content;
    margin: 0 auto 6px;
}

.myopia_4_5 .con_wrap p.box1 {
    color: #fff;
    background: var(--Color, var(--color-primary));
    padding: 6px 10px;
}

.myopia_4_5 .con_wrap p.box2 {
    background: var(--Color-2, var(--color-teal));
    color: #fff;
    padding: 6px 10px;
}

@media screen and (max-width: 768px) {
    .myopia_4_5 {
        padding: 80px 0;
    }

    .myopia_4_5 .tit_wrap img {
        max-width: 70px;
        margin: 0 auto 20px;
    }

    .myopia_4_5 .con_wrap {
        padding-top: 120px;
    }

    .myopia_4_5 .con_wrap p {
        font-size: 15px;
    }

    .myopia_4_5 .con_wrap::before {
        top: 20px;
    }

    .myopia_4_5 .con_wrap.aos-animate::before {
        width: 4px;
        height: 70px;
    }

    .myopia_4_5 .con_wrap p.box2_m {
        background: transparent;
        margin: 0 auto;
        padding: 0;
    }

    .myopia_4_5 .con_wrap p.box2_m span {
        display: block;
        background: var(--Color-2, var(--color-teal));
        padding: 6px 10px;
        margin: 0 auto 6px;
        width: fit-content;
    }
}

.myopia_4_6 .sub_tit {
    margin-bottom: 40px;
}

.myopia_4_6 .con_wrap ul li:nth-child(4) span {
    background: #112620;
}

.myopia_4_7 {
    padding: 120px 0;
    background: url('/img/sub/myopia_4_7_bg.png') center center / cover no-repeat;
    overflow: hidden;
}

.myopia_4_7 .sub_tit {
    margin-bottom: 24px;
}

.myopia_4_7 span.click {
    display: flex;
    gap: 10px;
    align-items: center;
    display: flex;
    padding: 10px 24px;
    border-radius: 9999px;
    border: 1px solid var(--color-primary);
    width: fit-content;
    margin: 0 auto 60px;
    background: var(--color-primary);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.72px;
}

.myopia_4_7 span.click:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('/img/sub/tears_1_1_icon1.png') center center / 100% no-repeat;
    animation: blink-effect 1s linear infinite;
}

.myopia_4_7 .con_wrap {
    position: relative;
}

.myopia_4_7 .con_wrap>img {
    pointer-events: none;
}

.myopia_4_7 .con_wrap>img.character1 {
    position: absolute;
    left: -280px;
    bottom: 0;
    z-index: 222;
}

.myopia_4_7 .con_wrap>img.character2 {
    position: absolute;
    right: -280px;
    bottom: 0;
    z-index: 222;
}

.myopia_4_7 .con_wrap>img.character3 {
    display: none;
}

.myopia_4_7 ul {
    display: flex;
    gap: 2.6vw;
}

.myopia_4_7 ul li {
    height: 600px;
    cursor: pointer;
    position: relative;
    border-radius: 100px;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.25) inset;
    overflow: hidden;
    width: calc(25% - (2.6vw / 4));
    transition: 0.7s;
}

.myopia_4_7 ul li.active {
    width: 60%;
}

.myopia_4_7 ul li ._cover {
    position: relative;
    width: 100%;
    height: 100%;
}

.myopia_4_7 ul li ._cover img {
    opacity: 0.5;
    transition: 0.45s;
}

.myopia_4_7 ul li ._cover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    top: 0;
    left: 0;
    z-index: 22;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.25) inset;
    transition: 0.45s;
}

.myopia_4_7 ul li .txt_wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 111;
    padding: 0 10px;
    box-sizing: border-box;
}

.myopia_4_7 ul li .txt_wrap>div {
    width: 100%;
}

.myopia_4_7 ul li .click {
    height: 0;
    transition: 0.7s;
    overflow: hidden;
    transition-delay: 0.3s;
}

.myopia_4_7 ul li .click span {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -1px;
    display: block;
    margin-bottom: 19px;
}

.myopia_4_7 ul li .click p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -1px;
}

.myopia_4_7 ul li .click p.color {
    color: #ffdc4e;
}

.myopia_4_7 ul li .txt_wrap b {
    color: var(--Color, var(--color-primary));
    text-shadow: 0px 4px 4px rgba(58, 72, 55, 0.25);
    font-family: Jua;
    font-size: 80px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -3.2px;
    transition: 0.3s;
}

.myopia_4_7 ul li.active .click {
    height: 177px;
}

.myopia_4_7 ul li.active ._cover img {
    opacity: 1;
}

.myopia_4_7 ul li.active ._cover:after {
    background: linear-gradient(0deg, #599a68 0%, #599a68 100%);
    mix-blend-mode: multiply;
}

.myopia_4_7 ul li.active .txt_wrap b {
    color: #fff;
}

.myopia_4_7>img.character3 {
    display: none;
}

@media screen and (max-width: 1600px) {
    .myopia_4_7 .con_wrap {
        width: 70%;
        margin: 0 auto;
    }

    .myopia_4_7 ul li.active .click {
        height: 160px;
    }

    .myopia_4_7 .con_wrap>img.character1 {
        width: 250px;
        left: -250px;
    }

    .myopia_4_7 .con_wrap>img.character2 {
        width: 250px;
        right: -250px;
    }
}

@media screen and (max-width: 1024px) {
    .myopia_4_7 .con_wrap {
        width: 300px;
    }

    .myopia_4_7 ul {
        flex-direction: column;
    }

    .myopia_4_7 ul li {
        width: 100%;
        height: 100px;
    }

    .myopia_4_7 ul li.active {
        width: 300px;
        height: 300px;
    }

    .myopia_4_7 ul li .txt_wrap b {
        font-size: 60px;
        letter-spacing: -2.4px;
    }

    .myopia_4_7 ul li .click span {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .myopia_4_7 ul li .click p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .myopia_4_7 ul li.active .click {
        height: 130px;
    }
}

@media screen and (max-width: 768px) {
    .myopia_4_7 {
        padding: 80px 0 20px;
    }

    .myopia_4_7 span.click {
        font-size: 14px;
        letter-spacing: -0.56px;
        padding: 10px 20px;
        margin: 0 auto 40px;
    }

    .myopia_4_7 ul {
        gap: 20px;
    }

    .myopia_4_7 .con_wrap>img.character1,
    .myopia_4_7 .con_wrap>img.character2 {
        display: none;
    }

    .myopia_4_7>img.character3 {
        display: block;
        max-width: 360px;
        margin: 40px auto 0;
    }
}

.checkup_1_1 {
    padding: 100px 0;
    background: url('/img/sub/checkup_1_1_bg.png') center center / cover no-repeat;
}

.checkup_1_1 .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.1vw;
    justify-content: center;
}

.checkup_1_1 .sub_tit {
    margin-bottom: 24px;
}

.checkup_1_1 .txt_wrap {
    max-width: 510px;
    width: 40%;
}

.checkup_1_1 .img_wrap {
    flex: 1;
    width: fit-content;
}

@media screen and (max-width: 768px) {
    .checkup_1_1 {
        padding: 80px 0;
    }

    .checkup_1_1 .sub_tit {
        margin-bottom: 16px;
    }

    .checkup_1_1 .inner {
        flex-direction: column;
        gap: 40px;
    }

    .checkup_1_1 .txt_wrap {
        width: 100%;
    }

    .checkup_1_1 .img_wrap {
        max-width: 500px;
    }
}

.checkup_1_2 {
    padding: 120px 0;
}

.checkup_1_2 .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.1vw;
}

.checkup_1_2 .img_wrap {
    flex: 1;
}

.checkup_1_2 .txt_wrap {
    width: 40%;
    max-width: 510px;
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
}

.checkup_1_2 .txt_wrap p:not(:last-child) {
    margin-bottom: 20px;
}

@media screen and (max-width: 1280px) {
    .checkup_1_2 .txt_wrap .br_none {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .checkup_1_2 .txt_wrap {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .checkup_1_2 {
        padding: 80px 0;
    }

    .checkup_1_2 .inner {
        flex-direction: column;
        gap: 40px;
    }

    .checkup_1_2 .img_wrap {
        max-width: 500px;
    }

    .checkup_1_2 .txt_wrap {
        width: 100%;
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.checkup_1_3 {
    padding: 120px 0;
    background: url('/img/sub/checkup_1_3_bg.png') center center / cover no-repeat;
}

.checkup_1_3 .tit_wrap {
    margin-bottom: 60px;
    text-align: center;
}

.checkup_1_3 .tit_wrap h3 {
    margin-bottom: 24px;
}

.checkup_1_3 .tit_wrap>span {
    color: var(--Color, var(--color-primary));
    font-size: 24px;
    border-radius: 999px;
    border: 1px solid var(--Color, var(--color-primary));
    font-weight: 400;
    padding: 6px 20px;
    display: inline-block;
    box-sizing: border-box;
    line-height: 140%;
    letter-spacing: -0.96px;
    margin: 0 auto;
}

.checkup_1_3 .con_wrap {
    max-width: 990px;
    margin: 0 auto;
}

.checkup_1_3 .con {
    display: flex;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.checkup_1_3 .con:not(:last-child) {
    margin-bottom: 30px;
}

.checkup_1_3 .img_wrap {
    flex: 1;
}

.checkup_1_3 .txt_wrap {
    width: 55%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
}

.checkup_1_3 .txt_wrap>div {
    max-width: 360px;
}

.checkup_1_3 .txt_wrap h4 {
    color: var(--Color, var(--color-primary));
    font-size: 30px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.2px;
    margin-bottom: 30px;
}

.checkup_1_3 .con:nth-child(2) .txt_wrap h4 {
    color: var(--color-teal);
}

.checkup_1_3 .con:nth-child(3) .txt_wrap h4 {
    color: var(--color-teal-dark);
}

.checkup_1_3 .txt_wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 6px;
    row-gap: 12px;
}

.checkup_1_3 .txt_wrap ul li {
    color: #333;
    font-size: 18px;
    border-radius: 999px;
    border: 1px solid #333;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
    padding: 4px 20px;
}

@media screen and (max-width: 768px) {
    .checkup_1_3 {
        padding: 80px 0;
    }

    .checkup_1_3 .tit_wrap {
        margin-bottom: 40px;
    }

    .checkup_1_3 .tit_wrap h3 {
        margin-bottom: 16px;
    }

    .checkup_1_3 .tit_wrap>span {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .checkup_1_3 .con_wrap {
        max-width: 500px;
    }

    .checkup_1_3 .con {
        flex-direction: column;
    }

    .checkup_1_3 .txt_wrap {
        width: 100%;
        padding: 30px 10px;
        box-sizing: border-box;
    }

    .checkup_1_3 .con:not(:last-child) {
        margin-bottom: 20px;
    }

    .checkup_1_3 .txt_wrap h4 {
        font-size: 20px;
        letter-spacing: -0.8px;
        margin-bottom: 10px;
    }

    .checkup_1_3 .txt_wrap ul {
        column-gap: 4px;
        row-gap: 8px;
    }

    .checkup_1_3 .txt_wrap ul li {
        font-size: 14px;
        letter-spacing: -0.56px;
        padding: 2px 17px;
    }
}

.checkup_1_4 {
    padding: 120px 0;
    background: url('/img/sub/checkup_1_4_bg.png') center center / cover no-repeat;
}

.checkup_1_4 .tit_wrap {
    margin-bottom: 60px;
}

.checkup_1_4 .sub_tit {
    margin-bottom: 24px;
}

.checkup_1_4 .list_wrap:not(:last-child) {
    margin-bottom: 60px;
}

.checkup_1_4 .list_wrap .click_wrap {
    display: flex;
    align-items: center;
    padding: 10px 30px;
    justify-content: space-between;
    border-bottom: 2px solid var(--Color, var(--color-primary));
    background: rgba(255, 255, 255, 0.4);
    color: var(--Color, var(--color-primary));
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 20px;
    letter-spacing: -1.12px;
    cursor: pointer;
}

.checkup_1_4 .list_wrap:nth-child(2) .click_wrap {
    border-bottom: 2px solid var(--color-teal);
}

.checkup_1_4 .list_wrap:nth-child(3) .click_wrap {
    border-bottom: 2px solid var(--color-teal-dark);
}

.checkup_1_4 .list_wrap .click_wrap:after {
    content: '';
    display: block;
    transition: 0.3s;
    width: 12px;
    height: 6px;
    background: url('/img/sub/retina_3_3_arrow.png') center center / 100% no-repeat;
    transform: rotate(180deg);
}

.checkup_1_4 .list_wrap .click_wrap.on:after {
    transform: rotate(0deg);
}

.checkup_1_4 .list_wrap:nth-child(2) .click_wrap:after {
    background: url('/img/sub/checkup_1_4_arrow2.png') center center / 100% no-repeat;
}

.checkup_1_4 .list_wrap:nth-child(3) .click_wrap:after {
    background: url('/img/sub/checkup_1_4_arrow3.png') center center / 100% no-repeat;
}

.checkup_1_4 .list_wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s ease, opacity 0.3s ease, margin 0.3s ease;
}

.checkup_1_4 .list_wrap .click_wrap:not(.on) + ul {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.checkup_1_4 .list_wrap ul li {
    width: calc(25% - (60px / 4));
    text-align: center;
    min-height: 160px;
    background: var(--Color, var(--color-primary));
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.96px;
}

.checkup_1_4 .list_wrap:nth-child(2) .click_wrap {
    color: var(--color-teal);
}

.checkup_1_4 .list_wrap:nth-child(3) .click_wrap {
    color: var(--color-teal-dark);
}

.checkup_1_4 .list_wrap:nth-child(2) ul li {
    background: var(--color-teal);
}

.checkup_1_4 .list_wrap:nth-child(3) ul li {
    background: var(--color-teal-dark);
}

@media screen and (max-width: 1024px) {
    .checkup_1_4 .list_wrap ul li {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
}

@media screen and (max-width: 768px) {
    .checkup_1_4 {
        padding: 80px 0;
    }

    .checkup_1_4 .tit_wrap {
        margin-bottom: 40px;
    }

    .checkup_1_4 .sub_tit {
        margin-bottom: 16px;
    }

    .checkup_1_4 .sub_txt {
        max-width: 350px;
        margin: 0 auto;
    }

    .checkup_1_4 .list_wrap ul {
        gap: 10px;
    }

    .checkup_1_4 .list_wrap ul li {
        width: calc(50% - 5px);
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .checkup_1_4 .list_wrap .click_wrap {
        font-size: 18px;
        letter-spacing: -0.72px;
        padding: 7px 15px;
    }

    .checkup_1_4 .list_wrap:not(:last-child) {
        margin-bottom: 30px;
    }
}

.checkup_1_5 {
    padding: 120px 0;
    background: url('/img/sub/checkup_1_5_bg.png') center center / cover no-repeat;
}

.checkup_1_5 .inner {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.checkup_1_5 .con {
    display: flex;
    gap: 3.1vw;
    align-items: center;
}

.checkup_1_5 .con:not(:last-child) {
    margin-bottom: 40px;
}

.checkup_1_5 .img_wrap {
    flex: 1;
}

.checkup_1_5 .txt_wrap {
    width: 55%;
}

.checkup_1_5 .txt_wrap strong {
    color: #333;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.28px;
    margin-bottom: 24px;
}

.checkup_1_5 .txt_wrap p {
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.96px;
    border-radius: 999px;
    border: 1px solid #ececec;
    background: var(--color-primary);
    margin-bottom: 24px;
    padding: 10px 30px;
    box-sizing: border-box;
}

.checkup_1_5 .txt_wrap ul {
    list-style: disc;
    padding-left: 30px;
}

.checkup_1_5 .txt_wrap ul li {
    color: var(--color-text-secondary);
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 28.8px */
    letter-spacing: -0.72px;
}

@media screen and (max-width: 768px) {
    .checkup_1_5 {
        padding: 80px 0;
    }

    .checkup_1_5 .con {
        flex-direction: column;
        gap: 20px;
    }

    .checkup_1_5 .txt_wrap {
        width: 100%;
    }

    .checkup_1_5 .txt_wrap strong {
        font-size: 26px;
        letter-spacing: -1.04px;
        margin-bottom: 16px;
    }

    .checkup_1_5 .txt_wrap p {
        font-size: 18px;
        letter-spacing: -0.72px;
        padding: 7px 15px;
    }

    .checkup_1_5 .txt_wrap ul {
        padding-left: 20px;
    }

    .checkup_1_5 .txt_wrap ul li {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .checkup_1_5 .con:nth-child(2) {
        flex-direction: column-reverse;
    }
}

.checkup_1_6 {
    padding: 120px 0;
    background: url('/img/sub/checkup_1_6_bg.png') center center / cover no-repeat;
}

.checkup_1_6 .sub_tit {
    margin-bottom: 10px;
}

.checkup_1_6 .eng_sub_tit {
    margin: 0 auto;
}

.checkup_1_6 .tit_wrap {
    margin-bottom: 60px;
}

.checkup_1_6 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 60px;
}

.checkup_1_6 ul li {
    width: calc(50% - 15px);
    max-width: 520px;
}

.checkup_1_6 ul li ._cover {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--color-green-light);
    margin-bottom: 12px;
}

.checkup_1_6 ul li .txt_wrap {
    min-height: 130px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--color-green-light);
    background: linear-gradient(180deg, #e9f8eb 0%, #e9f8eb 100%);
}

.checkup_1_6 ul li .txt_wrap p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #22572e;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.8px;
}

.checkup_1_6 ul li .txt_wrap p:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background: url('/img/sub/checkup_1_6_icon1.png') center center / 100% no-repeat;
}

@media screen and (max-width: 768px) {
    .checkup_1_6 {
        padding: 80px 0;
    }

    .checkup_1_6 .tit_wrap {
        margin-bottom: 40px;
    }

    .checkup_1_6 ul {
        row-gap: 30px;
    }

    .checkup_1_6 ul li {
        width: 100%;
    }

    .checkup_1_6 ul li .txt_wrap {
        min-height: 100px;
    }

    .checkup_1_6 ul li .txt_wrap p:before {
        width: 25px;
        height: 25px;
    }

    .checkup_1_6 ul li .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.checkup_1_7 {
    padding: 120px 0;
    overflow: hidden;
}

.checkup_1_7 .con_wrap {
    display: flex;
    /* visibility: 50vw; */
}

.checkup_1_7 .txt_wrap {
    width: 45%;
    background: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-right: 6.5vw;
}

.checkup_1_7 .txt_wrap::before {
    content: '';
    display: block;
    height: 100%;
    width: 50vw;
    position: absolute;
    top: 0;
    right: 100%;
    background: #fff;
}

.checkup_1_7 .txt_wrap h3 {
    text-align: left;
    margin-bottom: 10px;
}

.checkup_1_7 .txt_wrap span {
    margin-bottom: 24px;
}

.checkup_1_7 .txt_wrap p {
    color: var(--color-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    text-align: left;
    margin-bottom: 24px;
}

.checkup_1_7 .txt_wrap .swiper_nav {
    display: flex;
    gap: 24px;
}

.checkup_1_7 .txt_wrap .swiper_nav>div {
    cursor: pointer;
}

.checkup_1_7 .eq_wrap {
    width: 55%;
    position: relative;
    z-index: 0;
    cursor: grab;
}

.checkup_1_7 .check_swiper {
    overflow: visible;
}

.checkup_1_7 .check_swiper .img_wrap {
    width: 440px;
    height: 343px;
    background: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.checkup_1_7 .check_swiper .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.checkup_1_7 .check_swiper .swiper-slide {
    width: fit-content;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    max-width: 480px;
    box-sizing: border-box;
}

.checkup_1_7 .check_swiper .txt_box .eng_tit {
    color: var(--Color, var(--color-primary));
    font-size: 30px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}

.checkup_1_7 .check_swiper .txt_box strong.tit {
    color: #333;
    font-size: 22px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.44px;
    display: inline;
}

.checkup_1_7 .check_swiper .txt_box span {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.36px;
}

.checkup_1_7 .check_swiper .list_wrap {
    height: 80px;
    overflow-y: auto;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--color-border);
    width: calc(1005 - 2px);
}

.checkup_1_7 .check_swiper .list_wrap::-webkit-scrollbar {
    width: 2px;
    background-color: #ececec;
}

.checkup_1_7 .check_swiper .list_wrap::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 10px;
}

.checkup_1_7 .check_swiper .txt_box ul {
    list-style: disc;
    padding-left: 20px;
}

.checkup_1_7 .check_swiper .txt_box ul li {
    color: var(--color-text-secondary);
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.32px;
}

.checkup_1_7 .check_swiper .txt_box ul li::marker {
    font-size: 12px;
}

@media screen and (max-width: 1280px) {
    .checkup_1_7 .txt_wrap {
        padding-right: 3.5vw;
    }
}

@media screen and (max-width: 1024px) {
    .checkup_1_7 .txt_wrap {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .checkup_1_7 .txt_wrap p {
        max-width: 550px;
    }

    .checkup_1_7 .con_wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .checkup_1_7 {
        padding: 80px 0;
    }

    .checkup_1_7 .txt_wrap span {
        margin-bottom: 16px;
    }

    .checkup_1_7 .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .checkup_1_7 .check_swiper .swiper-slide {
        padding: 10px;
    }

    .checkup_1_7 .check_swiper .img_wrap {
        width: 280px;
        height: 150px;
        margin-bottom: 16px;
    }

    .checkup_1_7 .check_swiper .txt_box .eng_tit {
        font-size: 26px;
        letter-spacing: -1.04px;
        margin-bottom: 0;
    }

    .checkup_1_7 .check_swiper .txt_box strong.tit {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .checkup_1_7 .check_swiper .txt_box span {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .checkup_1_7 .check_swiper .txt_box ul li {
        font-size: 14px;
        letter-spacing: -0.56px;
    }

    .checkup_1_7 .check_swiper .list_wrap {
        height: 135px;
        padding-top: 10px;
        margin-top: 10px;
    }

    .checkup_1_7 .txt_wrap .swiper_nav {
        gap: 12px;
    }
}

.eyelid_7_1 {
    padding: 100px 0;
    background: url('/img/sub/eyelid_7_1_bg.png') center center / cover no-repeat;
}

.eyelid_7_1 .tit_wrap {
    margin-bottom: 40px;
}

.eyelid_7_1 .con_wrap p {
    color: var(--color-text-secondary);
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.eyelid_7_1 .img_wrap {
    max-width: 720px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 40px;
    border: 1px solid var(--color-green-light);
}

.eyelid_7_1 .txt_wrap {
    display: flex;
}

.eyelid_7_1 .txt_wrap span {
    flex: 1;
    color: #fff;

    text-align: center;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 30.8px */
    letter-spacing: -0.88px;
    background: var(--Color, var(--color-primary));
    padding: 6px 12px;
}

.eyelid_7_1 .txt_wrap span:last-child {
    background: #333;
}

.eyelid_7_1 .con_wrap p b {
    color: var(--Color, var(--color-primary));
    font-weight: 700;
}

.eyelid_7_1 .con_wrap p span {
    color: #fff;
    font-weight: 700;
    background: #faaf33;
    padding: 2px;
}

@media screen and (max-width: 768px) {
    .eyelid_7_1 {
        padding: 80px 0;
    }

    .eyelid_7_1 .txt_wrap span {
        font-size: 15px;
        letter-spacing: -0.6px;
    }

    .eyelid_7_1 .img_wrap {
        border-radius: 9px;
    }

    .eyelid_7_1 .con_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.eyelid_7_2 .tit_wrap {
    margin: 0 auto 60px;
    width: 90%;
}

.eyelid_7_2 .con_wrap {
    margin-bottom: 60px;
}

.eyelid_7_2 .con_wrap ul li:nth-child(4) span {
    background: #253530;
}

.eyelid_7_2 .con_wrap ul li:nth-child(5) span {
    background: #202624;
}

.eyelid_7_2 .bottom_txt:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url('/img/sub/eyelid_5_5_icon.png') center center / 100% no-repeat;
    animation: bounce2 2s ease infinite;
}

.eyelid_7_2 .bottom_txt {
    color: #fff;
    display: flex;
    max-width: 90%;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid var(--Color, var(--color-primary));
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    background: var(--Color, var(--color-primary));

    font-size: 20px;
    box-sizing: border-box;
    font-weight: 400;
    padding: 20px 5.2vw;
    line-height: 140%;
    letter-spacing: -0.8px;
    text-align: left;
}

.eyelid_7_2 .bottom_txt p {
    flex: 1;
}

.eyelid_7_2 .bottom_txt b {
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .eyelid_7_2 .tit_wrap {
        margin-bottom: 30px;
    }

    .eyelid_7_2 .con_wrap {
        margin-bottom: 30px;
    }

    .eyelid_7_2 .con_wrap img {
        flex: 1;
        max-width: 40%;
    }

    .eyelid_7_2 p.sub_txt {
        max-width: 500px;
        margin: 0 auto;
    }

    .eyelid_7_2 .bottom_txt {
        flex-direction: column;
        font-size: 15px;
        letter-spacing: -0.64px;
        width: 90%;

        max-width: 500px;
        padding: 20px 15px;
        text-align: center;
    }

    .eyelid_7_2 .bottom_txt br {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_7_2 .con_wrap img {
        max-width: 90%;
        flex: unset;
    }
}

.eyelid_7_3 {
    background: #eaeaea;
    display: flex;
    gap: 10px;
}

.eyelid_7_3 .img_wrap {
    flex: 1;
}

.eyelid_7_3 .txt_wrap {
    padding: 30px 0;
    width: 50%;
    display: flex;
    align-items: center;
}

.eyelid_7_3 .txt_wrap strong {
    color: #af2d2d;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    /* 48px */
    letter-spacing: -1.2px;
    margin-bottom: 18px;
}

.eyelid_7_3 .txt_wrap p {
    color: #663737;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 28.8px */
    letter-spacing: -0.72px;
}

.eyelid_7_3 .txt_wrap p b {
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .eyelid_7_3 {
        flex-direction: column;
    }

    .eyelid_7_3 .img_wrap {
        width: 100%;
    }

    .eyelid_7_3 .txt_wrap {
        width: 100%;
        padding: 40px 18px 80px 18px;
        box-sizing: border-box;
    }

    .eyelid_7_3 .txt_wrap strong {
        font-size: 24px;
        letter-spacing: -0.96px;
        margin-bottom: 18px;
    }

    .eyelid_7_3 .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .eyelid_7_3 .txt_wrap p br {
        display: none;
    }
}

.eyelid_7_4 {
    padding: 120px 0;
}

.eyelid_7_4 .tit_wrap .sub_tit {
    margin-bottom: 24px;
}

.eyelid_7_4 .tit_wrap .sub_tit p {
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.44px;
}

.eyelid_7_4 .tit_wrap {
    margin-bottom: 40px;
}

.eyelid_7_4 .img_wrap {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.eyelid_7_4 .img {
    border-radius: 20px;
    overflow: hidden;
}

.eyelid_7_4 .img span {
    color: #fff;
    text-align: center;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.8px;
    background: #33503a;
    padding: 6px 0px;

    display: block;
}

.eyelid_7_4 .img:nth-child(2) span {
    background: var(--Color, var(--color-primary));
}

.eyelid_7_4 .img:nth-child(3) span {
    background: #63926f;
}

.eyelid_7_4 .txt_wrap {
    margin: 0 auto;
    padding: 40px 3.1vw;
    max-width: 1120px;
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    border-radius: 20px;
    background: #f7f7f7;
}

.eyelid_7_4 .txt_wrap img {
    margin: 0 auto 16px;
    width: 40px;
    height: 40px;
}

.eyelid_7_4 .txt_wrap p:not(:last-child) {
    margin-bottom: 16px;
}

.eyelid_7_4 .txt_wrap b {
    color: var(--Color, var(--color-primary));
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .eyelid_7_4 .img span {
        font-size: 15px;
        letter-spacing: -0.6px;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_7_4 .img {
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .eyelid_7_4 {
        padding: 80px 0;
    }

    .eyelid_7_4 .tit_wrap .sub_tit p {
        font-size: 30px;
    }

    .eyelid_7_4 .tit_wrap .sub_tit {
        margin-bottom: 16px;
    }

    .eyelid_7_4 .img_wrap {
        flex-direction: column;
        align-items: center;
    }

    .eyelid_7_4 .txt_wrap {
        padding: 30px 16px;
        font-size: 16px;
        letter-spacing: -0.64px;
    }
}

.eyelid_7_5 {
    background: url('/img/sub/eyelid_7_5_bg.png') center center / cover no-repeat;
    padding: 120px 0;
}

.eyelid_7_5 p.top_txt {
    color: var(--color-text-secondary);

    text-align: center;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 42px */
    margin-bottom: 60px;
    letter-spacing: -1.2px;
}

.eyelid_7_5 p.top_txt b {
    color: var(--Color, var(--color-primary));
    font-weight: 700;
}

.eyelid_7_5 .img_wrap {
    display: flex;
    justify-content: center;
    gap: 3.1vw;
}

@media screen and (max-width: 768px) {
    .eyelid_7_5 {
        padding: 80px 0;
    }

    .eyelid_7_5 p.top_txt {
        font-size: 24px;
        letter-spacing: -0.96px;
        margin-bottom: 40px;
    }

    .eyelid_7_5 .img_wrap {
        flex-wrap: wrap;
        max-width: 340px;
        gap: 60px;
        margin: 0 auto;
    }
}

.eyelid_7_7 {
    padding: 120px 0;
}

.eyelid_7_7 .tit_wrap {
    margin-bottom: 60px;
}

.eyelid_7_7 .tit_wrap h3 {
    font-weight: 400;
}

.eyelid_7_7 .tit_wrap .point_g {
    font-weight: 700;
}

.eyelid_7_7 .tit_wrap p {
    color: var(--color-text-secondary);
    text-align: center;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 33.6px */
    letter-spacing: -0.96px;
    margin-bottom: 10px;
}

.eyelid_7_7 .con_wrap {
    max-width: 1120px;
    display: flex;
    gap: 3.1vw;
    margin: 0 auto;
    align-items: center;
}

.eyelid_7_7 .txt_wrap {
    border-radius: 20px;
    background: #f7f7f7;
    padding: 40px 2vw;
}

.eyelid_7_7 .txt_wrap strong {
    border-radius: 9999px;
    background: var(--Color, var(--color-primary));
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    width: fit-content;

    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.eyelid_7_7 .txt_wrap .con01 {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.eyelid_7_7 .txt_wrap .con01 li {
    margin-bottom: 30px;
}

.eyelid_7_7 .txt_wrap p {
    color: var(--color-text-secondary);

    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.72px;
}

.eyelid_7_7 .txt_wrap p b {
    color: var(--Color, var(--color-primary));
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .eyelid_7_7 {
        padding: 80px 0;
    }

    .eyelid_7_7 .tit_wrap {
        margin-bottom: 40px;
    }

    .eyelid_7_7 .tit_wrap p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .eyelid_7_7 .txt_wrap {
        padding: 40px 16px;
    }

    .eyelid_7_7 .con_wrap {
        flex-direction: column;
        gap: 40px;
    }

    .eyelid_7_7 .txt_wrap strong {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .eyelid_7_7 .txt_wrap p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .eyelid_7_7 .txt_wrap .con01 {
        margin-bottom: 20px;
    }

    .eyelid_7_7 .txt_wrap .con01 li {
        margin-bottom: 20px;
    }
}

.tears_3_n1 {
    padding: 120px 0;
    background: url('/img/sub/tears_3_n1_bg.png') center center / cover no-repeat;
}

.tears_3_n1 .tit_wrap p {
    color: var(--color-text-secondary);
    text-align: center;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 33.6px */
    letter-spacing: -0.96px;
    margin-bottom: 10px;
}

.tears_3_n1 .tit_wrap {
    margin-bottom: 40px;
}

.tears_3_n1 ul {
    display: flex;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    gap: 2vw;
}

.tears_3_n1 ul li {
    flex: 1;
}

.tears_3_n1 ul li .step {
    padding: 6px 20px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
    background: var(--Color, var(--color-primary));
    gap: 10px;
}

.tears_3_n1 ul li dl {
    min-height: 220px;
    padding: 24px 1.25vw;
    border: 1px solid var(--color-border);
    background: #fff;
    box-sizing: border-box;
}

.tears_3_n1 ul li dt {
    color: var(--Color, var(--color-primary));
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 33.6px */
    letter-spacing: -0.96px;
    margin-bottom: 12px;
}

.tears_3_n1 ul li:nth-child(2) .step {
    background: var(--color-teal);
}

.tears_3_n1 ul li:nth-child(2) dt {
    color: var(--color-teal);
}

.tears_3_n1 ul li:nth-child(3) .step {
    background: var(--color-teal-dark);
}

.tears_3_n1 ul li:nth-child(3) dt {
    color: var(--color-teal-dark);
}

.tears_3_n1 ul li dd {
    color: var(--color-text-secondary);
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.72px;
}

.tears_3_n1 ul li dd b {
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .tears_3_n1 ul li dt {
        font-size: 22px;
    }

    .tears_3_n1 ul li dd {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .tears_3_n1 {
        padding: 80px 0;
    }

    .tears_3_n1 .tit_wrap p {
        font-size: 20px;
    }

    .tears_3_n1 ul {
        flex-direction: column;
        gap: 30px;
    }

    .tears_3_n1 ul li dl {
        padding: 24px 20px;
    }

    .tears_3_n1 ul li dt {
        font-size: 18px;
    }
}