.esg34-page {
    /* Page-owned colors retained for this privacy / complaint family. */
    --esg34-lime: #b9cf41;
    --esg34-purple: #744d99;
    --esg34-grid: #52c4c4;
    --esg34-pink-bg: #fbe1ec;
    --esg34-lavender-bg: #dcdaf0;
    --esg34-peach-bg: #fbe4d6;
    --esg34-mint-bg: #dff4ef;
}

.esg34-page .esg34-privacy-list {
    border-top: 2px solid var(--esg34-grid);
}

.esg34-page .esg34-privacy-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 22px 0 26px;
    border-bottom: 2px solid var(--esg34-grid);
}

.esg34-page .esg34-privacy-item .esg34-privacy-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--esg-color-teal);
    color: var(--esg-color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.esg34-page .esg34-privacy-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.85;
    text-indent: 0;
}

.esg34-page .esg34-complaint-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.esg34-page .esg34-complaint-card {
    min-height: 278px;
    padding: 26px 30px;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.esg34-page .esg34-complaint-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    text-indent: 0;
}

.esg34-page .esg34-complaint-card.card-pink {
    background: var(--esg34-pink-bg);
    color: #313131;
}

.esg34-page .esg34-complaint-card.card-lavender {
    background: var(--esg34-lavender-bg);
    color: #313131;
}

.esg34-page .esg34-complaint-card.card-peach {
    background: var(--esg34-peach-bg);
    color: #313131;
}

.esg34-page .esg34-complaint-card.card-mint {
    background: var(--esg34-mint-bg);
    color: #313131;
}

.esg34-page .esg34-arrow {
    width: 0;
    height: 0;
    border-top: 48px solid transparent;
    border-bottom: 48px solid transparent;
    border-left: 30px solid #bfbfbf;
    justify-self: center;
}

.esg34-page .esg34-chart-card {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    max-width: 1080px;
    margin: 0 auto;
}

.esg34-page .esg34-chart-card h4 {
    margin: 0 0 18px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    text-indent: 0;
}

.esg34-page .esg34-bar-chart {
    --esg34-chart-height: 322px;
    --esg34-label-height: 52px;
    position: relative;
    border: none;
    padding: 10px 8px 74px 86px;
    background: transparent;
}

.esg34-page .esg34-y-axis {
    position: absolute;
    top: 10px;
    left: 0;
    height: var(--esg34-chart-height);
    width: 82px;
}

.esg34-page .esg34-y-axis span {
    position: absolute;
    right: 14px;
    transform: translateY(50%);
    font-size: 14px;
    line-height: 1;
}

.esg34-page .esg34-plot {
    position: relative;
}

.esg34-page .esg34-chart-area {
    position: relative;
    height: var(--esg34-chart-height);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.esg34-page .esg34-chart-area .grid-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--esg34-grid);
}

.esg34-page .esg34-bar-group {
    position: relative;
    height: 100%;
    z-index: 1;
}

.esg34-page .esg34-bar-group .bars {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 14px;
}

.esg34-page .esg34-x-axis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.esg34-page .esg34-x-axis p {
    margin: 0;
    min-height: var(--esg34-label-height);
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
    text-indent: 0;
}

.esg34-page .esg34-bar-chart .bar {
    position: relative;
    width: 2.5vw;
    height: var(--h);
    min-height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.esg34-page .esg34-bar-chart .bar span {
    margin-top: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.esg34-page .esg34-bar-chart .bar.y2022 {
    background: var(--esg34-lime);
}

.esg34-page .esg34-bar-chart .bar.y2023 {
    background: var(--esg34-purple);
}

.esg34-page .esg34-bar-chart .bar.y2024 {
    background: var(--esg-color-teal);
}

.esg34-page .esg34-legend {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 34px;
}

.esg34-page .esg34-legend .item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.esg34-page .esg34-legend .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.esg34-page .esg34-legend .dot.y2022 {
    background: var(--esg34-lime);
}

.esg34-page .esg34-legend .dot.y2023 {
    background: var(--esg34-purple);
}

.esg34-page .esg34-legend .dot.y2024 {
    background: var(--esg-color-teal);
}

.esg34-page .esg34-wrap-plain {
    border: none;
}

.esg34-page .esg34-feedback-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.esg34-page .esg34-feedback-table th,
.esg34-page .esg34-feedback-table td {
    border: 2px solid var(--esg34-grid);
    padding: 18px 18px 20px;
    text-indent: 0;
    vertical-align: middle;
}

.esg34-page .esg34-feedback-table th {
    background: var(--esg-color-teal);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.esg34-page .esg34-feedback-table td {
    font-size: 17px;
    line-height: 1.7;
}

.esg34-page .esg34-feedback-table .col-index {
    width: 7%;
    text-align: center;
}

.esg34-page .esg34-feedback-table .col-category {
    width: 19%;
    text-align: center;
}

.esg34-page .esg34-note {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.7;
    text-indent: 0;
}

@media (max-width: 1199px) {
    .esg34-page .esg34-complaint-flow {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .esg34-page .esg34-arrow {
        transform: rotate(90deg);
    }

    .esg34-page .esg34-plot {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 30px;
    }
}

@media (max-width: 768px) {
    .esg34-page .esg34-privacy-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .esg34-page .esg34-privacy-item .esg34-privacy-badge {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .esg34-page .esg34-complaint-card {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .esg34-page .esg34-chart-card h4 {
        font-size: 20px;
    }

    .esg34-page .esg34-bar-chart {
        padding: 10px 6px 68px 56px;
    }

    .esg34-page .esg34-y-axis {
        width: 54px;
    }

    .esg34-page .esg34-y-axis span {
        right: 8px;
        font-size: 14px;
    }

    .esg34-page .esg34-plot {
        min-height: auto;
    }

    .esg34-page .esg34-chart-area,
    .esg34-page .esg34-x-axis {
        grid-template-columns: 1fr;
    }

    .esg34-page .esg34-bar-chart {
        --esg34-chart-height: 270px;
    }

    .esg34-page .esg34-bar-group .bars {
        height: 100%;
        gap: 10px;
    }

    .esg34-page .esg34-bar-chart .bar {
        width: 46px;
    }

    .esg34-page .esg34-bar-chart .bar span {
        font-size: 16px;
    }

    .esg34-page .esg34-x-axis p,
    .esg34-page .esg34-feedback-table td {
        font-size: 15px;
    }

    .esg34-page .esg34-legend {
        gap: 16px;
        bottom: 20px;
    }

    .esg34-page .esg34-legend .item {
        font-size: 14px;
    }

    .esg34-page .esg34-feedback-table th {
        font-size: 16px;
    }
}
