.esgReportWrapper {
    --theme-color: 167,145,95;
    padding: 100px 40px;
    line-height: 30px;
}

.yearWrapper {
    margin-bottom: 60px;
}
.selectWrapper {
    position: relative;
    min-width: 250px;
    height: 60px;
    padding: 10px 40px 10px 30px;
    margin: 0 10px 12px;
    border-radius: 30px;
    border: 1px solid rgba(var(--theme-color), 1);
    font-size: 18px;
    text-align: left;
    cursor: pointer;
}
.selectWrapper:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(var(--theme-color), 1);
    border-bottom: 2px solid rgba(var(--theme-color), 1);
    background: none;
    transform: rotate(45deg);
    position: absolute;
    top: 24px;
    right: 27px;
}
.selectWrapper .label {
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    color: rgba(var(--theme-color), 1);
}
.selectWrapper .dropdown {
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    background-color: #fff;
    z-index: 10;
    padding: 5px 30px 20px;
    border-style: solid;
    border-width: 0 1px 1px;
    border-color: rgba(var(--theme-color), 1);
    border-radius: 0 0 30px 30px;
    max-height: 320px;
    overflow-y: auto;
    display: none;
}
.selectWrapper .dropdown a {
    display: block;
    margin: 4px 0;
    padding: 8px 0;
    transition: 0.3s ease;
}
.selectWrapper .dropdown a.act, .selectWrapper .dropdown a:hover {
    padding: 8px 12px;
    background-color: rgba(var(--theme-color), 0.1);
    color: rgba(var(--theme-color), 1);
}
.selectWrapper.act {
    border-radius: 30px 30px 0 0;
    border-bottom-color: transparent;
}
.selectWrapper.act .dropdown {
    display: block;
}

.esgReport {
    width: min(100%, 1150px);
    margin: 0 auto;
}
.esgReport .item {
    border: 1px solid #dedede;
    padding: 30px;
    margin-bottom: 0;
    display: grid;
    gap: 20px;
}
.esgReport .item:not(:first-child) {
    margin-top: 60px;
}
.esgReport .cover {
    max-width: 250px;
}
.esgReport .cover a {
    display: block;
}
.esgReport .cover.portrait a {
    width: 70%;
    margin: 0 auto;
}
.esgReport .title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
}
.esgReport .file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(var(--theme-color), 1);
}
.esgReport .file:not(:last-child) { margin-bottom: 15px; }
.esgReport .view {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
}
.esgReport .view a { color: rgba(var(--theme-color), 1); margin: 0 0 0 20px; }
.esgReport .icon-download {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/global/icon_download.svg) no-repeat;
    background-size: contain;
}
.esgReport .btn-download.invisible {
    visibility: hidden;
}

@media screen and (min-width: 768px) {
    .esgReportWrapper {
        padding: 100px 80px;
    }

    .yearWrapper {
        width: min(100%, 780px);
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .selectWrapper {
        font-size: 20px;
        padding: 10px 80px 10px 40px;
    }
    .selectWrapper:after {
        width: 12px;
        height: 12px;
        top: 20px;
    }
    .selectWrapper .label {
        font-size: 20px;
    }
    .selectWrapper .dropdown {
        padding: 5px 40px 20px;
    }
    .esgReport .item {
        padding: 50px;
        grid-template-columns: 32% 1fr;
        gap: 0 8%;
    }
    .esgReport .cover {
        max-width: 100%;
    }
    .esgReport .title { font-size: 30px; margin-bottom: 50px; text-align: left; }
    .esgReport .type { font-size: 20px; }
    .esgReport .view a { margin: 0 20px 0 0;}
}
@media screen and (min-width: 1024px) {
    .esgReport {
        padding: 0 30px;
    }
}