@charset "UTF-8";
/* _default.scss */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.esg-btn-outline, .esg-layer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 1rem;
  border: 1px solid #DDDDDD;
  border-radius: 6.25rem;
  background-color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  width: fit-content;
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .esg-btn-outline, .esg-layer-link {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    line-height: 100%;
    font-weight: 500;
  }
}
@media all and (min-width: 1440px) {
  .esg-btn-outline, .esg-layer-link {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    line-height: 100%;
    font-weight: 500;
  }
}
.esg-btn-outline:hover, .esg-layer-link:hover, .esg-btn-outline:active, .esg-layer-link:active, .esg-btn-outline:focus, .esg-layer-link:focus {
  background-color: #FD312E;
  color: #FFFFFF;
  border-color: transparent;
}
.esg-btn-outline .outlink-icon, .esg-layer-link .outlink-icon {
  display: inline-block;
  width: 0.875rem;
  margin-inline-start: 0.5rem;
  background-image: url("/kr/sustainability/2025/common/images/sustainability-2025-assets-common-ico-outlink.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1/1;
  transition: filter 0.3s ease;
}
.esg-btn-outline:hover .outlink-icon, .esg-layer-link:hover .outlink-icon, .esg-btn-outline:active .outlink-icon, .esg-layer-link:active .outlink-icon, .esg-btn-outline:focus .outlink-icon, .esg-layer-link:focus .outlink-icon {
  filter: brightness(0) invert(1);
}

.esg-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  margin-block-start: 1rem;
}
@media all and (min-width: 1440px) {
  .esg-slider-controls {
    margin-block-start: unset;
    gap: 1.25rem;
  }
}
.esg-slider-controls .esg-slider-prev,
.esg-slider-controls .esg-slider-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 2rem;
  padding: 0;
  border: 0.0625rem solid #DEE1E5;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s, border-color 0.3s;
}
@media all and (min-width: 1440px) {
  .esg-slider-controls .esg-slider-prev,
  .esg-slider-controls .esg-slider-next {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.36), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    border: 0;
  }
}
.esg-slider-controls .esg-slider-prev::after,
.esg-slider-controls .esg-slider-next::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/kr/sustainability/2025/common/images/sustainability-2025-assets-common-ico-nav.svg");
}
.esg-slider-controls .esg-slider-prev::after {
  transform: rotate(180deg);
}
.esg-slider-controls .esg-slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  pointer-events: none;
}
@media all and (min-width: 1440px) {
  .esg-slider-controls .esg-slider-pagination {
    display: none;
  }
}
.esg-slider-controls .esg-slider-pagination .separator {
  width: 0.0625rem;
  height: 0.625rem;
  background-color: rgba(100, 100, 100, 0.4);
  margin-inline: 0.5rem;
}
.esg-slider-controls .esg-slider-pagination .swiper-pagination-current {
  font-size: 0.8125rem;
  line-height: 1.3846;
  font-weight: 600;
  min-width: 0.5rem;
}
.esg-slider-controls .esg-slider-pagination .swiper-pagination-total {
  font-size: 0.8125rem;
  line-height: 1.3846;
  font-weight: 400;
  color: #646464;
  min-width: 0.5rem;
}
.esg-slider-controls .esg-slider-pagination.swiper-pagination-fraction {
  position: static;
  width: auto;
  gap: 0.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

body,
html {
  overflow-x: clip;
}

.sustainability-container {
  width: 100%;
  margin: 0 auto;
  background-color: #FFFFFF;
  overflow-x: clip;
}
.sustainability-container .swiper-wrapper {
  height: auto;
}
.sustainability-container .inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media all and (min-width: 1440px) {
  .sustainability-container .inner {
    padding: 0;
  }
}
.sustainability-container * {
  scrollbar-width: auto;
  word-break: break-all;
}
.sustainability-container *::-webkit-scrollbar {
  background: rgba(0, 0, 0, 0.08); /* 스크롤바 뒷 배경 색상 */
  width: 0.1875rem;
  height: 0.1875rem;
}
.sustainability-container *::-webkit-scrollbar-thumb {
  background: #111111; /* 스크롤바 막대 색상 */
}
.sustainability-container .esg-section sup {
  top: 0;
}
.sustainability-container .esg-section > section + section {
  margin-block-start: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.sustainability-container .esg-section.component-keyvisual {
  padding-block: 0;
}

[class*=component-] {
  --xxl-fs: 26;
  --xxl-lh: 38;
  --xxl-ls: -0.0192;
  --xl-fs: 17;
  --xl-lh: 24;
  --xl-ls: -0.0176;
  --lg-fs: 17;
  --lg-lh: 24;
  --lg-ls: -0.0176;
  --md-fs: 17;
  --md-lh: 24;
  --md-ls: -0.0176;
  --sm-fs: 16;
  --sm-lh: 22;
  --sm-ls: -0.0125;
  --xs-fs: 15;
  --xs-lh: 20;
  --xxs-fs: 13;
  --xxs-lh: 18;
  --border-radius: 12;
  --black-color: #000000;
  --default-color: #111111;
  --body-color: #444444;
  --gray-color: #646464;
  --light-gray-color: #727780;
  --invert-color: #fff;
  --fw-bold: 600;
  --fw-bold-white: 450;
  --fw-normal: 400;
  --fw-normal-white: 300;
}
@media all and (min-width: 768px) {
  [class*=component-] {
    --xxl-fs: 29;
    --xxl-lh: 41;
    --xxl-ls: -0.0174;
    --xl-fs: 21;
    --xl-lh: 28;
    --xl-ls: -0.0192;
    --lg-fs: 20;
    --lg-lh: 27;
    --lg-ls: -0.02;
    --md-fs: 19;
    --md-lh: 26;
    --md-ls: -0.011;
    --sm-fs: 16;
    --sm-lh: 22;
    --sm-ls: -0.0125;
    --xs-fs: 15;
    --xs-lh: 20;
    --xxs-fs: 13;
    --xxs-lh: 18;
    --border-radius: 16;
  }
}
@media all and (min-width: 1440px) {
  [class*=component-] {
    --xxl-fs: 32;
    --xxl-lh: 44;
    --xxl-ls: -0.0156;
    --xl-fs: 24;
    --xl-lh: 32;
    --xl-ls: -0.0208;
    --lg-fs: 22;
    --lg-lh: 30;
    --lg-ls: -0.0227;
    --md-fs: 20;
    --md-lh: 28;
    --md-ls: -0.004;
    --sm-fs: 16;
    --sm-lh: 22;
    --sm-ls: -0.0125;
    --xs-fs: 14;
    --xs-lh: 20;
    --xxs-fs: 13;
    --xxs-lh: 18;
    --border-radius: 16;
  }
}
[class*=component-] sup {
  position: relative;
  font-size: 60%;
}

[class*=cmp-] {
  --xxl-fs: 26;
  --xxl-lh: 38;
  --xxl-ls: -0.0192;
  --xl-fs: 17;
  --xl-lh: 24;
  --xl-ls: -0.0176;
  --lg-fs: 17;
  --lg-lh: 24;
  --lg-ls: -0.0176;
  --md-fs: 17;
  --md-lh: 24;
  --md-ls: -0.0176;
  --sm-fs: 16;
  --sm-lh: 22;
  --sm-ls: -0.0125;
  --xs-fs: 15;
  --xs-lh: 20;
  --xxs-fs: 13;
  --xxs-lh: 18;
  --border-radius: 12;
  --black-color: #000000;
  --default-color: #111111;
  --body-color: #444444;
  --gray-color: #646464;
  --light-gray-color: #727780;
  --invert-color: #fff;
  --fw-bold: 600;
  --fw-bold-white: 450;
  --fw-normal: 400;
  --fw-normal-white: 300;
}
@media all and (min-width: 768px) {
  [class*=cmp-] {
    --xxl-fs: 29;
    --xxl-lh: 41;
    --xxl-ls: -0.0174;
    --xl-fs: 21;
    --xl-lh: 28;
    --xl-ls: -0.0192;
    --lg-fs: 20;
    --lg-lh: 27;
    --lg-ls: -0.02;
    --md-fs: 19;
    --md-lh: 26;
    --md-ls: -0.011;
    --sm-fs: 16;
    --sm-lh: 22;
    --sm-ls: -0.0125;
    --xs-fs: 15;
    --xs-lh: 20;
    --xxs-fs: 13;
    --xxs-lh: 18;
    --border-radius: 16;
  }
}
@media all and (min-width: 1440px) {
  [class*=cmp-] {
    --xxl-fs: 32;
    --xxl-lh: 44;
    --xxl-ls: -0.0156;
    --xl-fs: 24;
    --xl-lh: 32;
    --xl-ls: -0.0208;
    --lg-fs: 22;
    --lg-lh: 30;
    --lg-ls: -0.0227;
    --md-fs: 20;
    --md-lh: 28;
    --md-ls: -0.004;
    --sm-fs: 16;
    --sm-lh: 22;
    --sm-ls: -0.0125;
    --xs-fs: 14;
    --xs-lh: 20;
    --xxs-fs: 13;
    --xxs-lh: 18;
    --border-radius: 16;
  }
}
[class*=cmp-] sup {
  position: relative;
  font-size: 60%;
}

.only-pc {
  display: none;
}
.only-tab {
  display: none;
}
.only-mo {
  display: block;
}
@media all and (min-width: 768px) {
  .only-mo {
    display: none;
  }
  .only-tab {
    display: block;
  }
  .only-pc {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .only-pc {
    display: block;
  }
  .only-tab {
    display: none;
  }
  .only-mo {
    display: none;
  }
}

.hidden-mo {
  display: none;
}
@media all and (min-width: 768px) {
  .hidden-mo {
    display: block;
  }
}
.hidden-ta {
  display: block;
}
@media all and (min-width: 768px) {
  .hidden-ta {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .hidden-ta {
    display: block;
  }
}
.hidden-pc {
  display: block;
}
@media all and (min-width: 1440px) {
  .hidden-pc {
    display: none;
  }
}

.esg-section {
  --esg-color-black: #000000;
  --esg-color-active-red: #FD312E;
  --esg-color-teal: #007798;
  --esg-color-brown: #A46026;
  --esg-color-text-01-basic: #111111;
  --esg-color-text-02-medium: #444444;
  --esg-color-text-03-light: #777777;
  --esg-color-body-01-line: #EBEBF0;
  --esg-color-body-02-divider: #F3F1F7;
  --esg-color-body-03-bg: #F9F9F7;
  --esg-color-box-01-bg---tinted-red: #F0F2F3;
  --esg-color-box-02-bg---tinted-gray: #F3F1F7;
  --esg-color-box-03-stroke---tinted-gray: #DDE1E5;
  --esg-color-g01: #0B0000;
  --esg-color-g02: #111111;
  --esg-color-g03: #555555;
  --esg-color-g04: #777777;
  --esg-color-g05: #8F8F8F;
  --esg-color-g06: #AAAAAA;
  --esg-color-g07: #BBBBBB;
  --esg-color-g08: #CCCCCC;
  --esg-color-g09: #DDDDDD;
  --esg-color-g10: #EEEEEE;
  --esg-color-g11: #F4F4F4;
  --esg-color-g12: #FAFAFA;
  --esg-color-g13: #FFFFFF;
  --esg-color-n01: #101722;
  --esg-color-n02: #212731;
  --esg-color-n03: #43474D;
  --esg-color-n04: #727780;
  --esg-color-n05: #DF9198;
  --esg-color-n06: #A5A8B1;
  --esg-color-n07: #BAC1C7;
  --esg-color-n08: #CBD0D5;
  --esg-color-n09: #DDE1E5;
  --esg-color-n10: #EFF0F2;
  --esg-color-n11: #F3F5F7;
  --esg-color-n12: #F9FAFB;
  --esg-color-2nd-red: #FF5C30;
  --esg-color-error: #FF371A;
  --esg-color-success: #0BA83A;
  --esg-color-ai-gradient: linear-gradient(90deg, #F2313E 0%, #FF145B 33%, #E232F9 66%, #8227FF 100%);
  --esg-color-primary-text-01: #646464;
  --esg-color-esg-lg-green-light: #C8E4C9;
  --esg-color-esg-lg-green: #60984D;
  --esg-color-esg-lg-green-dark: #04563F;
  --esg-color-esg-lg-teal-light: #BFF3EA;
  --esg-color-esg-lg-teal: #7CCCBF;
  --esg-color-esg-lg-teal-dark: #48A2A8;
  --esg-color-esg-lg-yellow-light: #FFF2AF;
  --esg-color-esg-lg-yellow: #F4DC00;
  --esg-color-esg-lg-yellow-dark: #E2BA2C;
  --esg-color-esg-lg-orange-light: #FFBB83;
  --esg-color-esg-lg-orange: #F49045;
  --esg-color-esg-lg-orange-dark: #C35C11;
  --esg-color-esg-lg-lilac-light: #D6C1FA;
  --esg-color-esg-lg-lilac: #B58CE8;
  --esg-color-esg-lg-lilac-dark: #70369B;
  --esg-color-esg-lg-purple-light: #E5BFEC;
  --esg-color-esg-lg-purple: #98329F;
  --esg-color-esg-lg-purple-dark: #681F69;
  --esg-spacing-4xl: 56;
  --esg-spacing-3xl: 56;
  --esg-spacing-2xl: 24;
  --esg-spacing-xl: 20;
  --esg-spacing-l: 16;
  --esg-spacing-m: 12;
  --esg-spacing-s: 8;
  --esg-spacing-xs: 4;
  --esg-font-heading-1-fs: 26;
  --esg-font-heading-1-lh: 38;
  --esg-font-heading-1-fw: 600;
  --esg-font-heading-1-ls: -0.5px;
  --esg-font-heading-2-fs: 24;
  --esg-font-heading-2-lh: 32;
  --esg-font-heading-2-fw: 600;
  --esg-font-heading-2-ls: -0.5px;
  --esg-font-heading-3-fs: 20;
  --esg-font-heading-3-lh: 28;
  --esg-font-heading-3-fw: 600;
  --esg-font-heading-3-ls: -0.4px;
  --esg-font-heading-4-fs: 20;
  --esg-font-heading-4-lh: 28;
  --esg-font-heading-4-fw: 600;
  --esg-font-heading-4-ls: -0.4px;
  --esg-font-heading-5-fs: 17;
  --esg-font-heading-5-lh: 24;
  --esg-font-heading-5-fw: 600;
  --esg-font-heading-5-ls: -0.3px;
  --esg-font-heading-6-fs: 15;
  --esg-font-heading-6-lh: 20;
  --esg-font-heading-6-fw: 600;
  --esg-font-heading-6-ls: -0.2px;
  --esg-font-heading-7-fs: 15;
  --esg-font-heading-7-lh: 20;
  --esg-font-heading-7-fw: 600;
  --esg-font-heading-7-ls: -0.2px;
  --esg-font-body-1-fs: 15;
  --esg-font-body-1-lh: 20;
  --esg-font-body-1-ls: -0.2px;
  --esg-font-body-2-fs: 15;
  --esg-font-body-2-lh: 20;
  --esg-font-body-2-ls: -0.2px;
  --esg-font-body-3-fs: 15;
  --esg-font-body-3-lh: 20;
  --esg-font-body-3-ls: -0.2px;
  --esg-font-eyebrow-l-fs: 15;
  --esg-font-eyebrow-l-lh: 20;
  --esg-font-eyebrow-l-ls: -0.2px;
  --esg-font-eyebrow-l-fw: 600;
  --esg-font-eyebrow-s-fs: 13;
  --esg-font-eyebrow-s-lh: 18;
  --esg-font-eyebrow-s-ls: 0px;
  --esg-font-disclaimer-fs: 13;
  --esg-font-disclaimer-lh: 18;
  --esg-font-disclaimer-cl: #777777;
  --esg-font-disclaimer-ls: 0px;
  --esg-font-table-th-fs: 15;
  --esg-font-table-th-lh: 20;
  --esg-font-table-th-ls: -0.2px;
  --esg-font-table-td-fs: 15;
  --esg-font-table-td-lh: 20;
  --esg-font-table-td-ls: -0.2px;
  --esg-radius-round: 12;
}
@media all and (min-width: 768px) {
  .esg-section {
    --esg-spacing-4xl: 80;
    --esg-spacing-3xl: 64;
    --esg-spacing-2xl: 32;
    --esg-spacing-xl: 24;
    --esg-spacing-l: 16;
    --esg-spacing-m: 12;
    --esg-spacing-s: 8;
    --esg-spacing-xs: 6;
    --esg-font-heading-1-fs: 28;
    --esg-font-heading-1-lh: 40;
    --esg-font-heading-2-fs: 26;
    --esg-font-heading-2-lh: 34;
    --esg-font-heading-3-fs: 22;
    --esg-font-heading-3-lh: 30;
    --esg-font-heading-4-fs: 20;
    --esg-font-heading-4-lh: 30;
    --esg-font-heading-5-fs: 18;
    --esg-font-heading-5-lh: 26;
    --esg-font-heading-6-fs: 17;
    --esg-font-heading-6-lh: 24;
    --esg-font-heading-7-fs: 17;
    --esg-font-heading-7-lh: 24;
    --esg-font-body-1-fs: 16;
    --esg-font-body-1-lh: 21;
    --esg-font-eyebrow-l-fs: 14;
    --esg-font-eyebrow-l-lh: 20;
    --esg-font-eyebrow-s-fs: 13;
    --esg-font-eyebrow-s-lh: 18;
    --esg-font-disclaimer-fs: 13;
    --esg-font-disclaimer-lh: 18;
    --esg-font-table-th-fs: 16;
    --esg-font-table-th-lh: 22;
    --esg-font-table-td-fs: 16;
    --esg-font-table-td-lh: 22;
  }
}
@media all and (min-width: 1440px) {
  .esg-section {
    --esg-spacing-4xl: 120;
    --esg-spacing-3xl: 80;
    --esg-spacing-2xl: 40;
    --esg-spacing-xl: 24;
    --esg-spacing-l: 20;
    --esg-spacing-m: 12;
    --esg-spacing-s: 8;
    --esg-spacing-xs: 8;
    --esg-font-heading-1-fs: 32;
    --esg-font-heading-1-lh: 44;
    --esg-font-heading-2-fs: 28;
    --esg-font-heading-2-lh: 38;
    --esg-font-heading-3-fs: 24;
    --esg-font-heading-3-lh: 32;
    --esg-font-heading-3-ls: -0.5px;
    --esg-font-heading-4-fs: 22;
    --esg-font-heading-4-lh: 32;
    --esg-font-heading-4-ls: -0.5px;
    --esg-font-heading-5-fs: 22;
    --esg-font-heading-5-lh: 30;
    --esg-font-heading-5-ls: -0.4px;
    --esg-font-heading-6-fs: 20;
    --esg-font-heading-6-lh: 28;
    --esg-font-heading-6-ls: -0.4px;
    --esg-font-heading-7-fs: 20;
    --esg-font-heading-7-lh: 28;
    --esg-font-heading-7-ls: -0.4px;
    --esg-font-body-1-fs: 17;
    --esg-font-body-1-lh: 22;
    --esg-font-eyebrow-l-fs: 14;
    --esg-font-eyebrow-l-lh: 20;
    --esg-font-eyebrow-l-ls: 0;
    --esg-font-eyebrow-s-fs: 13;
    --esg-font-eyebrow-s-lh: 18;
    --esg-font-disclaimer-fs: 13;
    --esg-font-disclaimer-lh: 18;
    --esg-font-table-th-fs: 16;
    --esg-font-table-th-lh: 22;
    --esg-font-table-td-fs: 16;
    --esg-font-table-td-lh: 22;
    --esg-radius-round: 16;
  }
}
.esg-section {
  padding-block: calc(var(--esg-spacing-3xl) / 16 * 1rem);
  background-color: #FFFFFF;
}
.esg-section:not(:has(~ .esg-section)) {
  padding-block-end: calc(var(--esg-spacing-4xl) / 16 * 1rem);
}
.esg-section.component-keyvisual {
  padding-block: 0;
}
.esg-section.esg-bg-secondary {
  background-color: #F4F4F4;
}
.esg-section.no-padding-top {
  padding-block-start: 0;
}
.esg-section.no-padding-bottom {
  padding-block-end: 0;
}
.esg-section sup {
  font-size: 60%;
  vertical-align: super;
}
.esg-section.margin-4xl,
.esg-section .margin-4xl {
  margin-block: calc(var(--esg-spacing-4xl) * 0.0625rem);
}
.esg-section.padding-4xl,
.esg-section .padding-4xl {
  padding-block: calc(var(--esg-spacing-4xl) * 0.0625rem);
}
.esg-section.margin-4xl-top,
.esg-section .margin-4xl-top {
  margin-top: calc(var(--esg-spacing-4xl) * 0.0625rem);
}
.esg-section.padding-4xl-top,
.esg-section .padding-4xl-top {
  padding-top: calc(var(--esg-spacing-4xl) * 0.0625rem);
}
.esg-section.margin-4xl-bottom,
.esg-section .margin-4xl-bottom {
  margin-bottom: calc(var(--esg-spacing-4xl) * 0.0625rem);
}
.esg-section.padding-4xl-bottom,
.esg-section .padding-4xl-bottom {
  padding-bottom: calc(var(--esg-spacing-4xl) * 0.0625rem);
}
.esg-section.margin-3xl,
.esg-section .margin-3xl {
  margin-block: calc(var(--esg-spacing-3xl) * 0.0625rem);
}
.esg-section.padding-3xl,
.esg-section .padding-3xl {
  padding-block: calc(var(--esg-spacing-3xl) * 0.0625rem);
}
.esg-section.margin-3xl-top,
.esg-section .margin-3xl-top {
  margin-top: calc(var(--esg-spacing-3xl) * 0.0625rem);
}
.esg-section.padding-3xl-top,
.esg-section .padding-3xl-top {
  padding-top: calc(var(--esg-spacing-3xl) * 0.0625rem);
}
.esg-section.margin-3xl-bottom,
.esg-section .margin-3xl-bottom {
  margin-bottom: calc(var(--esg-spacing-3xl) * 0.0625rem);
}
.esg-section.padding-3xl-bottom,
.esg-section .padding-3xl-bottom {
  padding-bottom: calc(var(--esg-spacing-3xl) * 0.0625rem);
}
.esg-section.margin-2xl,
.esg-section .margin-2xl {
  margin-block: calc(var(--esg-spacing-2xl) * 0.0625rem);
}
.esg-section.padding-2xl,
.esg-section .padding-2xl {
  padding-block: calc(var(--esg-spacing-2xl) * 0.0625rem);
}
.esg-section.margin-2xl-top,
.esg-section .margin-2xl-top {
  margin-top: calc(var(--esg-spacing-2xl) * 0.0625rem);
}
.esg-section.padding-2xl-top,
.esg-section .padding-2xl-top {
  padding-top: calc(var(--esg-spacing-2xl) * 0.0625rem);
}
.esg-section.margin-2xl-bottom,
.esg-section .margin-2xl-bottom {
  margin-bottom: calc(var(--esg-spacing-2xl) * 0.0625rem);
}
.esg-section.padding-2xl-bottom,
.esg-section .padding-2xl-bottom {
  padding-bottom: calc(var(--esg-spacing-2xl) * 0.0625rem);
}
.esg-section.margin-xl,
.esg-section .margin-xl {
  margin-block: calc(var(--esg-spacing-xl) * 0.0625rem);
}
.esg-section.padding-xl,
.esg-section .padding-xl {
  padding-block: calc(var(--esg-spacing-xl) * 0.0625rem);
}
.esg-section.margin-xl-top,
.esg-section .margin-xl-top {
  margin-top: calc(var(--esg-spacing-xl) * 0.0625rem);
}
.esg-section.padding-xl-top,
.esg-section .padding-xl-top {
  padding-top: calc(var(--esg-spacing-xl) * 0.0625rem);
}
.esg-section.margin-xl-bottom,
.esg-section .margin-xl-bottom {
  margin-bottom: calc(var(--esg-spacing-xl) * 0.0625rem);
}
.esg-section.padding-xl-bottom,
.esg-section .padding-xl-bottom {
  padding-bottom: calc(var(--esg-spacing-xl) * 0.0625rem);
}
.esg-section.margin-l,
.esg-section .margin-l {
  margin-block: calc(var(--esg-spacing-l) * 0.0625rem);
}
.esg-section.padding-l,
.esg-section .padding-l {
  padding-block: calc(var(--esg-spacing-l) * 0.0625rem);
}
.esg-section.margin-l-top,
.esg-section .margin-l-top {
  margin-top: calc(var(--esg-spacing-l) * 0.0625rem);
}
.esg-section.padding-l-top,
.esg-section .padding-l-top {
  padding-top: calc(var(--esg-spacing-l) * 0.0625rem);
}
.esg-section.margin-l-bottom,
.esg-section .margin-l-bottom {
  margin-bottom: calc(var(--esg-spacing-l) * 0.0625rem);
}
.esg-section.padding-l-bottom,
.esg-section .padding-l-bottom {
  padding-bottom: calc(var(--esg-spacing-l) * 0.0625rem);
}
.esg-section.margin-m,
.esg-section .margin-m {
  margin-block: calc(var(--esg-spacing-m) * 0.0625rem);
}
.esg-section.padding-m,
.esg-section .padding-m {
  padding-block: calc(var(--esg-spacing-m) * 0.0625rem);
}
.esg-section.margin-m-top,
.esg-section .margin-m-top {
  margin-top: calc(var(--esg-spacing-m) * 0.0625rem);
}
.esg-section.padding-m-top,
.esg-section .padding-m-top {
  padding-top: calc(var(--esg-spacing-m) * 0.0625rem);
}
.esg-section.margin-m-bottom,
.esg-section .margin-m-bottom {
  margin-bottom: calc(var(--esg-spacing-m) * 0.0625rem);
}
.esg-section.padding-m-bottom,
.esg-section .padding-m-bottom {
  padding-bottom: calc(var(--esg-spacing-m) * 0.0625rem);
}
.esg-section.margin-s,
.esg-section .margin-s {
  margin-block: calc(var(--esg-spacing-s) * 0.0625rem);
}
.esg-section.padding-s,
.esg-section .padding-s {
  padding-block: calc(var(--esg-spacing-s) * 0.0625rem);
}
.esg-section.margin-s-top,
.esg-section .margin-s-top {
  margin-top: calc(var(--esg-spacing-s) * 0.0625rem);
}
.esg-section.padding-s-top,
.esg-section .padding-s-top {
  padding-top: calc(var(--esg-spacing-s) * 0.0625rem);
}
.esg-section.margin-s-bottom,
.esg-section .margin-s-bottom {
  margin-bottom: calc(var(--esg-spacing-s) * 0.0625rem);
}
.esg-section.padding-s-bottom,
.esg-section .padding-s-bottom {
  padding-bottom: calc(var(--esg-spacing-s) * 0.0625rem);
}
.esg-section.margin-xs,
.esg-section .margin-xs {
  margin-block: calc(var(--esg-spacing-xs) * 0.0625rem);
}
.esg-section.padding-xs,
.esg-section .padding-xs {
  padding-block: calc(var(--esg-spacing-xs) * 0.0625rem);
}
.esg-section.margin-xs-top,
.esg-section .margin-xs-top {
  margin-top: calc(var(--esg-spacing-xs) * 0.0625rem);
}
.esg-section.padding-xs-top,
.esg-section .padding-xs-top {
  padding-top: calc(var(--esg-spacing-xs) * 0.0625rem);
}
.esg-section.margin-xs-bottom,
.esg-section .margin-xs-bottom {
  margin-bottom: calc(var(--esg-spacing-xs) * 0.0625rem);
}
.esg-section.padding-xs-bottom,
.esg-section .padding-xs-bottom {
  padding-bottom: calc(var(--esg-spacing-xs) * 0.0625rem);
}
.esg-section .font-heading-1 {
  font-size: calc(var(--esg-font-heading-1-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-heading-1-lh) * 0.0625rem);
  font-weight: var(--esg-font-heading-1-fw, 400);
  color: var(--esg-font-heading-1-cl, #111111);
  letter-spacing: calc(var(--esg-font-heading-1-ls, 0) * 1em);
}
.esg-section .font-heading-2 {
  font-size: calc(var(--esg-font-heading-2-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-heading-2-lh) * 0.0625rem);
  font-weight: var(--esg-font-heading-2-fw, 400);
  color: var(--esg-font-heading-2-cl, #111111);
  letter-spacing: calc(var(--esg-font-heading-2-ls, 0) * 1em);
}
.esg-section .font-heading-3 {
  font-size: calc(var(--esg-font-heading-3-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-heading-3-lh) * 0.0625rem);
  font-weight: var(--esg-font-heading-3-fw, 400);
  color: var(--esg-font-heading-3-cl, #111111);
  letter-spacing: calc(var(--esg-font-heading-3-ls, 0) * 1em);
}
.esg-section .font-heading-4 {
  font-size: calc(var(--esg-font-heading-4-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-heading-4-lh) * 0.0625rem);
  font-weight: var(--esg-font-heading-4-fw, 400);
  color: var(--esg-font-heading-4-cl, #111111);
  letter-spacing: calc(var(--esg-font-heading-4-ls, 0) * 1em);
}
.esg-section .font-heading-5 {
  font-size: calc(var(--esg-font-heading-5-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-heading-5-lh) * 0.0625rem);
  font-weight: var(--esg-font-heading-5-fw, 400);
  color: var(--esg-font-heading-5-cl, #111111);
  letter-spacing: calc(var(--esg-font-heading-5-ls, 0) * 1em);
}
.esg-section .font-heading-6 {
  font-size: calc(var(--esg-font-heading-6-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-heading-6-lh) * 0.0625rem);
  font-weight: var(--esg-font-heading-6-fw, 400);
  color: var(--esg-font-heading-6-cl, #111111);
  letter-spacing: calc(var(--esg-font-heading-6-ls, 0) * 1em);
}
.esg-section .font-heading-7 {
  font-size: calc(var(--esg-font-heading-7-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-heading-7-lh) * 0.0625rem);
  font-weight: var(--esg-font-heading-7-fw, 400);
  color: var(--esg-font-heading-7-cl, #111111);
  letter-spacing: calc(var(--esg-font-heading-7-ls, 0) * 1em);
}
.esg-section .font-body-1 {
  font-size: calc(var(--esg-font-body-1-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-body-1-lh) * 0.0625rem);
  font-weight: var(--esg-font-body-1-fw, 400);
  color: var(--esg-font-body-1-cl, #111111);
  letter-spacing: calc(var(--esg-font-body-1-ls, 0) * 1em);
}
.esg-section .font-body-2 {
  font-size: calc(var(--esg-font-body-2-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-body-2-lh) * 0.0625rem);
  font-weight: var(--esg-font-body-2-fw, 400);
  color: var(--esg-font-body-2-cl, #111111);
  letter-spacing: calc(var(--esg-font-body-2-ls, 0) * 1em);
}
.esg-section .font-body-3 {
  font-size: calc(var(--esg-font-body-3-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-body-3-lh) * 0.0625rem);
  font-weight: var(--esg-font-body-3-fw, 400);
  color: var(--esg-font-body-3-cl, #111111);
  letter-spacing: calc(var(--esg-font-body-3-ls, 0) * 1em);
}
.esg-section .font-eyebrow-l {
  font-size: calc(var(--esg-font-eyebrow-l-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-eyebrow-l-lh) * 0.0625rem);
  font-weight: var(--esg-font-eyebrow-l-fw, 400);
  color: var(--esg-font-eyebrow-l-cl, #111111);
  letter-spacing: calc(var(--esg-font-eyebrow-l-ls, 0) * 1em);
}
.esg-section .font-eyebrow-s {
  font-size: calc(var(--esg-font-eyebrow-s-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-eyebrow-s-lh) * 0.0625rem);
  font-weight: var(--esg-font-eyebrow-s-fw, 400);
  color: var(--esg-font-eyebrow-s-cl, #111111);
  letter-spacing: calc(var(--esg-font-eyebrow-s-ls, 0) * 1em);
}
.esg-section .font-disclaimer-fs {
  font-size: calc(var(--esg-font-disclaimer-fs-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-disclaimer-fs-lh) * 0.0625rem);
  font-weight: var(--esg-font-disclaimer-fs-fw, 400);
  color: var(--esg-font-disclaimer-fs-cl, #111111);
  letter-spacing: calc(var(--esg-font-disclaimer-fs-ls, 0) * 1em);
}
.esg-section .font-disclaimer-lh {
  font-size: calc(var(--esg-font-disclaimer-lh-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-disclaimer-lh-lh) * 0.0625rem);
  font-weight: var(--esg-font-disclaimer-lh-fw, 400);
  color: var(--esg-font-disclaimer-lh-cl, #111111);
  letter-spacing: calc(var(--esg-font-disclaimer-lh-ls, 0) * 1em);
}
.esg-section .font-disclaimer-cl {
  font-size: calc(var(--esg-font-disclaimer-cl-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-disclaimer-cl-lh) * 0.0625rem);
  font-weight: var(--esg-font-disclaimer-cl-fw, 400);
  color: var(--esg-font-disclaimer-cl-cl, #111111);
  letter-spacing: calc(var(--esg-font-disclaimer-cl-ls, 0) * 1em);
}
.esg-section .font-disclaimer-ls {
  font-size: calc(var(--esg-font-disclaimer-ls-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-disclaimer-ls-lh) * 0.0625rem);
  font-weight: var(--esg-font-disclaimer-ls-fw, 400);
  color: var(--esg-font-disclaimer-ls-cl, #111111);
  letter-spacing: calc(var(--esg-font-disclaimer-ls-ls, 0) * 1em);
}
.esg-section .font-table-th {
  font-size: calc(var(--esg-font-table-th-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-table-th-lh) * 0.0625rem);
  font-weight: var(--esg-font-table-th-fw, 400);
  color: var(--esg-font-table-th-cl, #111111);
  letter-spacing: calc(var(--esg-font-table-th-ls, 0) * 1em);
}
.esg-section .font-table-td {
  font-size: calc(var(--esg-font-table-td-fs) * 0.0625rem);
  line-height: calc(var(--esg-font-table-td-lh) * 0.0625rem);
  font-weight: var(--esg-font-table-td-fw, 400);
  color: var(--esg-font-table-td-cl, #111111);
  letter-spacing: calc(var(--esg-font-table-td-ls, 0) * 1em);
}

.component-anchor + .esg-section,
.pin-spacer + .esg-section,
.sustainability-keyvisual + .esg-section {
  padding-block-start: calc(var(--esg-spacing-4xl) / 16 * 1rem);
}

.esg-title-main {
  font-size: calc(var(--esg-font-heading-1-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-1-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-1-fw);
  letter-spacing: var(--esg-font-heading-1-ls);
  color: #111111;
}
.esg-title-lead {
  font-size: calc(var(--esg-font-heading-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-3-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-3-fw);
  letter-spacing: var(--esg-font-heading-3-ls);
  color: #111111;
}
.esg-title-desc {
  font-size: calc(var(--esg-font-body-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-2-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-2-ls);
  color: #444444;
}
.esg-title-sub {
  font-size: calc(var(--esg-font-heading-4-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-4-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-4-fw);
  letter-spacing: var(--esg-font-heading-4-ls);
  color: #111111;
}
.esg-topic {
  font-size: calc(var(--esg-font-heading-5-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-5-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-5-fw);
  letter-spacing: var(--esg-font-heading-5-ls);
  color: #111111;
}
.esg-desc {
  font-size: calc(var(--esg-font-body-1-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-1-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-1-ls);
  color: #444444;
}
.esg-body-l {
  font-size: calc(var(--esg-font-body-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-2-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-2-ls);
  color: #444444;
}
.esg-body-s {
  font-size: calc(var(--esg-font-body-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-3-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-3-ls);
  color: #444444;
}
.esg-eyebrow-l {
  font-size: calc(var(--esg-font-eyebrow-l-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-eyebrow-l-lh) / 16 * 1rem);
  font-weight: var(--esg-font-eyebrow-l-fw);
  letter-spacing: var(--esg-font-eyebrow-l-ls);
}
.esg-eyebrow-s {
  font-size: calc(var(--esg-font-eyebrow-s-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-eyebrow-s-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-eyebrow-s-ls);
}
.esg-disclaimer {
  font-size: calc(var(--esg-font-disclaimer-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-disclaimer-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-disclaimer-ls);
  color: var(--esg-font-disclaimer-cl);
}
.esg-heading-group {
  margin-block-end: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.esg-heading-group:has(> .esg-heading-sub-group) {
  margin-block-end: calc(var(--esg-spacing-xl) / 16 * 1rem);
}
.esg-heading-group > * + * {
  margin-block-start: calc(var(--esg-spacing-s) / 16 * 1rem);
}
.esg-heading-group > .esg-title-main + .esg-title-desc {
  margin-block-start: calc(var(--esg-spacing-m) / 16 * 1rem);
}
.esg-heading-group > * + .esg-heading-sub-group {
  margin-block-start: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.esg-heading-group > .esg-disclaimer {
  margin-block-start: calc(var(--esg-spacing-m) / 16 * 1rem);
}
.esg-heading-group > .esg-disclaimer + esg-link {
  margin-block-start: calc(var(--esg-spacing-s) / 16 * 1rem);
}
.esg-heading-group > .esg-link {
  margin-block-start: calc(var(--esg-spacing-xl) / 16 * 1rem);
}
.esg-heading-group > .esg-title-lead + * {
  margin-block-start: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.esg-heading-sub-group {
  display: flex;
  flex-direction: column;
  gap: calc(var(--esg-spacing-xs) / 16 * 1rem);
}
.esg-link {
  display: flex;
  flex-direction: column;
  gap: calc(var(--esg-spacing-s) / 16 * 1rem);
}
@media all and (min-width: 1440px) {
  .esg-link {
    flex-direction: row;
  }
}
.esg-text-white {
  color: #FFFFFF;
}
.esg-common-round {
  border-radius: calc(var(--esg-radius-round) * 0.0625rem);
  overflow: hidden;
}
.esg-img-wrapper {
  display: block;
  width: 100%;
}
.esg-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.esg-layer {
  --title-color: #111;
  --body-color: #444;
  --gray-color: #777;
  --invert-color: #fff;
  --font-bold: 600;
}
.esg-layer-eyebrow-l {
  font-size: calc(var(--esg-font-eyebrow-l-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-eyebrow-l-lh) / 16 * 1rem);
  font-weight: var(--esg-font-eyebrow-l-fw);
  letter-spacing: var(--esg-font-eyebrow-l-ls);
}
.esg-layer-title-main {
  font-size: calc(var(--esg-font-heading-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-2-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-2-fw);
  letter-spacing: var(--esg-font-heading-2-ls);
  color: var(--title-color);
}
.esg-layer-title-sub {
  font-size: calc(var(--esg-font-heading-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-3-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-3-fw);
  letter-spacing: var(--esg-font-heading-3-ls);
  color: var(--title-color);
}
.esg-layer-title-third {
  font-size: calc(var(--esg-font-heading-7-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-7-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-7-fw);
  letter-spacing: var(--esg-font-heading-7-ls);
  color: var(--title-color);
}
.esg-layer-title-body {
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 600;
  color: var(--body-color);
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}
@media all and (min-width: 768px) {
  .esg-layer-title-body {
    margin-bottom: 0.5rem;
  }
}
.esg-layer-body-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.25rem;
}
@media all and (min-width: 768px) {
  .esg-layer-body-list {
    gap: 0.5rem;
  }
}
.esg-layer-body-list-item {
  display: block;
}
.esg-layer-body-l {
  font-size: calc(var(--esg-font-body-1-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-1-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-1-ls);
  color: var(--body-color);
}
.esg-layer-body-m {
  font-size: calc(var(--esg-font-body-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-2-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-2-ls);
  color: var(--body-color);
}
.esg-layer-body-s {
  font-size: calc(var(--esg-font-body-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-3-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-3-ls);
  color: var(--body-color);
}
.esg-layer-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media all and (min-width: 768px) {
  .esg-layer-specs-list {
    gap: 0.5rem;
  }
}
.esg-layer-specs-item {
  font-size: calc(var(--esg-font-body-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-2-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-2-ls);
  position: relative;
  padding-left: 1.5rem;
  color: var(--body-color);
}
@media all and (min-width: 768px) {
  .esg-layer-specs-item {
    padding-left: 1.875rem;
  }
}
.esg-layer-specs-item::before {
  content: "•";
  position: absolute;
  left: 0;
  width: 1.5rem;
  text-align: center;
  color: var(--body-color);
}
@media all and (min-width: 768px) {
  .esg-layer-specs-item::before {
    width: 1.875rem;
  }
}
.esg-layer-disclaimer {
  font-size: calc(var(--esg-font-disclaimer-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-disclaimer-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-disclaimer-ls);
  color: var(--esg-font-disclaimer-cl);
  color: var(--gray-color);
}
.esg-layer-disclaimer-list {
  margin-block-start: 1rem;
}
.esg-layer-disclaimer-list-title {
  font-size: calc(var(--esg-font-eyebrow-l-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-eyebrow-l-lh) / 16 * 1rem);
  font-weight: var(--esg-font-eyebrow-l-fw);
  letter-spacing: var(--esg-font-eyebrow-l-ls);
  color: var(--gray-color);
}
.esg-layer-disclaimer-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block: 0.25rem;
}
.esg-layer-disclaimer-list-wrap li {
  font-size: calc(var(--esg-font-disclaimer-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-disclaimer-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-disclaimer-ls);
  color: var(--esg-font-disclaimer-cl);
  color: var(--gray-color);
  position: relative;
  padding-left: 1.5rem;
  color: var(--gray-color);
}
@media all and (min-width: 768px) {
  .esg-layer-disclaimer-list-wrap li {
    padding-left: 1.875rem;
  }
}
.esg-layer-disclaimer-list-wrap li::before {
  content: "•";
  position: absolute;
  left: 0;
  width: 1.5rem;
  text-align: center;
  color: var(--gray-color);
}
@media all and (min-width: 768px) {
  .esg-layer-disclaimer-list-wrap li::before {
    width: 1.875rem;
  }
}
.esg-layer-two-media {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
}
@media all and (min-width: 768px) {
  .esg-layer-two-media {
    flex-direction: row;
    gap: 0.75rem;
  }
}
.esg-layer-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  order: -1;
}
.esg-layer-media .video-wrapper,
.esg-layer-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.esg-layer-media img,
.esg-layer-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.esg-layer-cta.center {
  text-align: center;
  margin-block: auto;
}
.esg-layer-link {
  text-align: center;
}
.esg-layer-title-main + .esg-layer-body-m, .esg-layer-title-main + .esg-layer-body-list {
  margin-top: 0.5rem;
}
.esg-layer-title-main + .esg-layer-media, .esg-layer-title-main + .esg-layer-two-media {
  margin-top: 1rem;
}
@media all and (min-width: 768px) {
  .esg-layer-title-main + .esg-layer-media, .esg-layer-title-main + .esg-layer-two-media {
    margin-top: 1.5rem;
  }
}
.esg-layer-title-third + .esg-layer-body-m, .esg-layer-title-sub + .esg-layer-body-m, .esg-layer-title-third + .esg-layer-body-list, .esg-layer-title-sub + .esg-layer-body-list {
  margin-top: 0.25rem;
}
@media all and (min-width: 768px) {
  .esg-layer-title-third + .esg-layer-body-m, .esg-layer-title-sub + .esg-layer-body-m, .esg-layer-title-third + .esg-layer-body-list, .esg-layer-title-sub + .esg-layer-body-list {
    margin-top: 0.5rem;
  }
}
.esg-layer-title-sub + .esg-layer-title-sub, .esg-layer-title-third + .esg-layer-title-third {
  margin-top: 0.5rem;
}
@media all and (min-width: 768px) {
  .esg-layer-title-sub + .esg-layer-title-sub, .esg-layer-title-third + .esg-layer-title-third {
    margin-top: 1rem;
  }
}
.esg-layer-title-third + .esg-layer-specs-list, .esg-layer-title-main + .esg-layer-specs, .esg-layer-title-sub + .esg-layer-specs {
  margin-top: 0.25rem;
}
@media all and (min-width: 768px) {
  .esg-layer-title-third + .esg-layer-specs-list, .esg-layer-title-main + .esg-layer-specs, .esg-layer-title-sub + .esg-layer-specs {
    margin-top: 0.5rem;
  }
}
.esg-layer-title-sub + .esg-layer-body-s, .esg-layer-body-s + .esg-layer-body-s {
  margin-top: 0.25rem;
}
@media all and (min-width: 768px) {
  .esg-layer-title-sub + .esg-layer-body-s, .esg-layer-body-s + .esg-layer-body-s {
    margin-top: 0.25rem;
  }
}
.esg-layer-body-m + .esg-layer-body-m {
  margin-top: 0.5rem;
}
@media all and (min-width: 768px) {
  .esg-layer-body-m + .esg-layer-body-m {
    margin-top: 1rem;
  }
}
.esg-layer-media + .esg-layer-title-main, .esg-layer-two-media + .esg-layer-title-main {
  margin-top: 1.5rem;
}
@media all and (min-width: 768px) {
  .esg-layer-media + .esg-layer-title-main, .esg-layer-two-media + .esg-layer-title-main {
    margin-top: 3rem;
  }
}
.esg-layer-media + .esg-layer-title-sub, .esg-layer-body-m + .esg-layer-media, .esg-layer-body-list + .esg-layer-media, .esg-layer-two-media + .esg-layer-title-sub, .esg-layer-body-m + .esg-layer-two-media, .esg-layer-body-list + .esg-layer-title-sub {
  margin-top: 1rem;
}
@media all and (min-width: 768px) {
  .esg-layer-media + .esg-layer-title-sub, .esg-layer-body-m + .esg-layer-media, .esg-layer-body-list + .esg-layer-media, .esg-layer-two-media + .esg-layer-title-sub, .esg-layer-body-m + .esg-layer-two-media, .esg-layer-body-list + .esg-layer-title-sub {
    margin-top: 1.5rem;
  }
}
.esg-layer-media + .esg-layer-body-m, .esg-layer-two-media + .esg-layer-body-m, .esg-layer-media + .esg-layer-body-list, .esg-layer-two-media + .esg-layer-body-list {
  margin-top: 1rem;
}
@media all and (min-width: 768px) {
  .esg-layer-media + .esg-layer-body-m, .esg-layer-two-media + .esg-layer-body-m, .esg-layer-media + .esg-layer-body-list, .esg-layer-two-media + .esg-layer-body-list {
    margin-top: 1.5rem;
  }
}
.esg-layer-body-m + .esg-layer-specs, .esg-layer-body-list + .esg-layer-specs {
  margin-top: 0.25rem;
}
@media all and (min-width: 768px) {
  .esg-layer-body-m + .esg-layer-specs, .esg-layer-body-list + .esg-layer-specs {
    margin-top: 0.5rem;
  }
}
.esg-layer-media + .esg-layer-disclaimer, .esg-layer-media + div > .esg-layer-disclaimer:first-child, .esg-layer-two-media + .esg-layer-disclaimer, .esg-layer-two-media + div > .esg-layer-disclaimer:first-child, .esg-layer-body-m + .esg-layer-disclaimer, .esg-layer-body-m + div > .esg-layer-disclaimer:first-child, .esg-layer-body-list + .esg-layer-disclaimer, .esg-layer-body-list + div > .esg-layer-disclaimer:first-child, .esg-layer-specs + .esg-layer-disclaimer, .esg-layer-specs + div > .esg-layer-disclaimer:first-child {
  margin-top: 0.75rem;
}
.esg-layer-disclaimer + .esg-layer-disclaimer {
  margin-top: 0.25rem;
}
.esg-layer-body-m + .esg-layer-cta, .esg-layer-body-list + .esg-layer-cta {
  margin-top: 1rem;
}
@media all and (min-width: 768px) {
  .esg-layer-body-m + .esg-layer-cta, .esg-layer-body-list + .esg-layer-cta {
    margin-top: 1.5rem;
  }
}

/* explore */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.component-explore {
  background-color: #FFFFFF;
}
.component-explore-heading {
  margin-bottom: 1rem;
}
.component-explore-slider {
  position: relative;
  overflow: visible;
}
.component-explore-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 19.625rem;
  aspect-ratio: 314/379;
}
.component-explore-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.component-explore-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.875rem 1.5rem;
  position: relative;
  z-index: 2;
}
.component-explore-eyebrow {
  margin-bottom: 0.25rem;
  font-weight: var(--fw-normal);
}
.component-explore-title {
  margin-bottom: 1rem;
  font-weight: var(--fw-bold);
}
.component-explore .esg-slider-controls {
  justify-content: center;
  width: 100%;
}
@media all and (min-width: 768px) {
  .component-explore-heading {
    margin-bottom: 2.25rem;
  }
  .component-explore-item {
    width: 23.75rem;
  }
  .component-explore-text {
    padding: 2.25rem 1.75rem;
  }
  .component-explore-eyebrow {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.375;
    font-weight: var(--fw-normal);
  }
  .component-explore-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: var(--fw-normal);
  }
  .component-explore-controls {
    margin-top: 2.25rem;
  }
}
@media all and (min-width: 1440px) {
  .component-explore-heading {
    margin-bottom: 2.5rem;
  }
  .component-explore-slider {
    overflow: hidden;
  }
  .component-explore-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .component-explore-slider .swiper-wrapper > * {
    flex: 0 0 calc(33.3333333333% - 1rem);
    max-width: calc(33.3333333333% - 1rem);
  }
  .component-explore-item {
    width: 100%;
    aspect-ratio: 444/560;
  }
  .component-explore-text {
    padding: 2.5rem;
  }
  .component-explore-eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5714;
    font-weight: var(--fw-normal);
  }
  .component-explore-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.3333;
    font-weight: var(--fw-normal);
  }
  .component-explore .esg-slider-controls {
    display: none;
  }
}

/* ethics-quality-management */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-quality-management .esg-heading-group > .esg-title-main {
  font-size: calc(var(--esg-font-heading-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-2-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-2-fw);
  letter-spacing: var(--esg-font-heading-2-ls);
}
.ethics-quality-management .esg-heading-group > .esg-title-main + .esg-title-desc {
  margin-block-start: calc(var(--esg-spacing-xs) / 16 * 1rem);
}

/* ethics-hero */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-hero {
  max-width: 1380px;
  margin-inline: auto;
  position: relative;
}
@media all and (min-width: 768px) {
  .ethics-hero {
    overflow: hidden;
    border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
  }
}
.ethics-hero__overlay {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (min-width: 768px) {
  .ethics-hero__overlay {
    display: flex;
    align-items: center;
    padding: 0 3rem;
  }
}
@media all and (min-width: 1440px) {
  .ethics-hero__overlay {
    padding: 0 5rem;
  }
}
.ethics-hero__content {
  max-width: 36.25rem;
}
.ethics-hero__description {
  margin-block-start: calc(var(--esg-spacing-xs) / 16 * 1rem);
  font-size: calc(var(--esg-font-body-1-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-1-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-1-ls);
  word-break: break-all;
}
.ethics-hero__link-wrapper {
  margin-block-start: 0.75rem;
}
@media all and (min-width: 768px) {
  .ethics-hero__link-wrapper {
    margin-block-start: 1.125rem;
  }
}
@media all and (min-width: 1440px) {
  .ethics-hero__link-wrapper {
    margin-block-start: 1.5rem;
  }
}
.ethics-hero__disclaimer {
  width: 100%;
  padding-block-end: 0.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: calc(var(--esg-font-disclaimer-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-disclaimer-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-disclaimer-ls);
  color: var(--esg-font-disclaimer-cl);
  color: #FFFFFF;
  text-align: center;
}
@media all and (min-width: 768px) {
  .ethics-hero__disclaimer {
    padding-inline-end: 3rem;
    padding-block-end: 1.5rem;
    text-align: right;
  }
}
@media all and (min-width: 1440px) {
  .ethics-hero__disclaimer {
    padding-inline-end: 3.75rem;
  }
}

/* ethics-product-security */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-product-security .esg-title-sub {
  font-size: calc(var(--esg-font-heading-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-2-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-2-fw);
  letter-spacing: var(--esg-font-heading-2-ls);
}
@media all and (min-width: 1440px) {
  .ethics-product-security .esg-title-lead {
    font-size: calc(var(--esg-font-heading-2-fs) / 16 * 1rem);
    line-height: calc(var(--esg-font-heading-2-lh) / 16 * 1rem);
    font-weight: var(--esg-font-heading-2-fw);
    letter-spacing: var(--esg-font-heading-2-ls);
  }
}
.ethics-product-security__content {
  margin-block-start: 1.5rem;
}
.ethics-product-security__content > div {
  margin-block-end: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.ethics-product-security__content > div.ethics-product-security__image-sdl {
  margin-block-end: 0;
}
.ethics-product-security__content .esg-title-lead {
  margin-block-start: calc(var(--esg-spacing-2xl) / 16 * 1rem);
  margin-block-end: 1.5rem;
}
.ethics-product-security__diagram {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media all and (min-width: 768px) {
  .ethics-product-security__diagram {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
  }
  .ethics-product-security__diagram .ethics-diagram-list {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media all and (min-width: 1440px) {
  .ethics-product-security__diagram .ethics-diagram-list {
    flex: 1;
  }
}
.ethics-product-security__table {
  margin-block-start: 1.875rem;
}
@media all and (min-width: 768px) {
  .ethics-product-security__table {
    margin-block-start: 4.125rem;
  }
}
.ethics-product-security__disclaimer {
  margin-block-start: 1.5rem;
}
@media all and (min-width: 768px) {
  .ethics-product-security__disclaimer {
    margin-block-start: 0.75rem;
  }
}
.ethics-product-security__disclaimer .disclaimer-list-item {
  font-size: calc(var(--esg-font-disclaimer-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-disclaimer-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-disclaimer-ls);
  color: var(--esg-font-disclaimer-cl);
}
.ethics-product-security__disclaimer .disclaimer-list-item:not(:first-child) {
  margin-block-start: 0.25rem;
}

/* ethics-information-security */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-list-item {
  display: flex;
  font-size: calc(var(--esg-font-body-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-2-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-2-ls);
  color: #444444;
}
.ethics-list-item::before {
  content: "•";
  display: inline-block;
  margin-inline: 0.5em;
}
.ethics-list.type1 {
  margin-block-start: calc(var(--esg-spacing-xs) / 16 * 1rem);
}
.ethics-list.type1 .ethics-list-item {
  margin-block-start: calc(var(--esg-spacing-xs) / 16 * 1rem);
}
.ethics-list.type2 .ethics-list-item:not(:first-child) {
  margin-block-start: calc(var(--esg-spacing-s) / 16 * 1rem);
}
.ethics-list.type2 .ethics-list-item::before {
  margin-inline-start: 0;
}
.ethics-diagram-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(var(--esg-spacing-s) / 16 * 1rem);
}
.ethics-diagram-list-title {
  padding: 1.5rem;
  border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
  border: 1px solid #DDDDDD;
  background-color: #DDDDDD;
  font-size: calc(var(--esg-font-heading-4-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-4-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-4-fw);
  letter-spacing: var(--esg-font-heading-4-ls);
  text-align: center;
}
.ethics-diagram-list-content {
  flex: 1;
  padding: 1.5rem;
  border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
  border: 1px solid #DDDDDD;
  background-color: #F4F4F4;
}

.ethics-information-security .esg-title-sub {
  font-size: calc(var(--esg-font-heading-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-2-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-2-fw);
  letter-spacing: var(--esg-font-heading-2-ls);
}
.ethics-information-security__content {
  margin-block-start: 1.5rem;
}
.ethics-information-security__content > div {
  margin-block-end: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.ethics-information-security__diagram {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 1440px) {
  .ethics-information-security__diagram {
    flex-direction: row;
    align-items: stretch;
  }
}
.ethics-information-security__diagram-arrow {
  display: inline-block;
  background-repeat: no-repeat;
}
.ethics-information-security__diagram-arrow.type1 {
  width: 5.25rem;
  height: 4.375rem;
  margin: auto;
  padding: 0.5rem;
  padding-block-start: 2.5rem;
  background-image: url("images/information-security/sustainability-2025-assets-ethics-ico-diagram-arrow-1-m.svg");
  background-size: 2rem 2rem;
  background-position: center 0.5rem;
  font-size: 1.0625rem;
  line-height: 1.2941;
  font-weight: 400;
  color: #444444;
  letter-spacing: -0.2px;
  text-align: center;
}
@media all and (min-width: 1440px) {
  .ethics-information-security__diagram-arrow.type1 {
    background-image: url("images/information-security/sustainability-2025-assets-ethics-ico-diagram-arrow-1.svg");
  }
}
.ethics-information-security__diagram-arrow.type2 {
  width: 3rem;
  height: 5.25rem;
  margin: auto;
  background-image: url("images/information-security/sustainability-2025-assets-ethics-ico-diagram-arrow-2-m.svg");
  background-position: center;
  background-size: contain;
}
@media all and (min-width: 1440px) {
  .ethics-information-security__diagram-arrow.type2 {
    width: 5.25rem;
    height: 3rem;
    background-image: url("images/information-security/sustainability-2025-assets-ethics-ico-diagram-arrow-2.svg");
  }
}
.ethics-information-security__table {
  overflow: hidden;
  overflow-x: auto;
  width: calc(100% + 2.5rem);
  margin-inline-start: -1.25rem;
  padding-inline: 1.25rem;
}
.ethics-information-security__table table {
  width: max-content;
  min-width: 100%;
}
.ethics-information-security__table table th, .ethics-information-security__table table td {
  width: 18.75rem;
  height: 5.25rem;
  padding-block: 1.25rem;
  padding-inline: 1.5rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #DDDDDD;
  font-size: calc(var(--esg-font-table-td-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-table-td-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-table-td-ls);
  color: #444444;
}
.ethics-information-security__table table th:not(:first-child), .ethics-information-security__table table td:not(:first-child) {
  border-left: 1px solid #DDDDDD;
}
.ethics-information-security__table table thead th {
  height: auto;
  padding-block: 1rem;
  background-color: #777777;
  font-size: calc(var(--esg-font-table-th-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-table-th-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-table-th-ls);
  font-weight: 600;
  color: #FFFFFF;
}
.ethics-information-security__table table thead th:not(:first-child) {
  border-left: 1px solid #DDDDDD;
}
@media all and (min-width: 1440px) {
  .ethics-information-security__table {
    width: 100%;
    padding-inline: 0;
    margin-inline-start: 0;
  }
  .ethics-information-security__table table {
    width: 100%;
  }
  .ethics-information-security__table table th, .ethics-information-security__table table td {
    width: 25%;
  }
}

/* ethics-fair-trade */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-fair-trade-subtitle {
  font-size: calc(var(--esg-font-heading-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-2-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-2-fw);
  letter-spacing: var(--esg-font-heading-2-ls);
  margin-block-end: calc(var(--esg-spacing-xs) / 16 * 1rem);
}
.ethics-fair-trade-subtitle:has(+ .ethics-fair-trade-flow-list) {
  margin-block-end: calc(var(--esg-spacing-xl) / 16 * 1rem);
}
.ethics-fair-trade-description {
  font-size: calc(var(--esg-font-body-1-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-1-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-1-ls);
  color: #444444;
}
.ethics-fair-trade-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}
.ethics-fair-trade-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ethics-fair-trade-card-list {
  margin-block-start: calc(var(--esg-spacing-xl) / 16 * 1rem);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}
.ethics-fair-trade-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--esg-spacing-m) / 16 * 1rem);
  padding: 2rem;
  background-color: #777777;
  color: #FFFFFF;
  border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
}
.ethics-fair-trade-card-title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .ethics-fair-trade-card-title {
    font-size: calc(var(--esg-font-body-1-fs) / 16 * 1rem);
    line-height: calc(var(--esg-font-body-1-lh) / 16 * 1rem);
    letter-spacing: var(--esg-font-body-1-ls);
  }
}
.ethics-fair-trade-card-title {
  color: #FFFFFF;
  text-align: center;
}
.ethics-fair-trade-flow {
  margin-block-start: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.ethics-fair-trade-flow-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.ethics-fair-trade-flow-list .ethics-list {
  width: 100%;
}
.ethics-fair-trade-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #F4F4F4;
  border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
  position: relative;
}
.ethics-fair-trade-flow-item:not(:first-child)::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #646464;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.ethics-fair-trade-flow-item-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: calc(var(--esg-spacing-s) / 16 * 1rem);
  margin-block-end: calc(var(--esg-spacing-xl) / 16 * 1rem);
  padding-bottom: calc(var(--esg-spacing-xl) / 16 * 1rem);
  border-bottom: none;
  background-image: repeating-linear-gradient(to right, rgba(17, 17, 17, 0.5) 0, rgba(17, 17, 17, 0.5) 0.375rem, transparent 0.375rem, transparent 0.625rem);
  background-size: 100% 0.0625rem;
  background-repeat: repeat-x;
  background-position: bottom;
}
.ethics-fair-trade-flow-item-title {
  font-size: calc(var(--esg-font-heading-4-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-4-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-4-fw);
  letter-spacing: var(--esg-font-heading-4-ls);
  color: #111111;
  text-align: center;
}
@media all and (min-width: 768px) {
  .ethics-fair-trade-card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ethics-fair-trade-card-item {
    flex: 1 1 calc((100% - 1.5rem * 3) / 4);
    gap: calc(var(--esg-spacing-2xl) / 16 * 1rem);
  }
  .ethics-fair-trade-flow-list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2.5rem;
  }
  .ethics-fair-trade-flow-item {
    flex: 1;
    min-width: 0;
    padding: 1.25rem;
  }
  .ethics-fair-trade-flow-item:not(:first-child)::before {
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #646464;
  }
}
@media all and (min-width: 1440px) {
  .ethics-fair-trade-flow-item {
    padding: 1.5rem;
  }
}

/* ethics-compliance-training */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-compliance-training {
  margin-block-end: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.ethics-compliance-training__content {
  display: flex;
  flex-direction: column;
  gap: calc(var(--esg-spacing-xs) / 16 * 1rem);
  margin-block-end: calc(var(--esg-spacing-m) / 16 * 1rem);
}
.ethics-compliance-training__content-subtitle {
  font-size: calc(var(--esg-font-heading-7-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-7-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-7-fw);
  letter-spacing: var(--esg-font-heading-7-ls);
  color: #444444;
  margin-block-start: calc(var(--esg-spacing-xs) / 16 * 1rem);
}
.ethics-compliance-training__content-item-description {
  font-size: calc(var(--esg-font-body-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-2-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-2-ls);
  color: #444444;
}

/* ethics-compliance-risk-management */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-compliance-risk-management {
  margin-block-end: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.ethics-compliance-risk-management-content {
  display: flex;
  flex-direction: column;
  gap: calc(var(--esg-spacing-m) / 16 * 1rem);
}
.ethics-compliance-risk-management-content + .ethics-compliance-risk-management-content {
  margin-block-start: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.ethics-compliance-risk-management-content-text {
  flex: 1;
}
.ethics-compliance-risk-management-subtitle {
  font-size: calc(var(--esg-font-heading-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-2-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-2-fw);
  letter-spacing: var(--esg-font-heading-2-ls);
  margin-block-end: calc(var(--esg-spacing-xs) / 16 * 1rem);
}
@media all and (min-width: 768px) {
  .ethics-compliance-risk-management-subtitle {
    margin-block-end: calc(var(--esg-spacing-s) / 16 * 1rem);
  }
}
.ethics-compliance-risk-management-description p {
  font-size: calc(var(--esg-font-body-1-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-1-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-1-ls);
  color: #444444;
  margin-block-end: calc(var(--esg-spacing-xs) / 16 * 1rem);
}
@media all and (min-width: 768px) {
  .ethics-compliance-risk-management-description p {
    margin-block-end: calc(var(--esg-spacing-s) / 16 * 1rem);
  }
}
.ethics-compliance-risk-management-description p:last-child {
  margin-block-end: 0;
}
.ethics-compliance-risk-management-content-image {
  flex-shrink: 0;
}
.ethics-compliance-risk-management-content-image img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
}
.ethics-compliance-risk-management-flow {
  margin-block-start: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.ethics-compliance-risk-management-flow-list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--esg-spacing-xl) / 16 * 1rem);
  margin-inline: 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: flow-step;
  position: relative;
}
.ethics-compliance-risk-management-flow-list::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 100%;
  background-color: #FD312E;
  position: absolute;
  left: -0.75rem;
  top: 0;
}
.ethics-compliance-risk-management-flow-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 1px solid #DDDDDD;
  border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
  counter-increment: flow-step;
  position: relative;
}
.ethics-compliance-risk-management-flow-item:nth-child(odd) {
  background-color: #F4F4F4;
  border-color: #DDDDDD;
}
.ethics-compliance-risk-management-flow-item:nth-child(even) {
  background-color: #CCCCCC;
  border-color: #F4F4F4;
}
.ethics-compliance-risk-management-flow-item::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #FD312E;
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ethics-compliance-risk-management-flow-item-number {
  font-size: calc(var(--esg-font-body-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-3-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-3-ls);
  color: #000000;
}
.ethics-compliance-risk-management-flow-item-text {
  font-size: calc(var(--esg-font-heading-4-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-4-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-4-fw);
  letter-spacing: var(--esg-font-heading-4-ls);
  color: #111111;
}
.ethics-compliance-risk-management-flow-item:last-child::after {
  content: "";
  display: none;
}
.ethics-compliance-risk-management-flow-item-list {
  margin-block-start: 0.125rem;
}
.ethics-compliance-risk-management-flow-item-list-item {
  font-size: calc(var(--esg-font-body-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-2-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-2-ls);
  color: #444444;
  margin-block-end: 0.25rem;
}
.ethics-compliance-risk-management-flow-item-list-item:last-child {
  margin-block-end: 0;
}
@media all and (min-width: 768px) {
  .ethics-compliance-risk-management .inner {
    display: flex;
    flex-direction: column;
  }
  .ethics-compliance-risk-management-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .ethics-compliance-risk-management-flow-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-inline: 0;
    padding-top: 1.875rem;
  }
  .ethics-compliance-risk-management-flow-list::before {
    width: 100%;
    height: 0.0625rem;
    top: 0.4375rem;
    left: 0;
  }
  .ethics-compliance-risk-management-flow-item {
    flex: 1;
  }
  .ethics-compliance-risk-management-flow-item::before {
    top: -1rem;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}

/* ethics-risk-prevention-system */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-risk-prevention-system .esg-title-desc {
  font-weight: 600;
  font-size: calc(var(--esg-font-body-1-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-1-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-1-ls);
  color: #444444;
}
.ethics-risk-prevention-system-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.5rem;
  margin-block-start: 1rem;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system-content {
    flex-direction: row;
    gap: 2.5rem;
    margin-block-start: 1.125rem;
  }
}
.ethics-risk-prevention-system-chart {
  padding: 2rem 1rem;
  background-color: #F4F4F4;
  max-width: 86.25rem;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system-chart {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media all and (min-width: 1440px) {
  .ethics-risk-prevention-system-chart {
    padding: 2.5rem 3.75rem;
  }
}
.ethics-risk-prevention-system-chart-wrap {
  position: relative;
  width: min(100%, 61.5625rem);
  height: 420px;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system-chart-wrap {
    height: 292px;
  }
}
.ethics-risk-prevention-system-chart-wrap canvas {
  position: relative;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
}
.ethics-risk-prevention-system-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  position: relative;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system-summary {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.ethics-risk-prevention-system-summary-img {
  width: 5.375rem;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system-summary-img {
    width: clamp(8.75rem, 98%, 12.8125rem);
  }
}
@media all and (min-width: 1440px) {
  .ethics-risk-prevention-system-summary-img {
    width: 12.8125rem;
  }
}
.ethics-risk-prevention-system-summary-text {
  min-width: 6.875rem;
  text-align: center;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system-summary-text {
    min-width: auto;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 3vw;
  }
}
@media all and (min-width: 1440px) {
  .ethics-risk-prevention-system-summary-text {
    bottom: 3.5625rem;
  }
}
.ethics-risk-prevention-system-summary-text-title {
  font-size: 0.9375rem;
  line-height: 1.3333;
  font-weight: 400;
  color: #444444;
  letter-spacing: -0.1px;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system-summary-text-title {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #444444;
    letter-spacing: -0.1px;
  }
}
@media all and (min-width: 1440px) {
  .ethics-risk-prevention-system-summary-text-title {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
    color: #444444;
    letter-spacing: -0.1px;
  }
}
.ethics-risk-prevention-system-summary-text-value {
  display: inline-flex;
  align-items: flex-end;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system-summary-text-value {
    font-size: 1.5rem;
    line-height: 1.6667;
    font-weight: 400;
    letter-spacing: -0.5px;
  }
}
.ethics-risk-prevention-system-summary-text-value-number {
  font-size: 3rem;
  line-height: 1.1667;
  font-weight: 400;
  color: #EA1917;
}
.ethics-risk-prevention-system .ethics-chart-labels {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ethics-risk-prevention-system .ethics-chart-labels .ethics-chart-label {
  position: absolute;
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  transform: translateY(-50%);
}
.ethics-risk-prevention-system .ethics-chart-labels .ethics-chart-label--vertical {
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  transform: translate(-50%, calc(-100% - 8px));
}
.ethics-risk-prevention-system .ethics-chart-labels .ethics-chart-label__pct {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 400;
  color: #111111;
  letter-spacing: -0.5px;
}
.ethics-risk-prevention-system .ethics-chart-labels .ethics-chart-label__count {
  font-size: 0.9375rem;
  line-height: 1.3333;
  font-weight: 400;
  color: #444444;
  margin-block-start: 0.25rem;
}
@media all and (min-width: 768px) {
  .ethics-risk-prevention-system .ethics-chart-labels .ethics-chart-label__count {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
    color: #444444;
    margin-block-start: 0;
  }
}

/* ethics-reporting-system */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.ethics-reporting-system .esg-title-sub {
  font-size: calc(var(--esg-font-heading-2-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-2-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-2-fw);
  letter-spacing: var(--esg-font-heading-2-ls);
}
.ethics-reporting-system-content + .ethics-reporting-system-content {
  margin-block-start: calc(var(--esg-spacing-2xl) / 16 * 1rem);
}
.ethics-reporting-system-content.content-2 .inner {
  max-width: unset;
  margin: 0 auto;
  padding: 0;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-content.content-2 .inner {
    max-width: 1380px;
    padding: 0 1.25rem;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-content.content-2 .inner {
    padding: 0;
  }
}
.ethics-reporting-system-content.content-2 .inner .esg-heading-group {
  padding: 0 1.25rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-content.content-2 .inner .esg-heading-group {
    padding: 0;
  }
}
.ethics-reporting-system-slide-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  padding: calc(var(--esg-spacing-2xl) / 16 * 1rem);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-slide-item {
    gap: calc(var(--esg-spacing-2xl) / 16 * 1rem);
  }
}
.swiper-slide:nth-child(1) > .ethics-reporting-system-slide-item {
  background-image: url("images/reporting-system/sustainability-2025-assets-ethics-card-bg-1-m.jpg");
}
@media all and (min-width: 768px) {
  .swiper-slide:nth-child(1) > .ethics-reporting-system-slide-item {
    background-image: url("images/reporting-system/sustainability-2025-assets-ethics-card-bg-1.jpg");
  }
}
.swiper-slide:nth-child(2) > .ethics-reporting-system-slide-item {
  background-image: url("images/reporting-system/sustainability-2025-assets-ethics-card-bg-2-m.jpg");
}
@media all and (min-width: 768px) {
  .swiper-slide:nth-child(2) > .ethics-reporting-system-slide-item {
    background-image: url("images/reporting-system/sustainability-2025-assets-ethics-card-bg-2.jpg");
  }
}
.swiper-slide:nth-child(3) > .ethics-reporting-system-slide-item {
  background-image: url("images/reporting-system/sustainability-2025-assets-ethics-card-bg-3-m.jpg");
}
@media all and (min-width: 768px) {
  .swiper-slide:nth-child(3) > .ethics-reporting-system-slide-item {
    background-image: url("images/reporting-system/sustainability-2025-assets-ethics-card-bg-3.jpg");
  }
}
.ethics-reporting-system-slide-item-title {
  font-size: 1.375rem;
  line-height: 1.3636;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}
.ethics-reporting-system-slide-item .esg-btn-outline:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #DDDDDD;
}
.ethics-reporting-system-slide .esg-slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-block-start: 1rem;
  pointer-events: auto;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-slide .esg-slider-pagination {
    margin-block-start: 0;
  }
}
.ethics-reporting-system-slide .esg-slider-pagination .swiper-pagination-bullet {
  margin: 0;
  background-color: #DDDDDD;
  opacity: 1;
}
.ethics-reporting-system-slide .esg-slider-pagination .swiper-pagination-bullet-active {
  background-color: #111111;
}
.ethics-reporting-system .esg-table-container {
  overflow: auto;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system .esg-table-container {
    overflow: unset;
  }
}
.ethics-reporting-system .esg-table-container .esg-table {
  width: 100%;
  border-collapse: collapse;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system .esg-table-container .esg-table {
    min-width: unset;
  }
}
.ethics-reporting-system .esg-table-container .esg-table thead th {
  border-bottom: none;
}
.ethics-reporting-system .esg-table-container .esg-table thead th:first-child {
  border-left: none;
}
.ethics-reporting-system .esg-table-container .esg-table thead th:last-child {
  border-right: none;
}
.ethics-reporting-system .esg-table-container .esg-table tbody td:first-child {
  border-left: none;
}
.ethics-reporting-system .esg-table-container .esg-table tbody td:last-child {
  border-right: none;
}
.ethics-reporting-system .esg-table-container .esg-table th, .ethics-reporting-system .esg-table-container .esg-table td {
  border: 1px solid #DDDDDD;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
.ethics-reporting-system .esg-table-container .esg-table th {
  font-weight: 600;
  font-size: calc(var(--esg-font-table-th-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-table-th-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-table-th-ls);
  color: #FFFFFF;
  background-color: #777777;
  align-content: center;
  padding: 0.75rem 1.25rem;
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system .esg-table-container .esg-table th {
    padding: 0.875rem 1.5rem;
  }
}
.ethics-reporting-system .esg-table-container .esg-table td {
  font-size: calc(var(--esg-font-table-td-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-table-td-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-table-td-ls);
  font-weight: 400;
  padding: 0.875rem 1.25rem;
  background-color: #FFFFFF;
  align-content: center;
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system .esg-table-container .esg-table td {
    padding: 1.25rem 1.5rem;
  }
}
.ethics-reporting-system .esg-table-container .esg-table td .td-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system .esg-table-container .esg-table td .td-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system .esg-table-container .esg-table td .td-icon {
    width: 2rem;
    height: 2rem;
  }
}
.ethics-reporting-system .esg-table-container .esg-table td .td-icon img {
  width: 100%;
  height: 100%;
}
.ethics-reporting-system .esg-table-container .esg-table td.text-left {
  text-align: left;
}
.ethics-reporting-system .esg-table-container .esg-table td .td-goal-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system .esg-table-container .esg-table td .td-goal-content {
    gap: 0.875rem;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system .esg-table-container .esg-table td .td-goal-content {
    gap: 1rem;
  }
}
.ethics-reporting-system .esg-table-container .esg-table td .td-goal-content .td-icon {
  margin-right: 0;
  flex-shrink: 0;
}
.ethics-reporting-system .esg-table-container .esg-table .esg-list-num {
  list-style: none;
  padding-left: 0;
  counter-reset: list-num;
}
.ethics-reporting-system .esg-table-container .esg-table .esg-list-num li {
  display: inline-block;
  position: relative;
  counter-increment: list-num;
}
.ethics-reporting-system .esg-table-container .esg-table .esg-list-num li::before {
  display: inline-block;
  content: counter(list-num, circled-num);
}
.ethics-reporting-system-table {
  min-width: 37.5rem;
}
.ethics-reporting-system-table-desc {
  font-size: calc(var(--esg-font-disclaimer-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-disclaimer-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-disclaimer-ls);
  color: var(--esg-font-disclaimer-cl);
  color: #777777;
  text-align: right;
  margin-block-end: calc(var(--esg-spacing-m) / 16 * 1rem);
}
.ethics-reporting-system-type-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #F4F4F4;
  padding: 2rem 1.25rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-wrap {
    padding: 2rem;
    border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
  }
}
.ethics-reporting-system-status-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: calc(var(--esg-spacing-xl) / 16 * 1rem);
}
.ethics-reporting-system-status-title-text {
  font-size: calc(var(--esg-font-heading-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-3-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-3-fw);
  letter-spacing: var(--esg-font-heading-3-ls);
}
.ethics-reporting-system-status-title-value {
  font-size: calc(var(--esg-font-disclaimer-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-disclaimer-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-disclaimer-ls);
  color: var(--esg-font-disclaimer-cl);
}
.ethics-reporting-system-status-content-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-status-content-list {
    flex-direction: row;
  }
}
.ethics-reporting-system-status-content-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  background-color: #FFFFFF;
  padding: 1.5rem 2rem;
  border-radius: calc(var(--esg-radius-round) / 16 * 1rem);
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-status-content-list-item {
    width: 33.3333333333%;
    padding: 2rem;
  }
}
.ethics-reporting-system-status-content-list-item-text {
  font-size: calc(var(--esg-font-heading-7-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-7-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-7-fw);
  letter-spacing: var(--esg-font-heading-7-ls);
}
.ethics-reporting-system-status-content-list-item-value {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-status-content-list-item-value {
    font-size: 3rem;
    line-height: 1.1667;
    font-weight: 400;
  }
}
.ethics-reporting-system-type {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ethics-reporting-system-type-chart-visual {
  position: relative;
}
.ethics-reporting-system-type-chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: calc(var(--esg-spacing-xl) / 16 * 1rem);
}
.ethics-reporting-system-type-chart-title-text {
  font-size: calc(var(--esg-font-heading-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-3-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-3-fw);
  letter-spacing: var(--esg-font-heading-3-ls);
}
.ethics-reporting-system-type-chart-title-value {
  font-size: calc(var(--esg-font-heading-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-heading-3-lh) / 16 * 1rem);
  font-weight: var(--esg-font-heading-3-fw);
  letter-spacing: var(--esg-font-heading-3-ls);
}
.ethics-reporting-system-type-chart-bar, .ethics-reporting-system-type-chart-info {
  height: 100%;
}
.ethics-reporting-system-type-chart-bar-item, .ethics-reporting-system-type-chart-info-item {
  height: 100%;
}
.ethics-reporting-system-type-chart-bar {
  display: flex;
  height: 2rem;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-bar {
    height: 13.75rem;
    border-radius: 1rem;
  }
}
.ethics-reporting-system-type-chart-bar-item:nth-child(1) {
  width: 50%;
  background-color: #70369B;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(1) {
    width: 32%;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(1) {
    width: 42.93%;
  }
}
.ethics-reporting-system-type-chart-bar-item:nth-child(2) {
  width: 12.78%;
  background-color: #262626;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(2) {
    width: 16%;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(2) {
    width: 14.59%;
  }
}
.ethics-reporting-system-type-chart-bar-item:nth-child(3) {
  width: 10.72%;
  background-color: #4A4946;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(3) {
    width: 15%;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(3) {
    width: 12.23%;
  }
}
.ethics-reporting-system-type-chart-bar-item:nth-child(4) {
  width: 9.65%;
  background-color: #646464;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(4) {
    width: 14%;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(4) {
    width: 11.02%;
  }
}
.ethics-reporting-system-type-chart-bar-item:nth-child(5) {
  width: 8.66%;
  background-color: #DDDDDD;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(5) {
    width: 13%;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(5) {
    width: 9.88%;
  }
}
.ethics-reporting-system-type-chart-bar-item:nth-child(6) {
  width: 8.19%;
  background-color: #FFFFFF;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(6) {
    width: 12%;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-bar-item:nth-child(6) {
    width: 9.35%;
  }
}
.ethics-reporting-system-type-chart-info {
  width: 100%;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.ethics-reporting-system-type-chart-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: 0.75rem;
}
.ethics-reporting-system-type-chart-info-item:nth-child(1)::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #70369B;
  border-radius: 0.25rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(1) {
    width: 32%;
    color: #FFFFFF;
  }
  .ethics-reporting-system-type-chart-info-item:nth-child(1)::before {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(1) {
    width: 42.93%;
  }
}
.ethics-reporting-system-type-chart-info-item:nth-child(2)::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #262626;
  border-radius: 0.25rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(2) {
    width: 16%;
    color: #FFFFFF;
  }
  .ethics-reporting-system-type-chart-info-item:nth-child(2)::before {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(2) {
    width: 14.59%;
  }
}
.ethics-reporting-system-type-chart-info-item:nth-child(3)::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #4A4946;
  border-radius: 0.25rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(3) {
    width: 15%;
    color: #FFFFFF;
  }
  .ethics-reporting-system-type-chart-info-item:nth-child(3)::before {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(3) {
    width: 12.23%;
  }
}
.ethics-reporting-system-type-chart-info-item:nth-child(4)::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #646464;
  border-radius: 0.25rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(4) {
    width: 14%;
    color: #FFFFFF;
  }
  .ethics-reporting-system-type-chart-info-item:nth-child(4)::before {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(4) {
    width: 11.02%;
  }
}
.ethics-reporting-system-type-chart-info-item:nth-child(5)::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #DDDDDD;
  border-radius: 0.25rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(5) {
    width: 13%;
    color: #000000;
  }
  .ethics-reporting-system-type-chart-info-item:nth-child(5)::before {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(5) {
    width: 9.88%;
  }
}
.ethics-reporting-system-type-chart-info-item:nth-child(6)::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #FFFFFF;
  border-radius: 0.25rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(6) {
    width: 12%;
    color: #000000;
  }
  .ethics-reporting-system-type-chart-info-item:nth-child(6)::before {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item:nth-child(6) {
    width: 9.35%;
  }
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: calc(var(--esg-spacing-l) / 16 * 1rem) calc(var(--esg-spacing-m) / 16 * 1rem);
    margin-block-start: 0;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item {
    padding: calc(var(--esg-spacing-l) / 16 * 1rem);
  }
}
.ethics-reporting-system-type-chart-info-item-text {
  font-size: 0.9375rem;
  line-height: 1.3333;
  font-weight: 400;
  color: inherit;
  letter-spacing: -0.2px;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item-text {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
    color: inherit;
    letter-spacing: -0.4px;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item-text {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
    color: inherit;
    letter-spacing: -0.4px;
  }
}
.ethics-reporting-system-type-chart-info-item-value {
  font-size: 0.9375rem;
  line-height: 1.3333;
  font-weight: 400;
  color: inherit;
  letter-spacing: -0.2px;
  margin-left: auto;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-info-item-value {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 400;
    color: inherit;
    margin-left: unset;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-chart-info-item-value {
    font-size: 3rem;
    line-height: 1.1667;
    font-weight: 400;
    color: inherit;
  }
}
.ethics-reporting-system-type-chart-disclaimer {
  text-align: right;
  margin-block-start: 0.75rem;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-chart-disclaimer {
    margin-block-start: 0.5rem;
  }
}
.ethics-reporting-system-type-list-category {
  display: flex;
  flex-wrap: wrap;
}
.ethics-reporting-system-type-list-category-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  padding: calc(var(--esg-spacing-xl) / 16 * 1rem);
  border-right: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.ethics-reporting-system-type-list-category-item:nth-child(2n) {
  border-right: none;
}
.ethics-reporting-system-type-list-category-item:nth-child(n+5) {
  border-bottom: none;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-list-category-item {
    flex-direction: row;
    width: 33.3333333333%;
    justify-content: center;
  }
  .ethics-reporting-system-type-list-category-item:nth-child(2n) {
    border-right: 1px solid #DDDDDD;
  }
  .ethics-reporting-system-type-list-category-item:nth-child(n+5) {
    border-bottom: 1px solid #DDDDDD;
  }
  .ethics-reporting-system-type-list-category-item:nth-child(3n) {
    border-right: none;
  }
  .ethics-reporting-system-type-list-category-item:nth-child(n+4) {
    border-bottom: none;
  }
}
.ethics-reporting-system-type-list-category-item-text {
  width: 100%;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-list-category-item-text {
    max-width: 12.8125rem;
  }
}
.ethics-reporting-system-type-list-category-item-title {
  font-size: 0.9375rem;
  line-height: 1.3333;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-list-category-item-title {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.4px;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-list-category-item-title {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.4px;
  }
}
.ethics-reporting-system-type-list-category-item-desc {
  display: inline-flex;
  gap: 0.25rem;
}
.ethics-reporting-system-type-list-category-item-desc-unit {
  font-size: 0.9375rem;
  line-height: 2.9333;
  font-weight: 400;
  vertical-align: baseline;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-list-category-item-desc-unit {
    font-size: 1rem;
    line-height: 2.75;
    font-weight: 400;
    letter-spacing: -0.4px;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-list-category-item-desc-unit {
    font-size: 1.25rem;
    line-height: 2.4;
    font-weight: 400;
    letter-spacing: -0.4px;
  }
}
.ethics-reporting-system-type-list-category-item-desc-value {
  font-size: 2rem;
  line-height: 1.375;
  font-weight: 400;
  color: #FD312E;
  letter-spacing: -0.5px;
}
@media all and (min-width: 768px) {
  .ethics-reporting-system-type-list-category-item-desc-value {
    font-size: 2.25rem;
    line-height: 1.2222;
    font-weight: 400;
    color: #FD312E;
    letter-spacing: -0.5px;
  }
}
@media all and (min-width: 1440px) {
  .ethics-reporting-system-type-list-category-item-desc-value {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    color: #FD312E;
    letter-spacing: -0.5px;
  }
}

/* ethics-code */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */

/* anchor */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.component-anchor {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: #FFFFFF;
  width: 100%;
}
.component-anchor-mobile-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.71875rem 1rem;
  cursor: pointer;
  background-color: #FFFFFF;
  border-bottom: 1px solid #CBC8C2;
}
.component-anchor-mobile-trigger .trigger-text {
  font-size: 0.875rem;
  line-height: 1.7143;
  font-weight: var(--fw-normal);
  color: var(--default-color);
}
.component-anchor-mobile-trigger .trigger-icon {
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: url("/kr/sustainability/2025/common/images/sustainability-2025-assets-common-ico-down.svg") no-repeat center center;
  background-size: cover;
  transition: transform 0.3s ease;
}
.component-anchor-mobile-trigger[aria-expanded=true] .trigger-icon {
  transform: rotate(180deg);
}
.component-anchor-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
}
.component-anchor-nav.is-open {
  display: block;
  border-bottom: 1px solid #f4f4f4;
}
.component-anchor-list {
  display: flex;
  flex-direction: column;
}
.component-anchor-item {
  position: relative;
}
.component-anchor-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  width: calc(100% - 2rem);
  height: 1px;
  background-color: #E6E1D6;
}
.component-anchor-item:last-child::before {
  display: none;
}
.component-anchor-link {
  display: block;
  padding: 1rem;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.4286;
  font-weight: 500;
  color: var(--body-color);
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media all and (min-width: 768px) {
  .component-anchor-mobile-trigger {
    padding: 1.25rem;
  }
  .component-anchor-mobile-trigger .trigger-text {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: var(--fw-normal);
    color: var(--default-color);
  }
  .component-anchor-mobile-trigger .trigger-icon {
    width: 1.75rem;
  }
  .component-anchor-link {
    padding: 1.125rem 1.25rem;
    font-size: 1rem;
    line-height: 1.125;
    font-weight: 400;
  }
}
@media all and (min-width: 1440px) {
  .component-anchor {
    height: 3.75rem;
  }
  .component-anchor-mobile-trigger {
    display: none;
  }
  .component-anchor-nav {
    display: block;
    height: 100%;
    position: static;
    border-bottom: 1px solid #F4F4F4;
  }
  .component-anchor-list {
    flex-direction: row;
    align-items: center;
    gap: 2.125rem;
    max-width: 86.25rem;
    margin: 0 auto;
    transition: max-width 0.3s ease;
  }
  .component-anchor-item {
    text-align: center;
  }
  .component-anchor-item::before {
    display: none;
  }
  .component-anchor-link {
    padding: 1.1875rem 0;
    height: 3.75rem;
    font-size: 1rem;
    line-height: 1.375;
    font-weight: var(--fw-normal);
    color: var(--body-color);
  }
  .component-anchor-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: transparent;
  }
  .component-anchor-link:hover {
    background-color: transparent;
    color: #000000;
    text-decoration: none;
  }
  .component-anchor-link.is-active {
    font-weight: var(--fw-bold);
    color: var(--default-color);
  }
  .component-anchor-link.is-active::before {
    background-color: #111111;
  }
}

/* keyvisual */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.component-keyvisual {
  position: relative;
  background-color: #FFFFFF;
}
.component-keyvisual-image picture,
.component-keyvisual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.component-keyvisual-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.component-keyvisual .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.5rem;
  padding-block: 1.5rem;
  text-align: center;
}
.component-keyvisual-title {
  letter-spacing: -0.5px;
  font-size: 1.625rem;
  line-height: 1.4615;
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  text-wrap: balance;
  word-break: keep-all;
}
.component-keyvisual-description {
  font-size: calc(var(--esg-font-body-1-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-1-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-1-ls);
  color: #FFFFFF;
  text-wrap: balance;
  word-break: keep-all;
}
.component-keyvisual-ai {
  position: absolute;
  inset: auto 0 0 0;
  margin-top: auto;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.3846;
  font-weight: var(--fw-normal);
  color: #FFFFFF;
}
.component-keyvisual-image {
  height: 30.875rem;
}
@media all and (min-width: 768px) {
  .component-keyvisual-image {
    height: 33.75rem;
  }
}
@media all and (min-width: 1440px) {
  .component-keyvisual-image {
    height: 36.25rem;
  }
}
@media all and (min-width: 768px) {
  .component-keyvisual-content {
    display: flex;
    justify-content: center;
  }
  .component-keyvisual .inner {
    justify-content: center;
    text-align: left;
  }
  .component-keyvisual-title {
    font-size: 1.875rem;
    line-height: 1.3333;
    font-weight: var(--fw-bold);
  }
  .component-keyvisual-ai {
    text-align: right;
    padding-block: 1.5rem;
  }
}
@media all and (min-width: 1440px) {
  .component-keyvisual-title {
    font-size: 2.25rem;
    line-height: 1.3889;
    font-weight: var(--fw-bold);
    max-width: 69.375rem;
  }
  .component-keyvisual-description {
    max-width: 69.375rem;
  }
  .component-keyvisual-ai {
    padding-inline: 0;
  }
}

/* nav */
/* breakpoint - mobile first 로, 기본 mobile scss 작성 후 768부터 tab, 1440부터 pc */
/* PC 기준 inner 사이즈 */
/* device별 기준 section 상하 padding값, rem mixin에 넣어서 사용 */
/* function */
/* rem */
/* vw - pc 기준 */
/* media Query */
/* font */
/* img */
/* btn */
.component-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  width: 100%;
  border-bottom: 1px solid #F4F4F4;
}
body.layer-open .component-nav.is-sticky {
  display: none;
}
.component-nav {
  height: 3rem;
}
@media all and (min-width: 768px) {
  .component-nav {
    height: 4.25rem;
  }
}
@media all and (min-width: 1440px) {
  .component-nav {
    height: 3.75rem;
  }
}
.component-nav-nav {
  display: block;
  height: 100%;
  position: static;
}
.component-nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 86.25rem;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  gap: 1.5rem;
}
@media all and (min-width: 1440px) {
  .component-nav-list {
    gap: 2.125rem;
    justify-content: flex-start;
    padding: 0;
  }
}
.component-nav-item {
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
}
.component-nav-item:hover .component-nav-sub, .component-nav-item.is-expanded .component-nav-sub {
  display: block;
}
.component-nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 8.125rem;
  background-color: #FFFFFF;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.36), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  z-index: 10;
}
.component-nav-sub-list {
  display: flex;
  flex-direction: column;
}
.component-nav-sub-item {
  width: 100%;
  text-align: center;
  display: block;
}
.component-nav-sub-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: calc(var(--esg-font-body-3-fs) / 16 * 1rem);
  line-height: calc(var(--esg-font-body-3-lh) / 16 * 1rem);
  letter-spacing: var(--esg-font-body-3-ls);
  white-space: nowrap;
}
.component-nav-sub-link:hover {
  background-color: #F4F4F4;
  color: #000000;
  text-decoration: none;
}
.component-nav-sub-link.is-active {
  font-weight: var(--fw-bold);
  color: var(--default-color);
}
.component-nav-link {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  font-size: 0.875rem;
  line-height: 1.4286;
  font-weight: var(--fw-normal);
  color: var(--body-color);
  transition: color 0.3s ease, background-color 0.3s ease, font-weight 0.3s ease;
  white-space: nowrap;
}
@media all and (min-width: 1440px) {
  .component-nav-link {
    padding: 0;
    font-size: 1.1875rem;
    line-height: 1.3684;
    font-weight: var(--fw-normal);
    color: var(--body-color);
  }
}
.component-nav-link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.component-nav-link:hover {
  background-color: transparent;
  color: #000000;
  text-decoration: none;
}
.component-nav-link.is-active {
  font-weight: var(--fw-bold);
  color: var(--default-color);
}
.component-nav-link.is-active::before {
  background-color: #111111;
}