.h_top::before {
    display: none;
}

/*-- sec_title --*/
.sec_title .line {
    opacity: 0;
}
.sec_title .word {
    display: inline-block;
    font-size: var(--ft50);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
    margin-right: 0.2em;
    opacity: 0;
    transform: translateY(20px);
}
.sec_title .word:last-child {
    margin-right: 0;
}
.sec_title .bold .word {
    color: var(--gray-600);
}

/*----------------------- sec1 -----------------------*/
.sec1 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/*-- banner_swiper --*/
.banner_swiper {
    width: 100%;
    height: 100%;
}
.banner_box {
    width: 100%;
    height: 100%;
    position: relative;
}
.banner_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.banner_bg img {
    transform: scale(1.2);
    transition: transform 4s ease;
}
.banner_inner {
    width: 100%;
    height: 100%;
    background-color: var(--black-400);
    padding-top: 240px;
    position: relative;
    z-index: 1;
}
.banner_title {
    margin-bottom: 40px;
    font-size: var(--ft56);
    font-weight: var(--semi-bold);
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.banner_text {
    font-size: var(--ft24);
    font-weight: var(--medium);
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.banner_box.swiper-slide-active .banner_title {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s .6s ease, transform .5s .6s ease;
}
.banner_box.swiper-slide-active .banner_text {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s .8s ease, transform .5s .8s ease;
}
.banner_box.swiper-slide-active .banner_bg img {
    transform: scale(1);
}

/*-- banner_btm --*/
.banner_btm {
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0;
    z-index: 2;
}
.banner_btm > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.scroll_down {
    display: flex;
    align-items: center;
    gap: 6px;
    animation: scroll 1s alternate infinite;
}
@keyframes scroll {
    to {
        transform: translateY(10px);
    }
}
.scroll_down::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(/images/scroll_down.svg) no-repeat center/contain;
}
.scroll_down p {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--white);
}

.banner_swiper_btm {
    display: flex;
    align-items: center;
    gap: 20px;
}
.swiper_btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: var(--white-200);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.swiper_btn img {
    width: 20px;
    height: 20px;
    opacity: .5;
    transition: opacity .5s ease;
}
.swiper_btn:hover img {
    opacity: 1;
}
.swiper_num {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.swiper_num,
.swiper_num * {
    font-size: var(--ft20);
    color: var(--white-600);
}
.swiper_num .swiper-pagination-current {
    font-weight: var(--semi-bold);
    color: var(--white);
}

/*-- banner_pagination --*/
.banner_pagination {
    width: 100%;
    height: 6px;
    background-color: var(--white-500);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.banner_pagination span {
    width: 0;
    height: 100%;
    display: block;
    background-color: var(--primary);
}

/*----------------------- sec2 -----------------------*/
.sec2 {
    margin-top: 200px;
    height: 550vh;
    position: relative;
}
.sticky_box {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    overflow: hidden;
}
.sticky_inner {
    width: 100%;
    height: 100%;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.sec2_title {
    line-height: 1;
    font-size: var(--ft80);
    font-weight: var(--semi-bold);
}
.sec2_title .line {
    opacity: 0;
}
.sec2_title .word {
    display: inline-block;
    font-size: var(--ft80);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
    margin-right: 0.2em;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
}
.sec2_title .word:last-child {
    margin-right: 0;
}
.sec2_title .bold .word {
    color: var(--gray-600);
}
.sec_text {
    font-size: var(--ft24);
    color: var(--gray-500);
    opacity: 0;
    transform: translateY(20px);
}
.sec_text strong {
    font-weight: var(--semi-bold);
    color: var(--primary);
}

.sec2_scroll {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
}
.sec2_scroll .scroll {
    width: 1px;
    height: 50px;
    background-color: var(--gray-200);
    overflow: hidden;
}
.sec2_scroll .scroll_bar {
    display: block;
    width: 100%;
    height: 25px;
    background-color: var(--gray-500);
    transform: translateY(-100%);
    animation: sec2Scroll 2s infinite linear;
}
@keyframes sec2Scroll {
    form {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(200%);
    }
}
.sec2_scroll p {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
}

/*-- field_card_wrap --*/
.field_card_wrap {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.field_card_list {
    display: flex;
    transform: translateY(250%) rotate(45deg);
}
.field_card {
    width: 300px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.field_card:nth-child(1) {
    position: absolute;
    z-index: 2;
}
.field_card:nth-child(2) {
    z-index: 1;
}
.field_card:nth-child(3) {
    position: absolute;
}


/*-- field_wrap --*/
.field_wrap {
    width: 300px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
}

.field_bg_swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    pointer-events: none;
}


.field_inner {
    width: 100%;
    height: 100%;
    padding: 100px 0 80px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black-400);
    z-index: 1;
}
.field_show {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}
.field_inner .container-lg {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    z-index: 1;
}
.field_tab {
    display: flex;
    gap: 80px;
    position: absolute;
    left: 0;
    bottom: 0px;
} 
.field_tab div {
    font-size: var(--ft60);
    font-weight: var(--semi-bold);
    color: var(--white);
    opacity: .4;
    cursor: pointer;
    transition: opacity .5s ease;
}
.field_tab div:hover {
    opacity: .8;
}
.field_tab div.tab_active {
    opacity: 1;
}

/*-- field_swiper --*/
.field_swiper {
    width: 520px;
    overflow: hidden;
}
.field_box {
    width: 100%;
    height: fit-content;
    padding: 80px 50px 60px;
    border-radius: var(--radius-md);
    background-color: var(--white);
}
.field_eng {
    margin-bottom: 16px;
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
    color: var(--primary);
}
.field_name {
    font-size: var(--ft40);
    font-weight: var(--semi-bold);
}
.field_info {
    width: 100%;
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}
.field_info li {
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    background-color: var(--gray-100);
    font-size: var(--ft18);
    color: var(--gray-500);
}
.field_info li strong {
    font-weight: var(--semi-bold);
}
.field_img {
    width: 100%;
    height: 160px;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.field_btm {
    width: 520px;
    padding: 0 50px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*----------------------- sec3 -----------------------*/
.sec3 {
    padding-top: 240px;
    overflow: hidden;
}
.logo_mark {
    width: 70%;
    max-width: 860px;
    aspect-ratio: 1 / 1;
    opacity: .1;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-100%) rotate(45deg);
    z-index: -1;
}

/*-- process_list --*/
.process_list {
    width: 100%;
    margin-top: 160px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.process_box {
    width: 100%;
    padding: 100px 80px;
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    border-right: 1px solid var(--dark-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(50%);
    opacity: 0;
}
.process_box:last-child {
    border-right: none;
}
.process_bg {
    width: calc(100% - 160px);
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: absolute;
    top: 100px;
    left: 80px;
    transition: all .5s ease;
}
.process_bg::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--black-400);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .5s ease;
}
.process_img {
    width: 100%;
    max-width: 320px;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.process_inner {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.process_eng {
    width: fit-content;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: var(--primary-bg);
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
    color: var(--primary);
    transition: color .5s ease, background .5s ease;
}
.process_title {
    margin: 32px 0;
    font-size: var(--ft32);
    font-weight: var(--semi-bold);
    transition: color .5s ease;
}
.process_text {
    font-size: var(--ft22);
    color: var(--gray-500);
    transition: color .5s ease;
}

.process_box:hover .process_bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
}
.process_box:hover .process_bg::after {
    opacity: 1;
}
.process_box:hover .process_eng {
    color: var(--white);
    background-color: var(--white-100);
}
.process_box:hover .process_title,
.process_box:hover .process_text {
    color: var(--white);
}

/*----------------------- sec4 -----------------------*/
.sec4 {
    width: calc(100% - 40px);
    margin: 120px auto 0;
    padding: 50px;
    background-color: var(--primary-bg);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 100px;
    overflow: hidden;
}

/*-- product_img_swiper --*/
.product_img_swiper {
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}
.product_img_swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_img {
    width: 600px;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(.5) rotate(10deg);
    transition: opacity .3s ease, transform .3s ease;
}
.product_eng {
    font-size: clamp(80px, 13.5vw, 300px);
    font-weight: var(--semi-bold);
    opacity: 0;
    position: absolute;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease;
}
.sec4.active .product_img_swiper .swiper-slide-active .product_img {
    opacity: 1;
    transform: scale(1) rotate(0);
    transition: opacity .8s .3s ease, transform .8s .3s ease;
}
.sec4.active .product_img_swiper .swiper-slide-active .product_eng {
    opacity: .1;
    transform: translateY(0);
    transition: opacity .8s .3s ease, transform .8s .3s ease;
}
.img_swiper_btm {
    display: none;
}

/*-- product_r --*/
.product_r {
    width: 500px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(20px);
}
.product_swiper {
    width: 100%;
    overflow: hidden;
}
.product_box {
    width: 100%;
    padding: 120px 50px 80px;
    border-radius: var(--radius-lg);
    background-color: var(--white);
}
.product_name {
    margin-bottom: 16px;
    font-size: var(--ft60);
    font-weight: var(--semi-bold);
}
.product_title {
    margin-bottom: 50px;
    font-size: var(--ft24);
    font-weight: var(--medium);
    color: var(--gray-500);
}
.product_text {
    font-size: var(--ft20);
    color: var(--gray-500);
}
.product_more {
    margin-top: 80px;
}

.product_pagination {
    width: 100%;
    padding: 36px;
    margin-top: 20px;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    overflow: hidden;
}
.pagination_top {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.pagination_top p {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
}
.product_num {
    font-size: var(--ft16);
    color: var(--gray-500);
}
.product_num .swiper-pagination-current {
    font-weight: var(--semi-bold);
    color: var(--gray-600);
}

.pagination_swiper {
    width: 100%;
}
.pagination_box {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    background-color: var(--gray-100);
    border: 2px solid var(--gray-100);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.pagination_box img {
    width: 50px;
    height: fit-content;
    aspect-ratio: 1 / 1;
}
.pagination_box.swiper-slide-thumb-active {
    border-color: var(--primary);
}

/*----------------------- sec5 -----------------------*/
.sec5 {
    margin-top: 200px;
}

/*-- home_more --*/
.home_more {
    margin-top: 140px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.more_box {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}
.more_img {
    width: 100%;
    height: 100%;
    position: absolute;
}
.more_img img {
    transition: transform .8s ease;
}
.more_inner {
    width: 100%;
    height: 100%;
    padding: 60px 50px;
    position: relative;
    z-index: 1;
}
.more_title {
    margin-bottom: 20px;
    font-size: var(--ft32);
    font-weight: var(--semi-bold);
    color: var(--white);
}
.more_text {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
    color: var(--white);
}
.more_box:hover .more_img img {
    transform: scale(1.1);
}

@media all and (max-width: 1880px) {
    /*-- sec2 --*/
    .field_tab {
        left: 60px;
    }
}

@media all and (max-width: 1600px) {
    /*-- sec1 --*/
    .banner_inner {
        padding-top: 180px;
    }
    .banner_title {
        font-size: var(--ft50);
    }

    /*-- sec2 --*/
    .sticky_inner {
        padding: 90px 0;
    }
    .sec2_title,
    .sec2_title .word {
        font-size: var(--ft70);
    }
    .field_inner {
        padding: 80px 0 60px;
    }
    .field_card {
        width: 240px;
        height: 240px;
    }

    .field_wrap {
        width: 240px;
        height: 240px;
    }
    .field_tab {
        gap: 50px;
    }
    .field_tab div {
        font-size: var(--ft50);
    }
    .field_box {
        padding: 60px 40px 40px;
    }
    .field_eng {
        font-size: var(--ft18);
    }
    .field_name {
        font-size: var(--ft32);
    }
    .field_info {
        margin-top: 24px;
    }
    .field_img {
        margin-top: 20px;
    }

    /*-- sec3 --*/
    .logo_mark {
        max-width: 600px;
    }
    .process_box {
        padding: 80px 40px;
    }
    .process_bg {
        width: calc(100% - 80px);
        height: 320px;
        top: 80px;
        left: 40px;
    }

    /*-- sec4 --*/
    .product_img {
        width: 470px;
    }
    .product_box {
        padding: 100px 40px 60px;
    }
    .product_name {
        font-size: var(--ft50);
    }
    .product_r {
        width: 460px;
    }
}

@media all and (max-width: 1400px) {
    .sec_title,
    .sec_title .word {
        font-size: var(--ft40);
    }
    .sec_text {
        font-size: var(--ft20);
    }

    /*-- sec1 --*/
    .banner_title {
        margin-bottom: 32px;
        font-size: var(--ft45);
    }
    .banner_text {
        font-size: var(--ft20);
    }

    /*-- sec2 --*/
    .sec2_title,
    .sec2_title .word {
        font-size: var(--ft60);
    }
    .sec2_scroll {
        left: 60px;
    }

    .field_tab {
        gap: 40px;
    }
    .field_tab div {
        font-size: var(--ft40);
    }

    .field_swiper {
        width: 450px;
    }
    .field_box {
        padding: 40px 30px 30px;
    }
    .field_info {
        gap: 10px;
    }
    .field_info li {
        font-size: var(--ft16);
    }
    .field_btm {
        width: 450px;
    }

    /*-- sec3 --*/
    .sec3 {
        padding-top: 180px;
    }
    .process_list {
        margin-top: 100px;
    }
    .process_bg,
    .process_img {
        height: 260px;
    }
    .process_eng {
        font-size: var(--ft18);
    }
    .process_title {
        margin: 24px 0;
        font-size: var(--ft28);
    }
    .process_text {
        font-size: var(--ft18);
    }

    /*-- sec4 --*/
    .sec4 {
        padding: 30px;
    }
    .product_eng {
        display: none;
    }
    .product_img {
        width: 400px;
    }
    .product_box {
        padding: 60px 40px;
    }
    .product_name {
        font-size: var(--ft40);
    }
    .product_title {
        margin-bottom: 24px;
        font-size: var(--ft20);
    }
    .product_text {
        font-size: var(--ft18);
    }
    .product_more {
        margin-top: 40px;
    }
    .pagination_top p {
        font-size: var(--ft18);
    }
    .pagination_box {
        width: 90px;
        height: 90px;
    }

    /*-- sec5 --*/
    .home_more {
        margin-top: 100px;
    }
}

@media all and (max-width: 1024px) {
    /*-- sec1 --*/
    .swiper_num, 
    .swiper_num * {
        font-size: var(--ft16);
    }
    .swiper_btn {
        width: 32px;
        height: 32px;
    }
    .swiper_btn img {
        width: 16px;
        height: 16px;
    }
    .banner_btm {
        bottom: 50px;
    }

    /*-- sec2 --*/
    .sec2 {
        height: 400vh;
    }
    .sticky_inner {
        padding: 90px 0 50px;
    }
    .sec2_scroll {
        left: 40px;
    }
    .sec2_title,
    .sec2_title .word {
        font-size: var(--ft50);
    }
    .field_card {
        width: 200px;
        height: 200px;
    }
    .sec_text {
        font-size: var(--ft18);
    }
    .field_wrap {
        width: 200px;
        height: 200px;
    }

    .field_inner {
        padding: 80px 0 20px;
    }
    .field_tab {
        display: none;
    }
    .field_swiper {
        width: 400px;
    }
    .field_eng {
        margin-bottom: 12px;
        font-size: var(--ft16);
    }
    .field_name {
        font-size: var(--ft28);
    }
    .field_img {
        height: 120px;
    }
    .field_btm {
        width: 400px;
        margin-top: 20px;
    }

    /*-- sec3 --*/
    .logo_mark {
        width: 60%;
        max-width: 500px;
    }
    .process_list {
        margin-top: 70px;
        grid-template-columns: repeat(2, 1fr);
    }
    .process_box {
        padding: 40px;
        transform: translateY(20px);
        pointer-events: none;
    }
    .process_box:nth-child(3),
    .process_box:nth-child(4) {
        border-top: none;
    }
    .process_bg {
        display: none;
    }
    .process_img {
        max-width: 90%;
    }
    .process_inner {
        margin-top: 32px;
    }
    .process_title {
        margin: 16px 0;
        font-size: var(--ft24);
    }

    /*-- sec4 --*/
    .sec4 {
        margin-top: 80px;
        flex-direction: column;
        gap: 20px;
    }
    .product_img {
        width: 320px;
    }
    .img_swiper_btm {
        width: 100%;
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        z-index: 2;
    }
    .img_swiper_btm .swiper_btn {
        background-color: var(--white-600);
    }
    .img_swiper_btm .prev_btn {
        transform: rotate(180deg);
    }
    .product_r {
        width: 100%;
    }

    /*-- sec5 --*/
    .sec5 {
        margin-top: 140px;
    }
    .home_more {
        margin-top: 80px;
    }
    .more_box {
        height: 240px;
    }
    .more_inner {
        padding: 30px;
    }
    .more_title {
        margin-bottom: 12px;
        font-size: var(--ft24);
    }
    .more_text {
        font-size: var(--ft16);
    }
}

@media all and (max-width: 768px) {
    .sec_title,
    .sec_title .word {
        font-size: var(--ft24);
        margin-right: 0.1em;
    }

    /*-- sec1 --*/
    .banner_inner {
        padding-top: 120px;
    }
    .banner_title {
        margin-bottom: 20px;
        font-size: var(--ft32);
    }
    .banner_text {
        font-size: var(--ft16);
    }
    .banner_swiper_btm {
        gap: 10px;
    }
    .scroll_down p {
        font-size: var(--ft14);
    }
    .scroll_down::after {
        width: 14px;
        height: 14px;
    }

    /*-- sec2 --*/
    .sticky_inner {
        padding: 90px 16px 50px;
        justify-content: center;
        gap: 240px;
    }
    .sec2_title, 
    .sec2_title .word {
        font-size: var(--ft36);
    }
    .sec2_scroll {
        display: none;
    }
    .field_card {
        width: 140px;
        height: 140px;
    }
    .field_wrap {
        width: 140px;
        height: 140px;
    }
    .sec_text {
        font-size: var(--ft16);
    }
    .field_swiper {
        width: 100%;
    }
    .field_swiper * {
        color: var(--white);
    }
    .field_box {
        padding: 0;
        background: none;
    }
    .field_info li {
        background-color: var(--white-200);
        color: var(--white);
    }
    .field_btm {
        width: 100%;
        padding: 0 30px;
        position: absolute;
        bottom: 30px;
        left: 0;
    }

    /*-- sec3 --*/
    .sec3 {
        padding-top: var(--sec-gap);
    }
    .process_list {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
    }
    .process_box {
        padding: 20px;
        border-top: none;
    }
    .process_img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .process_inner {
        margin-top: 20px;
    }
    .process_eng {
        padding: 5px 12px;
        font-size: var(--ft14);
    }
    .process_title {
        margin: 10px 0;
        font-size: var(--ft20);
    }
    .process_text {
        font-size: var(--ft16);
    }

    /*-- sec4 --*/
    .sec4 {
        width: 100%;
        margin-top: var(--sec-gap);
        padding: 40px 16px;
        border-radius: 0;
    }
    .product_img {
        width: 240px;
    }
    .product_box {
        padding: 40px 20px;
    }
    .product_name {
        font-size: var(--ft28);
    }
    .product_title {
        margin-top: 12px;
        margin-bottom: 20px;
        font-size: var(--ft18);
    }
    .product_text {
        font-size: var(--ft16);
    }
    .product_pagination {
        margin-top: 10px;
        padding: 20px;
    }
    .pagination_top {
        margin-bottom: 16px;
    }
    .pagination_box {
        width: 70px;
        height: 70px;
    }

    /*-- sec5 --*/
    .sec5 {
        margin-top: var(--sec-gap);
    }
    .home_more {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .more_box {
        height: 200px;
    }
    .more_inner {
        padding: 30px 20px;
    }
    .more_title {
        font-size: var(--ft20);
    }
}