.hpp-page,
.hpp-page * {
    box-sizing: border-box;
}

.hpp-page {
    font-family: var(--font-family-suit);
    background: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding: 160px 0;
}

.hpp-page > .intro-section {
    margin-bottom: 160px;
}

.hpp-page .inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hpp-page .intro-section {
    width: 100%;
    text-align: center;
}

/* 인트로: 상단만 160px. 하단 160px는 .hpp-page > .intro-section { margin-bottom: 160px } 로만 적용 (중복 제거) */
.hpp-page .intro-section .inner {
    padding-top: 160px;
    padding-bottom: 0;
}

.hpp-page .intro-title {
    font-size: 64px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.hpp-page .intro-eng {
    font-size: 24px;
    color: #808284;
    font-weight: 700;
}

.hpp-page .hpp-section {
    width: 100%;
    padding: 160px 240px;
    min-height: 960px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hpp-page .hpp-section.last {
    padding-bottom: 160px;
}

/* 풀페이지 스크롤: JS(hpp-fullpage.js)로 휠 시 섹션 단위 전환 (1025px 이상에서만) */
@media (min-width: 1025px) {
    html.hpp-snap {
        scroll-behavior: auto;
    }

    body.hpp-snap {
        overflow-x: hidden;
    }

    html.hpp-snap .hpp-page {
        padding: 0;
    }

    html.hpp-snap .hpp-page > .intro-section {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* 03~05 섹션 콘텐츠가 많아도 스크롤로 모두 보이도록 min-height만 100vh, height는 auto */
    html.hpp-snap .hpp-page .hpp-section {
        min-height: 100vh;
        height: auto;
        flex-shrink: 0;
    }
}

.hpp-page .hpp-section .container {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
}

.hpp-page .hpp-section.section-01 .container {
    gap: 0;
}

.hpp-page .hpp-section.section-02 .container {
    gap: 0;
}

.hpp-page .hpp-section.section-03 .container,
.hpp-page .hpp-section.section-04 .container,
.hpp-page .hpp-section.section-05 .container {
    flex-direction: row;
    gap: 0;
}

.hpp-page .txt.txt-group {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 610px;
    flex-shrink: 0;
}

.hpp-page .txt .p {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hpp-page .label {
    color: var(--main, #8dc63f);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0;
}

.hpp-page .title.hpp {
    color: #000000;
    font-size: 48px;
    line-height: 60px;
    font-weight: 800;
    margin: 0;
}

.hpp-page .txt .div .desc-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #000000;
}

.hpp-page .txt .div .desc-list li {
    margin: 0;
}

.hpp-page .hpp-section.section-01 .content-group {
    flex-shrink: 0;
    width: 830px;
    height: 448px;
    position: relative;
}

.hpp-page .hpp-section.section-01 .principle-boxes {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    margin-bottom: 0;
}

.hpp-page .hpp-section.section-01 .box {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
}

.hpp-page .hpp-section.section-01 .box-title.div2 {
    color: #000000;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.hpp-page .hpp-section.section-01 .box-desc._400-600-mpa,
.hpp-page .hpp-section.section-01 .box-desc.div3 {
    color: #555555;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    margin: 0;
    width: 100%;
}

.hpp-page .arrow-icon.union {
    flex-shrink: 0;
    width: 12px;
    height: 18px;
}

.hpp-page .arrow-icon.union svg {
    width: 12px;
    height: 18px;
    display: block;
}

.hpp-page .hpp-section.section-01 .hpp-table-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 830px;
    overflow: visible;
}

.hpp-page .hpp-section.section-01 .hpp-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border-top: 1px solid var(--main, #8dc63f);
    border-bottom: 1px solid var(--main, #8dc63f);
}

.hpp-page .hpp-section.section-01 .hpp-table thead {
    border-top: 1px solid var(--main, #8dc63f);
    border-bottom: 1px solid var(--main, #8dc63f);
}

.hpp-page .hpp-section.section-01 .hpp-table th {
    background: var(--sub-bg, #f4faec);
    border-right: 1px solid var(--main, #8dc63f);
    padding: 16px 0;
    width: auto;
    color: var(--main, #8dc63f);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.hpp-page .hpp-section.section-01 .hpp-table th.last {
    border-right: 0;
}

.hpp-page .hpp-section.section-01 .hpp-table td {
    border-right: 1px solid var(--gray-02, #dfdfdf);
    border-bottom: 1px solid var(--gray-02, #dfdfdf);
    padding: 12px 0;
    width: auto;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
}

.hpp-page .hpp-section.section-01 .hpp-table td:last-child {
    border-right: 0;
}

.hpp-page .hpp-section.section-01 .hpp-table th,
.hpp-page .hpp-section.section-01 .hpp-table td,
.hpp-page .hpp-section.section-05 .pkg-table th,
.hpp-page .hpp-section.section-05 .pkg-table td {
    word-break: break-word;
    overflow-wrap: break-word;
}

.hpp-page .hpp-section.section-02 .txt-side.p2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 610px;
    flex-shrink: 0;
}

.hpp-page .hpp-section.section-02 .process-img.img {
    flex-shrink: 0;
    max-width: 830px;
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.4);
    object-fit: contain;
}

.hpp-page .hpp-section.section-03 .txt-side.p2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 610px;
    flex-shrink: 0;
}

.hpp-page .advantage-grid.box-wrap2 {
    display: flex;
    flex-wrap: wrap;
    width: 830px;
    flex-shrink: 0;
    min-width: 0;
}

.hpp-page .advantage-grid .adv-box {
    width: 276px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.hpp-page .advantage-grid .adv-box.box2 {
    border: none;
}

.hpp-page .advantage-grid .adv-box.box3 {
    border-left: 1px solid var(--gray-02, #dfdfdf);
    border-right: 1px solid var(--gray-02, #dfdfdf);
}

.hpp-page .advantage-grid .adv-box.box4 {
    border-top: 1px solid var(--gray-02, #dfdfdf);
}

.hpp-page .advantage-grid .adv-box.box5 {
    border-top: 1px solid var(--gray-02, #dfdfdf);
    border-left: 1px solid var(--gray-02, #dfdfdf);
    border-right: 1px solid var(--gray-02, #dfdfdf);
}

.hpp-page .advantage-grid .adv-box .adv-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hpp-page .advantage-grid .adv-box .adv-icon img {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hpp-page .advantage-grid .div5,
.hpp-page .advantage-grid ._2 {
    text-align: center;
    color: #000000;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}

.hpp-page .hpp-section.section-04 .txt-side.p2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 610px;
    flex-shrink: 0;
}

.hpp-page .apply-grid.box-wrap2 {
    display: grid;
    grid-template-columns: repeat(5, 166px);
    width: 830px;
    flex-shrink: 0;
    min-width: 0;
    border-top: none;
}

.hpp-page .apply-grid .item {
    padding: 24px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hpp-page .apply-grid .item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.hpp-page .apply-grid .item.box6 {
    border-right: 1px solid var(--gray-02, #dfdfdf);
    border-bottom: 1px solid var(--gray-02, #dfdfdf);
}

.hpp-page .apply-grid .item.box7 {
    border-right: 1px solid var(--gray-02, #dfdfdf);
    border-bottom: 1px solid var(--gray-02, #dfdfdf);
}

.hpp-page .apply-grid .item.box8 {
    border-bottom: 1px solid var(--gray-02, #dfdfdf);
}

.hpp-page .apply-grid .item.box9 {
    border-right: 1px solid var(--gray-02, #dfdfdf);
}

.hpp-page .apply-grid .item.box10 {
    border-right: 1px solid var(--gray-02, #dfdfdf);
}

.hpp-page .apply-grid .item.box11 {
    border: none;
}

.hpp-page .hpp-section.section-05 .txt-side.p2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 610px;
    flex-shrink: 0;
}

.hpp-page .hpp-section.section-05 .title.div6 {
    color: #000000;
    font-size: 48px;
    line-height: 60px;
    font-weight: 800;
    margin: 0;
}

.hpp-page .hpp-section.section-05 .table2 {
    width: 100%;
    max-width: 830px;
    overflow: visible;
}

.hpp-page .hpp-section.section-05 .pkg-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: fixed;
}

.hpp-page .hpp-section.section-05 .pkg-table thead {
    background: var(--sub-bg, #f4faec);
}

.hpp-page .hpp-section.section-05 .pkg-table th {
    border-right: 1px solid var(--main, #8dc63f);
    padding: 16px 0;
    color: var(--main, #8dc63f);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.hpp-page .hpp-section.section-05 .pkg-table th.th3 {
    width: 33%;
}

.hpp-page .hpp-section.section-05 .pkg-table th:not(.th3) {
    width: 16.75%;
}

.hpp-page .hpp-section.section-05 .pkg-table th.last {
    border-right: 0;
}

.hpp-page .hpp-section.section-05 .pkg-table td {
    border-right: 1px solid var(--gray-02, #dfdfdf);
    border-bottom: 1px solid var(--gray-02, #dfdfdf);
    padding: 12px;
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
}

.hpp-page .hpp-section.section-05 .pkg-table td.td6 {
    width: 33%;
    text-align: left;
    padding: 12px 16px;
    vertical-align: middle;
}

.hpp-page .hpp-section.section-05 .pkg-table td.td6 .pkg-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
    vertical-align: middle;
}

.hpp-page .hpp-section.section-05 .pkg-table td.td6 .pkg-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.hpp-page .hpp-section.section-05 .pkg-table td:not(.td6) {
    width: 16.75%;
}

.hpp-page .hpp-section.section-05 .pkg-table td:last-child {
    border-right: 0;
}

/* ========== HPP 반응형 (재작성 v1) — 1440 → 1200 → 1024 → 768 → 480 ========== */

@media (max-width: 1440px) {
    .hpp-page .inner { padding: 0 120px; }
    .hpp-page .hpp-section { padding: 160px 120px; }
}

@media (max-width: 1200px) {
    html.hpp-snap .hpp-page .hpp-section,
    .hpp-page .hpp-section {
        height: auto !important;
        min-height: auto;
        flex-shrink: 0;
        align-items: flex-start;
        overflow: visible;
    }
    .hpp-page .inner { padding: 0 60px; }
    .hpp-page .hpp-section { padding: 120px 60px; }
    .hpp-page .hpp-section .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-03 .container,
    .hpp-page .hpp-section.section-04 .container,
    .hpp-page .hpp-section.section-05 .container {
        flex-direction: column !important;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }
    .hpp-page .hpp-section .txt.txt-group,
    .hpp-page .hpp-section .txt-side.p2 {
        order: 1;
        width: 100%;
        max-width: 610px;
        text-align: left;
        align-items: flex-start;
    }
    .hpp-page .hpp-section .content-group,
    .hpp-page .hpp-section .process-img.img,
    .hpp-page .hpp-section .advantage-grid.box-wrap2,
    .hpp-page .hpp-section .apply-grid.box-wrap2,
    .hpp-page .hpp-section .table-responsive.table2 { order: 2; }
    .hpp-page .txt .div .desc-list { text-align: left; }
    .hpp-page .hpp-section.section-01 .content-group {
        width: 100%;
        max-width: 830px;
        height: auto;
        min-height: 0;
    }
    .hpp-page .hpp-section.section-01 .principle-boxes {
        position: relative;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .hpp-page .hpp-section.section-01 .hpp-table-wrap {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin-top: 32px;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-01 .hpp-table {
        width: 100%;
        table-layout: fixed;
    }
    .hpp-page .hpp-section.section-01 .hpp-table th,
    .hpp-page .hpp-section.section-01 .hpp-table td {
        font-size: 15px;
        padding: 14px 6px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .arrow-icon.union { transform: rotate(90deg); }
    .hpp-page .hpp-section.section-02 .process-img.img {
        width: 100%;
        max-width: 830px;
    }
    .hpp-page .advantage-grid.box-wrap2 {
        display: grid !important;
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    .hpp-page .apply-grid.box-wrap2 {
        width: 100%;
        max-width: 830px;
        grid-template-columns: repeat(3, 1fr);
    }
    .hpp-page .hpp-section.section-05 .table2,
    .hpp-page .hpp-section.section-05 .table-responsive.table2 {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-05 .pkg-table {
        width: 100%;
        table-layout: fixed;
    }
    .hpp-page .hpp-section.section-05 .pkg-table th,
    .hpp-page .hpp-section.section-05 .pkg-table td {
        font-size: 15px;
        padding: 14px 6px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .label { font-size: 24px; }
    .hpp-page .title.hpp,
    .hpp-page .hpp-section.section-05 .title.div6 {
        font-size: 40px;
        line-height: 1.3;
    }
}

@media (max-width: 1024px) {
    html.hpp-snap {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
        min-height: 0 !important;
    }
    body.hpp-snap {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
        min-height: 0 !important;
    }
    #main-content {
        overflow: visible !important;
        min-height: 0 !important;
    }
    .hpp-page {
        padding: 100px 0 60px !important;
        min-height: 0 !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .hpp-page > .intro-section { margin-bottom: 0; }
    .hpp-page .intro-section .inner { padding-top: 100px; }
    .hpp-page .inner { padding: 0 40px; }
    .hpp-page .hpp-section {
        padding: 100px 40px;
        min-height: 0 !important;
        height: auto !important;
        flex-shrink: 0 !important;
        overflow: visible;
        align-items: flex-start;
    }
    .hpp-page .hpp-section.last { padding-bottom: 100px !important; }
    .hpp-page .hpp-section .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        overflow: visible;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .hpp-page .hpp-section.section-03 .container,
    .hpp-page .hpp-section.section-04 .container,
    .hpp-page .hpp-section.section-05 .container {
        flex-direction: column !important;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }
    .hpp-page .hpp-section .txt.txt-group,
    .hpp-page .hpp-section .txt-side.p2 { order: 1; }
    .hpp-page .hpp-section .content-group,
    .hpp-page .hpp-section .process-img.img,
    .hpp-page .hpp-section .advantage-grid.box-wrap2,
    .hpp-page .hpp-section .apply-grid.box-wrap2,
    .hpp-page .hpp-section .table-responsive.table2 { order: 2; width: 100%; max-width: 100%; min-width: 0; }
    .hpp-page .hpp-section.section-03 .advantage-grid.box-wrap2,
    .hpp-page .hpp-section.section-04 .apply-grid.box-wrap2,
    .hpp-page .hpp-section.section-05 .table-responsive.table2 {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .hpp-page .txt.txt-group,
    .hpp-page .hpp-section .txt-side.p2 {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }
    .hpp-page .hpp-section .label { font-size: 22px; }
    .hpp-page .hpp-section .title.hpp,
    .hpp-page .hpp-section.section-05 .title.div6 {
        font-size: 36px;
        line-height: 1.3;
    }
    .hpp-page .txt .div .desc-list {
        font-size: 22px;
        line-height: 1.5;
    }
    .hpp-page .hpp-section.section-01 .content-group {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .hpp-page .hpp-section.section-01 .principle-boxes {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    .hpp-page .hpp-section.section-01 .box {
        width: 100%;
        max-width: 280px;
    }
    .hpp-page .hpp-section.section-01 .hpp-table-wrap {
        width: 100%;
        max-width: 100%;
        margin-top: 24px;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-01 .hpp-table {
        width: 100%;
        table-layout: fixed;
    }
    .hpp-page .hpp-section.section-01 .hpp-table th,
    .hpp-page .hpp-section.section-01 .hpp-table td {
        font-size: 13px;
        padding: 12px 5px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-02 .process-img.img {
        max-width: 100%;
        width: 100%;
    }
    .hpp-page .advantage-grid.box-wrap2 {
        display: grid !important;
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    .hpp-page .advantage-grid .adv-box.box2,
    .hpp-page .advantage-grid .adv-box.box3,
    .hpp-page .advantage-grid .adv-box.box4,
    .hpp-page .advantage-grid .adv-box.box5 {
        width: 100%;
        min-width: 0;
    }
    .hpp-page .advantage-grid .div5,
    .hpp-page .advantage-grid ._2 { font-size: 18px; line-height: 1.5; }
    .hpp-page .apply-grid.box-wrap2 {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    .hpp-page .hpp-section.section-05 .table2,
    .hpp-page .hpp-section.section-05 .table-responsive.table2 {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-05 .pkg-table {
        width: 100%;
        table-layout: fixed;
    }
    .hpp-page .hpp-section.section-05 .pkg-table th,
    .hpp-page .hpp-section.section-05 .pkg-table td {
        font-size: 12px;
        padding: 12px 5px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-05 .pkg-table td.td6 .pkg-icon img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hpp-page > .intro-section { margin-bottom: 0; }
    .hpp-page .intro-section .inner {
        padding-top: 80px;
        padding-bottom: 0;
    }
    .hpp-page { padding: 60px 0 0; gap: 0; }
    .hpp-page .inner { padding: 0 20px; }
    .hpp-page .intro-title {
        font-size: 40px;
        line-height: 1.3;
        margin-bottom: 16px;
        text-align: center;
    }
    .hpp-page .intro-eng { font-size: 18px; text-align: center; display: block; }
    .hpp-page .hpp-section { padding: 60px 20px; min-height: auto; }
    .hpp-page .hpp-section.last { padding-bottom: 60px; }
    .hpp-page .hpp-section .container {
        gap: 28px;
        align-items: stretch;
        text-align: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-03 .container,
    .hpp-page .hpp-section.section-04 .container,
    .hpp-page .hpp-section.section-05 .container {
        flex-direction: column !important;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }
    .hpp-page .hpp-section .txt.txt-group,
    .hpp-page .hpp-section .txt-side.p2 {
        text-align: center;
        align-items: center;
        order: 1;
        width: 100%;
        max-width: 100%;
    }
    .hpp-page .hpp-section .txt .div .desc-list { text-align: center; }
    .hpp-page .hpp-section .content-group,
    .hpp-page .hpp-section .process-img.img,
    .hpp-page .hpp-section .advantage-grid.box-wrap2,
    .hpp-page .hpp-section .apply-grid.box-wrap2,
    .hpp-page .hpp-section .table-responsive.table2 {
        order: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .hpp-page .hpp-section .label { font-size: 24px; text-align: center; }
    .hpp-page .title.hpp,
    .hpp-page .hpp-section.section-05 .title.div6 {
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
    }
    .hpp-page .txt .div .desc-list { font-size: 18px; line-height: 1.5; }
    .hpp-page .hpp-section.section-01 .content-group {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .hpp-page .hpp-section.section-01 .principle-boxes {
        position: relative;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: 0;
        margin-bottom: 24px;
    }
    .hpp-page .hpp-section.section-01 .box {
        width: 100%;
        max-width: 320px;
        padding: 20px 18px;
        box-sizing: border-box;
    }
    .hpp-page .hpp-section.section-01 .arrow-icon.union {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    .hpp-page .hpp-section.section-01 .box-title.div2 {
        font-size: 18px;
        line-height: 1.4;
    }
    .hpp-page .hpp-section.section-01 .box-desc._400-600-mpa,
    .hpp-page .hpp-section.section-01 .box-desc.div3 {
        font-size: 15px;
        line-height: 1.5;
        text-align: left;
    }
    .hpp-page .hpp-section.section-01 .hpp-table-wrap {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-01 .hpp-table {
        width: 100%;
        table-layout: fixed;
    }
    .hpp-page .hpp-section.section-01 .hpp-table th {
        font-size: 11px;
        padding: 12px 4px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-01 .hpp-table td {
        font-size: 11px;
        padding: 12px 4px;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-02 .process-img.img {
        max-width: 100%;
        width: 100%;
        border-radius: 24px;
    }
    .hpp-page .advantage-grid.box-wrap2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }
    .hpp-page .advantage-grid .adv-box {
        width: 100%;
        min-width: 0;
        padding: 20px 18px;
        box-sizing: border-box;
    }
    .hpp-page .advantage-grid .adv-box.border-lr,
    .hpp-page .advantage-grid .adv-box.box5.border-t.border-lr {
        border-left: none;
        border-right: none;
    }
    .hpp-page .advantage-grid .div5,
    .hpp-page .advantage-grid ._2 { font-size: 16px; line-height: 1.5; }
    .hpp-page .apply-grid.box-wrap2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    .hpp-page .apply-grid .item {
        padding: 18px 16px;
        font-size: 14px;
        line-height: 1.4;
    }
    .hpp-page .apply-grid .item img { width: 48px; height: 48px; }
    .hpp-page .hpp-section.section-05 .table-responsive.table2 {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-05 .pkg-table {
        width: 100%;
        table-layout: fixed;
    }
    .hpp-page .hpp-section.section-05 .pkg-table th {
        font-size: 11px;
        padding: 12px 4px;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-05 .pkg-table td {
        font-size: 11px;
        padding: 12px 4px;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-05 .pkg-table td.td6 .pkg-icon img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hpp-page > .intro-section { margin-bottom: 0; }
    .hpp-page .intro-section .inner { padding-top: 48px; }
    .hpp-page { padding: 48px 0 0; }
    .hpp-page .inner { padding: 0 16px; }
    .hpp-page .intro-title { font-size: 28px; line-height: 1.25; }
    .hpp-page .intro-eng { font-size: 16px; }
    .hpp-page .hpp-section { padding: 48px 16px; }
    .hpp-page .hpp-section.last { padding-bottom: 48px; }
    .hpp-page .hpp-section .container {
        gap: 22px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-03 .container,
    .hpp-page .hpp-section.section-04 .container,
    .hpp-page .hpp-section.section-05 .container {
        flex-direction: column !important;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }
    .hpp-page .hpp-section .txt.txt-group,
    .hpp-page .hpp-section .txt-side.p2 { order: 1; }
    .hpp-page .hpp-section .content-group,
    .hpp-page .hpp-section .process-img.img,
    .hpp-page .hpp-section .advantage-grid.box-wrap2,
    .hpp-page .hpp-section .apply-grid.box-wrap2,
    .hpp-page .hpp-section .table-responsive.table2 { order: 2; }
    .hpp-page .hpp-section .label { font-size: 20px; }
    .hpp-page .title.hpp,
    .hpp-page .hpp-section.section-05 .title.div6 {
        font-size: 22px;
        line-height: 1.3;
    }
    .hpp-page .txt .div .desc-list { font-size: 16px; line-height: 1.5; }
    .hpp-page .hpp-section.section-01 .principle-boxes { gap: 12px; }
    .hpp-page .hpp-section.section-01 .box {
        max-width: 100%;
        padding: 18px 16px;
    }
    .hpp-page .hpp-section.section-01 .box-title.div2 {
        font-size: 16px;
        line-height: 1.4;
    }
    .hpp-page .hpp-section.section-01 .box-desc._400-600-mpa,
    .hpp-page .hpp-section.section-01 .box-desc.div3 {
        font-size: 14px;
        line-height: 1.5;
    }
    .hpp-page .hpp-section.section-01 .hpp-table-wrap {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-01 .hpp-table {
        width: 100%;
        table-layout: fixed;
    }
    .hpp-page .hpp-section.section-01 .hpp-table th {
        font-size: 10px;
        padding: 10px 3px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-01 .hpp-table td {
        font-size: 10px;
        padding: 10px 3px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-05 .table-responsive.table2 {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .hpp-page .hpp-section.section-05 .pkg-table {
        width: 100%;
        table-layout: fixed;
    }
    .hpp-page .hpp-section.section-05 .pkg-table th,
    .hpp-page .hpp-section.section-05 .pkg-table td {
        font-size: 10px;
        padding: 10px 3px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hpp-page .hpp-section.section-05 .pkg-table td.td6 .pkg-icon img {
        width: 28px;
        height: 28px;
    }
    .hpp-page .apply-grid.box-wrap2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .hpp-page .apply-grid .item {
        font-size: 13px;
        padding: 16px 14px;
    }
    .hpp-page .apply-grid .item img { width: 40px; height: 40px; }
    .hpp-page .advantage-grid .div5,
    .hpp-page .advantage-grid ._2 { font-size: 15px; line-height: 1.5; }
}
