@charset "UTF-8";
/*======================================플러그인======================================*/
/* 
Live Sass Compiler 이용
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* 효과 */
.fade {
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  -moz-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

/* 모달 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
     -moz-transform: translate(0, -50px);
      -ms-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
          transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
     -moz-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: -webkit-calc(100% - 1rem);
  height: -moz-calc(100% - 1rem);
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: -webkit-calc(100% - 1rem);
  min-height: -moz-calc(100% - 1rem);
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  outline: 0;
  overflow-y: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.6;
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

/* 아코디언 */
.accordion-button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.accordion-button:not(.collapsed) {
  font-weight: 700;
}
.accordion-button:not(.collapsed)::after {
  background-position: 0 -9px;
}
.accordion-button::after {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  position: absolute;
  display: inline-block;
  width: 13px;
  height: 8px;
  top: 31px;
  right: 30px;
  background-image: url("../images/common/component/tab_arrow.png");
  background-position: 0 0;
  -webkit-background-size: 13px auto;
  background-size: 13px auto;
  background-repeat: no-repeat;
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: -webkit-calc(0.25rem - 1px);
  border-top-left-radius: -moz-calc(0.25rem - 1px);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: -webkit-calc(0.25rem - 1px);
  border-top-right-radius: -moz-calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: -webkit-calc(0.25rem - 1px);
  border-bottom-right-radius: -moz-calc(0.25rem - 1px);
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: -webkit-calc(0.25rem - 1px);
  border-bottom-left-radius: -moz-calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .collapsing.collapse-horizontal {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .accordion-button {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .accordion-button::after {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
/*======================================헬퍼&유틸======================================*/
.skip-wrap {
  position: fixed;
}

.skip-nav {
  position: absolute;
  top: -100px;
  left: -100%;
  color: #fff;
  background: #333;
  font-size: 1.6em;
  -webkit-transition: left 0.3s ease;
  -moz-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.skip-nav:focus {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100px;
  z-index: 9999;
  padding: 15px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  vertical-align: middle;
}

[is-hidden], .is-hidden {
  display: none;
}

.blind, .hide {
  position: absolute !important;
  overflow: hidden;
  display: inline-block;
  height: 1px;
  width: 1px;
  border: 0;
  margin: -1px;
  font-size: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}
.blind.block, .hide.block {
  display: block;
}

@media (max-width: 768px) {
  [only-desktop], .show-only-desktop {
    display: none !important;
  }
}

@media (min-width: 769px) {
  [only-mobile], .show-only-mobile {
    display: none !important;
  }
}

/*======================================리셋======================================*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: keep-all;
}

body {
  min-width: 320px;
}
body *, body *:after, body *:before {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", AppleSDGothicNeo, "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
}

.content-body * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/*============================폰트 적용 시, 상대주소 확인 필요============================*/
/* noto-sans-kr fonts */
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/noto-sans-kr-v8-korean-100.eot"); /* IE9 Compat Modes */
  src: local("Noto Sans KR Thin"), local("NotoSansKR-Thin"), url("../fonts/noto-sans-kr-v8-korean-100.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-kr-v8-korean-100.woff2") format("woff2"), url("../fonts/noto-sans-kr-v8-korean-100.woff") format("woff"), url("../fonts/noto-sans-kr-v8-korean-100.ttf") format("truetype"), url("../fonts/noto-sans-kr-v8-korean-100.svg#NotoSansKR") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/noto-sans-kr-v8-korean-300.eot"); /* IE9 Compat Modes */
  src: local("Noto Sans KR Light"), local("NotoSansKR-Light"), url("../fonts/noto-sans-kr-v8-korean-300.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-kr-v8-korean-300.woff2") format("woff2"), url("../fonts/noto-sans-kr-v8-korean-300.woff") format("woff"), url("../fonts/noto-sans-kr-v8-korean-300.ttf") format("truetype"), url("../fonts/noto-sans-kr-v8-korean-300.svg#NotoSansKR") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-kr-v8-korean-regular.eot"); /* IE9 Compat Modes */
  src: local("Noto Sans KR Regular"), local("NotoSansKR-Regular"), url("../fonts/noto-sans-kr-v8-korean-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-kr-v8-korean-regular.woff2") format("woff2"), url("../fonts/noto-sans-kr-v8-korean-regular.woff") format("woff"), url("../fonts/noto-sans-kr-v8-korean-regular.ttf") format("truetype"), url("../fonts/noto-sans-kr-v8-korean-regular.svg#NotoSansKR") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-kr-v8-korean-500.eot"); /* IE9 Compat Modes */
  src: local("Noto Sans KR Medium"), local("NotoSansKR-Medium"), url("../fonts/noto-sans-kr-v8-korean-500.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-kr-v8-korean-500.woff2") format("woff2"), url("../fonts/noto-sans-kr-v8-korean-500.woff") format("woff"), url("../fonts/noto-sans-kr-v8-korean-500.ttf") format("truetype"), url("../fonts/noto-sans-kr-v8-korean-500.svg#NotoSansKR") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-kr-v8-korean-700.eot"); /* IE9 Compat Modes */
  src: local("Noto Sans KR Bold"), local("NotoSansKR-Bold"), url("../fonts/noto-sans-kr-v8-korean-700.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-kr-v8-korean-700.woff2") format("woff2"), url("../fonts/noto-sans-kr-v8-korean-700.woff") format("woff"), url("../fonts/noto-sans-kr-v8-korean-700.ttf") format("truetype"), url("../fonts/noto-sans-kr-v8-korean-700.svg#NotoSansKR") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/noto-sans-kr-v8-korean-900.eot"); /* IE9 Compat Modes */
  src: local("Noto Sans KR Black"), local("NotoSansKR-Black"), url("../fonts/noto-sans-kr-v8-korean-900.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-kr-v8-korean-900.woff2") format("woff2"), url("../fonts/noto-sans-kr-v8-korean-900.woff") format("woff"), url("../fonts/noto-sans-kr-v8-korean-900.ttf") format("truetype"), url("../fonts/noto-sans-kr-v8-korean-900.svg#NotoSansKR") format("svg"); /* Legacy iOS */
}
/* roboto fonts */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/roboto-v18-latin-100.eot"); /* IE9 Compat Modes */
  src: local("Roboto Thin"), local("Roboto-Thin"), url("../fonts/roboto-v18-latin-100.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v18-latin-100.woff2") format("woff2"), url("../fonts/roboto-v18-latin-100.woff") format("woff"), url("../fonts/roboto-v18-latin-100.ttf") format("truetype"), url("../fonts/roboto-v18-latin-100.svg#Roboto") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v18-latin-300.eot"); /* IE9 Compat Modes */
  src: local("Roboto Light"), local("Roboto-Light"), url("../fonts/roboto-v18-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v18-latin-300.woff2") format("woff2"), url("../fonts/roboto-v18-latin-300.woff") format("woff"), url("../fonts/roboto-v18-latin-300.ttf") format("truetype"), url("../fonts/roboto-v18-latin-300.svg#Roboto") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v18-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto-v18-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v18-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v18-latin-regular.woff") format("woff"), url("../fonts/roboto-v18-latin-regular.ttf") format("truetype"), url("../fonts/roboto-v18-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v18-latin-500.eot"); /* IE9 Compat Modes */
  src: local("Roboto Medium"), local("Roboto-Medium"), url("../fonts/roboto-v18-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v18-latin-500.woff2") format("woff2"), url("../fonts/roboto-v18-latin-500.woff") format("woff"), url("../fonts/roboto-v18-latin-500.ttf") format("truetype"), url("../fonts/roboto-v18-latin-500.svg#Roboto") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v18-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto-v18-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v18-latin-700.woff2") format("woff2"), url("../fonts/roboto-v18-latin-700.woff") format("woff"), url("../fonts/roboto-v18-latin-700.ttf") format("truetype"), url("../fonts/roboto-v18-latin-700.svg#Roboto") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/roboto-v18-latin-900.eot"); /* IE9 Compat Modes */
  src: local("Roboto Black"), local("Roboto-Black"), url("../fonts/roboto-v18-latin-900.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v18-latin-900.woff2") format("woff2"), url("../fonts/roboto-v18-latin-900.woff") format("woff"), url("../fonts/roboto-v18-latin-900.ttf") format("truetype"), url("../fonts/roboto-v18-latin-900.svg#Roboto") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "SynergyDisplay";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/SynergyDisplayLight.woff") format("woff"), url("../fonts/SynergyDisplayTTFLight.ttf") format("truetype"); /* Safari, Android, iOS */
}
@font-face {
  font-family: "SynergyDisplay";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SynergyDisplayRegular.woff") format("woff"), url("../fonts/SynergyDisplayTTFRegular.ttf") format("truetype"); /* Safari, Android, iOS */
}
@font-face {
  font-family: "SynergyDisplay";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/SynergyDisplayBold.woff") format("woff"), url("../fonts/SynergyDisplayTTFBold.ttf") format("truetype"); /* Safari, Android, iOS */
}
@font-face {
  font-family: "Synergy Display";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/SynergyDisplayLight.woff") format("woff"), url("../fonts/SynergyDisplayTTFLight.ttf") format("truetype"); /* Safari, Android, iOS */
}
@font-face {
  font-family: "Synergy Display";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SynergyDisplayRegular.woff") format("woff"), url("../fonts/SynergyDisplayTTFRegular.ttf") format("truetype"); /* Safari, Android, iOS */
}
@font-face {
  font-family: "Synergy Display";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/SynergyDisplayBold.woff") format("woff"), url("../fonts/SynergyDisplayTTFBold.ttf") format("truetype"); /* Safari, Android, iOS */
}
/*======================================공통 레이아웃======================================*/
@media (min-width: 769px) {
  html.os-name-mac-os.view-landscape body {
    min-width: 1220px;
  }
}

::-moz-selection {
  color: #f6f6f6;
  background-color: #f24c34;
}

::selection {
  color: #f6f6f6;
  background-color: #f24c34;
}

img::-moz-selection {
  background: none;
}

img::selection {
  background: none;
}

/*레이아웃 2019 - 이전 레이아웃 수정*/
.gnb {
  position: static;
  z-index: auto;
}
@media (max-width: 768px) {
  .gnb {
    position: static;
  }
}

.gnb + .content {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .gnb + .content {
    padding-top: 60px;
  }
}

.nav {
  top: 100px;
}

.content {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .content {
    padding-top: 60px;
  }
}

.container {
  padding-bottom: 0;
}
.container:lang(en) {
  padding-bottom: 0;
}

#btn_page_top {
  display: none !important;
}

.footer {
  position: static;
  bottom: auto;
  border: none;
  background: none;
}

/*기존 레이아웃 수정*/
.board-list-type .board-list-wrap.list-download.add-index ul li .title-wrap .number {
  display: inline-block;
  width: 65px;
}
@media (max-width: 768px) {
  .board-list-type .board-list-wrap.list-download.add-index ul li .title-wrap .number {
    width: 60px;
  }
}
@media (max-width: 768px) {
  .board-list-type .board-list-wrap.list-download.add-index ul li .download-wrap {
    padding-left: 60px;
  }
}
.board-list-type .board-list-wrap.list-index-2items * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.board-list-type .board-list-wrap.list-index-2items ul li {
  font-size: 0;
}
.board-list-type .board-list-wrap.list-index-2items .index-wrap {
  position: relative;
  display: inline-block;
  width: 60px;
  padding-left: 20px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .board-list-type .board-list-wrap.list-index-2items .index-wrap {
    width: 45px;
    padding-left: 0;
  }
}
.board-list-type .board-list-wrap.list-index-2items .index-wrap .index {
  font-size: 13px;
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap {
  display: inline-block;
  width: -webkit-calc(100% - 60px);
  width: -moz-calc(100% - 60px);
  width: calc(100% - 60px);
  vertical-align: middle;
}
@media (max-width: 768px) {
  .board-list-type .board-list-wrap.list-index-2items .item-wrap {
    width: -webkit-calc(100% - 45px);
    width: -moz-calc(100% - 45px);
    width: calc(100% - 45px);
  }
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link {
  display: block;
  position: relative;
  padding: 16px 20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon {
    padding: 14px 15px;
  }
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon .title {
  max-width: -webkit-calc(100% - 140px);
  max-width: -moz-calc(100% - 140px);
  max-width: calc(100% - 140px);
}
@media (max-width: 768px) {
  .board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon .title {
    max-width: none;
    font-weight: 700;
  }
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon:after {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: -webkit-calc(50% - 12px);
  top: -moz-calc(50% - 12px);
  top: calc(50% - 12px);
  height: 24px;
  padding-left: 32px;
  font-size: 12px;
  text-align: left;
  line-height: 24px;
  letter-spacing: -0.031em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon:after {
    position: relative;
    right: auto;
    left: 0;
    display: block;
    width: -webkit-calc(100% - 15px);
    width: -moz-calc(100% - 15px);
    width: calc(100% - 15px);
    height: 19px;
    padding-left: 24px;
    margin-top: 7px;
    line-height: 18px;
  }
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon.pdf:after {
  content: "View PDF";
  background: url("../images/common/component/large/icon_pdf.png") no-repeat center left/contain;
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon.voice:after {
  content: "Listen voice";
  background: url("../images/common/component/large/icon_voice.png") no-repeat center left/contain;
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon.excel:after {
  content: "Download excel";
  background: url("../images/common/component/large/icon_excel.png") no-repeat center left/contain;
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon.script:after {
  content: "View script";
  background: url("../images/common/component/large/icon_script.png") no-repeat center left/contain;
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link.icon.news:after {
  content: "Press Release";
  background: url("../images/common/component/large/icon_news.png") no-repeat center left/contain;
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link:hover, .board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link:focus {
  background: #f6f6f6;
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item .link .title {
  font-weight: 400;
  letter-spacing: -0.025em;
  white-space: normal;
}
.board-list-type .board-list-wrap.list-index-2items .item-wrap .item + .item {
  border-top: 1px solid #eaeaea;
}

/*  mib2021 리뉴얼 레이아웃 변경 // */
@media (min-width: 769px) {
  .container {
    min-width: 1200px;
  }
}
.container #content .nav {
  display: none;
}
.container #content .nav + #content_inner {
  margin-top: 0;
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner {
    position: relative;
  }
}
@media (max-width: 768px) {
  .container #content .content-header .section-inner .breadcrumb {
    padding-top: 14px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb {
    position: absolute;
    right: 0;
    bottom: 10px;
    text-align: right;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb.multiline {
    bottom: 6px;
    width: 375px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb.multiline ul li span {
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb:lang(en) {
    bottom: 11px;
    width: 340px;
  }
}
.container #content .content-header .section-inner .breadcrumb ul {
  font-size: 0;
}
.container #content .content-header .section-inner .breadcrumb ul li {
  position: relative;
  display: inline-block;
}
.container #content .content-header .section-inner .breadcrumb ul li span {
  font-weight: 500;
  letter-spacing: 0;
  color: #707071;
}
@media (max-width: 768px) {
  .container #content .content-header .section-inner .breadcrumb ul li span {
    font-size: 11px;
    line-height: 17px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb ul li span {
    font-size: 14px;
    line-height: 160%;
  }
  .container #content .content-header .section-inner .breadcrumb ul li span:lang(en) {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .container #content .content-header .section-inner .breadcrumb ul li + li {
    padding-left: 13px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb ul li + li {
    padding-left: 26px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb ul li + li:lang(en) {
    padding-left: 13px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb ul li + li:lang(en)::before {
    left: 4px;
    width: 4px;
  }
}
.container #content .content-header .section-inner .breadcrumb ul li + li::before {
  content: "";
  position: absolute;
  top: -webkit-calc(50% - 1px);
  top: -moz-calc(50% - 1px);
  top: calc(50% - 1px);
  display: inline-block;
  height: 1px;
  background-color: #98999a;
}
@media (max-width: 768px) {
  .container #content .content-header .section-inner .breadcrumb ul li + li::before {
    left: 4px;
    width: 5px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner .breadcrumb ul li + li::before {
    left: 9px;
    width: 8px;
  }
}
.container #content .content-header .section-inner h3.type-txt {
  font-family: "SynergyDisplay";
  font-weight: 400;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  .container #content .content-header .section-inner h3.type-txt {
    height: auto;
    padding-top: 36px;
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner h3.type-txt {
    padding-top: 96px;
    margin-bottom: 26px;
    font-size: 55px;
    line-height: 64px;
  }
}
@media (min-width: 769px) {
  .container #content .content-header .section-inner h3.type-txt:lang(en) {
    width: 710px;
  }
}

.content-body .section-inner h4 {
  position: relative;
}
@media (max-width: 768px) {
  .content-body .section-inner h4 {
    padding: 40px 0 16px;
  }
}
@media (min-width: 769px) {
  .content-body .section-inner h4 {
    padding: 60px 0 16px;
  }
}
.content-body .section-inner h4:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e51937;
}
@media (max-width: 768px) {
  .content-body .section-inner h4:after {
    width: 30px;
  }
}
@media (min-width: 769px) {
  .content-body .section-inner h4:after {
    width: 18px;
  }
}
.content-body .section-inner h4 img {
  width: auto;
  vertical-align: top;
}
@media (max-width: 768px) {
  .content-body .section-inner h4 img {
    height: 20px;
  }
}
@media (min-width: 769px) {
  .content-body .section-inner h4 img {
    height: 27px;
  }
}
.content-body .section-inner h4.type-txt {
  padding: 0;
  font-family: "SynergyDisplay";
  font-weight: 600;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  .content-body .section-inner h4.type-txt {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  .content-body .section-inner h4.type-txt {
    font-size: 30px;
    line-height: 45px;
  }
}
.content-body .section-inner h4.type-txt:after {
  display: none;
}
.content-body .section-inner h4.type-txt:lang(en) {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .content-body .section-inner h4.mobile-multiline img {
    height: 46px;
  }
}
@media (min-width: 769px) {
  .content-body .section-inner h4.pc-multiline img {
    height: 63px;
  }
}

/* //  mib2021 리뉴얼 레이아웃 변경 */
body.stop-scroll {
  overflow-y: hidden;
}

/* Only IE9 */
.msie9 .gnb {
  z-index: 1000;
}

.gnb {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  font-size: 0;
  background-color: #fff;
  -webkit-transition: background 0.3s, border 0.3s;
  -moz-transition: background 0.3s, border 0.3s;
  transition: background 0.3s, border 0.3s;
}
.gnb *, .gnb *:after, .gnb *:before {
  font-family: "SynergyDisplay";
}
@media (max-width: 768px) {
  .gnb {
    border-bottom: 1px solid #e3e3e3;
    height: 60px;
    min-width: 320px;
  }
}
@media (min-width: 769px) {
  .gnb {
    height: 100px;
    min-width: 1200px;
  }
}
@media (min-width: 769px) {
  .gnb:after {
    content: "";
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
.gnb.is-active {
  background-color: #fff;
}
.gnb.is-active.prevent-dimmed:after {
  display: none !important;
}
.gnb.is-active:after {
  display: block;
  opacity: 0.7;
}
.gnb.is-active .navigation-header:before {
  z-index: 100;
  background-color: #06090a;
}
.gnb.is-active .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link {
  color: #202021;
}
.gnb.is-active .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-opened {
  color: #e9002b;
}
.gnb.is-active .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active {
  color: #e9002b;
}
.gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  border: 1px solid #a6a6a6;
  color: #505051;
  background: url("../images/common/2021/support-icon_on.png") center right 7px/auto no-repeat;
}
.gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  border: 1px solid #a6a6a6;
  color: #505051;
}
.gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn span {
  background-color: #202121;
}
.gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:after, .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:before {
  background-color: #202121;
}
.gnb.all-menu-active .navigation-header:before {
  background-color: #3c3c41;
}
.gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  display: none;
}
.gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap {
  position: absolute;
  top: 0;
  left: auto;
  right: 14px;
  display: block;
  text-align: right;
  width: 300px;
  height: 20px;
  padding: 0;
  border: none !important;
  background-color: rgba(0, 0, 0, 0) !important;
}
.gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap .support-d2-link {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  line-height: 20px;
  color: #cccccc !important;
}
.gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap .support-d2-link + .support-d2-link:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 10px;
  background-color: #525257;
}
.gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  border: 1px solid #a1a1a6;
  background-color: #a1a1a6;
  color: #202021;
}
.gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:hover, .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:focus {
  border: 1px solid #a1a1a6;
  background-color: #a1a1a6 !important;
  color: #202021 !important;
}
@media (min-width: 769px) {
  .gnb .navigation-header:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    height: 1px;
    background-color: #06090a;
  }
}
.gnb .navigation-header .gnb-content-mobile .logo {
  display: inline-block;
}
.gnb .navigation-header .gnb-content-mobile .logo .logo-link {
  display: block;
  width: 101px;
  padding: 19px 15px 15px;
}
.gnb .navigation-header .gnb-content-mobile .logo .logo-link::after {
  content: "";
  display: block;
  width: 71px;
  height: 27px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='71' height='27' viewBox='0 0 71 27' fill='none'%3E%3Cg clip-path='url(%23clip0_528_9769)'%3E%3Cpath d='M68.8471 20.0312C67.465 20.0312 66.7538 20.9189 66.6432 21.0537C66.2939 20.4113 65.6531 20.0312 64.8113 20.0312C63.595 20.0312 62.9014 20.7203 62.7883 20.8331C62.7381 20.6491 62.4893 20.144 61.7027 20.144C61.4765 20.144 61.1423 20.2151 61.1172 20.22C61.1499 20.3647 61.2981 21.066 61.2981 22.0346V26.2989H62.8964V21.9512C62.929 21.9243 63.5271 21.3333 64.2458 21.3333C64.9646 21.3333 65.3239 21.858 65.3239 22.5741V26.2989H66.9297V21.9512C66.9624 21.9218 67.5479 21.3333 68.2792 21.3333C69.0105 21.3333 69.3472 21.858 69.3472 22.5741V26.2989H70.9605V22.3289C70.9605 20.936 70.1488 20.0287 68.8446 20.0287L68.8471 20.0312Z' fill='%23FF7A00'/%3E%3Cpath d='M51.3117 25.1758C50.2235 25.1758 49.4495 24.3372 49.4495 23.2411C49.4495 22.0199 50.3316 21.2941 51.3117 21.2941C51.8419 21.2941 52.063 21.451 52.4123 21.451C52.7868 21.451 52.9853 21.2744 53.1713 20.9213C53.2743 20.7276 53.3346 20.6148 53.3346 20.6148C53.2542 20.5658 52.445 20.0287 51.0679 20.0287C49.05 20.0287 47.8438 21.4387 47.8438 23.2386C47.8438 25.2028 49.2234 26.4362 51.0679 26.4362C52.4048 26.4362 53.214 25.9041 53.3572 25.8036L52.8019 24.7344C52.6787 24.8104 52.1083 25.1709 51.3091 25.1709L51.3117 25.1758Z' fill='%23FF7A00'/%3E%3Cpath d='M33.7607 20.0343C32.2278 20.0343 30.9336 21.2506 30.9336 23.2442C30.9336 25.2378 32.1876 26.4418 34.0623 26.4418C35.5524 26.4418 36.3239 25.8067 36.4169 25.7478C36.4169 25.7478 36.2712 25.5173 36.231 25.4536C36.0224 25.1201 35.7836 25.0122 35.5198 25.0122C34.9921 25.0122 34.9242 25.2255 34.2105 25.2255C32.9842 25.2255 32.5595 24.2912 32.5293 23.6684H36.6355V23.2049C36.6355 21.2947 35.5072 20.0343 33.7607 20.0343ZM32.5268 22.56C32.5268 21.8587 33.0319 21.2089 33.7381 21.2089C34.5297 21.2089 34.9644 21.8783 34.977 22.56H32.5268Z' fill='%23FF7A00'/%3E%3Cpath d='M39.3781 24.5797V18.1919C39.3781 17.471 38.8856 16.9119 38.1191 16.9119H37.7773V25.205C37.7773 25.9676 38.2623 26.4434 39.1042 26.4434C40.1421 26.4434 40.4537 25.7224 40.4537 25.0432C40.4109 25.0653 40.1898 25.1535 39.9687 25.1535C39.5993 25.1535 39.3781 24.9427 39.3781 24.5797Z' fill='%23FF7A00'/%3E%3Cpath d='M28.6764 24.3608V21.3226H30.0158L30.4807 20.148H28.6764V18.3113C28.6764 18.3113 28.5332 18.3113 28.5281 18.3113C27.8144 18.3113 27.0781 18.6056 27.0781 20.1333V20.148H25.8945V21.3226H27.0781V24.9003C27.0781 25.913 27.6913 26.4402 28.5633 26.4402C29.2669 26.4402 30.1766 26.2318 30.1766 24.8708C30.1214 24.9027 29.7796 25.1185 29.4052 25.1185C28.885 25.1185 28.6789 24.8095 28.6789 24.3608H28.6764Z' fill='%23FF7A00'/%3E%3Cpath d='M43.8037 20.0343C42.2707 20.0343 40.9766 21.2506 40.9766 23.2442C40.9766 25.2378 42.2305 26.4418 44.1052 26.4418C45.5954 26.4418 46.3669 25.8067 46.4599 25.7478C46.4599 25.7478 46.3141 25.5173 46.2739 25.4536C46.0653 25.1201 45.8266 25.0122 45.5627 25.0122C45.035 25.0122 44.9672 25.2255 44.2535 25.2255C43.0272 25.2255 42.6025 24.2912 42.5723 23.6684H46.6785V23.2049C46.6785 21.2947 45.5502 20.0343 43.8037 20.0343ZM42.5673 22.56C42.5673 21.8587 43.0724 21.2089 43.7785 21.2089C44.5701 21.2089 45.0049 21.8783 45.0174 22.56H42.5673Z' fill='%23FF7A00'/%3E%3Cpath d='M57.0254 26.4387C55.0653 26.4387 53.8867 25.1758 53.8867 23.2362C53.8867 21.2965 55.0502 20.0287 57.0254 20.0287C59.0006 20.0287 60.1666 21.3039 60.1666 23.2362C60.1666 25.063 59.0936 26.4387 57.0254 26.4387ZM57.0254 25.2371C58.008 25.2371 58.5734 24.4132 58.5734 23.2386C58.5734 22.064 58.0206 21.2328 57.0254 21.2328C56.0303 21.2328 55.4799 22.0493 55.4799 23.2386C55.4799 24.4279 56.0328 25.2371 57.0254 25.2371Z' fill='%23FF7A00'/%3E%3Cpath d='M5.46687 19.4688C4.49937 19.0274 3.70778 18.6719 3.70778 17.9509C3.70778 17.3992 4.16012 16.9995 5.05222 16.9995C5.38142 16.9995 5.6478 17.0363 5.92674 17.0878C6.07249 17.1123 6.22579 17.1319 6.35395 17.1319C7.13297 17.1319 7.57274 16.6783 7.86676 15.8176L7.98738 15.4669C7.86173 15.4179 6.59017 14.871 4.92909 14.871C2.28795 14.871 0.893246 16.5238 0.893246 18.2378C0.893246 19.1034 1.16967 19.7287 1.60442 20.2241C2.16481 20.8592 2.96143 21.276 3.71029 21.6292C4.79841 22.149 5.78099 22.534 5.78099 23.3089C5.78099 23.993 5.05474 24.3829 4.08473 24.3829C2.75536 24.3829 1.59437 23.6424 1.4461 23.5516L0.355469 25.5477C0.548968 25.6556 1.95624 26.5261 4.26818 26.5261C6.73341 26.5261 8.60055 25.1455 8.60055 23.0244C8.60055 20.9033 6.86911 20.1309 5.46938 19.4688H5.46687Z' fill='%23EA002C'/%3E%3Cpath d='M15.1051 20.4558L19.5757 15.1052H16.3893L12.8234 19.7226H12.7706V15.1052H10.1445V26.439H10.3003C11.4362 26.439 12.7882 25.9265 12.7882 24.0751V21.4734H12.841L16.4772 26.2968H19.8195L15.1051 20.4558Z' fill='%23EA002C'/%3E%3Cpath d='M19.7249 2.97205C18.8001 3.14124 17.4305 3.96026 17.4331 5.40948C17.4356 6.72383 18.5388 7.52078 18.5413 9.24464C18.5463 10.5418 17.815 11.4148 17.0234 11.8979C17.3426 11.8709 17.6944 11.8513 18.0789 11.8513C18.8881 11.8513 19.3756 11.9248 19.4057 11.9297L23.5547 6.96414C22.4037 5.28197 21.0568 3.97497 19.7249 2.97205Z' fill='%23EA002C'/%3E%3Cpath d='M23.2123 16.3823C23.735 15.5903 23.8003 14.325 23.8456 13.0376C23.8933 11.8361 24.1521 10.9337 25.7981 10.9263C26.1625 10.9263 26.5093 10.9729 27.1401 10.9729C29.5525 10.9631 31.1282 10.1514 32.1057 9.61932C30.1054 8.37363 27.1828 7.10342 23.5591 6.95874C23.3229 7.60856 21.4859 12.5913 21.3477 12.9959C21.3678 13.0205 21.6894 13.3711 22.0915 14.0577C22.6846 14.9993 23.0012 15.7987 23.2123 16.3823Z' fill='%23EA002C'/%3E%3Cpath d='M14.4563 12.3098C14.2477 12.3098 14.1422 12.1749 14.1145 11.9395C14.0869 11.7066 13.0515 2.44479 12.8957 1.04216C12.8731 0.838635 12.8203 0.461004 12.8203 0.328588C12.8178 0.112799 12.9636 0 13.132 0C13.6245 0 16.3033 0.610585 19.1455 2.55514C18.3263 2.78074 16.8461 3.61201 16.8512 5.33342C16.8562 6.85621 17.9745 7.69484 17.9795 9.22253C17.9895 11.709 15.0594 12.3098 14.4538 12.3098H14.4563Z' fill='%23FF7A00'/%3E%3Cpath d='M23.4531 17.0449C23.4984 17.1602 23.5386 17.2583 23.5813 17.3245C23.6466 17.4324 23.7321 17.4814 23.8376 17.4814C23.9029 17.4814 23.9859 17.4594 24.0738 17.4201C24.2925 17.322 32.9547 13.3863 34.2614 12.8003C34.4499 12.712 34.8093 12.5551 34.9274 12.4864C35.0505 12.4177 35.1058 12.3197 35.1058 12.2167C35.1058 12.1603 35.0882 12.1039 35.0555 12.0499C34.8922 11.7924 34.0554 10.9244 32.6531 9.9754C31.5399 10.5737 29.8034 11.4982 27.2201 11.508C26.5868 11.508 26.4436 11.4663 26.0113 11.4688C24.7498 11.4737 24.4357 11.9984 24.388 13.0774C24.3804 13.2809 24.3779 13.5555 24.3653 13.8572C24.3251 14.8208 24.2095 16.1524 23.4531 17.0425V17.0449Z' fill='%23FF7A00'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_528_9769'%3E%3Crect width='71' height='27' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  -webkit-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
}
.gnb .navigation-header .gnb-content-mobile .logo .logo-link .img {
  display: none;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-open {
  position: absolute;
  top: 13px;
  right: 0px;
  display: block;
  padding: 15px;
  border: none;
  text-align: right;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-open span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 6px 0 6px 8px;
  background-color: #EA002C;
  font-size: 0;
  color: #EA002C;
  overflow: hidden;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-open:after, .gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-open:before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #EA002C;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap {
  display: none;
  position: absolute;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background-color: #fff;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap.is-open {
  display: block;
  right: 0;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top {
  height: 66px;
  border-bottom: 1px solid #ccc;
  font-size: 0;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav {
  display: inline-block;
  margin: 21px 0 0 15px;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .support-d1 {
  position: relative;
  z-index: 999;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #ccc;
  background-color: #fff;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .support-d1.is-open .support-d1-link:before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .support-d1.is-open .support-d2-wrap {
  display: block;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .support-d1 .support-d1-link {
  display: block;
  position: relative;
  width: 108px;
  height: 28px;
  padding-left: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  color: #707071;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .support-d1 .support-d1-link:before {
  content: "";
  display: block;
  position: absolute;
  top: -webkit-calc(50% - 3px);
  top: -moz-calc(50% - 3px);
  top: calc(50% - 3px);
  right: 9px;
  width: 9px;
  height: 6px;
  background: url("../images/common/2021/support-icon_sm.png") center/9px no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .support-d2-wrap {
  display: none;
  position: relative;
  padding: 8px 0;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .support-d2-wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -webkit-calc(50% - 45px);
  left: -moz-calc(50% - 45px);
  left: calc(50% - 45px);
  width: 90px;
  height: 1px;
  background-color: #ededed;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .support-d2-wrap .support-d2-link {
  display: block;
  padding-left: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
  color: #707071;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .gnb-lang {
  display: inline-block;
  vertical-align: top;
  width: 38px;
  margin-left: 5px;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .gnb-util-nav .gnb-lang .lang-link {
  display: block;
  height: 30px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  color: #fff;
  background-color: #707071;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .side-menu-close {
  position: absolute;
  top: 22px;
  right: 10px;
  display: block;
  width: 27px;
  height: 27px;
  background-color: rgba(0, 0, 0, 0);
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .side-menu-close:after, .gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .side-menu-close:before {
  content: "";
  position: absolute;
  left: -webkit-calc(50% - 12px);
  left: -moz-calc(50% - 12px);
  left: calc(50% - 12px);
  top: -webkit-calc(50% - 1px);
  top: -moz-calc(50% - 1px);
  top: calc(50% - 1px);
  display: block;
  width: 24px;
  height: 2px;
  background-color: #202021;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform-origin: center center;
     -moz-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .side-menu-top .side-menu-close:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group {
  padding-top: 21px;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2 {
  position: relative;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2.add:after, .gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2.add:before {
  content: "";
  position: absolute;
  top: -webkit-calc(50% - 1px);
  top: -moz-calc(50% - 1px);
  top: calc(50% - 1px);
  right: 20px;
  display: block;
  width: 10px;
  height: 2px;
  background: #222;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, background 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2.add:before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2.is-active:after {
  background: #e9002b;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2.is-active:before {
  opacity: 0;
  background: #e9002b;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2.is-active .depth1-link {
  color: #e9002b;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link {
  display: block;
  width: 100%;
  border: none;
  text-align: center;
  font-size: 23px;
  font-weight: 400;
  line-height: 65px;
  letter-spacing: 0;
  color: #202021;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link:hover, .gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link:focus {
  color: #e9002b;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-opened {
  color: #e9002b;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group {
  display: none;
  padding: 5px 15px;
  margin-bottom: 25px;
  background-color: #f5f5f5;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item {
  padding: 16px 0;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item.down-item .down-link {
  position: relative;
  display: block;
  width: 230px;
  height: 40px;
  border: 1px solid #d0d0d0;
  border-radius: 40px;
  margin: 6px auto;
  background: #fff url("../images/common/icon-pdf-down_lg.png") 4px center/30px auto no-repeat;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item.down-item .down-link .down-link-txt {
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 53px;
  font-size: 15px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item + .depth2-item {
  border-top: 1px solid #e5e5e5;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item .depth2-link {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #505051;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item .depth2-link.is-opened {
  color: #ec3b5b;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px 0;
  margin-top: 26px;
  font-size: 0;
  text-align: center;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item {
  display: inline-block;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link {
  display: block;
  text-align: center;
  padding: 0 15px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #999;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link.is-opened {
  color: #ec3b5b;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group + .depth3-group {
  margin-top: -6px;
}
.gnb .navigation-header .gnb-content-mobile .nav-wrap .side-menu-wrap .depth1-group .depth1-item .depth2-group.depth2-ir .depth2-item .depth3-group .depth3-item:lang(en) {
  display: block;
}
.gnb .navigation-header .gnb-content-desktop {
  position: relative;
  width: 1200px;
  padding: 35px 20px 0;
  margin: 0 auto;
}
.gnb .navigation-header .gnb-content-desktop:lang(en) {
  padding: 34px 20px 1px;
}
.gnb .navigation-header .gnb-content-desktop .logo {
  position: relative;
  z-index: 100;
  display: inline-block;
}
.gnb .navigation-header .gnb-content-desktop .logo .logo-link {
  display: block;
  width: 100px;
}
.gnb .navigation-header .gnb-content-desktop .logo .logo-link .img {
  width: 100%;
  vertical-align: top;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap {
  display: inline-block;
  margin-left: 50px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap:lang(en) {
  margin-left: 113px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap.add-contact:lang(en) {
  margin-left: 85px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap.add-contact .depth1-group .depth1-item .depth1-h2:lang(en) {
  margin: 0 13px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group {
  padding: 0;
  margin: 0;
  font-size: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item {
  display: inline-block;
  vertical-align: top;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 {
  margin: 0 20px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2:lang(en) {
  margin: 0 30px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link {
  display: block;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: #202021;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-opened {
  color: #ea002c;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link:focus, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active {
  color: #ea002c;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap {
  display: none;
  position: fixed;
  left: 0;
  top: 100px;
  right: 0;
  z-index: 5;
  height: 395px;
  background-color: #fff;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap:lang(en) {
  height: 420px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner {
  width: 1200px;
  margin: 0 auto;
  font-size: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item {
  display: inline-block;
  vertical-align: top;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: 0;
  color: #202121;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link:lang(en) {
  line-height: 22px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link.is-opened {
  color: #ea002c;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link:focus {
  color: #ea002c;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link.red {
  color: #ea002c;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group:lang(en) {
  padding-top: 13px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0;
  color: #505051;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:lang(en) {
  padding: 5px 0;
  line-height: 20px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link.is-opened {
  color: #ea002c;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:focus {
  color: #ea002c;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group {
  position: relative;
  height: 230px;
  padding-top: 37px;
  margin: 0 0 0 109px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group:lang(en) {
  padding-top: 45px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item {
  display: block;
  width: 150px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth2-link:lang(en) {
  padding: 11.5px 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content {
  position: absolute;
  top: 46px;
  left: 150px;
  height: 100%;
  padding-left: 60px;
  border-left: 1px dotted #1a1a1a;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content:lang(en) {
  top: 55px;
  left: 148px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-desc {
  padding-left: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #202021;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-desc:lang(en) {
  font-weight: 300;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group {
  padding-top: 27px;
  font-size: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item {
  display: inline-block;
  vertical-align: top;
  border-radius: 140px;
  margin-right: 40px;
  text-align: center;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link {
  background: url("../images/common/2021/header-business-link01_lg.png?v2") center/140px no-repeat;
  -webkit-transition: background-image 0.3s ease;
  -moz-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-link01-on_lg.png?v2");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link:after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  opacity: 0;
  background-image: url("../images/common/2021/header-business-link01-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:lang(en) {
  margin-right: 42px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(2) .depth3-link {
  background-image: url("../images/common/2021/header-business-link02_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(2) .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(2) .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(2) .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-link02-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(2) .depth3-link:after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  opacity: 0;
  background-image: url("../images/common/2021/header-business-link02-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(3) .depth3-link {
  background-image: url("../images/common/2021/header-business-link03_lg.png?v2");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(3) .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(3) .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(3) .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-link03-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(3) .depth3-link:after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  opacity: 0;
  background-image: url("../images/common/2021/header-business-link03-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(4) .depth3-link {
  background-image: url("../images/common/2021/header-business-link04_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(4) .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(4) .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(4) .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-link04-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(4) .depth3-link:after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  opacity: 0;
  background-image: url("../images/common/2021/header-business-link04-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(5) {
  margin-right: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(5) .depth3-link {
  background-image: url("../images/common/2021/header-business-link05_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(5) .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(5) .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(5) .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-link05-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(5) .depth3-link:after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  opacity: 0;
  background-image: url("../images/common/2021/header-business-link05-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item:nth-child(5) .depth3-link .depth3-txt {
  top: 50%;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-mobile .depth3-link span:lang(en) {
  line-height: 20px;
  padding: 18px 15px 18px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-media .depth3-link {
  background-image: url("../images/common/2021/header-business-media_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-media .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-media .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-media .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-media-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-media .depth3-link:after {
  background-image: url("../images/common/2021/header-business-media-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-enterprise .depth3-link {
  background-image: url("../images/common/2021/header-business-enterprise_lg.png?v2");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-enterprise .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-enterprise .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-enterprise .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-enterprise-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-enterprise .depth3-link:after {
  background-image: url("../images/common/2021/header-business-enterprise-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-aiverse .depth3-link {
  background-image: url("../images/common/2021/header-business-aiverse_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-aiverse .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-aiverse .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-aiverse .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-aiverse-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-aiverse .depth3-link:after {
  background-image: url("../images/common/2021/header-business-aiverse-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-intelligence .depth3-link {
  background-image: url("../images/common/2021/header-business-intelligence_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-intelligence .depth3-link.is-opened, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-intelligence .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-intelligence .depth3-link:focus {
  background-image: url("../images/common/2021/header-business-intelligence-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item.li-intelligence .depth3-link:after {
  background-image: url("../images/common/2021/header-business-intelligence-on_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link {
  display: block;
  position: relative;
  width: 140px;
  height: 140px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0;
  color: #fff;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link.is-opened {
  color: #fff;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link .depth3-txt {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-company .depth2-group .depth2-item .depth3-content .depth3-group .depth3-item .depth3-link .depth3-txt:lang(en) {
  font-size: 16px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg.new-2023 .depth2-inner {
  padding: 36px 20px 36px 208px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg.new-2023 .depth2-inner:lang(en) {
  padding: 36px 0 0 216px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg.new-2023 .depth2-inner .depth2-group {
  padding-left: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg.new-2023 .depth2-inner .depth2-group:lang(en) {
  padding-left: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg.new-2023 .depth2-inner .depth2-group .depth2-item {
  width: 154px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg.new-2023 .depth2-inner .depth2-group .depth2-item:lang(en) {
  width: 155px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner {
  width: 1200px;
  margin: 0 auto;
  padding: 36px 20px 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner:lang(en) {
  padding: 36px 0 0 27px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video {
  display: inline-block;
  vertical-align: top;
  width: 595px;
  height: 240px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video:lang(en) {
  width: 580px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video .depth2-video-link {
  display: block;
  margin-top: 15px;
  border-right: 1px dotted #1a1a1a;
  font-size: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video .depth2-video-link .img {
  display: inline-block;
  width: 310px;
  vertical-align: top;
  margin-right: 29px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video .depth2-video-link .img:lang(en) {
  margin-right: 20px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video .depth2-video-link .depth2-video-wrap {
  display: inline-block;
  vertical-align: top;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video .depth2-video-link .depth2-video-wrap span {
  display: block;
  color: #222;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video .depth2-video-link .depth2-video-wrap span.txt {
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video .depth2-video-link .depth2-video-wrap span.title {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-video .depth2-video-link .depth2-video-wrap span.desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.01em;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-group {
  display: inline-block;
  width: 565px;
  padding-left: 33px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-group:lang(en) {
  padding-top: 13px;
  padding-left: 40px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-group .depth2-item {
  position: relative;
  width: 130px;
  margin-right: 15px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-group .depth2-item:lang(en) {
  width: 115px;
  margin-right: 20px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-group .depth2-item:last-child {
  width: auto;
  margin-right: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-group .depth2-item:last-child:lang(en) {
  width: 115px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-esg .depth2-inner .depth2-group .depth2-item .depth3-group {
  position: absolute;
  top: 40px;
  left: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner {
  padding: 37px 20px 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner:lang(en) {
  padding: 49px 10px 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group {
  display: inline-block;
  vertical-align: top;
  width: 950px;
  padding-left: 189px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group:lang(en) {
  width: 935px;
  padding-left: 18px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group .depth2-item {
  position: relative;
  width: 130px;
  margin-right: 25px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group .depth2-item:lang(en) {
  width: 190px;
  margin-right: 39px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group .depth2-item:last-child {
  margin-right: 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group .depth2-item:last-child:lang(en) {
  width: 220px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group .depth2-item:last-child .depth3-item .depth3-link:last-child:lang(en) {
  padding: 3px 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group .depth2-item .depth3-group {
  position: absolute;
  left: 0;
  top: 41px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group .depth2-item .depth3-group:lang(en) {
  padding-top: 8px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:lang(en) {
  padding: 5px 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 210px;
  padding-left: 30px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content:lang(en) {
  width: 245px;
  padding-left: 33px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content:lang(en):after {
  top: 3px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content:after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  display: block;
  width: 1px;
  height: 285px;
  border-left: 1px dotted #1a1a1a;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .depth2-title {
  padding: 0 0 4px 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: 0;
  color: #505051;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .depth2-title:lang(en) {
  margin-bottom: 12px;
  line-height: 21px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .down-group .down-item {
  width: 180px;
  height: 40px;
  border: 1px solid #b3b5b8;
  border-radius: 40px;
  margin-bottom: 10px;
  background: url("../images/common/2021/pdf-down-icon_lg.png") 4px center/auto no-repeat;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .down-group .down-item:lang(en) {
  width: 100%;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .down-group .down-item .down-link {
  position: relative;
  display: block;
  height: 100%;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .down-group .down-item .down-link .down-link-txt {
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 53px;
  font-size: 15px;
  font-weight: 300;
  line-height: 17px;
  letter-spacing: 0;
  color: #202021;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .down-group .down-item.none-down-item {
  background-image: url("../images/common/2021/none-down-icon_lg.png");
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .down-group .down-item.other-style {
  margin-top: 20px;
  border-color: #e24b2f;
  background-color: #e24b2f;
  background-image: none;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-ir .depth2-inner .depth2-content .down-group .down-item.other-style a .down-link-txt {
  width: 100%;
  left: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0;
  color: #fff;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-news:lang(en) {
  height: 115px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-news:lang(en) .depth2-inner {
  padding: 49px 10px 0;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-news:lang(en) .depth2-inner .depth2-group {
  display: inline-block;
  width: 900px;
  text-align: right;
  padding-right: 90px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-news:lang(en) .depth2-inner .depth2-group .depth2-item + .depth2-item {
  margin-left: 89px;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-news:lang(en) .depth2-inner .depth2-content {
  position: relative;
  top: -8px;
  display: inline-block;
  vertical-align: top;
  width: 270px;
  padding-left: 30px;
  border-left: 1px dotted #1a1a1a;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-news:lang(en) .depth2-inner .depth2-content .down-group .down-item {
  width: 100%;
  height: 40px;
  border: 1px solid #b3b5b8;
  border-radius: 40px;
  background: url("../images/common/2021/pdf-down-icon_lg.png") 4px center/auto no-repeat;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-news:lang(en) .depth2-inner .depth2-content .down-group .down-item .down-link {
  position: relative;
  display: block;
  height: 100%;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.depth2-news:lang(en) .depth2-inner .depth2-content .down-group .down-item .down-link .down-link-txt {
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 53px;
  font-size: 15px;
  font-weight: 300;
  line-height: 17px;
  letter-spacing: 0;
  color: #202021;
}
.gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth2-wrap.is-active {
  display: block;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav {
  position: absolute;
  top: 45px;
  right: 10px;
  display: inline-block;
  padding-left: 60px;
  font-size: 0;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 {
  position: relative;
  z-index: 100;
  display: inline-block;
  vertical-align: top;
  width: 85px;
  height: 20px;
  margin-top: 10px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1.is-active .support-d1-link .icon-chevron {
  -webkit-transform: rotateX(180deg) translateY(1px);
     -moz-transform: rotateX(180deg) translateY(1px);
          transform: rotateX(180deg) translateY(1px);
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1.is-active .support-d2-wrap {
  display: block;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  display: block;
  height: 20px;
  padding-left: 6px;
  border: 1px solid #a6a6a6;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: #505051;
  background: url("../images/common/2021/support-icon_on.png") center right 7px/auto no-repeat;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  width: 100px;
  padding: 7px 0;
  border: 1px solid #b5b5b5;
  background: #fff;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap.is-active {
  display: block;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap .support-d2-link {
  display: block;
  padding: 0 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 25px;
  color: #505051;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang {
  position: relative;
  z-index: 100;
  display: inline-block;
  vertical-align: top;
  margin: 10px 23px 0 6px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang:lang(en) {
  margin: 10px 25px 0 6px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  display: block;
  height: 20px;
  padding: 0 6px;
  border: 1px solid #a6a6a6;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: #505051;
  background-color: rgba(0, 0, 0, 0);
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:hover, .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:focus {
  color: #fff;
  background-color: #505051;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu {
  display: inline-block;
  vertical-align: top;
  height: 18px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0;
  gap: 6px;
  border: none;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 0;
  background-color: #fff;
  font-size: 0;
  background-color: #202121;
  overflow: hidden;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:after, .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #202121;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: none;
  min-height: 800px;
  background-color: #27272c;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner {
  width: 100%;
  height: 100vh;
  border-top: 100px solid #27272c;
  overflow-y: auto;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .all-menu-close-btn {
  position: absolute;
  top: 45px;
  left: -webkit-calc(50% + 550px);
  left: -moz-calc(50% + 550px);
  left: calc(50% + 550px);
  z-index: 99;
  padding: 10px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .all-menu-close-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  font-size: 0;
  color: #fff;
  overflow: hidden;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .all-menu-close-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group {
  position: relative;
  width: 1200px;
  padding: 54px 0 0 29px;
  margin: 0 auto;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group:lang(en) {
  padding: 30px 0 0 26px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item {
  margin-bottom: 23px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item.style-inlineblock {
  display: inline-block;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item.style-inlineblock h2 {
  width: auto;
  margin-right: 100px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth1-h2 {
  display: inline-block;
  vertical-align: top;
  width: 210px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth1-h2:lang(en) {
  width: 243px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth1-h2 p.depth1-link {
  cursor: default;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth1-h2 a.depth1-link:hover, .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth1-h2 a.depth1-link:focus {
  color: #e9002b;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth1-h2 .depth1-link {
  display: block;
  font-size: 30px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: 0;
  color: #fff;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth1-h2 .depth1-link:lang(en) {
  font-size: 25px;
  font-weight: 300;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth1-h2 .depth1-link.is-opened {
  color: #e9002b;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group {
  display: inline-block;
  vertical-align: top;
  width: 880px;
  margin-top: 6px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group:lang(en) {
  margin-top: 14px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item p.depth2-link {
  cursor: default;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item a.depth2-link:hover, .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item a.depth2-link:focus {
  color: #e9002b;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth2-link {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0;
  color: #fff;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth2-link:lang(en) {
  font-weight: 300;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth2-link.is-opened {
  color: #e9002b;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group {
  display: inline-block;
  vertical-align: top;
  margin-left: 7px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group:lang(en) {
  margin-top: 3px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group:lang(en).social_depth3 {
  width: -webkit-calc(100% - 87px);
  width: -moz-calc(100% - 87px);
  width: calc(100% - 87px);
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item {
  display: inline-block;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item + .depth3-item {
  margin-left: 3px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link {
  display: block;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 0;
  color: #e5e5e5;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:lang(en) {
  font-size: 13px;
  color: #999;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link.is-opened {
  color: #ea002c;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:hover, .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:focus {
  color: #e9002b;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-company .depth2-item {
  display: inline-block;
  margin-right: 8px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-company .depth2-item.style-block {
  display: block;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-esg .depth2-item {
  margin-right: 8px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-esg .depth2-item.style-block {
  display: block;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir {
  display: inline-block;
  vertical-align: top;
  width: 400px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir:lang(en) {
  width: 880px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir .depth2-item .depth2-link {
  width: 96px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir .depth2-item .depth2-link:lang(en) {
  width: auto;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir .depth2-item .depth3-group {
  margin-left: 4px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir .depth2-item .depth3-group:lang(ko) {
  width: -webkit-calc(100% - 103px);
  width: -moz-calc(100% - 103px);
  width: calc(100% - 103px);
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir + .depth2-ir {
  width: 540px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir + .depth2-ir .depth2-item .depth2-link {
  width: 99px;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-ir + .depth2-ir .depth2-item .depth3-group .depth3-item.first-item {
  margin: 0;
}
.gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-wrap .all-menu-inner .depth1-group .depth1-item .depth2-group.depth2-news .depth2-item {
  display: inline-block;
}

@media (min-width: 769px) {
  body.page-index .gnb {
    background-color: rgba(0, 0, 0, 0);
  }
}
@media (min-width: 769px) {
  body.page-index .gnb .navigation-header:before {
    background-color: rgba(247, 247, 247, 0.2);
  }
}
body.page-index .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link {
  color: #fff;
}
body.page-index .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active {
  color: #ea002c;
}
body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  border: 1px solid #A6A6A6;
  color: #fff;
  background: url("../images/common/2021/support-icon_lg.png") center right 7px/auto no-repeat;
}
body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap {
  border: none;
  background: rgba(255, 255, 255, 0.7);
}
body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap .support-d2-link {
  color: #202021;
}
body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  border: 1px solid #A6A6A6;
  color: #fff;
}
body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:hover, body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:focus {
  color: #202021;
  background-color: #e5e9e9;
}
body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn span {
  color: #fff;
  background-color: #fff;
}
body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:after, body.page-index .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:before {
  background-color: #fff;
}
body.page-index .gnb.is-active {
  background-color: #fff;
}
body.page-index .gnb.is-active .navigation-header:before {
  z-index: 100;
  background-color: #06090a;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link {
  color: #202021;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active {
  color: #ea002c;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  border: 1px solid #a6a6a6;
  color: #505051;
  background: url("../images/common/2021/support-icon_on.png") center right 7px/auto no-repeat;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap {
  border: 1px solid #b5b5b5;
  background: #fff;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap .support-d2-link {
  color: #505051;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  border: 1px solid #a6a6a6;
  color: #505051;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:hover, body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:focus {
  color: #fff;
  background-color: #505051;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn span {
  background-color: #202121;
}
body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:after, body.page-index .gnb.is-active .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:before {
  background-color: #202121;
}
body.page-index .gnb.all-menu-active .navigation-header:before {
  background-color: #3c3c41;
}
body.page-index .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  display: none;
}
body.page-index .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap {
  background-color: rgba(0, 0, 0, 0) !important;
}
body.page-index .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap .support-d2-link {
  color: #cccccc !important;
}
body.page-index .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  border: 1px solid #a1a1a6;
  background-color: #a1a1a6;
  color: #202021 !important;
}
body.page-index .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:hover, body.page-index .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:focus {
  border: 1px solid #a1a1a6;
  background-color: #a1a1a6 !important;
  color: #202021 !important;
}
body.page-index.scroll-active .gnb {
  background-color: #fff;
}
body.page-index.scroll-active .gnb .navigation-header:before {
  background-color: #06090a;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link {
  color: #202021;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active {
  color: #ea002c;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  border: 1px solid #a6a6a6;
  color: #505051;
  background: url("../images/common/2021/support-icon_on.png") center right 7px/auto no-repeat;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap {
  border: 1px solid #b5b5b5;
  background: #fff;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap .support-d2-link {
  color: #505051;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  border: 1px solid #a6a6a6;
  color: #505051;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:hover, body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:focus {
  color: #fff;
  background-color: #505051;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn span {
  background-color: #202121;
}
body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:after, body.page-index.scroll-active .gnb .navigation-header .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn:before {
  background-color: #202121;
}
body.page-index.scroll-active .gnb.all-menu-active .navigation-header:before {
  background-color: #3c3c41;
}
body.page-index.scroll-active .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  border: 1px solid #cecece;
  color: #4c4c4c;
  background-color: #e5e9e9;
  background-image: url("../images/common/2021/support-icon_allmenu.png");
}
body.page-index.scroll-active .gnb.all-menu-active .navigation-header .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  border: 1px solid #86888b;
  color: #fff;
}

.footer-new {
  overflow: hidden;
}
.footer-new *, .footer-new *:after, .footer-new *:before {
  font-family: "SynergyDisplay";
}
.footer-new:lang(en) *, .footer-new:lang(en) *:after, .footer-new:lang(en) *:before {
  font-family: "Roboto";
}
.footer-new .quicklink {
  display: none;
  background-color: #27272c;
}
.footer-new .quicklink .inner {
  font-size: 0;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner {
    position: relative;
    padding: 44px 15px 36px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner {
    width: 1200px;
    margin: 0 auto;
    padding: 98px 20px 60px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner:lang(en) {
    padding: 44px 20px 36px;
  }
}
.footer-new .quicklink .inner .title-wrap {
  vertical-align: top;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .title-wrap {
    display: block;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .title-wrap {
    display: inline-block;
    width: 186px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .title-wrap:lang(en) {
    padding-bottom: 15px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .title-wrap:lang(en) {
    width: 170px;
  }
}
.footer-new .quicklink .inner .title-wrap .title {
  font-family: "SynergyDisplay";
  color: #FFF;
  padding: 3px 0;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .title-wrap .title {
    line-height: 140%; /* 23.8px */
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .title-wrap .title {
    font-size: 24px;
    line-height: normal;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .title-wrap .title:lang(en) {
    font-size: 20px;
    line-height: 140%; /* 28px */
  }
}
.footer-new .quicklink .inner .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  vertical-align: top;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list {
    gap: 25px;
    margin-top: 24px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .list {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 794px;
    gap: 20px;
  }
}
.footer-new .quicklink .inner .list .group {
  display: grid;
  font-size: 0;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group {
    grid-template-columns: 61px auto;
    gap: 24px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .list .group {
    grid-template-columns: 149px auto;
    gap: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-new .quicklink .inner .list .group .group-title {
  display: inline-block;
  font-weight: 400;
  font-style: normal;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-title {
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .list .group .group-title {
    font-size: 16px;
  }
}
.footer-new .quicklink .inner .list .group .group-link {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 5px;
    width: 100%;
  }
}
.footer-new .quicklink .inner .list .group .group-link .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0;
  color: #202021;
  background-color: #e7eef4;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link {
    height: 25px;
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .list .group .group-link .link {
    min-width: 100px;
    height: 35px;
    padding: 0 20px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-01 {
    width: 75px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-02 {
    width: 85px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-03 {
    width: 75px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .linka[href="https://m.tworld.co.kr/main/tuniverse"] {
    width: 75px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .linka[href="https://ifland.io/ifland"] {
    width: 85px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-04 {
    width: 75px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-05 {
    width: 75px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-06 {
    width: 85px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-07 {
    width: 85px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-08 {
    width: 85px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-09 {
    width: 125px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-10 {
    width: 85px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .list .group .group-link .link.item-12 {
    width: 125px;
  }
}
.footer-new .quicklink .inner .list .group .group-link .link:hover, .footer-new .quicklink .inner .list .group .group-link .linkfocus {
  color: #000;
  background-color: #fff;
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .list .group .group-link .link + .link {
    margin-left: 10px;
  }
}
.footer-new .quicklink .inner .family-box {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box {
    position: absolute;
    top: 45px;
    right: 15px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box {
    width: 180px;
  }
}
.footer-new .quicklink .inner .family-box .btn-title {
  display: block;
  position: relative;
  border: 1px solid #fff;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box .btn-title {
    width: 135px;
    padding-left: 25px;
    font-size: 12px;
    line-height: 27px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box .btn-title {
    padding-left: 34px;
    font-size: 16px;
    line-height: 35px;
  }
}
.footer-new .quicklink .inner .family-box .btn-title:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -moz-transition: transform 0.1s ease, -moz-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease, -moz-transform 0.1s ease;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box .btn-title:after {
    top: -webkit-calc(50% - 6px);
    top: -moz-calc(50% - 6px);
    top: calc(50% - 6px);
    right: 15px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.5132 4.81872L6.0007 7.80665L9.4882 4.81872L8.80719 4.05665L6.0007 6.46111L3.19422 4.05665L2.5132 4.81872Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.40625 4.82585L6.0007 7.90541L9.59516 4.82585L8.81417 3.9519L6.0007 6.36235L3.18724 3.9519L2.40625 4.82585ZM3.2012 4.16139L6.0007 6.55987L8.8002 4.16139L9.38125 4.81159L6.0007 7.70789L2.62016 4.81159L3.2012 4.16139Z' fill='white'/%3E%3C/svg%3E");
    background-position: center;
    -webkit-background-size: contain;
            background-size: contain;
    background-repeat: no-repeat;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box .btn-title:after {
    top: -webkit-calc(50% - 8px);
    top: -moz-calc(50% - 8px);
    top: calc(50% - 8px);
    right: 20px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.34964 5.7583L7.99964 9.7422L12.6496 5.7583L11.7416 4.7422L7.99964 7.94814L4.25766 4.7422L3.34964 5.7583Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.20703 5.7678L7.99964 9.87388L12.7922 5.7678L11.7509 4.60254L7.99964 7.81646L4.24835 4.60254L3.20703 5.7678ZM4.26697 4.88185L7.99964 8.07983L11.7323 4.88185L12.507 5.74879L7.99964 9.61051L3.49224 5.74879L4.26697 4.88185Z' fill='white'/%3E%3C/svg%3E");
    background-position: center;
    -webkit-background-size: contain;
            background-size: contain;
    background-repeat: no-repeat;
  }
}
.footer-new .quicklink .inner .family-box .btn-title.is-open:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-ransform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.footer-new .quicklink .inner .family-box .btn-title.is-open + .drop-box {
  display: block;
}
.footer-new .quicklink .inner .family-box .drop-box {
  position: absolute;
  left: 0;
  display: none;
  padding: 12px 0 17px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box .drop-box {
    top: 26px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box .drop-box {
    top: 36px;
    width: 180px;
  }
}
.footer-new .quicklink .inner .family-box .drop-box .drop-link {
  font-family: "Noto Sans KR";
  display: block;
  text-align: right;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box .drop-box .drop-link {
    width: 135px;
    font-size: 12px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box .drop-box .drop-link {
    padding-right: 30px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box:lang(en) {
    position: static;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box:lang(en) {
    width: -webkit-calc(100% - 170px);
    width: -moz-calc(100% - 170px);
    width: calc(100% - 170px);
    font-size: 0;
  }
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box:lang(en) .famil-link {
    display: grid;
    grid-template-columns: 115px auto;
    width: 100%;
    gap: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box:lang(en) .famil-link {
    display: inline-block;
    width: 170px;
    vertical-align: top;
  }
}
.footer-new .quicklink .inner .family-box:lang(en) .famil-link:hover .famil-name, .footer-new .quicklink .inner .family-box:lang(en) .famil-linkfocus .famil-name {
  color: #000;
  background-color: #fff;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box:lang(en) .famil-link + .famil-link {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box:lang(en) .famil-link + .famil-link {
    margin-left: 35px;
  }
}
.footer-new .quicklink .inner .family-box:lang(en) .famil-link .famil-name {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-style: normal;
  letter-spacing: 0;
  color: #202021;
  background-color: #e7eef4;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box:lang(en) .famil-link .famil-name {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 115px;
    height: 25px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box:lang(en) .famil-link .famil-name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 170px;
    height: 38px;
    border-radius: 3px;
    color: #202021;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
  }
}
.footer-new .quicklink .inner .family-box:lang(en) .famil-link .famil-desc {
  font-weight: 400;
  letter-spacing: 0;
  color: #898989;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer-new .quicklink .inner .family-box:lang(en) .famil-link .famil-desc {
    font-size: 12px;
    line-height: 125%; /* 15px */
  }
}
@media (min-width: 769px) {
  .footer-new .quicklink .inner .family-box:lang(en) .famil-link .famil-desc {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 180%; /* 25.2px */
  }
}
.footer-new .footer {
  border-top: 1px solid #3d3d42;
  background-color: #27272c;
}
.footer-new .footer .inner {
  margin: 0 auto;
  font-size: 0;
}
@media (min-width: 769px) {
  .footer-new .footer .inner {
    width: 1200px;
    padding: 0 20px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info {
    display: inline-block;
    vertical-align: top;
    width: 700px;
    padding: 50px 0 80px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .logo {
    display: block;
    width: 98px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .logo .icon {
    height: 20px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .logo .icon {
    width: 100%;
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social {
    margin: 50px 29px 35px 15px;
    white-space: nowrap;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .social {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social:lang(ko) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social:lang(en) {
    margin: 36px 9px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social .item {
    display: inline-block;
    width: 30px;
    height: 49px;
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social .item:lang(en) {
    width: 60px;
    height: auto;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .social .item + .item {
    margin-left: 14px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social .item + .item:lang(en) {
    margin-left: 15px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social .item .link {
    display: block;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social .item .link:lang(ko) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social .item .link .icon {
    display: block;
    height: 30px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .social .item .link .name {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #bababf;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .terms {
    border-top: 1px solid #3d3d42;
    padding: 36px 15px 22px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .terms {
    margin: 30px 0 26px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .terms:lang(en) {
    margin: 30px 0 3px;
  }
}
.footer-new .footer .inner .info .terms .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
  color: #bababf;
}
.footer-new .footer .inner .info .terms .link:lang(ko) {
  font-family: "Noto Sans KR";
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .terms .link {
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .terms .link {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 160%;
  }
  .footer-new .footer .inner .info .terms .link:lang(en) {
    line-height: 140%;
  }
}
.footer-new .footer .inner .info .terms .link.strong {
  font-weight: 600;
  color: #fff;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .terms .link ~ .link:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 9px;
    margin: 0 6px;
    background-color: #646468;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .terms .link ~ .link:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 9px;
    margin: 0 10px;
    background-color: #646468;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .terms .link:lang(en):before {
    margin: 0 10px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .terms .link:lang(en):before {
    margin: 0 13px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .terms .link ~ br.show-only-mobile + .link:before {
    display: none;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .terms .link ~ br.show-only-desktop + .link:before {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .area {
    display: block;
    padding: 28px 15px 0;
    border-top: 1px solid #3d3d42;
  }
  .footer-new .footer .inner .info .area:lang(en) {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .area .logo {
    display: inline-block;
    height: 20px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .area .address {
    margin-top: 16px;
  }
}
.footer-new .footer .inner .info .area .address span {
  font-weight: 400;
  letter-spacing: 0;
  color: #bababf;
}
.footer-new .footer .inner .info .area .address span:lang(ko) {
  font-family: "Noto Sans KR";
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .area .address span {
    font-size: 11px;
    line-height: 15px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .area .address span {
    font-size: 13px;
    line-height: 10px;
  }
}
.footer-new .footer .inner .info .area .copy {
  font-family: "Roboto";
  font-weight: 400;
  letter-spacing: 0;
  color: #bababf;
}
@media (max-width: 768px) {
  .footer-new .footer .inner .info .area .copy {
    font-size: 11px;
    line-height: 15px;
  }
  .footer-new .footer .inner .info .area .copy:lang(en) {
    padding-top: 16px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .info .area .copy {
    margin-top: 10px;
    font-size: 13px;
    line-height: 160%; /* 20.8px */
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .contents {
    display: block;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents {
    display: inline-block;
    vertical-align: top;
    width: 460px;
    border-left: 1px solid #3d3d42;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .contents .social {
    display: none;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .social {
    text-align: right;
    padding: 100px 0 30px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .social:lang(en) {
    text-align: left;
    padding: 72px 0 31px 60px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .social .item {
    display: inline-block;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .social .item + .item {
    margin-left: 14px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .social .item + .item:lang(en) {
    margin-left: 44px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .social .item .link {
    display: block;
    width: 61px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .social .item .link .icon {
    display: block;
    height: 40px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .social .item .link .name {
    display: block;
    margin-top: 8px;
    color: #BABABF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 14.4px */
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .contents .acc {
    margin-top: 20px;
    padding: 0 15px 30px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .acc {
    text-align: right;
  }
}
.footer-new .footer .inner .contents .acc .item {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .footer-new .footer .inner .contents .acc .item + .item {
    margin-left: 26px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .acc .item + .item {
    margin-left: 30px;
  }
}
.footer-new .footer .inner .contents .acc .item .link {
  display: block;
}
.footer-new .footer .inner .contents .acc .item .icon {
  vertical-align: top;
}
@media (max-width: 768px) {
  .footer-new .footer .inner .contents .acc .item .icon {
    height: 27px;
  }
}
@media (min-width: 769px) {
  .footer-new .footer .inner .contents .acc .item .icon {
    height: 36px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer .inner .contents .acc .item.wa .icon {
    height: 30px;
  }
}

body.page-index .footer-new .quicklink {
  display: block;
}
@media (max-width: 768px) {
  body.page-index .footer-new .footer .inner .info .social {
    margin: 36px 29px 36px 15px;
  }
}
@media (max-width: 768px) {
  body.page-index .footer-new .footer .inner .info .social:lang(en) {
    margin: 36px 9px;
  }
}

.maintenance-page {
  width: 100%;
  height: 100%;
}
.maintenance-page * {
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.maintenance-page body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.maintenance-page .maintenance-header {
  max-width: 1144px;
  margin: 0 auto;
  font-size: 0;
  text-align: right;
  background: #fff;
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-header {
    height: 50px;
    padding: 11px 15px;
  }
}
@media (min-width: 769px) {
  .maintenance-page .maintenance-header {
    height: 82px;
    padding: 22px 50px;
  }
}
.maintenance-page .maintenance-header::after {
  content: "";
  display: table;
  clear: both;
  table-layout: fixed;
}
.maintenance-page .maintenance-header .maintenance-logo {
  display: block;
  float: left;
  text-decoration: none;
  background: url("/images/common/sktelecom-logo_lg.png") 0 0/contain no-repeat;
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-header .maintenance-logo {
    width: 70px;
    height: 27px;
  }
}
@media (min-width: 769px) {
  .maintenance-page .maintenance-header .maintenance-logo {
    width: 100px;
    height: 38px;
  }
}
.maintenance-page .maintenance-header .util {
  display: inline-block;
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-header .util {
    padding-top: 4px;
  }
}
.maintenance-page .maintenance-header .util .img-5g {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-header .util .img-5g {
    height: 17px;
  }
}
@media (min-width: 769px) {
  .maintenance-page .maintenance-header .util .img-5g {
    height: 36px;
  }
}
.maintenance-page .maintenance-header .util .bar {
  display: inline-block;
  width: 1px;
  vertical-align: middle;
  background: #e6e6e6;
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-header .util .bar {
    height: 10px;
    margin: 0 11px;
  }
}
@media (min-width: 769px) {
  .maintenance-page .maintenance-header .util .bar {
    height: 15px;
    margin: 0 18px;
  }
}
.maintenance-page .maintenance-header .util .link-en {
  display: inline-block;
  padding: 10px 0;
  vertical-align: middle;
  background: url("/images/common/maintenance-eng_lg.png") center/contain no-repeat;
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-header .util .link-en {
    width: 43px;
    height: 9px;
  }
}
@media (min-width: 769px) {
  .maintenance-page .maintenance-header .util .link-en {
    width: 47px;
    height: 10px;
  }
}
@media (max-width: 768px) {
  .maintenance-page #content {
    height: -webkit-calc(100% - 50px);
    height: -moz-calc(100% - 50px);
    height: calc(100% - 50px);
  }
}
@media (min-width: 769px) {
  .maintenance-page #content {
    height: -webkit-calc(100% - 82px);
    height: -moz-calc(100% - 82px);
    height: calc(100% - 82px);
  }
}
.maintenance-page .maintenance-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("/images/common/maintenance-bg_lg.jpg") center/cover no-repeat;
}
.maintenance-page .maintenance-content .text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.maintenance-page .maintenance-content .text-wrap .title {
  max-width: none;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-content .text-wrap .title {
    width: 85.1388vw;
    max-width: 466px;
  }
}
@media (min-width: 769px) {
  .maintenance-page .maintenance-content .text-wrap .title {
    height: 114px;
  }
}
.maintenance-page .maintenance-content .text-wrap .box {
  border: 1px solid rgba(242, 217, 199, 0.5);
  margin: 60px auto;
  background: rgba(21, 21, 70, 0.2);
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-content .text-wrap .box {
    width: 280px;
    padding: 17px 0;
  }
}
@media (min-width: 769px) {
  .maintenance-page .maintenance-content .text-wrap .box {
    width: 360px;
    padding: 20px 0;
  }
}
.maintenance-page .maintenance-content .text-wrap .box p {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", AppleSDGothicNeo, "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}
@media (max-width: 768px) {
  .maintenance-page .maintenance-content .text-wrap .box p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .maintenance-page .maintenance-content .text-wrap .box p {
    font-size: 18px;
    line-height: 27px;
  }
}
.maintenance-page .maintenance-content .text-wrap .box p + p {
  margin-top: 20px;
}
/* popup */
.popup-wrap {
  position: absolute;
  width: 1145px;
  left: 0;
  right: 0;
  margin-top: 52px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
  text-align: center;
}
@media (min-width: 769px) {
  .popup-wrap {
    margin-top: 182px;
  }
}

.popup-wrap .popups {
  display: inline-block;
}

.popup-wrap .popup {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  margin-bottom: 10px;
  vertical-align: top;
}

/* Only IE9 */
.msie9 .popup-wrap .popup {
  z-index: 1100;
}

.popup-wrap .popup .p-title {
  font-size: 21px;
  line-height: 27px;
  font-weight: bold;
  color: #e51937;
  text-align: center;
  padding: 30px 30px 0;
}

.popup-wrap .popup .p-txt-wrap {
  padding: 26px 30px 30px;
  min-height: 265px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

.popup-wrap .popup .p-txt-wrap p {
  font-size: 13px;
  line-height: 1.6;
  color: #141414;
}

.popup-wrap .popup .p-txt-wrap p * {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.popup-wrap .popup .p-txt-wrap p + p {
  margin-top: 20px;
}

.popup-wrap .popup.hide {
  display: none;
}

.popup-wrap .popup img {
  vertical-align: top;
}

.popup-wrap .popup .popup-inner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  background-color: #f1f1f1;
  border: 1px solid #666;
  -webkit-box-shadow: 0 6px 12px 0 rgba(8, 1, 3, 0.2);
          box-shadow: 0 6px 12px 0 rgba(8, 1, 3, 0.2);
}

.popup-wrap .popup .popup-inner.content-txt {
  width: 510px;
}

.popup-wrap .popup .popup-inner.content-img {
  min-width: 332px;
}

.popup-wrap .popup .popup-content a {
  display: inline-block;
  background-color: #fff;
}

.popup-wrap .popup .popup-utils {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border-top: 1px solid #ccc;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.popup-wrap .popup .popup-utils button {
  height: 18px;
  font-size: 12px;
  font-weight: bold;
  color: #2f3033;
  border: none;
}

@media screen and (max-width: 768px) {
  .popup-wrap {
    margin-top: 100px;
  }
  .popup-wrap .popups {
    margin-left: 0;
  }
  .popup-wrap, .popup-wrap .popups {
    width: 100%;
    display: block;
  }
  .popup-wrap .popup {
    margin-left: 0 !important;
    display: block;
  }
  .popup-wrap .popup .popup-inner {
    display: inline-block;
    max-width: 375px;
    margin: 0 auto;
  }
  .popup-wrap .popup .popup-inner.content-txt {
    width: 100%;
  }
  .popup-wrap .popup img {
    width: 100%;
  }
  .popup-wrap .popup .p-title {
    padding: 25px 25px 0;
  }
  .popup-wrap .popup .p-txt-wrap {
    padding: 20px 25px 25px;
  }
}
@media screen and (max-width: 332px) {
  .popup-wrap .popup .popup-inner.content-img {
    width: 100%;
    min-width: 0;
  }
}
/* //popup */
@media (min-width: 769px) {
  .side-menu {
    z-index: 3;
  }
}

/* 모달 */
@media (min-width: 769px) {
  .ly-modal .modal {
    overflow-x: auto;
  }
}
.ly-modal .img {
  max-width: 100%;
}
.ly-modal .modal-dialog {
  height: auto;
}
@media (max-width: 768px) {
  .modal-esg-safety .modal-dialog {
    height: 100%;
  }
}
.modal-esg-safety .modal-content {
  border: 0;
  text-align: left;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
@media (max-width: 768px) {
  .modal-esg-safety .modal-content {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 769px) {
  .modal-esg-safety .modal-content {
    width: 1160px;
    margin: 120px auto;
  }
}
.modal-esg-safety .modal-content .modal-header {
  position: relative;
  padding: 24px 60px 20px;
  background: #1A1A1A;
}
@media (max-width: 768px) {
  .modal-esg-safety .modal-content .modal-header {
    padding: 14px 15px 10px;
  }
}
.modal-esg-safety .modal-content .modal-header .tit {
  color: #FFF;
  font-family: "Synergy Display";
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 56.1px */
}
@media (max-width: 768px) {
  .modal-esg-safety .modal-content .modal-header .tit {
    font-size: 20px;
  }
  .modal-esg-safety .modal-content .modal-header .tit:lang(en) {
    font-size: 17px;
  }
}
@media (min-width: 769px) {
  .modal-esg-safety .modal-content .modal-header .tit:lang(en) {
    font-size: 30px;
  }
}
.modal-esg-safety .modal-content .modal-header .btn-close {
  position: absolute;
  top: -webkit-calc(50% - 13px);
  top: -moz-calc(50% - 13px);
  top: calc(50% - 13px);
  right: 60px;
  width: 26px;
  height: 26px;
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .modal-esg-safety .modal-content .modal-header .btn-close {
    top: -webkit-calc(50% - 8px);
    top: -moz-calc(50% - 8px);
    top: calc(50% - 8px);
    right: 15px;
    width: 19px;
    height: 19px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 26 26' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.8788 13.0001L0.585938 24.293L2.00015 25.7072L13.293 14.4143L24.5859 25.7072L26.0002 24.293L14.7073 13.0001L26.0002 1.70718L24.5859 0.292969L13.293 11.5859L2.00015 0.292969L0.585938 1.70718L11.8788 13.0001Z' fill='white'/%3E%3C/svg%3E");
  }
}
@media (min-width: 769px) {
  .modal-esg-safety .modal-content .modal-header .btn-close {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.8788 13.0001L0.585938 24.293L2.00015 25.7072L13.293 14.4143L24.5859 25.7072L26.0002 24.293L14.7073 13.0001L26.0002 1.70718L24.5859 0.292969L13.293 11.5859L2.00015 0.292969L0.585938 1.70718L11.8788 13.0001Z' fill='white'/%3E%3C/svg%3E");
  }
}
.modal-esg-safety .modal-content .modal-body {
  overflow-y: auto;
  height: 100%;
}
.modal-esg-safety .modal-content .modal-body .content {
  padding: 48px 60px 80px;
}
@media (max-width: 768px) {
  .modal-esg-safety .modal-content .modal-body .content {
    padding: 24px 0 100px;
  }
}
/*======================================개별 페이지======================================*/
/* Only IE9 */
.msie9.page-index .index-intro .dot-list {
  z-index: 999;
}

/* 메인 */
body.page-index .gnb + .content {
  padding-top: 0px;
}
@media (max-width: 768px) {
  body.page-index .gnb + .content {
    padding-top: 60px;
  }
}
body.page-index *, body.page-index *:after, body.page-index *:before {
  font-family: "SynergyDisplay";
}
body.page-index .index-intro {
  position: relative;
}
@media (max-width: 768px) {
  body.page-index .index-intro {
    height: 400px;
    background: #27272c;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro {
    height: 800px;
  }
}
body.page-index .index-intro .index-intro-swiper {
  height: 100%;
}
body.page-index .index-intro .index-intro-swiper .slick-track, body.page-index .index-intro .index-intro-swiper .slick-list, body.page-index .index-intro .index-intro-swiper .slick-slide {
  height: 100%;
}
body.page-index .index-intro .slide {
  position: relative;
}
body.page-index .index-intro .slide .slide-link {
  display: block;
  height: 100%;
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .slide-link:focus::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: auto;
  }
}
body.page-index .index-intro .slide .slide-link .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
}
body.page-index .index-intro .slide .blur {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.05);
}
body.page-index .index-intro .slide .left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide .left {
    width: 69.72%;
    padding: 121px 10px 0 15px;
  }
}
@media (max-width: 768px) and (min-width: 375px) {
  body.page-index .index-intro .slide .left {
    padding-right: 15px;
  }
}
@media (max-width: 768px) and (min-width: 400px) {
  body.page-index .index-intro .slide .left {
    width: -webkit-calc(69.72% - 30px);
    width: -moz-calc(69.72% - 30px);
    width: calc(69.72% - 30px);
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left {
    width: 50%;
  }
}
body.page-index .index-intro .slide .left .txt-box {
  position: absolute;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide .left .txt-box {
    position: relative;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box {
    top: 229px;
    right: 5px;
    width: 572px;
    padding-right: 17px;
  }
}
body.page-index .index-intro .slide .left .txt-box .title {
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  opacity: 0;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide .left .txt-box .title {
    font-size: 25px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .title {
    font-size: 50px;
    line-height: 65px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide .left .txt-box .title.vision-2023 {
    letter-spacing: -0.25px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .title.vision-2023 {
    white-space: nowrap;
    letter-spacing: -2.5px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide .left .txt-box .title:lang(en) {
    font-size: 22px;
    line-height: 27px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .title:lang(en) {
    font-size: 40px;
    line-height: 47px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .title:lang(en).title-sm {
    font-size: 38px;
  }
}
body.page-index .index-intro .slide .left .txt-box .title .fw-400 {
  font-weight: 400;
  color: #fff;
}
body.page-index .index-intro .slide .left .txt-box .text {
  padding-top: 14px;
  font-weight: 300;
  letter-spacing: 0;
  color: #fff;
  opacity: 0;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide .left .txt-box .text {
    font-size: 12px;
    line-height: 17px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .text {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .text:lang(en) {
    line-height: 25px;
  }
}
body.page-index .index-intro .slide .left .txt-box .more-icon {
  vertical-align: middle;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide .left .txt-box .more-icon {
    margin-top: 20px;
    font-size: 11px;
    line-height: 15px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .more-icon {
    margin-top: 22px;
    font-size: 14px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .more-icon:lang(en) {
    font-size: 13px;
  }
}
body.page-index .index-intro .slide .left .txt-box .more-icon:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-top: -2px;
  background: url("../images/main/intro-more-icon_lg.png") center/contain no-repeat;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide .left .txt-box .more-icon:after {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide .left .txt-box .more-icon:after {
    width: 23px;
    height: 23px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.none-link .left {
    padding: 125px 10px 0 15px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.none-link .left .txt-box {
    top: 229px;
    right: 5px;
    padding-right: 17px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.none-link .left .txt-box .title.vision-2023 {
    letter-spacing: -0.25px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.none-link .left .txt-box .title.vision-2023 {
    white-space: nowrap;
    letter-spacing: -2.5px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.none-link .left .txt-box .title:lang(en) {
    font-size: 22px;
    line-height: 27px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.none-link .left .txt-box .title:lang(en) {
    font-size: 40px;
    line-height: 47px;
  }
}
body.page-index .index-intro .slide.none-link .left .txt-box .text {
  padding-top: 14px;
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.none-link .left .txt-box .text {
    line-height: 25px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.none-link .left .txt-box .more-icon {
    margin-top: 22px;
  }
}
body.page-index .index-intro .slide.custom {
  overflow: hidden;
}
body.page-index .index-intro .slide.custom .cont-group {
  display: block;
  position: relative;
  width: 100%;
  max-width: 2200px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.custom .cont-group:focus::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: auto;
  }
}
body.page-index .index-intro .slide.custom .cont-group .bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 580px) {
  body.page-index .index-intro .slide.custom .cont-group .bg {
    -o-object-position: bottom;
       object-position: bottom;
  }
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.custom .cont-group .bg {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.custom .cont-group .bg {
    top: 0;
    left: -webkit-calc(50% - 1100px);
    left: -moz-calc(50% - 1100px);
    left: calc(50% - 1100px);
    width: 2200px;
    max-width: none;
  }
}
body.page-index .index-intro .slide.custom .cont-group .blur {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.custom .cont-group .blur {
    width: 69.72%;
    padding: 121px 10px 0 15px;
  }
}
@media (max-width: 768px) and (min-width: 375px) {
  body.page-index .index-intro .slide.custom .cont-group .blur {
    padding-right: 15px;
  }
}
@media (max-width: 768px) and (min-width: 400px) {
  body.page-index .index-intro .slide.custom .cont-group .blur {
    width: -webkit-calc(69.72% - 30px);
    width: -moz-calc(69.72% - 30px);
    width: calc(69.72% - 30px);
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.custom .cont-group .blur {
    width: 50%;
  }
}
body.page-index .index-intro .slide.custom .cont-group .obj-group {
  display: block;
}
body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  height: 100%;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group {
    width: 720px;
    left: -webkit-calc(50% - 360px);
    left: -moz-calc(50% - 360px);
    left: calc(50% - 360px);
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group {
    left: -webkit-calc(50% - 1100px);
    left: -moz-calc(50% - 1100px);
    left: calc(50% - 1100px);
    width: 2200px;
  }
}
body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group .mask {
  display: block;
  overflow: hidden;
  -webkit-transform-origin: left;
     -moz-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group .mask {
    width: 720px;
    height: 400px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group .mask {
    width: 2200px;
    height: 800px;
  }
}
body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group .mask .obj-line {
  display: block;
  max-width: none;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group .mask .obj-line {
    width: 720px;
    height: 400px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .line-group .mask .obj-line {
    width: 2200px;
  }
}
body.page-index .index-intro .slide.custom .cont-group .obj-group .title-group {
  display: block;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .title-group {
    width: 720px;
    left: -webkit-calc(50% - 360px);
    left: -moz-calc(50% - 360px);
    left: calc(50% - 360px);
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .title-group {
    left: -webkit-calc(50% - 1100px);
    left: -moz-calc(50% - 1100px);
    left: calc(50% - 1100px);
    width: 2200px;
  }
}
body.page-index .index-intro .slide.custom .cont-group .obj-group .title-group .obj-title {
  display: block;
  max-width: none;
}
@media (max-width: 768px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .title-group .obj-title {
    width: 720px;
    height: 400px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .slide.custom .cont-group .obj-group .title-group .obj-title {
    width: 2200px;
  }
}
body.page-index .index-intro .slide.custom2 .obj-group {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
body.page-index .index-intro .slide.custom2 .obj-group .obj {
  position: absolute;
}
body.page-index .index-intro .slide.custom2 .obj-group .obj.obj01 {
  bottom: 149px;
  right: 22px;
  width: 120px;
  overflow: hidden;
}
@media (max-width: 370px) {
  body.page-index .index-intro .slide.custom2 .obj-group .obj.obj01:lang(ko) {
    bottom: 142px;
    right: 12px;
  }
}
@media (max-width: 370px) and (max-width: 359px) {
  body.page-index .index-intro .slide.custom2 .obj-group .obj.obj01:lang(ko) {
    bottom: 125px;
    right: 0px;
  }
}
body.page-index .index-intro .slide.custom2 .obj-group .obj.obj01 .obj-img {
  width: 100%;
}
body.page-index .index-intro .slide.custom2 .obj-group .obj.obj02 {
  bottom: 69px;
  right: 89px;
  width: 150px;
  overflow: hidden;
}
body.page-index .index-intro .slide.custom2 .obj-group .obj.obj02 .obj-img {
  width: 100%;
}
body.page-index .index-intro .slide.custom2 .obj-group .obj.obj03 {
  bottom: 0;
  right: 0;
  width: 140px;
  overflow: hidden;
}
body.page-index .index-intro .slide.custom2 .obj-group .obj.obj03 .obj-img {
  width: 100%;
}
body.page-index .index-intro .dot-list {
  position: absolute;
  z-index: 10;
  font-size: 0;
}
@media (max-width: 768px) {
  body.page-index .index-intro .dot-list {
    bottom: 13px;
    left: 15px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
  }
}
body.page-index .index-intro .dot-list .num {
  vertical-align: middle;
  font-family: "Roboto";
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  body.page-index .index-intro .dot-list .num {
    display: block;
    font-size: 11px;
    line-height: 15px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list .num {
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
  }
}
body.page-index .index-intro .dot-list .num .point {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
@media (max-width: 768px) {
  body.page-index .index-intro .dot-list .num .point {
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list .num .point {
    font-size: 16px;
    line-height: 40px;
  }
}
body.page-index .index-intro .dot-list .num .all-num {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
@media (max-width: 768px) {
  body.page-index .index-intro .dot-list .num .all-num {
    font-size: 11px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list .num .all-num {
    font-size: 14px;
    line-height: 40px;
  }
}
body.page-index .index-intro .dot-list .dots {
  position: relative;
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list .dots {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 9px 0 11px;
  }
}
body.page-index .index-intro .dot-list .dots:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -moz-transition: transform 0.2s ease, -moz-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease, -moz-transform 0.2s ease;
}
body.page-index .index-intro .dot-list .dots .slick-dots {
  font-size: 0;
}
@media (max-width: 768px) {
  body.page-index .index-intro .dot-list .dots .slick-dots {
    width: 38vw;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list .dots .slick-dots {
    width: 180px;
  }
}
body.page-index .index-intro .dot-list .dots .slick-dots li {
  display: inline-block;
}
body.page-index .index-intro .dot-list .dots .slick-dots li button {
  position: relative;
  width: 100%;
  border: none;
  font-size: 0;
  color: rgba(0, 0, 0, 0);
  opacity: 0.3;
}
@media (max-width: 768px) {
  body.page-index .index-intro .dot-list .dots .slick-dots li button {
    height: 24px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list .dots .slick-dots li button {
    height: 40px;
  }
}
body.page-index .index-intro .dot-list .dots .slick-dots li button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
body.page-index .index-intro .dot-list .dots.active-01:after {
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
body.page-index .index-intro .dot-list .dots.active-02:after {
  -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
body.page-index .index-intro .dot-list .dots.active-03:after {
  -webkit-transform: translateX(200%);
     -moz-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}
body.page-index .index-intro .dot-list .dots.active-04:after {
  -webkit-transform: translateX(300%);
     -moz-transform: translateX(300%);
      -ms-transform: translateX(300%);
          transform: translateX(300%);
}
body.page-index .index-intro .dot-list .dots.active-05:after {
  -webkit-transform: translateX(400%);
     -moz-transform: translateX(400%);
      -ms-transform: translateX(400%);
          transform: translateX(400%);
}
body.page-index .index-intro .dot-list .dots.active-06:after {
  -webkit-transform: translateX(500%);
     -moz-transform: translateX(500%);
      -ms-transform: translateX(500%);
          transform: translateX(500%);
}
body.page-index .index-intro .dot-list .dots.dots-2:after {
  width: 50%;
}
body.page-index .index-intro .dot-list .dots.dots-2 .slick-dots li {
  width: 50%;
}
body.page-index .index-intro .dot-list .dots.dots-3:after {
  width: 33.3333333333%;
}
body.page-index .index-intro .dot-list .dots.dots-3 .slick-dots li {
  width: 33.3333333333%;
}
body.page-index .index-intro .dot-list .dots.dots-4:after {
  width: 25%;
}
body.page-index .index-intro .dot-list .dots.dots-4 .slick-dots li {
  width: 25%;
}
body.page-index .index-intro .dot-list .dots.dots-5:after {
  width: 20%;
}
body.page-index .index-intro .dot-list .dots.dots-5 .slick-dots li {
  width: 20%;
}
body.page-index .index-intro .dot-list .dots.dots-6:after {
  width: 16.6666666667%;
}
body.page-index .index-intro .dot-list .dots.dots-6 .slick-dots li {
  width: 16.6666666667%;
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list .slide-stop {
    display: inline-block;
    vertical-align: middle;
    margin-top: 17px;
    width: 40px;
    height: 40px;
    border: none;
    margin: 0 auto;
    background: url("../images/main/visual-slide-stop_lg.png") center/23px no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-intro .dot-list .slide-stop.play {
    background-image: url("../images/main/visual-slide-play_lg.png");
  }
}
body.page-index .index-esg {
  position: relative;
  background: #F4FAFE;
}
body.page-index .index-esg .esg-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
body.page-index .index-esg .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner {
    padding: 43px 15px 50px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner {
    padding: 80px 20px 100px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .title-wrap {
    padding-bottom: 17px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .title-wrap {
    padding-bottom: 15px;
  }
}
body.page-index .index-esg .inner .title-wrap .title {
  font-family: "SynergyDisplay";
  font-weight: 600;
  letter-spacing: 0;
  color: #202121;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .title-wrap .title {
    font-size: 17.5px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .title-wrap .title {
    font-size: 24px;
    line-height: 60px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .title-wrap .title:lang(en) {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .title-wrap .title {
    font-weight: 700;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .title-wrap .title {
    padding-bottom: 11px;
  }
}
body.page-index .index-esg .inner .title-wrap .title-desc {
  font-family: "Noto Sans KR";
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #202021;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .title-wrap .title-desc {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .title-wrap .title-desc {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .title-wrap .title-desc:lang(en) {
    letter-spacing: 0;
  }
}
body.page-index .index-esg .inner .esg-list ul {
  padding: 0;
  font-size: 0;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul {
    padding: 0 2px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item {
    display: inline-block;
    width: 380px;
    height: 500px;
    vertical-align: top;
  }
}
body.page-index .index-esg .inner .esg-list ul .item .esg-item-link {
  -webkit-transition: background-image 0.3s ease;
  -moz-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item .esg-item-link {
    position: relative;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item .esg-item-link {
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(1) .esg-item-link {
    background: url("../images/main/2021/seg-img01_sm.jpg") center center/cover no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(1) .esg-item-link {
    background: url("../images/main/2021/seg-img01_lg.jpg") center center/cover no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(1) .esg-item-link:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    opacity: 0;
    background-image: url("../images/main/2021/seg-img01_on_lg.jpg");
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(1) .esg-item-link:hover, body.page-index .index-esg .inner .esg-list ul .item:nth-child(1) .esg-item-link:focus {
    background-image: url("../images/main/2021/seg-img01_on_lg.jpg");
  }
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(2) .esg-item-link {
    background: url("../images/main/2021/seg-img02_sm.jpg") center center/cover no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(2) .esg-item-link {
    background: url("../images/main/2021/seg-img02_lg.jpg") center center/cover no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(2) .esg-item-link:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    opacity: 0;
    background-image: url("../images/main/2021/seg-img02_on_lg.jpg");
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(2) .esg-item-link:hover, body.page-index .index-esg .inner .esg-list ul .item:nth-child(2) .esg-item-link:focus {
    background-image: url("../images/main/2021/seg-img02_on_lg.jpg");
  }
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(3) .esg-item-link {
    background: url("../images/main/2021/seg-img03_sm.jpg") center center/cover no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(3) .esg-item-link {
    background: url("../images/main/2021/seg-img03_lg.jpg") center center/cover no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(3) .esg-item-link:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    opacity: 0;
    background-image: url("../images/main/2021/seg-img03_on_lg.jpg");
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(3) .esg-item-link:hover, body.page-index .index-esg .inner .esg-list ul .item:nth-child(3) .esg-item-link:focus {
    background-image: url("../images/main/2021/seg-img03_on_lg.jpg");
  }
}
body.page-index .index-esg .inner .esg-list ul .item .esg-item-link {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item .esg-item-link {
    padding-bottom: 43.0769%;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item .esg-item-link {
    height: 100%;
  }
}
body.page-index .index-esg .inner .esg-list ul .item .desc {
  display: block;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc {
    left: 45%;
    text-align: left;
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc {
    padding-top: 53px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc:lang(en) {
    left: 40%;
  }
}
body.page-index .index-esg .inner .esg-list ul .item .desc .name {
  display: block;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc .name {
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc .name {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
  }
}
body.page-index .index-esg .inner .esg-list ul .item .desc .txt {
  display: block;
  font-weight: 300;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc .txt {
    margin-top: 7px;
    font-size: 20px;
    line-height: 25px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc .txt {
    margin-top: 297px;
    font-size: 24px;
    line-height: 40px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc .txt:lang(en) {
    margin-right: 10px;
    font-size: 15px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item .desc .txt:lang(en) {
    margin-top: 335px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item:nth-child(3) .desc .txt:lang(en) {
    margin-top: 320px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-esg .inner .esg-list ul .item + .item {
    margin-top: 5px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-esg .inner .esg-list ul .item + .item {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-news .inner {
    margin: 0 15px;
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px 100px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner:lang(en) {
    padding-bottom: 79px;
  }
}
body.page-index .index-news .inner .title-wrap {
  position: relative;
  font-size: 0;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .title-wrap {
    padding: 44px 0 15px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .title-wrap {
    padding: 80px 0 29px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .title-wrap:lang(en) {
    padding-bottom: 0;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .title-wrap:lang(en):after {
    left: 100px;
    width: 935px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .title-wrap:after {
    content: "";
    position: absolute;
    left: 182px;
    top: 109px;
    display: inline-block;
    width: 852px;
    height: 1px;
    background-color: #1a1a1a;
  }
}
body.page-index .index-news .inner .title-wrap .title {
  display: inline-block;
  vertical-align: middle;
  font-family: "SynergyDisplay";
  font-weight: 600;
  letter-spacing: 0;
  color: #202121;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .title-wrap .title {
    font-size: 17.5px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .title-wrap .title {
    font-size: 24px;
    line-height: 60px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .title-wrap .title:lang(en) {
    font-size: 25px;
  }
}
body.page-index .index-news .inner .title-wrap .view-link {
  display: inline-block;
  vertical-align: middle;
  float: right;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0;
  color: #202121;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .title-wrap .view-link {
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .title-wrap .view-link {
    margin-top: 15px;
    font-size: 14px;
  }
}
body.page-index .index-news .inner .title-wrap .view-link:after {
  content: "";
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;
  background: url("../images/main/intro-more-icon-bk_lg.png") center right/contain no-repeat;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .title-wrap .view-link:after {
    width: 15px;
    height: 15px;
    margin-left: 5px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .title-wrap .view-link:after {
    width: 23px;
    height: 23px;
    margin-left: 10px;
  }
}
body.page-index .index-news .inner .grid-full {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-full .item {
    padding: 0 2px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-full .item {
    padding-bottom: 50px;
    font-size: 0;
  }
}
body.page-index .index-news .inner .grid-full .item .link {
  display: block;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-full .item .thumb {
    display: block;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-full .item .thumb {
    display: inline-block;
    vertical-align: top;
    width: 650px;
  }
}
body.page-index .index-news .inner .grid-full .item .thumb .img {
  width: 100%;
  vertical-align: top;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-full .item .text {
    display: block;
    padding-top: 12px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-full .item .text {
    display: inline-block;
    vertical-align: top;
    width: 510px;
    padding: 47px 10px 0 51px;
  }
}
body.page-index .index-news .inner .grid-full .item .text .news-title {
  display: block;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #202121;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-full .item .text .news-title {
    padding-bottom: 4px;
    font-size: 17.5px;
    line-height: 25px;
    max-height: 50px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-full .item .text .news-title {
    padding-bottom: 6px;
    font-size: 30px;
    line-height: 40px;
    max-height: 80px;
  }
}
body.page-index .index-news .inner .grid-full .item .text .news-txt {
  display: block;
  font-family: "Noto Sans KR";
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #505051;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-full .item .text .news-txt {
    max-height: 45px;
    font-weight: 300;
    line-height: 22.5px;
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-full .item .text .news-txt {
    max-height: 100px;
    font-weight: 400;
    line-height: 25px;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-full .item.item-01 {
    padding-bottom: 32px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-full .item.item-02 {
    padding-bottom: 31px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-full .item.item-02 .text {
    padding: 47px 20px 12px 31px;
  }
}
body.page-index .index-news .inner .grid-second {
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second {
    font-size: 0;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second:lang(en) {
    border: none;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item {
    display: inline-block;
    vertical-align: top;
    width: 50%;
  }
}
body.page-index .index-news .inner .grid-second .item .link {
  position: relative;
  display: block;
  font-size: 0;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-second .item .link {
    margin: 15px 0 15px 3px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item .link {
    margin: 30px 30px 30px 0;
  }
}
body.page-index .index-news .inner .grid-second .item .link .text {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-second .item .link .text {
    width: 49.24%;
    padding-right: 25px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item .link .text {
    width: -webkit-calc(100% - 280px);
    width: -moz-calc(100% - 280px);
    width: calc(100% - 280px);
    padding: 8px 15px 0 0;
  }
}
body.page-index .index-news .inner .grid-second .item .link .text .grid-news-title {
  display: block;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #202121;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-second .item .link .text .grid-news-title {
    font-size: 15px;
    line-height: 18px;
    height: 53px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item .link .text .grid-news-title {
    margin-top: -5px;
    font-size: 20px;
    line-height: 30px;
    height: 90px;
  }
}
body.page-index .index-news .inner .grid-second .item .link .text .grid-news-title:lang(en) {
  font-weight: 400;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-second .item .link .text .grid-news-title:lang(en) {
    font-size: 15px;
    line-height: 20px;
    height: 60px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item .link .text .grid-news-title:lang(en) {
    font-size: 16px;
    line-height: 33px;
    height: 99px;
  }
}
body.page-index .index-news .inner .grid-second .item .link .text .grid-news-date {
  position: absolute;
  left: 0;
  bottom: -4px;
  font-family: "Noto Sans KR";
  line-height: 20px;
  letter-spacing: 0;
  color: #666;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-second .item .link .text .grid-news-date {
    font-size: 11px;
    font-weight: 400;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item .link .text .grid-news-date {
    font-size: 14px;
    font-weight: 500;
  }
}
body.page-index .index-news .inner .grid-second .item .link .thumb {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-second .item .link .thumb {
    width: 50.76%;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item .link .thumb {
    width: 280px;
  }
}
body.page-index .index-news .inner .grid-second .item .link .thumb .img {
  width: 100%;
}
@media (max-width: 768px) {
  body.page-index .index-news .inner .grid-second .item + .item {
    border-top: 1px solid #1c1c1c;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item + .item {
    border-left: 1px dotted #1a1a1a;
  }
}
@media (min-width: 769px) {
  body.page-index .index-news .inner .grid-second .item + .item .link {
    margin: 30px 0 30px 30px;
  }
}
body.page-index .index-ir {
  background: #eff1f3;
}
@media (max-width: 768px) {
  body.page-index .index-ir {
    overflow: hidden;
  }
}
body.page-index .index-ir .inner {
  margin: 0 auto;
  font-size: 0;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner {
    position: relative;
    padding: 44px 15px 54px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner {
    position: relative;
    width: 1200px;
    height: 245px;
    padding: 80px 20px 0;
  }
}
body.page-index .index-ir .inner .title-wrap {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .title-wrap {
    width: 70px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .title-wrap {
    width: 180px;
  }
}
body.page-index .index-ir .inner .title-wrap .title {
  font-family: "SynergyDisplay";
  font-weight: 600;
  letter-spacing: 0;
  color: #202121;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .title-wrap .title {
    font-size: 17.5px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .title-wrap .title {
    font-size: 24px;
    line-height: 60px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .title-wrap .title:lang(en) {
    font-size: 25px;
  }
}
body.page-index .index-ir .inner .counter {
  display: inline-block;
  white-space: nowrap;
  vertical-align: top;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .counter {
    width: -webkit-calc(100% - 70px);
    width: -moz-calc(100% - 70px);
    width: calc(100% - 70px);
    margin-top: -7px;
  }
}
@media (max-width: 768px) and (max-width: 355px) {
  body.page-index .index-ir .inner .counter {
    width: 100%;
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .counter {
    width: 980px;
    padding-top: 14px;
  }
}
@media (max-width: 380px) {
  body.page-index .index-ir .inner .counter:lang(en) {
    width: 100%;
    margin-top: 10px;
  }
}
body.page-index .index-ir .inner .counter iframe {
  width: 100%;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .counter iframe {
    height: 53px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .counter iframe {
    height: 60px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info {
    display: inline-block;
    position: absolute;
    top: 80px;
    right: 20px;
    vertical-align: top;
    padding-top: 10px;
    padding-left: 3px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info:lang(en) {
    top: 90px;
  }
}
body.page-index .index-ir .inner .info .link-stock {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .info .link-stock {
    width: 100%;
    margin-bottom: 20px;
    text-align: right;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .link-stock {
    margin-right: 27px;
    font-size: 20px;
    font-weight: 400;
    line-height: 60px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .link-stock:lang(en) {
    display: block;
    margin: 3px 0 0;
    text-align: right;
  }
}
body.page-index .index-ir .inner .info .link-stock:after {
  content: "";
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;
  background: url("../images/main/intro-more-icon-bk_lg.png") center right/contain no-repeat;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .info .link-stock:after {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background: url("../images/main/intro-more-icon-bk_lg.png") center right/contain no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .link-stock:after {
    width: 23px;
    height: 23px;
    margin-left: 10px;
  }
}
body.page-index .index-ir .inner .info .group {
  font-size: 0;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .info .group {
    display: block;
    margin: 0 2px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .group {
    display: inline-block;
    padding: 0;
    vertical-align: middle;
  }
}
body.page-index .index-ir .inner .info .group .item {
  display: inline-block;
  position: relative;
  border-radius: 3px;
  background-color: #35383c;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .info .group .item {
    width: -webkit-calc(33.333% - 3.333px);
    width: -moz-calc(33.333% - 3.333px);
    width: calc(33.333% - 3.333px);
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .group .item {
    width: 130px;
  }
}
@media (max-width: 768px) and (min-width: 491px) {
  body.page-index .index-ir .inner .info .group .item:lang(en) {
    width: -webkit-calc(26% - 3.4px);
    width: -moz-calc(26% - 3.4px);
    width: calc(26% - 3.4px);
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .group .item:lang(en) {
    width: auto;
  }
}
@media (max-width: 490px) {
  body.page-index .index-ir .inner .info .group .item:lang(en) {
    width: -webkit-calc(50% - 2.5px);
    width: -moz-calc(50% - 2.5px);
    width: calc(50% - 2.5px);
  }
}
@media (max-width: 768px) and (min-width: 491px) {
  body.page-index .index-ir .inner .info .group .item:lang(en):nth-child(1) {
    width: -webkit-calc(41% - 3.3px);
    width: -moz-calc(41% - 3.3px);
    width: calc(41% - 3.3px);
  }
}
@media (max-width: 490px) {
  body.page-index .index-ir .inner .info .group .item:lang(en):nth-child(1) {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) and (min-width: 491px) {
  body.page-index .index-ir .inner .info .group .item:lang(en):nth-child(2) {
    width: -webkit-calc(33% - 3.3px);
    width: -moz-calc(33% - 3.3px);
    width: calc(33% - 3.3px);
  }
}
@media (max-width: 490px) {
  body.page-index .index-ir .inner .info .group .item:lang(en):nth-child(2) {
    width: -webkit-calc(50% - 2.5px);
    width: -moz-calc(50% - 2.5px);
    width: calc(50% - 2.5px);
    margin: 0;
  }
}
body.page-index .index-ir .inner .info .group .item .link {
  display: block;
  letter-spacing: 0;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .info .group .item .link {
    padding-left: 15px;
    font-size: 15px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: -0.03em;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .group .item .link {
    padding-left: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 45px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .group .item .link:lang(en) {
    padding: 0 25px 0 10px;
  }
}
body.page-index .index-ir .inner .info .group .item .link:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url("../images/main/2021/info-btn-icon.png") center right/auto no-repeat;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .info .group .item .link:after {
    right: 10px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .group .item .link:after {
    right: 20px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .group .item .link:lang(en):after {
    right: 10px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-ir .inner .info .group .item + .item {
    margin-left: 5px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-ir .inner .info .group .item + .item {
    margin-left: 10px;
  }
}
body.page-index .index-recruit {
  overflow: hidden;
}
@media (max-width: 768px) {
  body.page-index .index-recruit {
    background: #27272c url("../images/main/2021/recruit-bg_sm.jpg") center/cover no-repeat;
  }
}
@media (min-width: 769px) {
  body.page-index .index-recruit {
    background: #27272c url("../images/main/2021/recruit-bg.jpg") center/cover no-repeat;
  }
}
body.page-index .index-recruit .inner {
  margin: 0 auto;
}
@media (max-width: 768px) {
  body.page-index .index-recruit .inner {
    padding: 46px 15px 32px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-recruit .inner {
    width: 1200px;
    height: 370px;
    padding: 80px 20px 0;
  }
}
body.page-index .index-recruit .inner .title-wrap {
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 769px) {
  body.page-index .index-recruit .inner .title-wrap {
    width: 182px;
  }
}
body.page-index .index-recruit .inner .title-wrap .title {
  font-family: "SynergyDisplay";
  font-weight: 600;
  letter-spacing: 0;
  color: #202121;
  color: #fff;
}
@media (max-width: 768px) {
  body.page-index .index-recruit .inner .title-wrap .title {
    font-size: 17.5px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-recruit .inner .title-wrap .title {
    font-size: 24px;
    line-height: 60px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-recruit .inner .title-wrap .title:lang(en) {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-recruit .inner .recruit-content {
    -webkit-transform: translate(80px, 0);
       -moz-transform: translate(80px, 0);
        -ms-transform: translate(80px, 0);
            transform: translate(80px, 0);
    opacity: 0;
  }
}
@media (min-width: 769px) {
  body.page-index .index-recruit .inner .recruit-content {
    display: inline-block;
    vertical-align: top;
    padding-top: 12px;
  }
}
body.page-index .index-recruit .inner .recruit-content .sub {
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  body.page-index .index-recruit .inner .recruit-content .sub {
    padding-bottom: 18px;
    font-size: 20px;
    line-height: 27px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-recruit .inner .recruit-content .sub {
    padding-bottom: 25px;
    font-size: 40px;
    line-height: 55px;
  }
}
body.page-index .index-recruit .inner .recruit-content .link {
  display: block;
  font-weight: 300;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  body.page-index .index-recruit .inner .recruit-content .link {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-recruit .inner .recruit-content .link {
    font-size: 16px;
    line-height: 40px;
  }
}
body.page-index .index-recruit .inner .recruit-content .link:after {
  content: "";
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;
  background: url("../images/main/intro-more-icon_lg.png") center right/contain no-repeat;
}
@media (max-width: 768px) {
  body.page-index .index-recruit .inner .recruit-content .link:after {
    width: 15px;
    height: 15px;
    margin-left: 5px;
  }
}
@media (min-width: 769px) {
  body.page-index .index-recruit .inner .recruit-content .link:after {
    width: 23px;
    height: 23px;
    margin-left: 10px;
  }
}

/* ESG 공통 css // */
.esg-page {
  /* ESG 공통 스타일 */
}
.esg-page .content-header .type-txt {
  /*  @media (max-width: 768px) {
     margin-bottom: 31px;
   }
   @media (min-width: 769px) {
     margin-bottom: 63px;
   } */
}
@media (max-width: 768px) {
  .esg-page .content-header + .content-body {
    padding-top: 31px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-header + .content-body {
    padding-top: 37px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-header + .content-body:lang(en) {
    padding-top: 36px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-header + .content-body:lang(en) {
    padding-top: 45px;
  }
}
.esg-page .content-body + .content-body {
  padding-top: 55px;
}
.esg-page .content-body + .content-body:lang(en) {
  padding-top: 50px;
}
@media (max-width: 768px) {
  .esg-page .content-body:last-of-type {
    padding-bottom: 100px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body:last-of-type {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body .sub-content + .sub-content {
    margin-top: 25px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body .sub-content + .sub-content {
    margin-top: 31px;
  }
  .esg-page .content-body .sub-content + .sub-content:lang(en) {
    margin-top: 33px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body h5.h5-nor + .desc-nor-b {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body h5.h5-nor + .desc-nor-b {
    margin-top: 19px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body h5.h5-nor + .large-desc {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body h5.h5-nor + .large-desc {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body .desc-nor-b + .sub-content {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body .desc-nor-b + .sub-content {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body h5.h5-nor + .sub-content {
    margin-top: 13px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body h5.h5-nor + .sub-content {
    margin-top: 20px;
  }
  .esg-page .content-body h5.h5-nor + .sub-content:lang(en) {
    margin-top: 23px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body h6.h6-nor + .desc-nor-b {
    margin-top: 7px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body h6.h6-nor + .desc-nor-b {
    margin-top: 5px;
  }
  .esg-page .content-body h6.h6-nor + .desc-nor-b:lang(en) {
    margin-top: 9px;
  }
}
.esg-page .content-body h4 {
  padding-top: 0;
}
@media (max-width: 768px) {
  .esg-page h5.h5-nor {
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .esg-page h5.h5-nor {
    letter-spacing: -0.025em;
  }
  .esg-page h5.h5-nor:lang(en) {
    letter-spacing: 0;
    line-height: 1.333333;
  }
}
.esg-page h6.h6-nor {
  line-height: 20px;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: #141414;
}
@media (max-width: 768px) {
  .esg-page h6.h6-nor {
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .esg-page h6.h6-nor {
    font-size: 15px;
  }
}
.esg-page h6.h6-nor:lang(en) {
  letter-spacing: 0;
}
.esg-page .large-desc {
  font-weight: 400;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .esg-page .large-desc {
    font-size: 15px;
    line-height: 170%;
    letter-spacing: -0.05em;
  }
  .esg-page .large-desc:lang(en) {
    line-height: 160%;
  }
}
@media (min-width: 769px) {
  .esg-page .large-desc {
    font-size: 17px;
    line-height: 170%;
    letter-spacing: -0.025em;
  }
  .esg-page .large-desc:lang(en) {
    font-size: 16px;
    line-height: 30px;
  }
}
.esg-page .large-desc + .large-desc {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .esg-page .desc-nor-b {
    line-height: 22.5px;
    letter-spacing: -0.05em;
  }
}
@media (min-width: 769px) {
  .esg-page .desc-nor-b {
    line-height: 22.5px;
    letter-spacing: -0.05em;
  }
}
.esg-page .desc-nor-b:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .esg-page .desc-nor-b + .desc-nor-b {
    margin-top: 18px;
  }
}
@media (min-width: 769px) {
  .esg-page .desc-nor-b + .desc-nor-b {
    margin-top: 22px;
  }
}
.esg-page .download-list {
  /* 공통 (type1, type2) */
}
.esg-page .download-list .cell-wrap {
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
  font-size: 0;
}
@media (min-width: 769px) {
  .esg-page .download-list .cell-wrap .text-wrap {
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list .cell-wrap .text-wrap p {
    display: inline-block;
    vertical-align: middle;
  }
}
.esg-page .download-list .cell-wrap .text-wrap p.name {
  font-weight: 600;
  color: #4c4c4c;
  letter-spacing: -0.025em;
}
@media (max-width: 768px) {
  .esg-page .download-list .cell-wrap .text-wrap p.name {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list .cell-wrap .text-wrap p.name {
    font-size: 16px;
  }
}
.esg-page .download-list .cell-wrap .btn-wrap {
  width: 150px;
}
@media (max-width: 768px) {
  .esg-page .download-list .cell-wrap .btn-wrap {
    margin: 0;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list .cell-wrap .btn-wrap {
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
    margin: 24px 0;
  }
}
.esg-page .download-list .cell-wrap .btn-wrap .btn-download {
  display: block;
  width: 150px;
  height: 36px;
  border: 1px solid #4c4c4c;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.05em;
  color: #1a1a1a;
  text-align: center;
}
.esg-page .download-list .cell-wrap .btn-wrap .btn-download:lang(en) {
  letter-spacing: -0.025em;
}
.esg-page .download-list.type1 {
  border-top: 1px solid #a5a5a5;
}
@media (max-width: 768px) {
  .esg-page .download-list.type1 .cell-wrap {
    padding: 22px 10px;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type1 .cell-wrap {
    height: 75px;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .esg-page .download-list.type1 .cell-wrap .text-wrap {
    padding-bottom: 12px;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type1 .cell-wrap .text-wrap {
    width: -webkit-calc(100% - 150px);
    width: -moz-calc(100% - 150px);
    width: calc(100% - 150px);
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type1 .cell-wrap .text-wrap p.name {
    line-height: 22px;
    width: 166px;
    padding-right: 10px;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type1 .cell-wrap .text-wrap p.name:lang(en) {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .esg-page .download-list.type1 .cell-wrap .text-wrap p.desc-nor-b {
    padding-top: 6px;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type1 .cell-wrap .text-wrap p.desc-nor-b {
    line-height: 18px;
    width: -webkit-calc(100% - 166px);
    width: -moz-calc(100% - 166px);
    width: calc(100% - 166px);
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type1 .cell-wrap .text-wrap p.desc-nor-b:lang(en) {
    width: -webkit-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: calc(100% - 250px);
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type1 .cell-wrap .text-wrap.none-desc p.name {
    width: 100%;
  }
}
.esg-page .download-list.type2 {
  border-top: 1px solid #dbdbdb;
}
@media (max-width: 768px) {
  .esg-page .download-list.type2 .cell-wrap {
    padding: 19px 10px 20px;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type2 .cell-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .esg-page .download-list.type2 .cell-wrap .text-wrap {
    width: 100%;
    padding-bottom: 9px;
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type2 .cell-wrap .text-wrap {
    width: -webkit-calc(100% - 150px);
    width: -moz-calc(100% - 150px);
    width: calc(100% - 150px);
  }
}
@media (min-width: 769px) {
  .esg-page .download-list.type2 .cell-wrap .text-wrap p {
    line-height: 84px;
  }
}
.esg-page .table-wrap .table {
  width: 100%;
}
.esg-page .table-wrap .table thead tr.current {
  background: #e6e6e6;
}
.esg-page .table-wrap .table thead th {
  border-top: 1px solid #8c8c8c;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #4c4c4c;
  background: #f9f9f9;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .esg-page .table-wrap .table thead th {
    padding: 13px 10px 12px;
    border-bottom: 1px solid #d0d0d0;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .esg-page .table-wrap .table thead th {
    padding: 12px 20px 13px;
    border-bottom: 1px solid #8c8c8c;
    font-size: 15px;
    line-height: 23px;
  }
}
.esg-page .table-wrap .table thead th.left {
  text-align: left;
}
.esg-page .table-wrap .table thead th.current {
  background: #e6e6e6;
}
.esg-page .table-wrap .table tbody tr.current {
  background: #f7f7f7;
}
.esg-page .table-wrap .table tbody th, .esg-page .table-wrap .table tbody td {
  border-bottom: 1px solid #d0d0d0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #4c4c4c;
  text-align: center;
}
@media (max-width: 768px) {
  .esg-page .table-wrap .table tbody th, .esg-page .table-wrap .table tbody td {
    padding: 12px 10px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .esg-page .table-wrap .table tbody th, .esg-page .table-wrap .table tbody td {
    padding: 14px 20px;
    line-height: 21px;
  }
}
.esg-page .table-wrap .table tbody th.left, .esg-page .table-wrap .table tbody td.left {
  text-align: left;
}
.esg-page .table-wrap .table tbody th.current, .esg-page .table-wrap .table tbody td.current {
  background: #f7f7f7;
}
.esg-page .table-wrap .table tbody th .num, .esg-page .table-wrap .table tbody td .num {
  font-size: 10px;
  font-weight: inherit;
  vertical-align: super;
}
.esg-page .table-wrap .table tbody th {
  text-align: left;
}
@media (max-width: 768px) {
  .esg-page .table-wrap .table tbody th {
    font-weight: 700;
  }
}
@media (min-width: 769px) {
  .esg-page .table-wrap .table tbody th {
    font-weight: 600;
  }
}
.esg-page .table-wrap .table tbody td {
  color: #141414;
}
@media (max-width: 768px) {
  .esg-page .table-wrap .table tbody td.sm-text {
    font-size: 12px;
  }
}
.esg-page .table-wrap .table.align-left thead th, .esg-page .table-wrap .table.align-left thead td, .esg-page .table-wrap .table.align-left tbody th, .esg-page .table-wrap .table.align-left tbody td {
  text-align: left;
}
.esg-page .table-wrap .content-table.show-only-mobile .table thead tr.current {
  background: #f7f7f7;
}
.esg-page .table-wrap .content-table.show-only-mobile .table thead tr th {
  vertical-align: middle;
}
.esg-page .table-wrap .content-table.show-only-mobile .table thead tr th.current {
  background: #f7f7f7;
}
.esg-page .table-wrap .content-table.show-only-mobile .table thead tr th .num {
  font-size: 10px;
  font-weight: 600;
  vertical-align: super;
}
.esg-page .table-wrap .content-table.show-only-mobile .table tbody tr.current {
  background: #f7f7f7;
}
.esg-page .table-wrap .content-table.show-only-mobile .table tbody th, .esg-page .table-wrap .content-table.show-only-mobile .table tbody td {
  padding: 8px 10px;
}
.esg-page .table-wrap .content-table.show-only-mobile .table tbody th.current, .esg-page .table-wrap .content-table.show-only-mobile .table tbody td.current {
  background: #f7f7f7;
}
.esg-page .table-wrap .content-table.show-only-mobile .table tbody th {
  font-weight: 600;
}
.esg-page .table-wrap .content-table.show-only-mobile .table tbody td {
  line-height: 18px;
}
.esg-page .table-wrap .content-table.show-only-mobile .table + .table {
  margin-top: -1px;
}
.esg-page .table-wrap .content-table.show-only-mobile .table.add-th-line tbody th {
  border-right: 1px solid #dbdbdb;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table thead th {
  width: -webkit-calc((100% - 75px) / 3);
  width: -moz-calc((100% - 75px) / 3);
  width: calc((100% - 75px) / 3);
  height: auto;
  padding: 7px;
  border-left: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  font-weight: 500;
  letter-spacing: -0.05em;
  background-color: #fff;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table thead th.first-th {
  border: none;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table thead th.title-th {
  height: 40px;
  padding: 0 0 0 10px;
  border-left: none;
  border-top: 1px solid #a5a5a5;
  border-bottom: 1px solid #dbdbdb;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.025em;
  background: #f9f9f9;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table thead th.sub-th {
  width: -webkit-calc((100% - 75px) / 3 / 2);
  width: -moz-calc((100% - 75px) / 3 / 2);
  width: calc((100% - 75px) / 3 / 2);
  padding: 13px;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: -0.025em;
  color: #666;
  background: #f9f9f9;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table thead th.current {
  background: #ededed;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table tbody tr.current {
  background: #ededed;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table tbody tr.current .sub-td {
  background: #ededed;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table tbody th {
  width: 75px;
  padding: 8px 10px 8px 10px;
  border-right: 1px solid #d1d1d1;
  border-bottom: none;
  line-height: 16px;
  vertical-align: middle;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table tbody td {
  padding: 0;
  border-bottom: none;
  line-height: 33px;
  color: #666666;
  vertical-align: middle;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table tbody td.sub-td {
  font-size: 11px;
  background: #f9f9f9;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table.all-line th, .esg-page .table-wrap .content-table.show-only-mobile.segmentation .table.all-line td {
  border-top: 1px solid #d1d1d1;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table.all-line td {
  border-left: 1px solid #d1d1d1;
}
.esg-page .table-wrap .content-table.show-only-mobile.segmentation .table:last-child {
  border-bottom: 1px solid #d1d1d1;
}
@media (max-width: 768px) {
  .esg-page .tip-wrap {
    margin-top: 2px;
  }
}
@media (min-width: 769px) {
  .esg-page .tip-wrap {
    margin-top: 4px;
  }
}
.esg-page .tip-wrap li {
  padding-left: 7px;
  font-size: 11px;
  letter-spacing: -0.025em;
  text-indent: -7px;
  color: #666;
}
@media (max-width: 768px) {
  .esg-page .tip-wrap li {
    margin-top: 4px;
    line-height: 16px;
  }
}
@media (min-width: 769px) {
  .esg-page .tip-wrap li {
    line-height: 18px;
  }
  .esg-page .tip-wrap li:lang(ko) {
    font-size: 12px;
    line-height: 160%;
  }
}
.esg-page .tip-wrap li.second-li {
  padding-left: 11px;
  text-indent: -11px;
}
.esg-page .tip-wrap li.third-li {
  padding-left: 18px;
  text-indent: -18px;
}
.esg-page .tip-wrap.under-title li {
  font-size: 13px;
  line-height: 20px;
}
.esg-page .tip-wrap.under-title li.second-li {
  padding-left: 13px;
  text-indent: -13px;
}
.esg-page .tip-wrap.under-title li.third-li {
  padding-left: 18px;
  text-indent: -18px;
}
.esg-page .num-tip li {
  padding-left: 13px;
  text-indent: -13px;
}
.esg-page .footnote {
  font-size: 10px;
  font-weight: inherit;
  line-height: 20px;
  letter-spacing: -0.05em;
  vertical-align: text-bottom;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .esg-page .footnote:lang(ko) {
    font-size: 10px;
    line-height: 22.5px;
  }
}
.esg-page .footnote-wrap {
  margin-top: 17px;
}
.esg-page .footnote-wrap li, .esg-page .footnote-wrap p {
  padding-top: 1px;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #666;
}
@media (max-width: 768px) {
  .esg-page .footnote-wrap li, .esg-page .footnote-wrap p {
    padding-left: 12px;
    text-indent: -12px;
    font-size: 11px;
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .esg-page .footnote-wrap li, .esg-page .footnote-wrap p {
    padding-left: 12px;
    text-indent: -12px;
    font-size: 11px;
    line-height: 18px;
  }
  .esg-page .footnote-wrap li:lang(ko), .esg-page .footnote-wrap p:lang(ko) {
    font-size: 12px;
  }
}
.esg-page .footnote-wrap li:lang(en), .esg-page .footnote-wrap p:lang(en) {
  letter-spacing: -0.025em;
}
@media (max-width: 768px) {
  .esg-page .footnote-wrap li + li, .esg-page .footnote-wrap p + li {
    margin-top: 5px;
    margin-top: 0px;
  }
}
.esg-page .footnote-wrap li .line-list, .esg-page .footnote-wrap p .line-list {
  padding-bottom: 3px;
}
.esg-page .footnote-wrap li .line-list li, .esg-page .footnote-wrap p .line-list li {
  padding-left: 6px;
  text-indent: -6px;
}
@media (max-width: 768px) {
  .esg-page .footnote-wrap li .line-list li, .esg-page .footnote-wrap p .line-list li {
    margin-left: -10px;
  }
}
@media (min-width: 769px) {
  .esg-page .footnote-wrap li .line-list li, .esg-page .footnote-wrap p .line-list li {
    margin-left: -9px;
  }
}
.esg-page .img-wrap {
  text-align: center;
}
@media (max-width: 768px) {
  .esg-page .img-wrap img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .esg-page .line-list-wrap {
    margin-top: 4px;
    padding-left: 7px;
  }
}
@media (min-width: 769px) {
  .esg-page .line-list-wrap {
    margin-top: 8px;
    padding-left: 10px;
  }
}
.esg-page .line-list-wrap .line-list {
  padding-left: 8px;
  margin: 0;
  text-indent: -8px;
}
.esg-page .line-list-wrap .line-list::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1px;
  margin-right: 4px;
  margin-bottom: 2px;
  background-color: #4c4c4c;
  vertical-align: middle;
}
.esg-page .icon-table-wrap {
  margin-top: 10px;
  border-top: 1px solid #a5a5a5;
}
.esg-page .icon-table-wrap .item {
  position: relative;
  border-bottom: 1px solid #dbdbdb;
  font-size: 0;
}
@media (max-width: 768px) {
  .esg-page .icon-table-wrap .item {
    padding: 22px 15px 22px 85px;
  }
}
@media (min-width: 769px) {
  .esg-page .icon-table-wrap .item {
    min-height: 105px;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .esg-page .icon-table-wrap .item:lang(en) {
    padding: 11px 0px 17px 72px;
  }
}
.esg-page .icon-table-wrap .item::before {
  content: "";
  width: 47px;
  height: 50px;
  vertical-align: middle;
  background: url("../images/csr/crm/crm_5_picto_7.png") left center/contain no-repeat;
}
@media (max-width: 768px) {
  .esg-page .icon-table-wrap .item::before {
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 15px;
  }
}
@media (min-width: 769px) {
  .esg-page .icon-table-wrap .item::before {
    display: inline-block;
    margin: 27.5px 0;
  }
}
@media (max-width: 768px) {
  .esg-page .icon-table-wrap .item .name-wrap {
    margin-bottom: 7px;
  }
}
@media (min-width: 769px) {
  .esg-page .icon-table-wrap .item .name-wrap {
    display: inline-block;
    width: 363px;
    padding-left: 28px;
    vertical-align: middle;
  }
}
.esg-page .icon-table-wrap .item .name-wrap p {
  font-weight: bold;
  color: #141414;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .esg-page .icon-table-wrap .item .name-wrap p {
    font-size: 15px;
    line-height: 21px;
  }
}
@media (min-width: 769px) {
  .esg-page .icon-table-wrap .item .name-wrap p {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (min-width: 769px) {
  .esg-page .icon-table-wrap .item .name-wrap p:lang(en) {
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0;
  }
}
.esg-page .icon-table-wrap .item .name-wrap p span {
  font-size: inherit;
  line-height: inherit;
  color: #666;
  letter-spacing: inherit;
}
.esg-page .icon-table-wrap .item .line-list-wrap {
  display: inline-block;
  margin: 0;
  padding-left: 0;
}
@media (min-width: 769px) {
  .esg-page .icon-table-wrap .item .line-list-wrap {
    width: -webkit-calc(100% - 410px);
    width: -moz-calc(100% - 410px);
    width: calc(100% - 410px);
    vertical-align: middle;
  }
}
@media (max-width: 768px) {
  .esg-page .icon-table-wrap .item .line-list-wrap .line-list:lang(en) {
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .esg-page .icon-table-wrap .item .line-list-wrap .line-list + .line-list {
    margin-top: 5px;
  }
}
.esg-page .num-table-wrap {
  border-top: 1px solid #a5a5a5;
}
@media (max-width: 768px) {
  .esg-page .num-table-wrap {
    margin-top: 21px;
  }
}
@media (min-width: 769px) {
  .esg-page .num-table-wrap {
    margin-top: 15px;
  }
}
.esg-page .num-table-wrap .item {
  border-bottom: 1px solid #dbdbdb;
  font-size: 0;
}
@media (max-width: 768px) {
  .esg-page .num-table-wrap .item {
    padding: 20px 0;
  }
}
@media (min-width: 769px) {
  .esg-page .num-table-wrap .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 26px 20px;
  }
}
@media (min-width: 769px) {
  .esg-page .num-table-wrap .item .num-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 240px;
    height: 57px;
    padding-right: 20px;
    vertical-align: middle;
  }
}
.esg-page .num-table-wrap .item .num-wrap p {
  font-weight: 400;
  color: #141414;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .esg-page .num-table-wrap .item .num-wrap p {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .esg-page .num-table-wrap .item .num-wrap p {
    padding-left: 30px;
    font-size: 18px;
    line-height: 25px;
    text-indent: -30px;
  }
}
.esg-page .num-table-wrap .item .num-wrap p .num {
  font-weight: bold;
}
@media (max-width: 768px) {
  .esg-page .num-table-wrap .item .num-wrap p .num {
    margin-right: 6px;
  }
}
@media (min-width: 769px) {
  .esg-page .num-table-wrap .item .num-wrap p .num {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .esg-page .num-table-wrap .item .line-list-wrap {
    margin-top: 5px;
    padding: 0;
  }
}
@media (min-width: 769px) {
  .esg-page .num-table-wrap .item .line-list-wrap {
    display: inline-block;
    width: -webkit-calc(100% - 240px);
    width: -moz-calc(100% - 240px);
    width: calc(100% - 240px);
    margin: 0;
    padding: 0;
    vertical-align: middle;
  }
}
.esg-page .num-table-wrap .item .line-list-wrap .line-list {
  padding: 0 0 0 7px;
  text-indent: -7px;
}
@media (max-width: 768px) {
  .esg-page .num-table-wrap .item .line-list-wrap .line-list + .line-list {
    margin-top: 5px;
  }
}

@media (min-width: 769px) {
  .msie9 .esg-page .num-table-wrap .item {
    display: block;
  }
}
@media (min-width: 769px) {
  .msie9 .esg-page .num-table-wrap .item .num-wrap {
    display: table-cell;
  }
}
@media (min-width: 769px) {
  .msie9 .esg-page .num-table-wrap .item .line-list-wrap {
    display: table-cell;
  }
}

/* // ESG 공통 css */
/* ESG 개요 시작 // */
.overview-page.esg-page .content-body.content-intro {
  padding: 0;
  font-size: 0;
  background-color: #000;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.content-intro {
    width: 100%;
    aspect-ratio: 360/320;
    margin-top: 16px;
    background-image: url("../images/esg/overview-intro-bg_sm.jpg");
    background-position: top center;
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.content-intro {
    height: 400px;
    margin-top: 38px;
    background-image: url("../images/esg/overview-intro-bg_lg.jpg");
    background-position: center;
    -webkit-background-size: auto 400px;
            background-size: auto 400px;
  }
}
.overview-page.esg-page .content-body.content-intro .section-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.content-intro .section-inner {
    padding-bottom: 34px;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.content-intro .section-inner {
    padding-bottom: 94px;
  }
  .overview-page.esg-page .content-body.content-intro .section-inner:lang(en) {
    padding-bottom: 62px;
  }
}
.overview-page.esg-page .content-body.content-intro .section-inner .intro-title {
  font-family: "SynergyDisplay";
  font-weight: 400;
  letter-spacing: -0.7px;
  color: #fff;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.content-intro .section-inner .intro-title {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: -0.5px;
  }
  .overview-page.esg-page .content-body.content-intro .section-inner .intro-title:lang(en) {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.content-intro .section-inner .intro-title {
    font-size: 36px;
    line-height: 50px;
  }
  .overview-page.esg-page .content-body.content-intro .section-inner .intro-title:lang(en) {
    font-size: 28px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.content-desc {
    padding: 45px 0 0;
  }
  .overview-page.esg-page .content-body.content-desc:lang(en) {
    padding: 45px 0 80px;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.content-desc {
    padding: 78px 0 0;
  }
  .overview-page.esg-page .content-body.content-desc:lang(en) {
    padding: 52px 0 200px;
  }
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.content-desc .large-desc {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 184.615% */
    letter-spacing: -0.7px;
  }
  .overview-page.esg-page .content-body.content-desc .large-desc:lang(en) {
    line-height: 22.5px; /* 173.077% */
    letter-spacing: 0;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.content-desc .large-desc {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.65px;
  }
  .overview-page.esg-page .content-body.content-desc .large-desc:lang(en) {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.video-section {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.video-section {
    padding-bottom: 240px;
  }
}
.overview-page.esg-page .content-body.video-section .h6-nor {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.video-section .h6-nor + .desc-nor-b {
    margin-top: 0px;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.video-section .h6-nor + .desc-nor-b {
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.video-section .video-wrap {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.video-section .video-wrap {
    display: grid;
    grid-template-columns: 680px auto;
    gap: 32px;
    margin-top: 22px;
  }
}
.overview-page.esg-page .content-body.video-section .video-wrap .youtube {
  width: 100%;
  aspect-ratio: 680/383;
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.video-section .video-wrap .subscription-group {
    margin-top: 16px;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.video-section .video-wrap .subscription-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  height: 27px;
  color: #4C4C4C;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .tit {
    color: #141414;
    font-size: 13px;
    letter-spacing: -0.7px;
  }
}
.overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .tit .icon {
  width: 24px;
}
.overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
     -moz-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  padding: 20px;
  border: 1px solid #d1d1d1;
  margin-top: 8px;
  color: #666;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: -0.52px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .text {
    height: 200px;
    padding-left: 0;
    padding-right: 0;
    font-size: 13px;
    border-left: 0;
    border-right: 0;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .text {
    height: 311px;
  }
}
.overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .down-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  margin-top: 16px;
}
.overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .down-group .btn-down {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 28px;
  padding: 0px 13px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border: 1px solid #4C4C4C;
  color: #141414;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  letter-spacing: -0.24px;
}
.overview-page.esg-page .content-body.video-section .video-wrap .subscription-group .down-group .btn-down .icon {
  width: 13px;
}
.overview-page.esg-page .content-body.video-section .link-group {
  text-align: center;
}
@media (max-width: 768px) {
  .overview-page.esg-page .content-body.video-section .link-group {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .overview-page.esg-page .content-body.video-section .link-group {
    margin-top: 55px;
  }
}
.overview-page.esg-page .content-body.video-section .link-group .desc {
  color: #1A1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.65px;
}
.overview-page.esg-page .content-body.video-section .link-group .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 34px 13px 34px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
  border-radius: 38px;
  background: #000;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.5px; /* 130% */
  letter-spacing: -0.375px;
}
/* // ESG 개요 끝 */
/* 추진방향 시작 // */
@media (max-width: 768px) {
  .directions-page.esg-page .content-header + .content-body:lang(en) {
    padding-top: 36px;
  }
}
@media (min-width: 769px) {
  .directions-page.esg-page .content-header + .content-body:lang(en) {
    padding-top: 45px;
  }
}
@media (max-width: 768px) {
  .directions-page.esg-page .content-body {
    padding-bottom: 60px;
  }
}
@media (min-width: 769px) {
  .directions-page.esg-page .content-body {
    padding-bottom: 160px;
  }
}
@media (max-width: 768px) {
  .directions-page.esg-page .content-body .large-desc:lang(en) {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .directions-page.esg-page .content-body .img-wrap {
    margin-top: 55px;
  }
}
@media (min-width: 769px) {
  .directions-page.esg-page .content-body .img-wrap {
    margin-top: 78px;
  }
}

/* // 추진방향 끝 */
/* 추진체계 시작 // */
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-group .tip-wrap {
    margin: 13px 0 0 0;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-group .tip-wrap {
    margin: 11px 0 0 0;
  }
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-group .tip-wrap + .desc-nor-b {
    margin-top: 18px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-group .tip-wrap + .desc-nor-b {
    margin-top: 22px;
  }
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-group .img-wrap {
    margin-top: 35px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-group .img-wrap {
    text-align: left;
    margin-top: 33px;
  }
}
.principle-page.esg-page .content-body.content-global .logo-list {
  font-size: 0;
  margin-top: 30px;
}
.principle-page.esg-page .content-body.content-global .logo-list li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-global .logo-list li {
    width: 50%;
    height: 120px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-global .logo-list li {
    width: 25%;
    height: 110px;
  }
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-global .logo-list li:nth-child(1), .principle-page.esg-page .content-body.content-global .logo-list li:nth-child(2) {
    border-bottom: 1px solid #e9e9e9;
  }
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-global .logo-list li:nth-child(2n) {
    border-left: 1px solid #e9e9e9;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-global .logo-list li + li {
    border-left: 1px solid #e9e9e9;
  }
}
.principle-page.esg-page .content-body.content-global .logo-list li .img-wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
}
.principle-page.esg-page .content-body.content-global .download-list {
  border-color: #a5a5a5;
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-report .sub-content {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-report .sub-content {
    margin-top: 34px;
  }
}
.principle-page.esg-page .content-body.content-report .sub-content .img-wrap {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-processes {
    margin-top: 46px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-processes {
    margin-top: 56px;
  }
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list {
    margin-top: 46px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list {
    margin-top: 56px;
  }
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list {
    margin-top: 11px;
  }
}
.principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list li {
  position: relative;
  padding-left: 9px;
  text-indent: -9px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list li {
    line-height: 19px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list li {
    font-size: 15px;
    line-height: 160%;
  }
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list li:lang(en) {
    font-size: 13px;
    line-height: 22.5px;
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list li + li {
    margin-top: 4px;
  }
  .principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list li + li:lang(en) {
    margin-top: 0;
  }
}
.principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list li .blod {
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.principle-page.esg-page .content-body.content-report .sub-content.sub-list .dot-list li:before {
  content: "";
  display: inline-block;
  margin: 0 4px 3px 0;
  width: 2px;
  height: 2px;
  vertical-align: middle;
  background-color: #141414;
}
@media (max-width: 440px) {
  .principle-page.esg-page .content-body.content-result .img-small {
    max-width: 330px;
  }
}
@media (min-width: 440px) and (max-width: 768px) {
  .principle-page.esg-page .content-body.content-result .img-small {
    width: 420px;
  }
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-result .sub-content {
    margin-top: 21px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-result .sub-content {
    margin-top: 19px;
  }
}
.principle-page.esg-page .content-body.content-result .sub-content h6 {
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-result .topics-table {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .principle-page.esg-page .content-body.content-result .topics-table {
    margin-top: 24px;
  }
}
.principle-page.esg-page .content-body.content-result .footnote-wrap {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-result .footnote-wrap {
    margin-top: 10px;
  }
}
.principle-page.esg-page .content-body.content-result .footnote-wrap .tit {
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .principle-page.esg-page .content-body.content-result .footnote-wrap .tit {
    margin-bottom: 3px;
  }
}
/* // 추진체계 끝 */
/* 평가결과 시작 // */
@media (max-width: 768px) {
  .rating-page.esg-page .content-body {
    padding-bottom: 80px;
  }
}
@media (min-width: 769px) {
  .rating-page.esg-page .content-body {
    padding-bottom: 160px;
  }
}
@media (max-width: 768px) {
  .rating-page.esg-page .content-body .box-list {
    margin: 37px 0 40px;
  }
}
@media (min-width: 769px) {
  .rating-page.esg-page .content-body .box-list {
    margin: 50px 0 35px;
    font-size: 0;
  }
}
.rating-page.esg-page .content-body .box-list .box-item {
  border: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .rating-page.esg-page .content-body .box-list .box-item {
    margin-bottom: 15px;
  }
}
@media (min-width: 769px) {
  .rating-page.esg-page .content-body .box-list .box-item {
    display: inline-block;
    width: -webkit-calc(33.3333333333% - 15px);
    width: -moz-calc(33.3333333333% - 15px);
    width: calc(33.3333333333% - 15px);
    margin-bottom: 22px;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .rating-page.esg-page .content-body .box-list .box-item:nth-child(3n), .rating-page.esg-page .content-body .box-list .box-item:nth-child(3n-1) {
    margin-left: 22px;
  }
}
.rating-page.esg-page .content-body .box-list .box-item .img-wrap {
  text-align: center;
}
@media (max-width: 768px) {
  .rating-page.esg-page .content-body .box-list .box-item .img-wrap {
    height: 112px;
  }
}
@media (min-width: 769px) {
  .rating-page.esg-page .content-body .box-list .box-item .img-wrap {
    height: 138px;
  }
}
.rating-page.esg-page .content-body .box-list .box-item .img-wrap .img {
  height: 100%;
}
@media (max-width: 768px) {
  .rating-page.esg-page .content-body .box-list .box-item .img-wrap .img {
    width: auto;
  }
}
.rating-page.esg-page .content-body .box-list .box-item .text-wrap {
  position: relative;
  background-color: #f7f7f7;
  font-size: 0;
}
@media (max-width: 768px) {
  .rating-page.esg-page .content-body .box-list .box-item .text-wrap {
    height: 42px;
  }
}
@media (min-width: 769px) {
  .rating-page.esg-page .content-body .box-list .box-item .text-wrap {
    height: 52px;
  }
}
.rating-page.esg-page .content-body .box-list .box-item .text-wrap p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: -webkit-calc(100% - 1px);
  width: -moz-calc(100% - 1px);
  width: calc(100% - 1px);
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #141414;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .rating-page.esg-page .content-body .box-list .box-item .text-wrap p {
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .rating-page.esg-page .content-body .box-list .box-item .text-wrap p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .rating-page.esg-page .content-body .box-list .box-item .text-wrap p:lang(en) {
    line-height: 16px;
  }
}
.rating-page.esg-page .content-body .box-list .box-item .text-wrap p .text-sm {
  font-weight: 400;
}
@media (max-width: 768px) {
  .rating-page.esg-page .content-body .box-list .box-item .text-wrap p .text-sm {
    font-size: 11px;
  }
}
@media (min-width: 769px) {
  .rating-page.esg-page .content-body .box-list .box-item .text-wrap p .text-sm {
    font-size: 14px;
  }
}

/* // 평가결과 끝 */
/* 환경경영 시작 // */
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-desc .img-wrap {
    margin: 40px auto 0;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-desc .img-wrap {
    margin: 72px auto 0;
  }
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-group {
    padding-top: 76px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-group {
    padding-top: 70px;
  }
}
.env-page.esg-page .content-body.content-policy .guide-list {
  margin: 0;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-policy .guide-list {
    padding: 33px 15px;
  }
  .env-page.esg-page .content-body.content-policy .guide-list:lang(en) {
    padding: 30px 10px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-policy .guide-list {
    padding: 39px 24px;
  }
}
.env-page.esg-page .content-body.content-policy .guide-list .item:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-policy .guide-list .item ~ .item {
    margin-top: 21px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-policy .guide-list .item ~ .item {
    margin-top: 18px;
  }
}
.env-page.esg-page .content-body.content-policy .guide-list .item .item-title {
  display: block;
  margin-bottom: 1px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 22.5px;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-policy .guide-list .item .item-title {
    padding-left: 23px;
    text-indent: -23px;
  }
  .env-page.esg-page .content-body.content-policy .guide-list .item .item-title:lang(en) {
    padding-left: 28px;
    text-indent: -28px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-policy .guide-list .item .item-title {
    padding-left: 28px;
    text-indent: -28px;
  }
}
.env-page.esg-page .content-body.content-policy .guide-list .item .item-title:lang(en) {
  letter-spacing: 0;
}
.env-page.esg-page .content-body.content-policy .guide-list .item .line-list-wrap {
  margin-top: 0;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-policy .guide-list .item .line-list-wrap p + p {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-certified h5.h5-nor {
    margin-bottom: 16px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified h5.h5-nor {
    margin-bottom: 20px;
  }
}
.env-page.esg-page .content-body.content-certified .certificate-wrap {
  font-size: 0;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.env-page.esg-page .content-body.content-certified .certificate-wrap .download-content {
  height: 150px;
  border: 1px solid #333;
  text-align: center;
  vertical-align: top;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content {
    display: inline-block;
    height: auto;
    width: -webkit-calc(50% - 2.5px);
    width: -moz-calc(50% - 2.5px);
    width: calc(50% - 2.5px);
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content {
    display: inline-block;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-calc(25% - 15px);
    width: -moz-calc(25% - 15px);
    width: calc(25% - 15px);
  }
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(1), .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(2) {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(2n) {
    margin-left: 5px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content + .download-content {
    margin-left: 20px;
  }
}
.env-page.esg-page .content-body.content-certified .certificate-wrap .download-content .txt {
  display: inline-block;
  padding: 20px 0 20px 68px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.025em;
  color: #4c4c4c;
  text-align: left;
  background: url("../images/manage/csr-eco-certificate-icon-iso_lg.png") left center/53px no-repeat;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content .txt {
    height: -webkit-calc(100% - 92px);
    height: -moz-calc(100% - 92px);
    height: calc(100% - 92px);
    margin: 24px 15px 20px;
    padding: 62px 0 0;
    background-position: top center;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content .txt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 102px;
  }
}
.env-page.esg-page .content-body.content-certified .certificate-wrap .download-content .txt:lang(en) {
  font-size: 15px;
  line-height: 20px;
}
.env-page.esg-page .content-body.content-certified .certificate-wrap .download-content .btn-download-icon {
  display: block;
  width: 125px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content .btn-download-icon {
    margin: 0 auto 20px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(1) .txt {
    background-position: left top 29px;
  }
}
.env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(2) .txt {
  background-image: url("../images/manage/csr-eco-certificate-icon-GHG_lg.png");
  -webkit-background-size: 45px 45px;
          background-size: 45px;
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(2) .txt {
    padding-left: 60px;
  }
}
.env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(3) .txt {
  background-image: url("../images/manage/csr-eco-certificate-icon-scope_lg.png");
  -webkit-background-size: 57px 57px;
          background-size: 57px;
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(3) .txt {
    padding-left: 79px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(3) .txt:lang(en) {
    padding-left: 72px;
  }
}
.env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(4) .txt {
  background-image: url("../images/manage/csr-eco-certificate-icon-water_lg.png");
  -webkit-background-size: 63px 63px;
          background-size: 63px;
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(4) .txt {
    padding-left: 79px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-certified .certificate-wrap .download-content:nth-child(4) .txt:lang(en) {
    padding-left: 71px;
  }
}
.env-page.esg-page .content-body.content-data * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .env-page.esg-page .content-body.content-data h5.h5-nor {
    margin-bottom: 15px;
  }
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-data h5.h5-nor {
    margin-bottom: 20px;
  }
}
.env-page.esg-page .content-body.content-data .table-wrap .keep-all {
  word-break: keep-all !important;
}
.env-page.esg-page .content-body.content-data .table-wrap .left {
  text-align: left !important;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop {
  width: 100%;
  border-top: 1px solid #8c8c8c;
  border-bottom: 1px solid #bababa;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .th {
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .th {
    padding: 14px 20px;
    font-size: 15px;
  }
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .th:lang(en) {
  letter-spacing: 0;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .td {
  font-size: 13px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .td {
    padding: 14px 13px;
    line-height: 22px;
    letter-spacing: -0.05em;
    color: #1a1a1a;
  }
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .td.left {
  padding-left: 13px;
  font-weight: 500;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .td.left {
    line-height: 18px;
  }
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .td.left.indent {
  padding-left: 28px;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .td.current {
  background: #f7f7f7;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .thead .tr {
  border-bottom: 1px solid #8c8c8c;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .thead .th {
  background: #f9f9f9;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .thead .th.current {
  background: #e6e6e6;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .tbody .tr + .tr {
  border-top: 1px solid #ecebeb;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .tbody .tr.sub-tr .td {
  font-size: 12px;
  color: #666;
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .tbody .tr.sub-tr .td {
    padding-top: 9px;
    padding-bottom: 9;
  }
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .tbody .tr.sub-tr + .sub-tr {
  border-top: none;
}
@media (min-width: 769px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .tbody .tr.sub-tr + .sub-tr .td {
    padding-top: 0;
    padding-bottom: 9px;
  }
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .tbody .th {
  padding: 16px 19px 16px;
  font-size: 13px;
  text-align: left;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-desktop .tbody .th:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 399px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-mobile .table-overflow:lang(en) {
    overflow: auto;
  }
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-mobile .table-overflow:lang(en) .table {
  border-bottom: none;
}
.env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-mobile .table-overflow:lang(en) .table thead th span {
  display: none;
}
@media (max-width: 400px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-mobile .table-overflow:lang(en) .table thead th span {
    display: inline;
  }
}
@media (max-width: 340px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-mobile .table tbody th {
    width: 50px;
  }
}
@media (max-width: 400px) {
  .env-page.esg-page .content-body.content-data .table-wrap .content-table.show-only-mobile .table tbody th:lang(en) {
    width: 55px;
  }
}
.env-page.esg-page .content-body.content-data .notice-wrap {
  margin-top: 15px;
}
.env-page.esg-page .content-body.content-data .notice-wrap .notice {
  margin-top: 3px;
  padding-left: 8px;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.025;
  text-indent: -8px;
  color: #666;
}

/* // 환경경영 끝 */
/* 기후변화 시작 // */
.climate-page.esg-page .content-body * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.climate-page.esg-page .content-body .table-content {
  border: 1px solid #eaeaea;
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body .table-content {
    padding: 14px 10px;
  }
}
@media (min-width: 769px) {
  .climate-page.esg-page .content-body .table-content {
    padding: 16px 22px;
  }
}
.climate-page.esg-page .content-body .table-content .table-title {
  margin-bottom: 11px;
  font-weight: 600;
  line-height: 20px;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body .table-content .table-title {
    font-size: 12px;
    letter-spacing: -0.025em;
  }
}
@media (min-width: 769px) {
  .climate-page.esg-page .content-body .table-content .table-title {
    font-size: 14px;
    letter-spacing: -0.05em;
  }
}
.climate-page.esg-page .content-body .table-content .table-wrap {
  position: relative;
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body .table-content .table-wrap {
    margin-top: 11px;
  }
}
.climate-page.esg-page .content-body .table-content .table-wrap .table-unit {
  position: absolute;
  right: 0px;
  top: -24px;
  font-size: 11px;
  line-height: 20px;
  color: #666;
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body .table-content .table-wrap .table-unit {
    letter-spacing: -0.025em;
  }
}
@media (min-width: 769px) {
  .climate-page.esg-page .content-body .table-content .table-wrap .table-unit {
    letter-spacing: -0.05em;
  }
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table thead th {
  position: relative;
  padding: 13px 20px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  letter-spacing: -0.05em;
  text-align: right;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table thead th:first-child {
  text-align: center;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table thead th:last-child {
  padding-right: 24px;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table thead th .star {
  position: absolute;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table tbody th {
  padding: 13px 14px;
  line-height: 20px;
  letter-spacing: -0.05em;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table tbody td {
  padding: 13px 20px;
  line-height: 1.53846;
  vertical-align: middle;
  text-align: right;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table tbody td.left {
  padding: 13px 0 13px 0;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #4c4c4c;
  text-align: left;
  vertical-align: top;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table tbody td.left.sub {
  font-size: 12px;
  color: #666;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-desktop .table tbody td:last-child {
  padding-right: 24px;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table thead th {
  width: -webkit-calc((100% - 80px) / 4);
  width: -moz-calc((100% - 80px) / 4);
  width: calc((100% - 80px) / 4);
  padding: 10px 10px;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: -0.025em;
  color: #666;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table thead th.title-th {
  font-size: 12px;
  color: #4c4c4c;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table thead th.first-th {
  padding: 10px;
  border-bottom: 1px solid #d1d1d1;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #4c4c4c;
  text-align: left;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table tbody th {
  width: 80px;
  padding: 8px 5px 0px 10px;
  font-size: 12px;
  line-height: 19px;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table tbody td {
  padding: 8px 10px 0px 10px;
  font-size: 12px;
  line-height: 19px;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table tbody tr:last-child th, .climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table tbody tr:last-child td {
  padding-bottom: 8px;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table.table-line td {
  border-left: 1px solid #d1d1d1;
}
.climate-page.esg-page .content-body .table-content .table-wrap .content-table.show-only-mobile .table:last-child {
  border-bottom: 1px solid #d1d1d1;
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body.content-2050 h5.h5-nor {
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) {
  .climate-page.esg-page .content-body.content-2050 h5.h5-nor {
    margin-bottom: 20px;
  }
}
.climate-page.esg-page .content-body.content-2050 .download-list {
  margin-top: 40px;
}
.climate-page.esg-page .content-body.content-risk .img-wrap {
  margin-top: 6px;
}
.climate-page.esg-page .content-body.content-risk .footnote-wrap {
  margin-top: 7px;
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body.content-goals .sub-content.sub-current .img-wrap {
    margin-top: 4px;
  }
}
@media (min-width: 769px) {
  .climate-page.esg-page .content-body.content-goals .sub-content.sub-current .img-wrap {
    margin-top: 17px;
  }
}
.climate-page.esg-page .content-body.content-goals .sub-content.sub-down {
  margin-top: 30px;
}
.climate-page.esg-page .content-body.content-goals .sub-content.sub-down .footnote-wrap {
  margin: 7px 0 30px;
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body.content-goals .sub-content.sub-down .tip-wrap {
    margin: 10px 0 0 0;
  }
}
@media (min-width: 769px) {
  .climate-page.esg-page .content-body.content-goals .sub-content.sub-down .tip-wrap {
    margin-top: 9px;
  }
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body.content-goals .sub-content.sub-goals .img-wrap {
    margin-top: 15px;
  }
}
@media (min-width: 769px) {
  .climate-page.esg-page .content-body.content-goals .sub-content.sub-goals .img-wrap {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .climate-page.esg-page .content-body.content-goals .sub-content.sub-action .table-wrap {
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  .climate-page.esg-page .content-body.content-goals .sub-content.sub-action .table-wrap {
    margin-top: 16px;
  }
}
.climate-page.esg-page .content-body.content-goals .sub-content.sub-action .table-wrap .content-table.show-only-desktop .table thead th:last-child {
  padding-right: 45px;
}
.climate-page.esg-page .content-body.content-goals .sub-content.sub-action .table-wrap .content-table.show-only-desktop .table tbody th {
  padding: 14px 15px;
}
.climate-page.esg-page .content-body.content-goals .sub-content.sub-action .table-wrap .content-table.show-only-desktop .table tbody td:last-child {
  padding-right: 45px;
}
.climate-page.esg-page .content-body.content-goals .sub-content.sub-emit .footnote-wrap {
  margin: 7px 0 30px;
}

/* // 기후변화 끝 */
/* 친환경 활동 시작// */
.ecofriendly-page.esg-page .ecofriendly-activities {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ecofriendly-page.esg-page .ecofriendly-activities {
    gap: 55px 0;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 769px) {
  .ecofriendly-page.esg-page .ecofriendly-activities {
    gap: 40px 0;
  }
}
@media (min-width: 769px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group {
    display: grid;
    grid-template-columns: 320px auto;
    gap: 0 24px;
  }
}
@media (max-width: 768px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .thumb-group .thumb {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .thumb-group .thumb {
    max-width: 100%;
  }
}
.ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .text-group {
  position: relative;
}
@media (max-width: 768px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .text-group {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .text-group {
    padding-right: 15px;
  }
}
@media (max-width: 768px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .text-group .desc-nor-b {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .text-group .desc-nor-b {
    margin-top: 18px;
  }
}
.ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .text-group .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 7px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: 1px solid #141414;
  color: #4C4C4C;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.65px;
}
@media (max-width: 768px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .text-group .link {
    margin-top: 12px;
    font-size: 13px;
  }
}
@media (min-width: 769px) {
  .ecofriendly-page.esg-page .ecofriendly-activities .article-group .content-group .text-group .link {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
  }
}

/* //친환경 활동 끝 */
/* 자원순환 시작 // */
/* // 자원순환 끝 */
/* 구성원 시작 // */
.members-page.esg-page .content-body .table-wrap .content-table .table tbody td .list {
  padding-top: 5px;
}
.members-page.esg-page .content-body .table-wrap .content-table .table tbody td .list .dot-list {
  position: relative;
  padding-left: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.025em;
  vertical-align: top;
  color: #1a1a1a;
}
.members-page.esg-page .content-body .table-wrap .content-table .table tbody td .list .dot-list::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 2px;
  margin: 7.5px 0;
  border-radius: 2px;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body .h6-nor {
    margin-top: 14px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body .h6-nor {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body .img-wrap {
    margin-top: 8px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body .img-wrap {
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-promote .sub-content + .sub-content {
    margin-top: 35px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content + .sub-content {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-set .img-wrap {
    margin: 35px 0 15px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-set .img-wrap {
    margin: 55px 0 54px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-set .img-wrap:lang(en) {
    margin: 27px 0 15px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-set .img-wrap:lang(en) {
    margin: 44px 0 54px;
  }
}
.members-page.esg-page .content-body.content-promote .sub-content.sub-ai .h6-sub-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 22.5px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .h6-sub-title {
    line-height: 23px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .h6-sub-title.first {
    padding-top: 8px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .h6-sub-title.first {
    padding-top: 16px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .h6-sub-title.first:lang(en) {
    padding-top: 9px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .img-wrap {
    margin: 11px 0 15px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .img-wrap {
    margin: 24px 0 28px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .img-wrap:lang(en) {
    margin: 22px 0 24px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .img-wrap:lang(en) {
    margin: 24px 0 33px;
  }
}
.members-page.esg-page .content-body.content-promote .sub-content.sub-ai .img-wrap .h6-sub-title {
  text-align: left;
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .img-wrap .h6-sub-title {
    padding-bottom: 10px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-promote .sub-content.sub-ai .img-wrap .h6-sub-title {
    padding-bottom: 8px;
  }
}
.members-page.esg-page .content-body.content-culture .sub-hcroi .table-wrap {
  margin-top: 16px;
}
.members-page.esg-page .content-body.content-culture .sub-hcroi .table-wrap .show-only-desktop table body tr.bottom-line {
  border-bottom: 1px solid #d0d0d0;
}
.members-page.esg-page .content-body.content-culture .sub-hcroi .table-wrap .show-only-mobile table:first-child {
  border-bottom: 1px solid #d1d1d1;
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-culture .sub-hcroi .table-wrap .show-only-mobile table + table {
    margin-top: 22px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-culture .sub-hcroi .table-wrap .show-only-mobile table tbody th {
    width: 40%;
    height: 28px;
    line-height: 12px;
  }
}
.members-page.esg-page .content-body.content-culture .sub-hcroi .table-wrap .show-only-mobile table tbody th.first-th {
  height: 40px;
  border-right: none;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-culture .sub-hcroi .table-wrap .show-only-mobile table tbody td {
    height: 28px;
    padding: 0 8px;
    line-height: 20px;
  }
}
.members-page.esg-page .content-body.content-balance .txt-wrap {
  margin-top: 31px;
}
.members-page.esg-page .content-body.content-balance .txt-wrap:lang(ko) {
  margin-top: 22px;
}
.members-page.esg-page .content-body.content-balance .txt-wrap .list-title {
  margin-top: 0;
  margin-bottom: 10px;
}
.members-page.esg-page .content-body.content-balance .txt-wrap .line-list-wrap {
  padding-left: 0;
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-balance .img-wrap {
    margin-top: 26px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-balance .img-wrap {
    margin-top: 53px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-balance .h5-nor + .sub-content {
    margin-top: 13px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-balance .h5-nor + .sub-content {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-balance .sub-content {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-balance .sub-content {
    margin-top: 55px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-balance .sub-content .table-wrap {
    margin-top: 16px;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-balance .sub-content .table-wrap {
    margin-top: 14px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-balance .table-wrap .content-table .table thead th:first-child {
    width: 25%;
  }
}
@media (min-width: 769px) {
  .members-page.esg-page .content-body.content-balance .table-wrap .content-table .table thead th:first-child {
    width: 175px;
  }
}
@media (max-width: 768px) {
  .members-page.esg-page .content-body.content-balance .table-wrap .content-table .table thead th:first-child:lang(en) {
    width: 30%;
  }
}
.members-page.esg-page .content-body.content-balance .table-wrap .content-table .table tbody th {
  font-weight: 600;
}
.members-page.esg-page .content-body.content-balance .table-wrap .content-table .table tbody th .mobile-br {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
@media (min-width: 401px) {
  .members-page.esg-page .content-body.content-balance .table-wrap .content-table .table tbody th .mobile-br {
    display: none;
  }
}

/* // 구성원 끝 */
/* 안전보건 시작 // */
.health-page.esg-page .content-body .desc-nor-b + .img-wrap {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body .table-wrap {
    margin-top: 16px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body .table-wrap {
    margin-top: 14px;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body .table-wrap .content-table .table-inner-title {
    margin-top: 20px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #4c4c4c;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body .table-wrap .content-table .table + .table-inner-title {
    margin-top: 39px;
  }
}
.health-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table {
  width: 100%;
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table thead tr th {
    height: auto;
  }
}
.health-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table thead tr th:lang(en) {
  letter-spacing: 0;
}
.health-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table tbody td {
  min-height: 65px;
  padding: 12px 10px;
  line-height: 20px;
}
.health-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table tbody td:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-desc .img-wrap {
    margin-top: 25px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-desc .img-wrap {
    margin-top: 34px;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-desc .h5-nor {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-desc .h5-nor {
    margin: 52px 0 0;
  }
}
.health-page.esg-page .content-body.content-desc .line-box {
  border: 5px solid #f0f0f0;
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-desc .line-box {
    margin-top: 21px;
    padding: 11px 14px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-desc .line-box {
    margin-top: 15px;
    padding: 23px 23px 17px;
  }
}
.health-page.esg-page .content-body.content-desc .line-box .desc-list {
  padding: 21px 0;
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-desc .line-box .desc-list .desc-title {
    padding-left: 13px;
    text-indent: -13px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-desc .line-box .desc-list .desc-title {
    padding-left: 15px;
    text-indent: -15px;
  }
}
.health-page.esg-page .content-body.content-desc .line-box .desc-list .desc-title + .desc-title {
  padding-top: 13px;
}
.health-page.esg-page .content-body.content-desc .line-box .desc-list .desc-title h6.h6-nor {
  margin: 0;
  line-height: 21.5px;
  color: #4c4c4c;
}
.health-page.esg-page .content-body.content-desc .line-box .date {
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.025em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-desc .line-box .date {
    padding-top: 20px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-desc .line-box .date {
    padding-top: 19px;
  }
}
.health-page.esg-page .content-body.content-desc .line-box .name {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-desc .line-box .name {
    margin-top: -7px;
  }
}
.health-page.esg-page .content-body.content-desc .line-box .name .name-signature {
  width: 90px;
  margin: 5px 0 0 15px;
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-desc .line-box .name .name-signature {
    width: 81px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-desc .line-box .name .name-signature {
    width: 90px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-group .img-wrap:lang(en) {
    text-align: left;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-goals {
    padding-top: 50px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-goals:lang(en) {
    padding-top: 85px;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-goals .sub-content.sub-map .h6-nor {
    margin: 39px 0 37px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-goals .sub-content.sub-map .h6-nor {
    margin: 63px 0 37px;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-goals .sub-content.sub-activity .h6-nor {
    margin: 39px 0 0;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-goals .sub-content.sub-activity .h6-nor {
    margin: 63px 0 19px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-goals .sub-content.sub-activity .table-wrap table tbody th:lang(en), .health-page.esg-page .content-body.content-goals .sub-content.sub-activity .table-wrap table tbody td:lang(en) {
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-opinion .table-wrap .content-table .table thead th:first-child {
    width: 18%;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-opinion .table-wrap .content-table .table thead th:nth-child(2) {
    width: 22%;
  }
}
.health-page.esg-page .content-body.content-risk .content-wrap {
  margin-top: 20px;
  font-size: 0;
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-risk .content-wrap .content-step {
    display: block;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-risk .content-wrap .content-step {
    display: inline-block;
    width: 50%;
    padding-right: 20px;
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-risk .content-wrap .content-info {
    margin-top: 48px;
    display: block;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-risk .content-wrap .content-info {
    display: inline-block;
    width: 50%;
    padding-left: 20px;
    vertical-align: top;
  }
}
.health-page.esg-page .content-body.content-risk .content-wrap .h6-nor {
  padding-bottom: 7px;
  border-bottom: 1px solid #4c4c4c;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-check {
    padding-top: 85px;
  }
}
.health-page.esg-page .content-body.content-check .h6-nor {
  margin: 30px 0 25px;
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-processes {
    padding-top: 85px;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-processes .h6-nor {
    margin: 30px 0 14px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-processes .h6-nor {
    margin: 30px 0 10px;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-level .h6-nor {
    margin: 30px 0 14px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-level .h6-nor {
    margin: 30px 0 10px;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-health .table-wrap .content-table .table td, .health-page.esg-page .content-body.content-health .table-wrap .content-table .table th, .health-page.esg-page .content-body.content-level .table-wrap .content-table .table td, .health-page.esg-page .content-body.content-level .table-wrap .content-table .table th {
    vertical-align: middle;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-activity .table-wrap .content-table .table thead th:nth-child(2) {
    width: 43%;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-activity .table-wrap .content-table .table thead th:nth-child(2):lang(en) {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-health .table-wrap .content-table .table thead th:first-child, .health-page.esg-page .content-body.content-activity .table-wrap .content-table .table thead th:first-child, .health-page.esg-page .content-body.content-level .table-wrap .content-table .table thead th:first-child {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-health .table-wrap .content-table .table thead th:first-child:lang(en), .health-page.esg-page .content-body.content-activity .table-wrap .content-table .table thead th:first-child:lang(en), .health-page.esg-page .content-body.content-level .table-wrap .content-table .table thead th:first-child:lang(en) {
    width: 27%;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-activity .table-wrap .content-table .table thead th:lang(en):first-child, .health-page.esg-page .content-body.content-level .table-wrap .content-table .table thead th:lang(en):first-child {
    width: 250px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-activity .table-wrap .content-table .table thead th:lang(en):nth-child(3), .health-page.esg-page .content-body.content-level .table-wrap .content-table .table thead th:lang(en):nth-child(3) {
    width: 360px;
  }
}
@media (max-width: 768px) {
  .health-page.esg-page .content-body.content-accident .sub-processes .img-wrap {
    margin-top: 27px;
  }
}
@media (min-width: 769px) {
  .health-page.esg-page .content-body.content-accident .sub-processes .img-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .safety-page.esg-page .content-body + .content-body {
    padding-top: 60px;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-body + .content-body {
    padding-top: 80px;
  }
}
.safety-page.esg-page .content-body:last-of-type {
  padding-bottom: 0;
}
.safety-page.esg-page .content-body .h5-nor {
  line-height: 170%;
  letter-spacing: -0.525px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-body .h5-nor {
    line-height: 140%; /* 21px */
    letter-spacing: -0.7px;
  }
}
.safety-page.esg-page .content-body .h5-nor + .desc-nor-b {
  margin-top: 4px;
}
.safety-page.esg-page .content-body .h6-nor {
  font-weight: 600;
  margin-top: 24px;
  line-height: 170%;
  letter-spacing: -0.525px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-body .h6-nor {
    margin-top: 16px;
  }
}
.safety-page.esg-page .content-body .table-title {
  margin: 16px 0 8px;
  color: #4C4C4C;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 153.846% */
  letter-spacing: -0.75px;
}
.safety-page.esg-page .content-body .table-title + .table-wrap {
  margin-top: 0;
}
.safety-page.esg-page .content-body .desc-nor-b:lang(en) {
  letter-spacing: -0.32px;
}
.safety-page.esg-page .content-body .desc-nor-b + .sub-content {
  margin-top: 24px;
}
.safety-page.esg-page .content-body .img-wrap {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-body .table-wrap {
    margin-top: 16px;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-body .table-wrap {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-body .table-wrap .content-table .table-inner-title {
    margin-top: 20px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #4c4c4c;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-body .table-wrap .content-table .table + .table-inner-title {
    margin-top: 39px;
  }
}
.safety-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table {
  width: 100%;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table thead tr th {
    height: auto;
  }
}
.safety-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table thead tr th:lang(en) {
  letter-spacing: 0;
}
.safety-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table tbody td {
  min-height: 65px;
  padding: 12px 10px;
  line-height: 20px;
}
.safety-page.esg-page .content-body .table-wrap .content-table.show-only-mobile .table tbody td:lang(en) {
  letter-spacing: 0;
}
.safety-page.esg-page .content-body .table-wrap .content-table .table tbody th, .safety-page.esg-page .content-body .table-wrap .content-table .table tbody td {
  color: #141414;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
  letter-spacing: -0.325px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-body .table-wrap .content-table .table tbody th, .safety-page.esg-page .content-body .table-wrap .content-table .table tbody td {
    color: #1A1A1A;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-body .table-wrap .content-table .table tbody th {
    color: #4C4C4C;
    font-weight: 700;
  }
}
.safety-page.esg-page .content-intro.content-body:last-of-type {
  padding-bottom: 100px;
}
.safety-page.esg-page .content-intro .desc {
  color: #4C4C4C;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.65px;
}
.safety-page.esg-page .content-intro .desc:lang(en) {
  font-size: 16px;
  letter-spacing: -0.32px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-intro .desc {
    font-size: 13px;
    line-height: 24px; /* 184.615% */
    letter-spacing: -0.7px;
  }
  .safety-page.esg-page .content-intro .desc:lang(en) {
    font-size: 15px;
    letter-spacing: -0.65px;
  }
}
.safety-page.esg-page .content-intro .item-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-intro .item-group {
    gap: 16px;
    margin-top: 31px;
  }
}
.safety-page.esg-page .content-intro .item-group .btn-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 145px 0 0;
  border: 0;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-intro .item-group .btn-item {
    width: 100%;
    aspect-ratio: 330/320;
    padding-top: 36.5625%;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-intro .item-group .btn-item {
    width: 1040px;
    height: 320px;
  }
}
.safety-page.esg-page .content-intro .item-group .btn-item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.safety-page.esg-page .content-intro .item-group .btn-item .tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-family: "Synergy Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 68px */
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-intro .item-group .btn-item .tit {
    font-size: 24px;
  }
  .safety-page.esg-page .content-intro .item-group .btn-item .tit:lang(en) {
    line-height: 130%;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-intro .item-group .btn-item .tit:lang(en) {
    font-size: 30px;
  }
}
.safety-page.esg-page .content-intro .item-group .btn-item .more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-family: "Synergy Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 25.5px */
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-intro .item-group .btn-item .more {
    margin-top: 14px;
  }
}
.safety-page.esg-page .content-intro .item-group .btn-item .more::after {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 7px;
  height: 12px;
  margin-left: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1 1.5L5.5 6L1 10.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}
.safety-page.esg-page .content-intro .btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-intro .btn-group {
    margin-top: 31px;
  }
}
.safety-page.esg-page .content-intro .btn-group .tit {
  color: #1A1A1A;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  letter-spacing: -0.65px;
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-intro .btn-group .tit:lang(en) {
    letter-spacing: 0;
  }
}
.safety-page.esg-page .content-intro .btn-group .link-more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 34px 13px 34px;
  gap: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 38px;
  background: #000;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.5px; /* 130% */
  letter-spacing: -0.375px;
}
.safety-page.esg-page .content-intro .btn-group .link-more:focus {
  outline-color: #f24c34;
}
.safety-page.esg-page .content-intro .btn-group .link-more:lang(en)::after {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 6px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M0.75 0.5L5.25 5L0.75 9.5' stroke='white'/%3E%3C/svg%3E");
}
.safety-page.esg-page .content-rule .img-wrap {
  text-align: center;
}
.safety-page.esg-page .content-manage .img-wrap {
  text-align: center;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-goals .sub-map .h6-nor {
    margin: 39px 0 37px;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-goals .sub-map .h6-nor {
    margin: 63px 0 37px;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-activity .h6-nor {
    margin: 0 0 0;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-activity .h6-nor {
    margin: 0 0 19px;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-activity .table-wrap table tbody th:lang(en), .safety-page.esg-page .content-activity .table-wrap table tbody td:lang(en) {
    letter-spacing: 0;
  }
}
.safety-page.esg-page .content-risk .content-wrap {
  margin-top: 24px;
  font-size: 0;
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-risk .content-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-risk .content-wrap .content-step {
    display: block;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-risk .content-wrap .content-step {
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-risk .content-wrap .content-info {
    margin-top: 48px;
    display: block;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-risk .content-wrap .content-info {
    vertical-align: top;
  }
}
.safety-page.esg-page .content-risk .content-wrap .h6-nor {
  padding-bottom: 7px;
  border-bottom: 1px solid #4c4c4c;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-check {
    padding-top: 85px;
  }
}
.safety-page.esg-page .content-accident .img-wrap {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-accident .img-wrap {
    margin-top: 20px;
  }
}
.safety-page.esg-page .content-processes .img-wrap {
  margin-top: 4px;
}
.safety-page.esg-page .content-level .table-wrap {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-health .table-wrap .content-table .table td, .safety-page.esg-page .content-health .table-wrap .content-table .table th, .safety-page.esg-page .content-level .table-wrap .content-table .table td, .safety-page.esg-page .content-level .table-wrap .content-table .table th {
    vertical-align: middle;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-activity .table-wrap .content-table .table thead th:nth-child(2) {
    width: 43%;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-activity .table-wrap .content-table .table thead th:nth-child(2):lang(en) {
    width: 40%;
  }
}
.safety-page.esg-page .content-education .sign-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}
.safety-page.esg-page .content-education .sign-group .h6-nor {
  font-size: 17px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-education .sign-group .h6-nor {
    font-size: 14px;
    line-height: 20px;
  }
}
.safety-page.esg-page .content-education .sign-group .desc-nor-b {
  margin-top: 8px;
}
.safety-page.esg-page .content-education .sign-group .down-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 20px 1px 20px;
  margin: 24px 0 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  border-top: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-education .sign-group .down-group {
    padding: 19px 10px 21px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 9px;
    margin: 6px 0 16px;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-education .sign-group .down-group {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.safety-page.esg-page .content-education .sign-group .down-group .desc-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-education .sign-group .down-group .desc-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-education .sign-group .down-group .desc-group {
    gap: 47px;
    padding: 32px 0;
  }
}
.safety-page.esg-page .content-education .sign-group .down-group .desc-group .tit {
  color: #4C4C4C;
  font-family: "Noto Sans KR";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.4px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-education .sign-group .down-group .desc-group .tit {
    font-size: 13.891px;
    line-height: 170%; /* 23.614px */
    letter-spacing: -0.35px;
  }
}
.safety-page.esg-page .content-education .sign-group .down-group .desc-group .desc {
  color: #4C4C4C;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.4px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-education .sign-group .down-group .desc-group .desc {
    font-size: 13px;
    line-height: 24px; /* 184.615% */
    letter-spacing: -0.7px;
  }
}
.safety-page.esg-page .content-education .sign-group .down-group .btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 18px;
  border: 1px solid #4C4C4C;
}
.safety-page.esg-page .content-education .sign-group .down-group .btn-group .btn-download {
  padding: 0 34px;
  color: #1A1A1A;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 226.667% */
  letter-spacing: -0.75px;
}
.safety-page.esg-page .content-education .img-wrap.long {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-opinion .table-wrap .content-table .table thead th:first-child {
    width: 18%;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-opinion .table-wrap .content-table .table thead th:nth-child(2) {
    width: 22%;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-activity .table-wrap .content-table .table thead th:lang(en):first-child, .safety-page.esg-page .content-level .table-wrap .content-table .table thead th:lang(en):first-child {
    width: 250px;
  }
}
@media (min-width: 769px) {
  .safety-page.esg-page .content-activity .table-wrap .content-table .table thead th:lang(en):nth-child(3), .safety-page.esg-page .content-level .table-wrap .content-table .table thead th:lang(en):nth-child(3) {
    width: 360px;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-health .table-wrap .content-table .table thead th:first-child, .safety-page.esg-page .content-activity .table-wrap .content-table .table thead th:first-child, .safety-page.esg-page .content-level .table-wrap .content-table .table thead th:first-child {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .safety-page.esg-page .content-health .table-wrap .content-table .table thead th:first-child:lang(en), .safety-page.esg-page .content-activity .table-wrap .content-table .table thead th:first-child:lang(en), .safety-page.esg-page .content-level .table-wrap .content-table .table thead th:first-child:lang(en) {
    width: 27%;
  }
}

/* // 안전보건 끝 */
/* 인권경영 시작 // */
.human-page.esg-page .content-body .desc-nor-b + .img-wrap {
  margin-top: 30px;
}
.human-page.esg-page .content-body .h6-nor + .img-wrap:lang(en) {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body .table-wrap .content-table .table {
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body .table-wrap .content-table .table:last-child {
    margin-bottom: 14px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body .table-wrap .content-table .table thead th {
    padding: 5px 8px;
    border-bottom: 1px solid #dbdbdb;
    line-height: 40px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body .table-wrap .content-table .table thead th {
    letter-spacing: -0.05em;
  }
}
.human-page.esg-page .content-body .table-wrap .content-table .table thead th .num {
  font-size: 10px;
  font-weight: 600;
  vertical-align: super;
}
.human-page.esg-page .content-body .table-wrap .content-table .table tbody th {
  line-height: 18px;
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body .table-wrap .content-table .table tbody th {
    padding: 11px 8px;
    color: #4c4c4c;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body .table-wrap .content-table .table tbody th {
    padding: 11px 8px 11px 20px;
    vertical-align: middle;
  }
}
.human-page.esg-page .content-body .table-wrap .content-table .table tbody th .num {
  font-size: 10px;
  font-weight: 600;
  vertical-align: super;
}
.human-page.esg-page .content-body .table-wrap .content-table .table tbody td {
  line-height: 17px;
  letter-spacing: 0;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body .table-wrap .content-table .table tbody td {
    padding: 12px 8px;
    color: #4c4c4c;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body .table-wrap .content-table .table tbody td {
    padding: 16px 5px;
  }
}
.human-page.esg-page .content-body .table-wrap .content-table .table tbody td span {
  font-size: 12px;
  color: #666;
  letter-spacing: -0.06em;
}
.human-page.esg-page .content-body.content-intro .download-list {
  border-top: 1px solid #dbdbdb;
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-intro .download-list {
    margin-top: 25px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-intro .download-list {
    margin-top: 37px;
  }
}
.human-page.esg-page .content-body.content-system .sub-content .img-wrap {
  margin-top: 37px;
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-system .sub-content.sub-img + .sub-img {
    margin-top: 57px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-system .sub-content.sub-img + .sub-img {
    margin-top: 57px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-system .footnote-wrap {
    margin-top: 34px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-system .footnote-wrap {
    margin: 35px 0 0 0;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-system .footnote-wrap li + li {
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-goals {
    padding-top: 50px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-goals {
    padding-top: 72px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-goals .h5-nor {
    margin-bottom: 10px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-goals .h5-nor {
    margin-bottom: 20px;
  }
}
.human-page.esg-page .content-body.content-goals .table-wrap {
  margin-top: 0;
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-goals .table-wrap .table tbody td {
    border-left: 1px solid #d0d0d0;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-goals .table-wrap .table tbody td:nth-child(6) {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current {
    padding-top: 50px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .h5-nor {
    margin-bottom: 10px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .h5-nor {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .table-wrap {
    margin-top: 15px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap {
    margin-top: 27px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table {
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table thead th {
    padding: 8px 5px;
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table thead th:lang(en) {
    padding: 9px 5px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table thead th.first {
    padding-left: 20px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table thead th:last-child {
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table thead th:lang(en) {
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table tbody th, .human-page.esg-page .content-body.content-current .table-wrap .table tbody td {
    padding: 10px 8px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table tbody th, .human-page.esg-page .content-body.content-current .table-wrap .table tbody td {
    padding: 16px 20px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table tbody th:lang(en), .human-page.esg-page .content-body.content-current .table-wrap .table tbody td:lang(en) {
    padding: 16px 10px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table tbody th.va-middle, .human-page.esg-page .content-body.content-current .table-wrap .table tbody td.va-middle {
    height: 55px;
    border-left: 1px solid #d1d1d1;
    border-right: 1px solid #d1d1d1;
    vertical-align: middle;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table tbody th.va-top, .human-page.esg-page .content-body.content-current .table-wrap .table tbody td.va-top {
    height: 55px;
    border-left: 1px solid #d1d1d1;
    border-right: 1px solid #d1d1d1;
    vertical-align: top;
    text-align: center;
  }
}
.human-page.esg-page .content-body.content-current .table-wrap .table tbody th .dot-list, .human-page.esg-page .content-body.content-current .table-wrap .table tbody td .dot-list {
  padding-left: 6px;
  text-indent: -6px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table tbody th {
    padding-right: 5px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table tbody th:lang(en) {
    padding-left: 20px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .table-wrap .table tbody td:last-child:lang(en) {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .footnote-content {
    margin-top: 14px;
    margin-bottom: 47px;
  }
}
@media (min-width: 769px) {
  .human-page.esg-page .content-body.content-current .footnote-content {
    margin-top: 11px;
    margin-bottom: 65px;
  }
}
.human-page.esg-page .content-body.content-current .footnote-content .title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 20px;
  color: #4c4c4c;
}
.human-page.esg-page .content-body.content-current .footnote-content .title:lang(en) {
  letter-spacing: -0.025em;
}
.human-page.esg-page .content-body.content-current .footnote-content .title + .footnote-wrap {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .footnote-content .title + .footnote-wrap .line-list {
    margin-top: 3px;
  }
}
@media (max-width: 768px) {
  .human-page.esg-page .content-body.content-current .footnote-content .title + .footnote-wrap .line-list li + li {
    margin-top: 0;
  }
}

/* // 인권경영 끝 */
/* 고객 시작 // */
.customer-page.esg-page .content-body.content-intro .img-wrap {
  margin-top: 53px;
}
@media (max-width: 768px) {
  .customer-page.esg-page .content-body.content-mobile h5 {
    margin-bottom: 45px;
  }
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-mobile h5 {
    margin-bottom: 20px;
  }
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile .inner-table + .inner-table {
  margin-top: 75px;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile .table-title-wrap {
  position: relative;
  margin: 0 0 15px;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile .table-title-wrap .table-title {
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #141414;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile .table-title-wrap img {
  position: absolute;
  width: 54px;
  right: 0;
  bottom: 0;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile table {
  border-bottom: 1px solid #dbdbdb;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile table thead th {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile table tbody td {
  border: none;
  padding: 13px 12px 0;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile table tbody tr:last-child td {
  border: none;
  padding-bottom: 13px;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-mobile table .color-red {
  color: #e51937;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table {
  border-bottom: 1px solid #dbdbdb;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table thead tr th {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 9px 25px;
  font-size: 13px;
  color: #1a1a1a;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table tbody td, .customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table tbody th {
  border: none;
  border-top: 1px solid #ededed;
  vertical-align: middle;
  color: #1a1a1a;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table tbody td.center, .customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table tbody th.center {
  text-align: center;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table tbody th p {
  font-size: 15px;
  font-weight: 600;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table tbody th img {
  margin-top: 5px;
  width: 48px;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table tbody td {
  color: #141414;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table .bdr-color th, .customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table .bdr-color td {
  border: none;
  border-top: 1px solid #dbdbdb;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table .color-red td, .customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table .color-red th {
  color: #e51937;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table td {
  height: 63px;
  padding: 0 25px;
}
.customer-page.esg-page .content-body.content-mobile .table-wrap .content-table.show-only-desktop table td:last-child {
  letter-spacing: -0.025em;
}
.customer-page.esg-page .content-body.content-prevention .sub-content {
  margin-top: 23px;
}
.customer-page.esg-page .content-body.content-prevention h6 {
  margin-bottom: 9px;
}
.customer-page.esg-page .content-body.content-prevention .service-list {
  font-size: 0;
}
@media (max-width: 768px) {
  .customer-page.esg-page .content-body.content-prevention .service-list:lang(en) {
    padding-bottom: 30px;
  }
}
.customer-page.esg-page .content-body.content-prevention .service-list li {
  text-align: center;
}
@media (max-width: 768px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li {
    width: 100%;
    padding: 42px 0;
  }
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li {
    display: inline-block;
    width: 346px;
    padding: 35px 0;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li:lang(en) {
    height: 115px;
  }
}
@media (max-width: 768px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li + li {
    border-top: 1px solid #e8e8e8;
  }
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li + li {
    border-left: 1px solid #E7E7E7;
  }
}
.customer-page.esg-page .content-body.content-prevention .service-list li > div {
  height: 47px;
  text-align: left;
  background: url("../images/csr/crm/crm_2_picto_2.png") left top/43px no-repeat;
}
@media (max-width: 768px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li > div {
    display: block;
    width: 255px;
    margin: 0 auto;
    padding-left: 55px;
  }
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li > div {
    display: inline-block;
    padding-left: 60px;
  }
}
.customer-page.esg-page .content-body.content-prevention .service-list li.item-02 > div {
  background-image: url("../images/csr/crm/crm_2_picto_3.png");
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li.item-02 > div .name:lang(en) {
    margin-top: -5px;
  }
}
.customer-page.esg-page .content-body.content-prevention .service-list li.item-03 > div {
  background-image: url("../images/csr/crm/crm_2_picto_4.png");
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-prevention .service-list li.item-03 > div .name:lang(en) {
    margin-top: -5px;
  }
}
.customer-page.esg-page .content-body.content-prevention .service-list li p {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.05em;
}
.customer-page.esg-page .content-body.content-prevention .service-list li p.name {
  padding-top: 3px;
  font-weight: bold;
  color: #141414;
}
.customer-page.esg-page .content-body.content-prevention .service-list li p.desc {
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .customer-page.esg-page .content-body.content-policy2 .download-list {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-policy2 .download-list {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .customer-page.esg-page .content-body.content-policy2 .download-list:lang(en) {
    margin-top: 18px;
  }
}
@media (min-width: 769px) {
  .customer-page.esg-page .content-body.content-policy2 .download-list:lang(en) {
    margin-top: 17px;
  }
}

/* // 고객 끝 */
/* 정보보안 시작 // */
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body .sub-content .sub-inner-content {
    margin-top: 14px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body .sub-content .sub-inner-content {
    margin-top: 20px;
  }
}
.impormation-page.esg-page .content-body .sub-content .sub-inner-content .mini-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body .sub-content .sub-inner-content .mini-title:lang(en) {
    line-height: 17px;
  }
}
.impormation-page.esg-page .content-body .sub-content .sub-inner-content .dot-list li {
  padding-left: 10px;
  text-indent: -10px;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.impormation-page.esg-page .content-body .sub-content .sub-inner-content .dot-list li:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  margin-right: 8px;
  margin-bottom: 3px;
  background-color: #141414;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body .sub-content .sub-inner-content .dot-list li:lang(ko) {
    line-height: 170%;
  }
  .impormation-page.esg-page .content-body .sub-content .sub-inner-content .dot-list li:lang(ko):before {
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .information-rule .download-list {
    margin-top: 24px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .information-rule .download-list {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-propel .sub-propel .img-wrap {
    margin-top: 25px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-propel .sub-propel .img-wrap {
    margin-top: 54px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-propel .sub-propel .img-wrap:lang(en) {
    margin-top: 28px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-result .table-wrap {
    margin-top: 13px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-result .table-wrap {
    margin-top: 18px;
  }
}
.impormation-page.esg-page .content-body.content-result .table-wrap .table-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-result .table-wrap .table-title:lang(en) {
    line-height: 17px;
  }
}
.impormation-page.esg-page .content-body.content-result .table-wrap .content-table {
  position: relative;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-result .table-wrap .content-table {
    margin-top: 6px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-result .table-wrap .content-table {
    width: 520px;
    margin-top: 8px;
  }
  .impormation-page.esg-page .content-body.content-result .table-wrap .content-table:lang(en) {
    width: 680px;
  }
}
.impormation-page.esg-page .content-body.content-result .table-wrap .content-table:lang(en) th:first-child {
  width: 23.52941176%;
}
.impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list {
  border: 1px solid #d6d6d6;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list {
    padding: 20px 16px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list {
    padding: 17px 20px;
    height: 350px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list:lang(en) {
    height: auto;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list {
  background: url("../images/manage/crm-impormation-management-icon-01_lg.png") left top/55px no-repeat;
  vertical-align: top;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list {
    padding: 63px 0 39px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list {
    display: inline-block;
    width: 354px;
    padding: 65px 0 0 10px;
    background-position: left 11px top 3px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list:lang(en) {
    padding: 63px 0 30px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list:lang(en) {
    padding-right: 50px;
    padding-bottom: 5px;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list:lang(en):last-child {
  padding-right: 0;
}
.impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list.list-02 {
  background-image: url("../images/manage/crm-impormation-management-icon-02_lg.png");
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list.list-02 {
    width: 340px;
    background-position: left -1px top 3px;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list.list-03 {
  background-image: url("../images/manage/crm-impormation-management-icon-03_lg.png");
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list.list-03 {
    padding-bottom: 0;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list.list-03 {
    width: -webkit-calc(100% - 720px);
    width: -moz-calc(100% - 720px);
    width: calc(100% - 720px);
    background-position: left 3px top 3px;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content .sub-inner-management .management-list .list .management-name {
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -0.05em;
  color: #141414;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-system {
    margin-top: 33px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-system {
    margin-top: 58px;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content {
  margin-top: 15px;
  background-color: #f8f8f8;
  text-align: center;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 42px 0;
    padding: 45px 15px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 33.3333333333%);
    -webkit-box-align: start;
    -webkit-align-items: start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 40px 57px 34px 46px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content.grid-2 {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, 50%);
    gap: 75px 0;
    padding: 38.5px 68px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    gap: 0;
    padding: 40px 0;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content .certified {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content .certified .img-wrap {
  width: 173px;
  margin: 0 auto;
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content .certified .img-wrap img {
  width: 100%;
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content .certified .text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content .certified .text-wrap {
    gap: 7px 0;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content .certified .text-wrap {
    gap: 5px 0;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content .certified .text-wrap .name {
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.05em;
  color: #141414;
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-system .certified-content .certified .text-wrap .desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention {
    margin-top: 58px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content {
    margin-top: 13px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content.mini-title:lang(en) {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap {
    margin-top: 6px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap {
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap:lang(en) {
    margin-top: 22px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap:lang(en) {
    margin-top: 28px;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table {
  position: relative;
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table {
    width: 520px;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .caption {
  position: absolute;
  right: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .caption {
    top: -32px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .caption {
    top: -30px;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table * {
  border-color: #d6d6d6;
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table thead th {
  font-size: 13px;
  color: #141414;
  text-align: right;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table thead th {
    padding: 10px 10px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table thead th {
    padding: 8px 20px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table thead th:last-child {
    padding-right: 36px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table tbody th {
    width: 45%;
    padding: 9px 20px;
    font-weight: 600;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table tbody th {
    padding: 9px 20px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table tbody th:lang(en) {
    width: 55%;
  }
}
.impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table tbody td {
  font-weight: 600;
  color: #141414;
  text-align: right;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table tbody td {
    padding: 9px 10px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table tbody td {
    padding: 9px 20px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-management .sub-content.sub-prevention .sub-inner-content .table-wrap .content-table .table tbody td:last-child {
    padding-right: 36px;
  }
}
.impormation-page.esg-page .content-body.content-personal .sub-content .sub-inner-activity .activities-list {
  border: 1px solid #d6d6d6;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .sub-inner-activity .activities-list {
    padding: 14px 17px 3px;
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .sub-inner-activity .activities-list {
    padding: 19px 21px 16px;
    margin-top: 6px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .sub-inner-activity .activities-list .dot-list li:lang(ko) {
    font-size: 13px;
    letter-spacing: -0.65px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .sub-inner-activity .activities-list .dot-list li:lang(ko) {
    font-size: 14px;
    letter-spacing: -0.52px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .sub-inner-activity .activities-list .dot-list li {
    margin-bottom: 13px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .sub-inner-activity .activities-list .dot-list li {
    margin-bottom: 11px;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content ~ .sub-content:lang(ko) {
    margin-top: 35px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content ~ .sub-content:lang(ko) {
    margin-top: 56px;
  }
}
.impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap {
  text-align: center;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap {
    margin-top: 50px;
  }
}
.impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .desc {
  margin-bottom: 5px;
  text-align: center;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: -0.025em;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .desc {
    font-weight: 400;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .desc {
    font-weight: 500;
  }
}
.impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .link-normal {
  display: inline-block;
  height: 40px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  border: none;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  letter-spacing: -0.025em;
  color: #fff;
  background: #202021;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .link-normal {
    padding: 0 30px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .link-normal {
    padding: 0 35px;
  }
}
.impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .link-normal:lang(en) span {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  vertical-align: top;
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .link-normal:lang(en) span {
    padding: 0 18px 0 10px;
    background: url("../images/introduce/2021/white-btn-icon_sm.png") center right/6px no-repeat;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-personal .sub-content .link-wrap .link-normal:lang(en) span {
    padding: 0 22px 0 15px;
    background: url("../images/introduce/2021/white-btn-icon_lg.png") center right/auto no-repeat;
  }
}
@media (max-width: 768px) {
  .impormation-page.esg-page .content-body.content-policy:lang(en) .download-list {
    margin-top: 18px;
  }
}
@media (min-width: 769px) {
  .impormation-page.esg-page .content-body.content-policy:lang(en) .download-list {
    margin-top: 17px;
  }
}

/* // 정보보안 끝 */
/* 공급망 책임경영 시작 // */
.supply-page.esg-page {
  /* mib230718 영문 작업 시 삭제 // */
  /* // mib230718 영문 작업 시 삭제 */
  /* mib230718 내용 업데이트 추가 // */
  /* // mib230718 내용 업데이트 추가 */
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body .sub-content .inner-content {
    margin-top: 22px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body .sub-content .inner-content {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body .sub-content + .sub-content {
    margin-top: 31px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body .sub-content + .sub-content {
    margin-top: 56px;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body .table-wrap {
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body .table-wrap {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body .table-wrap:lang(ko) {
    margin-top: 17px;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-intro .download-list {
    margin-top: 27px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-intro .download-list {
    margin-top: 42px;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.supply-rule .download-list {
    margin-top: 50px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.supply-rule .download-list {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-policy .img-wrap {
    padding: 31px 0 23px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-policy .img-wrap {
    margin: 39px 0 4px;
  }
}
.supply-page.esg-page .content-body.content-policy .table-wrap .table {
  border-top: 1px solid #c9c9c9;
}
.supply-page.esg-page .content-body.content-policy .table-wrap .table th {
  border-bottom: 1px solid #e4e4e4;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #4c4c4c;
  text-align: left;
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-policy .table-wrap .table th {
    display: block;
    float: left;
    width: 100%;
    clear: both;
    padding: 0 0 0 10px;
    font-size: 14px;
    line-height: 44px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-policy .table-wrap .table th {
    padding: 22px 18px;
    font-size: 15px;
    line-height: 19px;
  }
}
.supply-page.esg-page .content-body.content-policy .table-wrap .table td {
  border-bottom: 1px solid #e4e4e4;
  font-size: 13px;
  font-weight: 400;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-policy .table-wrap .table td {
    display: block;
    float: left;
    width: 100%;
    clear: both;
    padding: 8px 10px;
    line-height: 20px;
    letter-spacing: -0.05em;
    color: #666666;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-policy .table-wrap .table td {
    padding-left: 20px;
    letter-spacing: -0.025em;
    color: #141414;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-policy .download-list {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-policy .download-list {
    margin-top: 40px;
  }
}
.supply-page.esg-page .content-body.content-processes .desc-nor-b sup {
  font-size: 11px;
  vertical-align: super;
}
.supply-page.esg-page .content-body.content-processes .table-wrap {
  margin-bottom: 26px;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .table th, .supply-page.esg-page .content-body.content-processes .table-wrap .table td {
  vertical-align: middle;
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-processes .table-wrap .table tbody th.center {
    text-align: center;
  }
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile .table-sub-title {
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 21px;
  color: #4c4c4c;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile .table + .table-sub-title {
  margin-top: 35px;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile .table + .table {
  border-bottom: 1px solid #a5a5a5;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile .table + .table thead th {
  border-top: 1px solid #dbdbdb;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile thead th {
  padding: 11px 10px;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile tbody tr:first-child th {
  padding-top: 8px;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile tbody tr:last-child th {
  padding-bottom: 9px;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile tbody th, .supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile tbody td {
  border-bottom: none;
  line-height: 11px;
}
.supply-page.esg-page .content-body.content-processes .table-wrap .content-table.show-only-mobile tbody td {
  padding-left: 15px;
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-processes .table-wrap.esg-risk {
    margin-bottom: 8px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-processes .table-wrap.esg-risk {
    margin-bottom: 16px;
  }
}
.supply-page.esg-page .content-body.content-processes .footnote-wrap {
  margin: 0 0 25px;
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-step .img-wrap {
    padding: 31px 0 23px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-step .img-wrap {
    margin: 44px 0 4px;
    text-align: left;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-step .img-wrap:lang(en) {
    margin: 16px 0 0;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-conduct .table-wrap {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-conduct .table-wrap {
    margin-bottom: 60px;
  }
}
.supply-page.esg-page .content-body.content-conduct .table-wrap .table {
  border-top: 1px solid #797979;
}
.supply-page.esg-page .content-body.content-conduct .table-wrap .table th {
  border-bottom: 1px solid #d0d0d0;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #4c4c4c;
  text-align: left;
  background-color: #f9f9f9;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-conduct .table-wrap .table th {
    display: block;
    float: left;
    width: 100%;
    clear: both;
    padding: 0 0 0 10px;
    font-size: 14px;
    line-height: 44px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-conduct .table-wrap .table th {
    padding: 15px 18px;
    font-size: 15px;
    line-height: 19px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-conduct .table-wrap .table th:lang(en) {
    font-size: 13px;
  }
}
.supply-page.esg-page .content-body.content-conduct .table-wrap .table td {
  border-bottom: 1px solid #d0d0d0;
  font-size: 13px;
  font-weight: 400;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-conduct .table-wrap .table td {
    display: block;
    float: left;
    width: 100%;
    clear: both;
    padding: 8px 10px;
    line-height: 20px;
    letter-spacing: -0.05em;
    color: #666666;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-conduct .table-wrap .table td {
    padding-left: 20px;
    letter-spacing: -0.025em;
    color: #141414;
  }
  .supply-page.esg-page .content-body.content-conduct .table-wrap .table td:lang(ko) {
    font-size: 15px;
    line-height: 170%;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-conduct .download-list {
    margin-top: 50px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-conduct .download-list {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .supply-page.esg-page .content-body.content-diagnosis .img-wrap {
    padding: 44px 0 23px;
  }
}
@media (min-width: 769px) {
  .supply-page.esg-page .content-body.content-diagnosis .img-wrap {
    margin: 33px 0 4px;
  }
}

/* // 공급망 책임경영 끝 */
/* 동반성장 시작 // */
.winwin-page.esg-page .content-body .section-inner .table-wrap {
  margin-top: 16px;
}
.winwin-page.esg-page .content-body .section-inner .table-wrap .content-table .table th, .winwin-page.esg-page .content-body .section-inner .table-wrap .content-table .table td {
  vertical-align: middle;
}
.winwin-page.esg-page .content-body .section-inner .table-wrap .content-table .table th.right, .winwin-page.esg-page .content-body .section-inner .table-wrap .content-table .table td.right {
  text-align: right;
}
.winwin-page.esg-page .content-body .section-inner .table-wrap .content-table .table th.center, .winwin-page.esg-page .content-body .section-inner .table-wrap .content-table .table td.center {
  text-align: center;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body .section-inner .h6-nor {
    margin-top: 14px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body .section-inner .h6-nor {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content {
    margin-top: 30px;
  }
}
.winwin-page.esg-page .content-body.content-intro .scale-content .caption {
  font-size: 12px;
  color: #4c4c4c;
  text-align: right;
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul {
    padding: 15px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .winwin-page.esg-page .content-body.content-intro .scale-content ul:lang(en) {
    grid-template-columns: 275px 265px 321px 179px;
  }
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li {
    padding: 25px 15px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 70px;
    padding: 0 30px;
    vertical-align: top;
  }
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li:lang(en) {
    height: 116px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li + li {
    border-top: 1px solid #dbdbdb;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li + li {
    border-left: 1px solid #dbdbdb;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li + li:last-child .txt-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li.item-01 {
    padding: 0 10px 0 20px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li.item-02 {
    padding: 0 23px 0 10px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li.item-03 {
    padding: 0 10px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li.item-04 {
    padding: 0 20px 0 10px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p {
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p {
    line-height: 21px;
  }
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p.title {
  line-height: 19.5px;
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p.title .color-red {
  display: inline;
  font-size: inherit;
  font-weight: normal;
  line-height: inherit;
  color: #e51937;
  vertical-align: text-bottom;
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p.title .light {
  font-weight: 400;
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p.description-sm {
  padding-left: 5px;
  color: #999;
  text-indent: -5px;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p.description-sm {
    margin-top: 4px;
    font-size: 11px;
    line-height: 14px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p.description-sm {
    font-size: 10px;
    line-height: 13px;
  }
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .txt-wrap p.description-sm:before {
  content: "*";
  font-size: inherit;
  color: #e51937;
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .figure-wrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .figure-wrap p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.05em;
  text-align: right;
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .figure-wrap p span {
  display: inline-block;
  font-size: 27px;
  font-weight: bold;
  line-height: 27px;
  letter-spacing: -0.05em;
}
.winwin-page.esg-page .content-body.content-intro .scale-content ul li .figure-wrap p span.font-size-m {
  font-size: 21px;
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-growth .img-wrap {
    text-align: left;
  }
}
.winwin-page.esg-page .content-body.content-task .line-list-wrap {
  padding-left: 0;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-task .line-list-wrap {
    margin-top: 11px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-task .line-list-wrap .line-list + .line-list {
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-task .line-list-wrap .line-list + .line-list:lang(ko) {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .table thead th:first-child {
    width: 43%;
  }
  .winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .table thead th:first-child:lang(en) {
    width: 33.333333%;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .table thead th:nth-child(2) {
    width: 25%;
  }
  .winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .table thead th:nth-child(2):lang(en) {
    width: 33.333333%;
  }
}
.winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .table tbody th {
  font-weight: 600;
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .table th:lang(ko):last-child, .winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .table td:lang(ko):last-child {
    padding-right: 340px;
  }
}
.winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .footnote-wrap {
  margin-top: 8px;
}
.winwin-page.esg-page .content-body.content-protection .table-wrap .content-table .footnote-wrap p {
  padding-left: 8px;
  text-indent: -8px;
  font-size: 12px;
}
.winwin-page.esg-page .content-body.content-channel .line-list-wrap {
  padding-left: 0;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-channel .line-list-wrap {
    margin-top: 15px;
  }
}
.winwin-page.esg-page .content-body.content-channel .line-list-wrap .desc-nor-b span {
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.winwin-page.esg-page .content-body.content-channel .line-list-wrap .desc-nor-b span:lang(en) {
  font-weight: 600;
  color: #141414;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-channel .line-list-wrap .desc-nor-b + .desc-nor-b {
    margin-top: 5px;
  }
}
.winwin-page.esg-page .content-body.content-channel .line-list-wrap .desc-nor-b + .desc-nor-b {
  margin-top: 10px;
}
.winwin-page.esg-page .content-body.content-channel .tip-wrap {
  padding-left: 8px;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead th {
    padding-right: 0;
  }
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead th:lang(en) {
    padding: 12px 10px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead th:first-child {
    width: 22%;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead th:nth-child(2) {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead th:nth-child(3) {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead th:last-child:lang(ko) {
    padding-right: 10px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead th:last-child:lang(ko) {
    padding-left: 65px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table tbody th {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table td {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table td:last-child:lang(ko) {
    padding-right: 10px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table td:last-child:lang(ko) {
    padding-left: 65px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead th:lang(en), .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table thead td:lang(en), .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table tbody th:lang(en), .winwin-page.esg-page .content-body.content-support .table-wrap .content-table .table tbody td:lang(en) {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-process .table-wrap .content-table .table thead th {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-process .table-wrap .content-table .table thead th:last-child {
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-process .table-wrap .content-table .table thead th:first-child {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-process .table-wrap .content-table .table thead th:nth-child(2) {
    width: 55%;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-process .table-wrap .content-table .table tbody th {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-process .table-wrap .content-table .table tbody td {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-process .table-wrap .content-table .table tbody td:last-child {
    padding-right: 10px;
  }
}
.winwin-page.esg-page .content-body.content-process .table-wrap .content-table .table tbody td .line-list-wrap {
  padding-left: 0;
  margin-top: 0;
}
.winwin-page.esg-page .content-body.content-process .table-wrap .content-table.show-only-mobile:lang(en) .table tbody th {
  width: 100px;
  vertical-align: top;
  line-height: 16px;
}
.winwin-page.esg-page .content-body.content-process .table-wrap .content-table.show-only-mobile:lang(en) .table tbody td {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
}
.winwin-page.esg-page .content-body.content-process .table-wrap .content-table.show-only-mobile:lang(en) .table tbody td .line-list-wrap {
  margin-top: 0;
}
.winwin-page.esg-page .content-body.content-process .table-wrap .content-table.show-only-mobile:lang(en) .table tbody th, .winwin-page.esg-page .content-body.content-process .table-wrap .content-table.show-only-mobile:lang(en) .table tbody td {
  padding: 11px 10px;
}
.winwin-page.esg-page .content-body.content-process .table-wrap .content-table.show-only-mobile:lang(en) .table + .table thead th {
  border-top: 1px solid #d0d0d0;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-milestone {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-milestone h5.h5-nor {
    margin-bottom: 29px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-milestone h5.h5-nor {
    margin-bottom: 20px;
  }
}
.winwin-page.esg-page .content-body.content-milestone .link-wrap {
  margin-top: 43px;
  text-align: center;
}
.winwin-page.esg-page .content-body.content-milestone .link-wrap .desc {
  margin-bottom: 5px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.025em;
  color: #1a1a1a;
}
.winwin-page.esg-page .content-body.content-milestone .link-wrap .link-normal {
  display: inline-block;
  height: 40px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  border: none;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  letter-spacing: -0.025em;
  color: #fff;
  background: #202021;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-milestone .link-wrap .link-normal {
    width: 210px;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-milestone .link-wrap .link-normal {
    width: 204px;
  }
}
.winwin-page.esg-page .content-body.content-milestone .link-wrap .link-normal:lang(en) span {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  vertical-align: top;
}
@media (max-width: 768px) {
  .winwin-page.esg-page .content-body.content-milestone .link-wrap .link-normal:lang(en) span {
    padding: 0 18px 0 10px;
    background: url("../images/introduce/2021/white-btn-icon_sm.png") center right/6px no-repeat;
  }
}
@media (min-width: 769px) {
  .winwin-page.esg-page .content-body.content-milestone .link-wrap .link-normal:lang(en) span {
    padding: 0 22px 0 15px;
    background: url("../images/introduce/2021/white-btn-icon_lg.png") center right/auto no-repeat;
  }
}

/* // 동반성장 끝 */
/* 디지털 포용 시작 // */
.inclusion-page.esg-page .footnote-wrap {
  margin-top: 8px;
}
.inclusion-page.esg-page .footnote-wrap li {
  line-height: 170%;
}

/* // 디지털 포용 끝 */
/* 사회기여 시작 // */
.contribution2-page.esg-page .link-group {
  margin-top: 15px;
}
.contribution2-page.esg-page .link-group .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  padding: 0 36px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-align: center;
  border-radius: 18px;
  color: white;
  background: #202021;
}
.contribution2-page.esg-page .link-group .link:focus {
  outline-color: #f24c34;
}
.contribution2-page.esg-page .link-group .link .icon-arrow {
  width: 5px;
  height: 8px;
  margin-left: 15px;
}
.contribution2-page.esg-page .content-body.contribution-newsroom {
  text-align: center;
}
@media (max-width: 768px) {
  .contribution2-page.esg-page .content-body.contribution-newsroom {
    padding-top: 36px;
  }
}
@media (min-width: 769px) {
  .contribution2-page.esg-page .content-body.contribution-newsroom {
    padding-top: 60px;
  }
}
.contribution2-page.esg-page .content-body.contribution-newsroom .desc {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .contribution2-page.esg-page .content-body.contribution-newsroom .desc:lang(ko) {
    font-size: 15px;
    line-height: 170%;
  }
}
.contribution2-page.esg-page .content-body.contribution-newsroom .link-white {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  padding: 0 36px;
  border-radius: 18px;
  border: 1px solid #4c4c4c;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  color: #1a1a1a;
  background: white;
}
.contribution2-page.esg-page .footnote-wrap {
  margin-top: 8px;
}
.contribution2-page.esg-page .footnote-wrap li {
  line-height: 170%;
}

/* // 사회기여 끝 */
/* 투명윤리경영 시작 // */
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body .sub-content + .sub-content {
    margin-top: 31px;
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body .sub-content + .sub-content {
    margin-top: 63px;
  }
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap {
  margin-top: 30px;
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap .item::before {
  content: "";
  left: 15px;
  display: block;
  width: 47px;
  height: 50px;
  background: url("../images/csr/crm/crm_5_picto_1.png") left center/contain no-repeat;
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap .item .name-wrap {
  margin: 0;
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap .item .name-wrap .desc {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.05em;
  color: #141414;
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap .item.item-02::before {
  background-image: url("../images/csr/crm/crm_5_picto_2.png");
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap .item.item-03::before {
  background-image: url("../images/csr/crm/crm_5_picto_3.png");
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap .item.item-04::before {
  background-image: url("../images/csr/crm/crm_5_picto_4.png");
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap .item.item-05::before {
  background-image: url("../images/csr/crm/crm_5_picto_5.png");
}
.ethics-page.esg-page .content-body.content-define .sub-content .icon-table-wrap.program-wrap .item.item-06::before {
  background-image: url("../images/csr/crm/crm_5_picto_6.png");
}
.ethics-page.esg-page .content-body.content-define .sub-content.sub-value {
  /* @media (min-width: 769px) {
    margin-top: 30px;
  } */
}
.ethics-page.esg-page .content-body.content-define .sub-content.sub-value .img-wrap {
  margin-top: 25px;
}
.ethics-page.esg-page .content-body.content-define .sub-content.sub-group {
  font-size: 0;
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-define .sub-content.sub-group .txt-wrap {
    display: inline-block;
    width: 540px;
    vertical-align: top;
  }
}
.ethics-page.esg-page .content-body.content-define .sub-content.sub-group .txt-wrap .line-list-wrap {
  padding-left: 0;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-define .sub-content.sub-group .txt-wrap .line-list-wrap {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-define .sub-content.sub-group .txt-wrap .line-list-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-define .sub-content.sub-group .img-wrap {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-define .sub-content.sub-group .img-wrap {
    display: inline-block;
    width: -webkit-calc(100% - 540px);
    width: -moz-calc(100% - 540px);
    width: calc(100% - 540px);
    margin-top: 14px;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-define .sub-content.sub-group .img-wrap:lang(en) {
    margin-top: 34px;
  }
}
.ethics-page.esg-page .content-body.content-ethics .sub-content.sub-code .icon-table-wrap:lang(en) {
  margin-top: 40px;
}
.ethics-page.esg-page .content-body.content-ethics .sub-content.sub-code .icon-table-wrap .item.item-02::before {
  background-image: url("../images/csr/crm/crm_5_picto_8.png");
}
.ethics-page.esg-page .content-body.content-ethics .sub-content.sub-code .icon-table-wrap .item.item-03::before {
  background-image: url("../images/csr/crm/crm_5_picto_9.png");
}
.ethics-page.esg-page .content-body.content-ethics .sub-content.sub-code .icon-table-wrap .item.item-04::before {
  background-image: url("../images/csr/crm/crm_5_picto_10.png");
}
.ethics-page.esg-page .content-body.content-ethics .sub-content.sub-code .icon-table-wrap .item.item-05::before {
  background-image: url("../images/csr/crm/crm_5_picto_11.png");
}
.ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap {
  border-top: 1px solid #a5a5a5;
  margin: 10px 0 50px;
}
.ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item {
  border-bottom: 1px solid #dbdbdb;
  font-size: 0;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item {
    padding: 22px 0;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item .year-wrap {
    margin-bottom: 6px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item .year-wrap {
    display: inline-block;
    width: 64px;
    vertical-align: middle;
  }
}
.ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item .year-wrap p {
  font-size: 16px;
  font-weight: bold;
  color: #4c4c4c;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item .year-wrap p {
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item .year-wrap p {
    line-height: 49px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content.sub-cmmitment .history-wrap .item .text-wrap {
    display: inline-block;
    width: -webkit-calc(100% - 64px);
    width: -moz-calc(100% - 64px);
    width: calc(100% - 64px);
    vertical-align: middle;
  }
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content .img-wrap:lang(en) {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-ethics .sub-content .img-wrap:lang(en) {
    margin-top: 40px;
  }
}
.ethics-page.esg-page .content-body.content-policy .policy-content {
  background-color: #f9f9f9;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content {
    padding: 54px 60px;
    margin-bottom: 60px;
  }
}
.ethics-page.esg-page .content-body.content-policy .policy-content .policy-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.025em;
  color: #141414;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-title {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-title {
    font-size: 20px;
  }
}
.ethics-page.esg-page .content-body.content-policy .policy-content .policy-desc {
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #141414;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-desc {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-desc {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 26px;
  }
}
.ethics-page.esg-page .content-body.content-policy .policy-content .policy-list {
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-list {
    padding: 18px 20px 12px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-list {
    padding: 30px 30px 18px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-list:lang(en) {
    padding: 36px 30px 5px;
  }
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-list .list {
    margin-bottom: 13px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-list .list {
    margin-bottom: 16px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-list .list:lang(en) {
    margin-bottom: 33px;
  }
}
.ethics-page.esg-page .content-body.content-policy .policy-content .policy-list .list .title {
  font-size: 13px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.025em;
  color: #141414;
}
.ethics-page.esg-page .content-body.content-policy .policy-content .policy-list .list .desc {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-list .list .desc {
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .policy-list .list .desc {
    line-height: 24px;
  }
}
.ethics-page.esg-page .content-body.content-policy .policy-content .policy-list .list .desc:lang(en) {
  padding-left: 14px;
  text-indent: -14px;
}
.ethics-page.esg-page .content-body.content-policy .policy-content .date {
  font-weight: 500;
  letter-spacing: 0;
  color: #4c4c4c;
  text-align: center;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .date {
    margin-top: 28px;
    font-size: 11px;
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .date {
    margin: 34px 0 3px;
    font-size: 13px;
    line-height: 26px;
  }
}
.ethics-page.esg-page .content-body.content-policy .policy-content .name {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  color: #141414;
  text-align: center;
}
@media (max-width: 768px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .name {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .ethics-page.esg-page .content-body.content-policy .policy-content .name {
    font-size: 18px;
  }
}
.ethics-page.esg-page .content-body.content-policy .policy-content .name span {
  margin-left: 8px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* // 투명윤리경영 끝 */
/* AI Governance 시작 // */
.aigovernance-page.esg-page .content-body .img-wrap {
  margin-top: 33px;
}
.aigovernance-page.esg-page .content-body .footnote-wrap {
  margin-top: 12px;
}
.aigovernance-page.esg-page .content-body .footnote-wrap + .desc-nor-b {
  margin-top: 33px;
}
.aigovernance-page.esg-page .content-body .download-list {
  margin-top: 40px;
}
/* // AI Governance 끝 */
/* AI윤리 시작(작업보류) // */
/* // AI윤리 끝 */
/*지배구조 시작 //*/
.structure-page {
  /* mib220113 추가 // */
  /* // mib220113 추가 */
}
.structure-page .content-body h5.h5-nor {
  line-height: 140%;
  color: #e51937;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .structure-page .content-body h5.h5-nor {
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .structure-page .content-body h5.h5-nor {
    font-size: 21px;
  }
}
.structure-page .content-body .link-normal {
  width: 150px;
}
.structure-page .cbody-01 {
  /* mib210827 추가 // */
  /* mib210827 추가 // */
  /* mib211012 추가 // */
  /* // mib211012 추가 */
}
.structure-page .cbody-01 .part-link {
  border-bottom: 1px solid #b8b8b8;
  /* mib210713 추가 // */
  /* // mib210713 추가 */
}
.structure-page .cbody-01 .part-link:lang(en) {
  border-top: none;
}
.structure-page .cbody-01 .part-link::after {
  content: "";
  display: table;
  clear: both;
  table-layout: fixed;
}
@media (max-width: 768px) {
  .structure-page .cbody-01 .part-link {
    padding: 16px 10px 20px;
    margin-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-01 .part-link {
    padding: 35px 20px;
    margin-bottom: 60px;
  }
}
.structure-page .cbody-01 .part-link.part-line-first {
  border: none;
}
@media (max-width: 768px) {
  .structure-page .cbody-01 .part-link.part-line-first {
    margin-bottom: 0;
    margin-top: -48px;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-01 .part-link.part-line-first {
    margin-bottom: 0;
    margin-top: -65px;
  }
}
.structure-page .cbody-01 .part-link .title {
  display: inline-block;
  float: left;
  width: auto;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .structure-page .cbody-01 .part-link .title {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-01 .part-link .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 36px;
  }
}
.structure-page .cbody-01 .part-link .btn-wrap {
  display: inline-block;
  float: right;
  width: auto;
}
@media (max-width: 768px) {
  .structure-page .cbody-01 .part-link .btn-wrap {
    margin-top: 6px;
  }
}
.structure-page .cbody-01 .box-caption .btn-wrap {
  position: static;
  text-align: right;
}
.structure-page .cbody-01 .part .director-wrap .wrap-body > .desc-nor + .desc-nor.tip {
  text-indent: -5px;
  padding-left: 5px;
}
.structure-page .cbody-01 .part .director-wrap .wrap-body > .desc-nor + .desc-nor.tip:lang(en) {
  text-indent: -10px;
  padding-left: 10px;
}
.structure-page .cbody-01 .part-04:lang(en) {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .structure-page .cbody-04 {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .structure-page .cbody-04 .part:first-child {
    padding-top: 10px;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content {
    padding-left: 3px;
  }
}
@media (max-width: 768px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content .part-year {
    display: block;
    vertical-align: top;
    margin-bottom: 8px;
  }
}
.structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content .part-year .desc-year {
  font-weight: 600;
  line-height: 15px;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content .part-year .desc-year {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content .part-year .desc-year {
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: -0.025em;
  }
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content .part-year .desc-year:lang(ko) {
    font-size: 15px;
    line-height: 170%;
  }
}
@media (max-width: 768px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content .part-desc {
    display: block;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content .part-desc .desc-nor:lang(ko) {
    font-size: 15px;
    line-height: 170%;
  }
}
@media (max-width: 768px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content + .part-content {
    margin-top: 9px;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-02 .part-content + .part-content {
    padding-top: 30px;
    border-top: 1px solid #cbcbcb;
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-04 .section-inner .inner-body .part-03 .desc-nor:lang(ko) {
    font-size: 15px;
    line-height: 170%;
  }
}
.structure-page .cbody-06 {
  padding-bottom: 40px;
  background-color: #f7f7f7;
}
@media (max-width: 768px) {
  .structure-page .cbody-06 {
    padding-bottom: 45px;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-06:lang(en) {
    padding-bottom: 70px;
  }
}
.structure-page .cbody-06:lang(en) + .cbody-01 {
  padding-top: 0;
}
.structure-page .cbody-06 table {
  width: 100%;
  border-top: 1px solid #8c8c8c;
  border-bottom: 1px solid #bababa;
  margin-top: 35px;
}
@media (max-width: 768px) {
  .structure-page .cbody-06 table {
    margin-top: 25px;
  }
}
.structure-page .cbody-06 table thead tr {
  border-bottom: 1px solid #8c8c8c;
}
.structure-page .cbody-06 table th:last-child, .structure-page .cbody-06 table td:last-child {
  text-align: right;
}
@media (max-width: 768px) {
  .structure-page .cbody-06 table th:last-child, .structure-page .cbody-06 table td:last-child {
    text-align: center;
  }
}
.structure-page .cbody-06 table th {
  padding: 14px 20px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .structure-page .cbody-06 table th {
    padding: 12px 10px;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;
  }
}
.structure-page .cbody-06 table td {
  padding: 18px 20px;
  font-size: 13px;
  line-height: 22px;
  text-align: left;
  vertical-align: middle;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .structure-page .cbody-06 table td {
    padding: 15px 0;
    text-align: center;
    word-break: keep-all;
  }
}
@media (max-width: 768px) {
  .structure-page .cbody-06 table td:nth-child(2) {
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .structure-page .cbody-06 table td:nth-child(3) {
    padding: 15px 10px;
    text-align: left;
  }
}
.structure-page .cbody-06 table tbody tr + tr {
  border-top: 1px solid #d1d1d1;
}
.structure-page .cbody-06 table .indent-list {
  display: block;
  position: relative;
  font-size: 13px;
  line-height: 22px;
  text-align: left;
  padding-left: 9px;
  color: #4c4c4c;
}
@media (max-width: 380px) {
  .structure-page .cbody-06 table .indent-list:lang(en) {
    word-break: break-word;
  }
}
.structure-page .cbody-06 table .indent-list:after {
  content: "-";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  line-height: 22px;
  text-align: left;
  color: #4c4c4c;
}
.structure-page .cbody-06 table :first-child {
  color: #4c4c4c;
}
.structure-page .cbody-06 .notice {
  padding-left: 8px;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 400;
  line-height: 25px;
  text-indent: -8px;
  letter-spacing: -0.024em;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .structure-page .cbody-03 .table-type-nor ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.structure-page .cbody-03 .table-type-nor ul li br {
  display: block;
}
.structure-page .cbody-03 .table-type-nor ul li > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 20.675%;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .structure-page .cbody-03 .table-type-nor ul li > span {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.structure-page .cbody-03 .table-type-nor ul li > span:lang(en) {
  width: 17.3%;
}
.structure-page .cbody-03 .table-type-nor ul li > span.long:lang(en) {
  width: 25%;
}
.structure-page .cbody-03 .table-type-nor ul li > .cate {
  width: 17.3%;
}
@media (min-width: 769px) {
  .structure-page .cbody-03 .table-type-nor ul li > .cate {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.structure-page .cbody-03 .table-type-nor ul li > .cate:lang(en) {
  width: 23.1%;
}
@media (max-width: 768px) {
  .structure-page .cbody-03 .table-type-nor ul li .th {
    width: 35% !important;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.structure-page .cbody-05 .desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .structure-page .cbody-05 .desc {
    margin: 35px 0 10px;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-05 .desc {
    padding: 0 10px;
    margin: 68px 0 35px;
  }
}
@media (max-width: 768px) {
  .structure-page .cbody-05 .download-list {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .structure-page .cbody-05 .download-list {
    margin-top: 60px;
  }
}

/*// 지배구조 끝 */
/* 자율준수경영 시작 // */
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body .img-wrap {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body .img-wrap {
    margin-top: 65px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body .sub-content + .sub-content {
    margin-top: 31px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body .sub-content + .sub-content {
    margin-top: 65px;
  }
}
.compliance-page.esg-page .content-body .line-list-wrap {
  padding: 0;
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body .line-list-wrap:lang(en) {
    padding-left: 10px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-compliance .download-list {
    margin-top: 35px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-compliance .download-list {
    margin-top: 41px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .sub-vision .img-wrap {
    margin-top: 18px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .sub-vision .img-wrap {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .sub-vision + .sub-content {
    margin-top: 50px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .sub-vision + .sub-content {
    margin-top: 79px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .download-list {
    margin-top: 35px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .download-list {
    margin-top: 41px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .download-list + .sub-content {
    margin-top: 50px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .download-list + .sub-content {
    margin-top: 79px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-compliance-vision .download-list + .sub-content:lang(en) {
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-2023-goals .img-wrap.img-goals, .compliance-page.esg-page .content-body.content-2024-goals .img-wrap.img-goals {
    margin: 33px 0 47px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .img-wrap.img-goals, .compliance-page.esg-page .content-body.content-2024-goals .img-wrap.img-goals {
    margin: 33px 0 77px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-program .img-wrap, .compliance-page.esg-page .content-body.content-2024-goals .sub-program .img-wrap {
    margin-top: 27px;
  }
  .compliance-page.esg-page .content-body.content-2023-goals .sub-program .img-wrap:lang(en), .compliance-page.esg-page .content-body.content-2024-goals .sub-program .img-wrap:lang(en) {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-program .img-wrap, .compliance-page.esg-page .content-body.content-2024-goals .sub-program .img-wrap {
    margin-top: 33px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-introduction, .compliance-page.esg-page .content-body.content-2024-goals .sub-introduction {
    margin-top: 46px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-introduction, .compliance-page.esg-page .content-body.content-2024-goals .sub-introduction {
    margin-top: 77px;
  }
}
.compliance-page.esg-page .content-body.content-2023-goals .sub-introduction .tip, .compliance-page.esg-page .content-body.content-2024-goals .sub-introduction .tip {
  margin-left: 8px;
  padding-left: 8px;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
  text-indent: -8px;
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-introduction .tip:lang(ko), .compliance-page.esg-page .content-body.content-2024-goals .sub-introduction .tip:lang(ko) {
    font-size: 12px;
    line-height: 160%;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap {
    margin-top: 13px;
  }
}
.compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .item::before, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .item::before {
  background-image: url("../images/csr/crm/crm_9_picto_1.png");
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .item::before, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .item::before {
    margin: 30px 0;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .item:lang(en)::before, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .item:lang(en)::before {
    margin: 35px 0;
  }
}
.compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .item.item-02::before, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .item.item-02::before {
  background-image: url("../images/csr/crm/crm_9_picto_2.png");
}
.compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .item.item-03::before, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .item.item-03::before {
  background-image: url("../images/csr/crm/crm_9_picto_3.png");
}
.compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .item.item-04::before, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .item.item-04::before {
  background-image: url("../images/csr/crm/crm_9_picto_4.png");
}
.compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .item.item-05::before, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .item.item-05::before {
  background-image: url("../images/csr/crm/crm_9_picto_5.png");
}
.compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .item.item-06::before, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .item.item-06::before {
  background-image: url("../images/csr/crm/crm_9_picto_6.png");
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .name-wrap, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .name-wrap {
    width: 205px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .name-wrap:lang(en), .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .name-wrap:lang(en) {
    width: 237px;
    padding: 20px 30px 20px 28px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .line-list-wrap, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .line-list-wrap {
    width: -webkit-calc(100% - 260px);
    width: -moz-calc(100% - 260px);
    width: calc(100% - 260px);
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .icon-table-wrap .line-list-wrap:lang(en), .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .icon-table-wrap .line-list-wrap:lang(en) {
    width: -webkit-calc(100% - 284px);
    width: -moz-calc(100% - 284px);
    width: calc(100% - 284px);
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .download-list, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .download-list {
    margin-top: 39px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-2023-goals .sub-cp .download-list, .compliance-page.esg-page .content-body.content-2024-goals .sub-cp .download-list {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-result .download-list {
    margin-top: 36px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-result .download-list {
    margin-top: 50px;
  }
}
.compliance-page.esg-page .content-body.content-post .sub-post .desc-inner {
  padding: 24px 0;
  border-top: 1px solid #a5a5a5;
  border-bottom: 1px solid #a5a5a5;
  margin-top: 10px;
}
.compliance-page.esg-page .content-body.content-norms .norms-content {
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content {
    padding: 32px 20px;
    margin-top: 15px;
    margin-bottom: 40px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content {
    padding: 54px 60px;
    margin-top: 27px;
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content:lang(en) {
    padding: 21px 20px 32px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content:lang(en) {
    padding: 54px 60px 40px;
  }
}
.compliance-page.esg-page .content-body.content-norms .norms-content .norms-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.025em;
  color: #141414;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-title {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-title:lang(en) {
    margin-bottom: 10px;
  }
}
.compliance-page.esg-page .content-body.content-norms .norms-content .norms-desc {
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #141414;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-desc {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-desc {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 26px;
  }
}
.compliance-page.esg-page .content-body.content-norms .norms-content .norms-list {
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list {
    padding: 18px 20px 12px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list {
    padding: 30px 30px 18px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list:lang(en) {
    padding: 35px 30px 11px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list {
    margin-bottom: 13px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list {
    margin-bottom: 15px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list:lang(en) {
    margin-bottom: 28px;
  }
}
.compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list .title {
  font-size: 13px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.025em;
  color: #141414;
}
.compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list .desc {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list .desc {
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list .desc {
    line-height: 23px;
  }
}
.compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list .desc:lang(en) {
  padding-left: 14px;
  text-indent: -14px;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list .desc:lang(en) {
    line-height: 21px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .norms-list .list .desc:lang(en) {
    line-height: 20px;
  }
}
.compliance-page.esg-page .content-body.content-norms .norms-content .date {
  font-weight: 500;
  letter-spacing: 0;
  color: #4c4c4c;
  text-align: center;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .date {
    margin-top: 28px;
    font-size: 11px;
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .date {
    margin: 34px 0 6px;
    font-size: 13px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .date:lang(en) {
    margin: 22px 0 4px;
  }
}
.compliance-page.esg-page .content-body.content-norms .norms-content .name {
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0;
  color: #141414;
  text-align: center;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .name {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-norms .norms-content .name {
    font-size: 18px;
    line-height: 26px;
  }
}
.compliance-page.esg-page .content-body.content-norms .norms-content .name span {
  margin-left: 8px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
@media (max-width: 768px) {
  .compliance-page.esg-page .content-body.content-certified .download-list {
    margin-top: 36px;
  }
}
@media (min-width: 769px) {
  .compliance-page.esg-page .content-body.content-certified .download-list {
    margin-top: 19px;
  }
}

/* // 자율준수경영 끝 */
/* 조세정책 시작 // */
@media (min-width: 769px) {
  .tax-page.esg-page .content-body .num-table-wrap .item:lang(en):before {
    height: 68px;
  }
}
@media (min-width: 769px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .num-wrap:lang(en) {
    width: 280px;
  }
}
@media (min-width: 769px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap:lang(en) {
    width: -webkit-calc(100% - 280px);
    width: -moz-calc(100% - 280px);
    width: calc(100% - 280px);
  }
}
@media (max-width: 768px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .line-list {
    padding: 0;
    text-indent: 0;
  }
}
@media (max-width: 768px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .line-list::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list {
    margin-top: 8px;
  }
}
.tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list:lang(en) {
  margin-top: 11px;
}
.tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list p {
  padding-left: 16px;
  line-height: 19px;
  text-indent: -16px;
}
@media (max-width: 768px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list p + p {
    margin-top: 18px;
  }
}
@media (min-width: 769px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list p + p {
    margin-top: 6px;
  }
}
.tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list p::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 7px;
  vertical-align: middle;
  background: url("/images/manage/csr-check-list.png") center/contain no-repeat;
}
@media (max-width: 768px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list p::before {
    margin-right: 7px;
  }
}
@media (min-width: 769px) {
  .tax-page.esg-page .content-body .num-table-wrap .item .line-list-wrap .check-list p::before {
    margin: 0 5px 0 9px;
  }
}
@media (max-width: 768px) {
  .tax-page.esg-page .content-body.content-basic {
    padding-top: 30px;
  }
}
@media (min-width: 769px) {
  .tax-page.esg-page .content-body.content-basic {
    padding-top: 52px;
  }
}

/* // 조세정책 끝 */
/* 레드커넥트 페이지(mib211013 신규)// */
.esg-page .content-body.redconnect-section {
  padding-bottom: 0;
}
.esg-page .content-body.redconnect-section * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.esg-page .content-body.redconnect-section .intro-content {
  position: relative;
  font-size: 0;
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .intro-content {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .intro-content {
    height: 268px;
    padding: 0 511px 0 0;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-thumb {
    width: 100%;
    margin-top: 19px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-thumb {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 41px;
    width: 470px;
    height: 268px;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-thumb video {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-thumb video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
  }
}
.esg-page .content-body.redconnect-section .intro-content .intro-textgroup .desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.05em;
  color: #666;
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-textgroup .desc {
    padding-top: 13px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-textgroup .desc {
    padding: 16px 0 0 0;
  }
  .esg-page .content-body.redconnect-section .intro-content .intro-textgroup .desc:lang(en) {
    padding: 11px 20px 0 0;
  }
  .esg-page .content-body.redconnect-section .intro-content .intro-textgroup .desc:lang(ko) {
    font-size: 15px;
  }
}
.esg-page .content-body.redconnect-section .intro-content .intro-textgroup .sub-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: -0.1em;
  color: #141414;
  -ms-transform: scale(1, 0.98);
  -webkit-transform: scale(1, 0.98);
  -moz-transform: scale(1, 0.98);
       transform: scale(1, 0.98);
}
.esg-page .content-body.redconnect-section .intro-content .intro-textgroup .sub-title:lang(en) {
  letter-spacing: -0.05em;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
       transform: scale(1);
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-textgroup .sub-title:lang(en) {
    letter-spacing: -0.075em;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-textgroup .sub-title {
    margin-top: -4px;
  }
  .esg-page .content-body.redconnect-section .intro-content .intro-textgroup .sub-title:lang(en) {
    margin-top: -7px;
  }
}
.esg-page .content-body.redconnect-section .intro-content .intro-link {
  border: 1px solid #e7e7e7;
  background: #fff;
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-link {
    display: block;
    max-width: 470px;
    margin: 20px auto 0;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-link {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 12px;
    margin: 0 auto;
  }
}
.esg-page .content-body.redconnect-section .intro-content .intro-link .link {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-link .link {
    width: 33.3333%;
    padding: 22px 10px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-link .link {
    padding: 19px 15px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-link .link .icon {
    max-height: 21px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .intro-content .intro-link .link .icon {
    height: 25px;
  }
}
.esg-page .content-body.redconnect-section .awards-content {
  margin-top: 80px;
}
.esg-page .content-body.redconnect-section .use-content {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .use-content .app-flow {
    padding: 32px 0 50px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .use-content .app-flow {
    padding: 34px 0 75px;
  }
}
.esg-page .content-body.redconnect-section .redconnect-banner {
  background: #f9f9f9;
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner {
    position: relative;
    padding: 113px 0 80px;
    text-align: center;
  }
  .esg-page .content-body.redconnect-section .redconnect-banner:lang(en) {
    padding-top: 186px;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .redconnect-banner {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .float-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    padding: 10px 0 15px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .float-banner .title {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .float-banner .link-app {
    margin: 10px auto 0;
    font-size: 0;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .float-banner .link-app .link {
    display: inline-block;
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .float-banner .link-app .link + .link {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .float-banner .link-app img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .float-banner .link-app.only-mac, .esg-page .content-body.redconnect-section .redconnect-banner .float-banner .link-app.is-macos {
    display: none;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .float-banner .link-app.only-mac.is-macos {
    display: block;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .inner {
    width: 1040px;
    margin: 0 auto;
  }
}
.esg-page .content-body.redconnect-section .redconnect-banner .thumb-link {
  position: relative;
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .thumb-link {
    display: block;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .thumb-link {
    display: inline-block;
    margin-right: 40px;
    vertical-align: top;
    text-decoration: none;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .thumb-link .thumb-img {
    width: 480px;
  }
}
@media (max-width: 768px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .text-wrap {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .text-wrap {
    display: inline-block;
    max-width: -webkit-calc(100% - 560px);
    max-width: -moz-calc(100% - 560px);
    max-width: calc(100% - 560px);
    vertical-align: top;
  }
}
.esg-page .content-body.redconnect-section .redconnect-banner .text-wrap .sm-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: #141414;
}
.esg-page .content-body.redconnect-section .redconnect-banner .text-wrap .lg-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #141414;
}
.esg-page .content-body.redconnect-section .redconnect-banner .text-wrap .link {
  display: inline-block;
  padding: 0 24px;
  border-radius: 18px;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.05em;
  text-decoration: none;
  color: #fff;
  background: #e51937;
}
.esg-page .content-body.redconnect-section .redconnect-banner .text-wrap .apps-wrap {
  display: none;
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .text-wrap .apps-wrap {
    display: block;
    margin-top: 72px;
    margin-left: -10px;
    font-size: 0;
  }
}
@media (min-width: 769px) {
  .esg-page .content-body.redconnect-section .redconnect-banner .text-wrap .apps-wrap .link-app {
    display: inline-block;
    width: 140px;
    text-decoration: none;
    vertical-align: top;
  }
}

/* //레드커넥트 페이지(mib211013 신규) */
/*ICT 생명나눔 시작//*/
.esg-program-page.esg-page .content-body {
  padding-bottom: 0;
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body *, .esg-program-page.esg-page .content-body *:after, .esg-program-page.esg-page .content-body *:before {
    font-family: "SynergyDisplay";
  }
}
.esg-program-page.esg-page .content-body:lang(en) *, .esg-program-page.esg-page .content-body:lang(en) *:after, .esg-program-page.esg-page .content-body:lang(en) *:before {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .img-wrap {
    padding: 25px 0 65px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .img-wrap {
    padding: 45px 0 87px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .img-wrap:lang(en) {
    padding: 36px 0 92px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-title {
    position: relative;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-title::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(26, 26, 26, 0.2);
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.esg-program-page.esg-page .content-body .redconnect-history .history-title:lang(en) {
  font-family: "SynergyDisplay";
  letter-spacing: 0;
}
.esg-program-page.esg-page .content-body .redconnect-history .history-title span {
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-title span {
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-title span {
    position: relative;
    z-index: 5;
    padding: 0 10px;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.025em;
    background-color: #fff;
  }
}
.esg-program-page.esg-page .content-body .redconnect-history .history-content {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-content {
    padding: 15px 15px 64px 0;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-content {
    height: 1819px;
    padding-top: 42px;
    padding-bottom: 53px;
    margin: 30px auto 76px;
    font-size: 0;
    background: url("/images/manage/redconnect-history-line_lg_v2.png?") center top/30px auto no-repeat;
  }
  .esg-program-page.esg-page .content-body .redconnect-history .history-content:lang(en) {
    height: 1905px;
    padding-bottom: 66px;
    margin-bottom: 0;
    background: url("/images/en/csr/redconnect-history-line-en_lg_v2.png") center top/30px auto no-repeat;
  }
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item {
  position: relative;
  padding-bottom: 73px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item {
    display: block;
    padding: 0 0 26px 30px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item {
    display: inline-block;
    width: 50%;
    padding-bottom: 73px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item:lang(en) {
    padding-bottom: 75px;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item::before {
    content: "";
    display: block;
    width: 15px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("/images/manage/redconnect-history-line_sm_v2.jpg") left 0 top/120px auto no-repeat;
  }
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item.item-01:before {
  background-position: left -105px top;
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item.item-02:before {
  background-position: left -90px top;
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item.item-03:before {
  background-position: left -75px top;
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item.item-04:before {
  background-position: left -60px top;
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item.item-05:before {
  background-position: left -45px top;
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item.item-06:before {
  background-position: left -30px top;
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item.item-07:before {
  background-position: left -15px top;
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item.item-08:before {
  background-position: left 0px top;
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item:first-child {
    padding-top: 14px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item:first-child {
    margin-left: 50%;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item:last-child:after {
    content: "";
    display: block;
    /* opacity: 0; */
    height: 80%;
    width: 8px;
    background: #ebebeb;
    position: absolute;
    bottom: -5px;
    left: 3.5px;
    border-radius: 7px;
  }
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item .date {
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  color: #e51937;
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .date {
    padding-bottom: 17px;
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .date {
    position: absolute;
    top: 0;
    left: 28px;
    display: inline-block;
    width: 180px;
    font-size: 16px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: -0.025em;
    color: #141414;
  }
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .title span {
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: -0.025em;
    color: #141414;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure {
    padding-top: 16px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure {
    padding-top: 3px;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure .img {
    height: 122px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure .img {
    width: 306px;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption {
    padding-top: 12px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption {
    padding-top: 30px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption:lang(en) {
    padding-top: 15px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption .title {
    padding-bottom: 13px;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #141414;
  }
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption .title span {
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: -0.025em;
    color: #141414;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption .title:lang(en) {
    padding-bottom: 10px;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 24px;
  }
}
.esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption .desc {
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #666;
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption .desc {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption .desc {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item .figure figcaption .desc:lang(en) {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item:nth-child(2n-1) {
    text-align: right;
    padding-left: -webkit-calc(50% - 450px);
    padding-left: -moz-calc(50% - 450px);
    padding-left: calc(50% - 450px);
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item:nth-child(2n) {
    top: -300px;
    padding-right: -webkit-calc(50% - 450px);
    padding-right: -moz-calc(50% - 450px);
    padding-right: calc(50% - 450px);
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item:nth-child(2n):lang(en) {
    top: -348px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item:nth-child(2n) .date {
    left: auto;
    right: 28px;
    text-align: right;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item.item-04 {
    -webkit-transform: translateY(-40px);
       -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item.item-04:lang(en) {
    -webkit-transform: translateY(-20px);
       -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item.item-02 {
    -webkit-transform: translateY(-65px);
       -moz-transform: translateY(-65px);
        -ms-transform: translateY(-65px);
            transform: translateY(-65px);
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item.item-02:lang(en) {
    -webkit-transform: translateY(-20px);
       -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item.item-01 {
    -webkit-transform: translateY(-65px);
       -moz-transform: translateY(-65px);
        -ms-transform: translateY(-65px);
            transform: translateY(-65px);
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-history .history-item.item-01:lang(en) {
    -webkit-transform: translateY(-76px);
       -moz-transform: translateY(-76px);
        -ms-transform: translateY(-76px);
            transform: translateY(-76px);
  }
}
.esg-program-page.esg-page .content-body .redconnect-banner {
  background: #f9f9f9;
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner {
    position: relative;
    padding: 169px 0 80px;
    text-align: center;
  }
  .esg-program-page.esg-page .content-body .redconnect-banner:lang(en) {
    padding-top: 186px;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-banner {
    padding: 80px 0 62px;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .float-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    padding: 10px 0 15px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .float-banner .title {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .float-banner .link-app {
    margin: 10px auto 0;
    font-size: 0;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .float-banner .link-app .link {
    display: inline-block;
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .float-banner .link-app .link + .link {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .float-banner .link-app img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .float-banner .link-app.only-mac, .esg-program-page.esg-page .content-body .redconnect-banner .float-banner .link-app.is-macos {
    display: none;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .float-banner .link-app.only-mac.is-macos {
    display: block;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .inner {
    width: 1040px;
    margin: 0 auto;
  }
}
.esg-program-page.esg-page .content-body .redconnect-banner .thumb-link {
  position: relative;
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .thumb-link {
    display: block;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .thumb-link {
    display: inline-block;
    margin-right: 40px;
    vertical-align: top;
    text-decoration: none;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .thumb-link .thumb-img {
    width: 480px;
  }
}
@media (max-width: 768px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .text-wrap {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .text-wrap {
    display: inline-block;
    max-width: -webkit-calc(100% - 560px);
    max-width: -moz-calc(100% - 560px);
    max-width: calc(100% - 560px);
    vertical-align: top;
  }
}
.esg-program-page.esg-page .content-body .redconnect-banner .text-wrap .sm-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: #141414;
}
.esg-program-page.esg-page .content-body .redconnect-banner .text-wrap .lg-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #141414;
}
.esg-program-page.esg-page .content-body .redconnect-banner .text-wrap .link {
  display: inline-block;
  padding: 0 24px;
  border-radius: 18px;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.05em;
  text-decoration: none;
  color: #fff;
  background: #e51937;
}
.esg-program-page.esg-page .content-body .redconnect-banner .text-wrap .apps-wrap {
  display: none;
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .text-wrap .apps-wrap {
    display: block;
    margin-top: 26px;
    margin-left: -10px;
    font-size: 0;
  }
}
@media (min-width: 769px) {
  .esg-program-page.esg-page .content-body .redconnect-banner .text-wrap .apps-wrap .link-app {
    display: inline-block;
    width: 140px;
    text-decoration: none;
    vertical-align: top;
  }
}

/*//ICT 생명나눔 끝*/
/* 정책 시작 // */
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general {
    margin-bottom: 58px;
  }
  .esg-policy-page.esg-page .content-body.content-general:lang(en) {
    margin-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-general {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general .num-table-wrap {
    margin-top: 14px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-general .num-table-wrap {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general .num-table-wrap .item {
    padding: 18px 0;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-general .num-table-wrap .item {
    padding: 24px 20px;
  }
}
.esg-policy-page.esg-page .content-body.content-general .num-table-wrap .item .line-list-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general .num-table-wrap .item .line-list-wrap {
    margin-top: 8px;
  }
}
.esg-policy-page.esg-page .content-body.content-general .num-table-wrap .item:last-child {
  border-bottom: none;
}
.esg-policy-page.esg-page .content-body.content-general .download-btn-table {
  margin-top: 35px;
  border-top: 1px solid #dbdbdb;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general .download-btn-table {
    margin-top: 14px;
  }
}
.esg-policy-page.esg-page .content-body.content-general .download-btn-table .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 24px 20px;
  border-bottom: 1px solid #dbdbdb;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general .download-btn-table .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 9px;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    padding: 19px 10px;
  }
}
.esg-policy-page.esg-page .content-body.content-general .download-btn-table .label {
  color: #4c4c4c;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: -0.52px;
}
.esg-policy-page.esg-page .content-body.content-general .download-btn-table .btn {
  display: inline-block;
  width: 150px;
  height: 36px;
  color: #1A1A1A;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 226.667% */
  letter-spacing: -0.3px;
  border: 1px solid #4c4c4c;
  border-radius: 18px;
}
.esg-policy-page.esg-page .content-body.content-overall {
  background-color: #f7f7f7;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall {
    padding: 40px 0 50px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall {
    padding: 60px 0 105px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall .sub-process {
  font-size: 0;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process {
    margin-top: 24px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall .sub-process .tit {
  color: #141414;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
.esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-process-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 69px;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-process-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-process-group {
    margin-top: 20px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-process-group .sub-inner-content2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-process-group .sub-inner-content2 {
    width: 100%;
  }
}
.esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-process-group .sub-inner-content2 .label {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--Color-gr_800, #4C4C4C);
  color: #4C4C4C;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-inner-content {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-inner-content {
    display: inline-block;
    vertical-align: middle;
    width: -webkit-calc(50% - 5px);
    width: -moz-calc(50% - 5px);
    width: calc(50% - 5px);
    margin-top: 52px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-inner-content + .sub-inner-content {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-inner-content + .sub-inner-content {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-inner-content .img-wrap {
    margin-top: 29px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-process .sub-inner-content .img-wrap {
    margin-top: 88px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-engagement {
    margin-top: 60px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-engagement {
    margin-top: 125px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall .sub-engagement .line-list-wrap {
  padding-left: 0;
  margin-top: 0;
}
.esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap {
  margin-top: 30px;
}
.esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table thead th {
  border-color: #d5d5d5;
  font-size: 13px;
  line-height: 18px;
  background: none;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table thead th {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table thead th:first-child {
    padding: 21px 0px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table tbody th, .esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table tbody td {
  border-color: #e6e6e6;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table tbody th {
    height: 150px;
    padding: 12px 0;
    font-weight: 600;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table tbody th {
    height: 105px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table tbody td .line-list-wrap {
  padding-left: 0;
}
.esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table tbody td .line-list-wrap .desc-nor-b {
  line-height: 21px;
}
.esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table tbody td.sm-text p {
  font-size: 12px;
  line-height: 20px;
  color: #666;
}
.esg-policy-page.esg-page .content-body.content-overall .sub-engagement .table-wrap .table tbody td.sm-text p::before {
  background-color: #666;
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-process {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-process .img-wrap {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-process .img-wrap {
    margin-top: 40px;
  }
  .esg-policy-page.esg-page .content-body.content-process .img-wrap:lang(en) {
    padding: 0;
  }
}
.esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap {
    margin-top: 50px;
    gap: 20px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap {
    margin-top: 75px;
    gap: 17px;
  }
}
.esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .name {
  padding-left: 13px;
  text-indent: -13px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  color: #4C4C4C;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .name:lang(ko) {
    color: #696969;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .name {
    display: inline-block;
    width: 167px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .name:lang(en) {
    width: 242px;
  }
}
.esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .name .num {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #e51937;
}
.esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .desc {
  font-size: 12px;
  line-height: 18px;
  color: #696969;
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .desc {
    display: inline-block;
    width: -webkit-calc(100% - 164px);
    width: -moz-calc(100% - 164px);
    width: calc(100% - 164px);
  }
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .desc:lang(ko) {
    font-size: 12px;
    line-height: 160%;
  }
  .esg-policy-page.esg-page .content-body.content-process .img-footnote-wrap li .desc:lang(en) {
    width: -webkit-calc(100% - 234px);
    width: -moz-calc(100% - 234px);
    width: calc(100% - 234px);
  }
}
.esg-policy-page.esg-page .content-body.content-overall:lang(en), .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en), .esg-policy-page.esg-page .content-body.content-materiality:lang(en) {
  padding-bottom: 0;
  background-color: #f7f7f7;
  /* 테이블형 리스트 (제목) */
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en), .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en), .esg-policy-page.esg-page .content-body.content-materiality:lang(en) {
    padding-top: 50px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en), .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en), .esg-policy-page.esg-page .content-body.content-materiality:lang(en) {
    padding-top: 100px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table {
  border-top: 1px solid #a5a5a5;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table {
    margin-top: 50px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table li, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table li, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  border-bottom: 1px solid #dbdbdb;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table li, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table li, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding: 18px 0 19px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table li, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table li, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table li {
    padding: 24px 20px 25px;
  }
}
.esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table li .title, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table li .title, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table li .title {
  color: #141414;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table li .title, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table li .title, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table li .title {
    width: 240px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.esg-policy-page.esg-page .content-body.content-overall:lang(en) .text-table li .text-wrap .text, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .text-table li .text-wrap .text, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .text-table li .text-wrap .text {
  color: #4C4C4C;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.5px; /* 173.077% */
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .img-wrap, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .img-wrap, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .img-wrap {
    margin-top: 50px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .img-wrap, .esg-policy-page.esg-page .content-body.content-stakeholder:lang(en) .img-wrap, .esg-policy-page.esg-page .content-body.content-materiality:lang(en) .img-wrap {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) {
    padding-top: 55px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .img-wrap {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-overall:lang(en) .img-wrap {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-materiality:lang(en) {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-materiality:lang(en) {
    padding-bottom: 105px;
  }
}
.esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li {
  border-top: 1px solid #a5a5a5;
  font-size: 0;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li {
    padding: 18px 0px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li {
    padding: 23px 20px;
  }
}
.esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li + li {
  border-color: #dbdbdb;
}
.esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .num {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  color: #141414;
  vertical-align: top;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .num {
    width: 40px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .num {
    width: 50px;
  }
}
.esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .text-wrap {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .text-wrap {
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .text-wrap {
    width: -webkit-calc(100% - 50px);
    width: -moz-calc(100% - 50px);
    width: calc(100% - 50px);
  }
}
.esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .text-wrap .text {
  font-size: 13px;
  color: #4c4c4c;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .text-wrap .text {
    line-height: 19px;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .text-wrap .text {
    line-height: 21px;
  }
}
.esg-policy-page.esg-page .content-body.content-general:lang(en) .num-table li .text-wrap .line-list-wrap {
  margin-top: 20px;
  padding-left: 0;
}
.esg-policy-page.esg-page .content-body.content-engagement:lang(en) {
  background-color: #f7f7f7;
}
.esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap {
  margin-top: 30px;
}
.esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table thead th {
  border-color: #d5d5d5;
  font-size: 13px;
  line-height: 18px;
  background: none;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table thead th {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table thead th:first-child {
    padding: 21px 0px;
  }
}
.esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table tbody th, .esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table tbody td {
  border-color: #e6e6e6;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table tbody th {
    height: 150px;
    padding: 12px 0;
    font-weight: 600;
  }
}
@media (min-width: 769px) {
  .esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table tbody th {
    height: 105px;
  }
}
.esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table tbody td .line-list-wrap {
  padding-left: 0;
}
.esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table tbody td .line-list-wrap .desc-nor-b {
  line-height: 21px;
}
.esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table tbody td.sm-text p {
  font-size: 12px;
  line-height: 20px;
  color: #666;
}
.esg-policy-page.esg-page .content-body.content-engagement:lang(en) .table-wrap .table tbody td.sm-text p::before {
  background-color: #666;
}

/* //정책 끝 */
/* 참여 Program 시작 // */
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-communication .table-wrap {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-communication .table-wrap {
    margin-top: 26px;
  }
}
.esg-participation-program-page.esg-page .participation-program-communication .table-wrap table {
  word-break: break-word;
}
.esg-participation-program-page.esg-page .participation-program-communication .table-wrap table th, .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table td {
  text-align: left;
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table th, .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table td {
    letter-spacing: -0.75px;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table th:nth-child(1), .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table td:nth-child(1) {
    width: 20.3030303%;
  }
  .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table th:nth-child(1):lang(en), .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table td:nth-child(1):lang(en) {
    width: 28.6%;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table th:nth-child(1), .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table td:nth-child(1) {
    width: 26.9230769%;
  }
}
.esg-participation-program-page.esg-page .participation-program-communication .table-wrap table th:nth-child(2), .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table td:nth-child(2) {
  width: 26.92307692%;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table th:nth-child(2), .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table td:nth-child(2) {
    width: 39.6969697%;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-communication .table-wrap table td {
    padding: 8px 10px;
  }
}
.esg-participation-program-page.esg-page .participation-program-strengthening .link-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  margin-top: 16px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-strengthening .link-group {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.esg-participation-program-page.esg-page .participation-program-strengthening .link-group .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 36px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px; /* 130% */
  letter-spacing: -0.375px;
  text-decoration: none;
  border-radius: 38px;
  background: #000;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-strengthening .link-group .link {
    width: 233px;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap {
    margin-top: 16px;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap {
    margin-top: 12px;
  }
}
.esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap table th, .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap table td {
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap table th:nth-child(1), .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap table td:nth-child(1) {
    width: 27.27272727%;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap table th:nth-child(1), .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap table td:nth-child(1) {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap table td {
    padding: 8px 10px;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-strengthening .table-wrap table td {
    letter-spacing: -0.52px;
  }
}
.esg-participation-program-page.esg-page .participation-program-surveys .case-tit {
  color: #4C4C4C;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-surveys .case-tit {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.7px;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-surveys .case-tit {
    margin-top: 24px;
  }
}
.esg-participation-program-page.esg-page .participation-program-surveys .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  border: 1px solid var(--Color-table_list-line, #D0D0D0);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-surveys .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 16px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-surveys .box {
    margin-bottom: 44px;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-surveys .box.box-02 {
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-surveys .box.box-02 {
    margin-bottom: 0;
  }
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  color: #4C4C4C;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-surveys .box .list .item {
    font-size: 13px;
    letter-spacing: -0.7px;
  }
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .item:lang(en) {
  font-size: 13px;
  letter-spacing: 0;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .item + .item {
  margin-top: 8px;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .item .list-style.dot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 26px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .item .list-style.dot:after {
  content: "";
  width: 2px;
  height: 2px;
  background: #141414;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  padding: 0 0 0 8px;
  margin: 2px 0 0;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .ul .li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  color: #4C4C4C;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
  letter-spacing: -0.7px;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .ul .li:lang(en) {
  letter-spacing: 0;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .ul .li .list-style.dash {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 4px;
  height: 22px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .list .ul .li .list-style.dash:after {
  content: "";
  width: 3px;
  height: 1px;
  background: #666;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .img-wrap {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .desc-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .desc-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  color: #4C4C4C;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-surveys .box .desc-list .item {
    font-size: 13px;
    letter-spacing: -0.7px;
  }
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .desc-list .item:lang(en) {
  font-size: 13px;
  letter-spacing: 0;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .desc-list .item .list-style.dash {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 4px;
  height: 22px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.esg-participation-program-page.esg-page .participation-program-surveys .box .desc-list .item .list-style.dash:after {
  content: "";
  width: 3px;
  height: 1px;
  background: #666;
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .desc-nor-b + .sub-content {
    margin-top: 26px;
  }
}
.esg-participation-program-page.esg-page .participation-program-grievance .table-wrap {
  margin-top: 12px;
}
.esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(1), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(1) {
  text-align: left;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(1):lang(en), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(1):lang(en) {
    width: 27.878787%;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(2), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(2) {
    width: 24.2424%;
  }
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(2):lang(en), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(2):lang(en) {
    width: 25.2%;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(2), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(2) {
    width: 21.82692308%;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(3), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(3) {
    width: 24.2424%;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(3), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(3) {
    width: 21.82692308%;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(4), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(4) {
    width: 24.2424%;
  }
}
@media (min-width: 769px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:nth-child(4), .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table td:nth-child(4) {
    width: 21.82692308%;
  }
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .table-wrap table th:lang(en) {
    font-size: 13px;
    line-height: 20px; /* 153.846% */
    letter-spacing: -0.75px;
  }
}
.esg-participation-program-page.esg-page .participation-program-grievance .footnote-wrap {
  margin-top: 12px;
}
.esg-participation-program-page.esg-page .participation-program-grievance .sub-content ~ .sub-content {
  margin-top: 50px;
}
.esg-participation-program-page.esg-page .participation-program-grievance .img-wrap {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .esg-participation-program-page.esg-page .participation-program-grievance .img-wrap {
    margin-top: 13px;
  }
}
/* //참여 Program 끝 */
/* 참여 Framework 시작 // */
.esg-participate-page .participate-overall .desc-str + .desc-nor {
  margin-top: 25px;
}
.esg-participate-page .participate-overall .img-wrap {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .esg-participate-page .participate-overall .img-wrap {
    margin-top: 55px;
  }
}
.esg-participate-page .participate-overall .link-btn-table {
  margin-top: 70px;
  border-top: 1px solid #dbdbdb;
}
@media (max-width: 768px) {
  .esg-participate-page .participate-overall .link-btn-table {
    margin-top: 55px;
  }
}
.esg-participate-page .participate-overall .link-btn-table .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 24px 20px;
  border-bottom: 1px solid #dbdbdb;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .esg-participate-page .participate-overall .link-btn-table .item {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 9px;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    padding: 19px 10px;
  }
  .esg-participate-page .participate-overall .link-btn-table .item:lang(en) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.esg-participate-page .participate-overall .link-btn-table .label {
  color: #4c4c4c;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .esg-participate-page .participate-overall .link-btn-table .label:lang(en) {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.3px;
  }
}
@media (min-width: 769px) {
  .esg-participate-page .participate-overall .link-btn-table .label:lang(en) {
    font-weight: 400;
    letter-spacing: -0.32px;
  }
}
.esg-participate-page .participate-overall .link-btn-table .btn {
  display: inline-block;
  width: 150px;
  height: 36px;
  color: #1A1A1A;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 226.667% */
  letter-spacing: -0.3px;
  border: 1px solid #4c4c4c;
  border-radius: 18px;
}
/* //참여 Framework 끝 */
/* Digital Inclusion 시작 // */
@media (min-width: 769px) {
  .inclusion-page.esg-page .content-body.inclusion-breaking .section-inner > .h5-nor + .desc-nor-b + .sub-content {
    margin-top: 34px;
  }
  .inclusion-page.esg-page .content-body.inclusion-breaking .section-inner > .h5-nor + .desc-nor-b + .sub-content:lang(en) {
    margin-top: 22px;
  }
}
@media (max-width: 768px) {
  .inclusion-page.esg-page .content-body.inclusion-download {
    padding-top: 45px;
    padding-bottom: 115px;
  }
}
@media (min-width: 769px) {
  .inclusion-page.esg-page .content-body.inclusion-download {
    padding-top: 53px;
    padding-bottom: 125px;
  }
}
.inclusion-page.esg-page .content-body.inclusion-newsroom {
  text-align: center;
}
@media (max-width: 768px) {
  .inclusion-page.esg-page .content-body.inclusion-newsroom {
    padding-top: 36px;
  }
}
@media (min-width: 769px) {
  .inclusion-page.esg-page .content-body.inclusion-newsroom {
    padding-top: 40px;
  }
}
.inclusion-page.esg-page .content-body.inclusion-newsroom .desc {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .inclusion-page.esg-page .content-body.inclusion-newsroom .desc:lang(ko) {
    font-size: 15px;
    line-height: 170%;
  }
}
.inclusion-page.esg-page .content-body.inclusion-newsroom .link-white {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  padding: 0 36px;
  border-radius: 18px;
  border: 1px solid #4c4c4c;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  color: #1a1a1a;
  background: white;
}
/* // Digital Inclusion 끝 */
/* ESG 자료실 시작 // */
@media (max-width: 768px) {
  .downloads-page .content-header .type-txt {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .downloads-page .content-body .tab-body .content-item {
    padding-top: 21px;
  }
}
@media (max-width: 768px) {
  .downloads-page .video-wrap {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .downloads-page .video-wrap {
    display: grid;
    grid-template-columns: 680px auto;
    gap: 32px;
    margin-top: 22px;
  }
}
.downloads-page .video-wrap .youtube {
  width: 100%;
  aspect-ratio: 680/383;
}
@media (max-width: 768px) {
  .downloads-page .video-wrap .subscription-group {
    margin-top: 16px;
  }
}
@media (min-width: 769px) {
  .downloads-page .video-wrap .subscription-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.downloads-page .video-wrap .subscription-group .tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  height: 27px;
  color: #4C4C4C;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .downloads-page .video-wrap .subscription-group .tit {
    color: #141414;
    font-size: 13px;
    letter-spacing: -0.7px;
  }
}
.downloads-page .video-wrap .subscription-group .tit .icon {
  width: 24px;
}
.downloads-page .video-wrap .subscription-group .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
     -moz-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  padding: 20px;
  border: 1px solid #d1d1d1;
  margin-top: 8px;
  color: #666;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: -0.52px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .downloads-page .video-wrap .subscription-group .text {
    height: 200px;
    padding-left: 0;
    padding-right: 0;
    font-size: 13px;
    border-left: 0;
    border-right: 0;
  }
}
@media (min-width: 769px) {
  .downloads-page .video-wrap .subscription-group .text {
    height: 348px;
  }
}
.downloads-page .video-wrap .subscription-group .down-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  margin-top: 16px;
}
.downloads-page .video-wrap .subscription-group .down-group .btn-down {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 28px;
  padding: 0px 13px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border: 1px solid #4C4C4C;
  color: #141414;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  letter-spacing: -0.24px;
}
.downloads-page .video-wrap .subscription-group .down-group .btn-down .icon {
  width: 13px;
}
/* // ESG 자료실 끝 */
/*실적발표 mib200916 추가//*/
.result-page .board-search.add-submit > form {
  padding-right: 54px;
}
.result-page .board-search.add-submit .btn-submit {
  width: 49px;
  text-indent: 0;
  background: #333;
}
@media (max-width: 768px) {
  .result-page .content-body .board-search {
    padding-top: 5px;
  }
}

/*실적발표 //mib200916 추가*/
/*IR미팅//*/
.irmeeting-page .content-body * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header {
  font-size: 0;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-desc {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #141414;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-desc {
    line-height: 22px;
    margin-top: 15px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-desc {
    display: inline-block;
    width: -webkit-calc(100% - 254px);
    width: -moz-calc(100% - 254px);
    width: calc(100% - 254px);
    line-height: 13px;
    vertical-align: bottom;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector {
  position: relative;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector {
    display: inline-block;
    width: 254px;
    height: 85px;
    vertical-align: bottom;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .date-month {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-align: center;
  color: #141414;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .date-month {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .date-month {
    font-size: 36px;
    line-height: 40px;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn {
  position: absolute;
  bottom: 0;
  z-index: 1;
  border: 1px solid #e6e6e6;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn {
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn {
    width: 38px;
    height: 40px;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn.prev {
  left: 0;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn.prev::after {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #666;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn.prev.is-disable {
  cursor: default;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn.prev.is-disable::after {
  border-right: 8px solid #ccc;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn.next {
  right: 0;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn.next::after {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #666;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-header .calendar-selector .btn.next.disable::after {
  border-left: 8px solid #ccc;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body {
    margin: 15px 0 75px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body {
    margin: 20px 0 160px;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body table {
  width: 100%;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body thead th {
  width: 14.2857%;
  height: 41px;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  vertical-align: middle;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: -0.025em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body tbody tr {
    height: 47px; /*mib200625 height 수정*/
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body tbody tr {
    height: 110px; /*mib200625 height 수정*/
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body tbody tr:first-child td {
    height: 53px;
    padding-top: 6px;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body tbody tr:last-child td {
    height: 53px;
    padding-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body tbody td {
    height: auto; /*mib200625 height 수정*/
    vertical-align: middle;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body tbody td {
    height: auto; /*mib200625 height 수정*/
    padding: 13px 0 10px;
    border-bottom: 1px solid #d1d1d1;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body tr th:first-child, .irmeeting-page .content-body.irmeeting-calendar .calendar-body tr td:first-child .m-date, .irmeeting-page .content-body.irmeeting-calendar .calendar-body tr td:first-child .pc-date {
  color: #e51937;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-date {
  display: none;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-date {
    display: block;
    cursor: default;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 100%;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 28px;
    letter-spacing: -0.025em;
    color: #4c4c4c;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-date.is-holiday {
  color: #e51937;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-date.is-disable {
  color: #999;
  background: #ddd;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-date.is-able {
  cursor: pointer;
  color: #fff;
  background: #ff7902;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-date.m-date.is-able + .m-popup.is-active {
    display: block;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-popup {
  display: none;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-dimmed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-link-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-link-wrap .m-link {
    display: block;
    width: 300px;
    height: 60px;
    padding: 0 25px;
    font-size: 15px;
    line-height: 60px;
    letter-spacing: -0.025em;
    text-align: left;
    color: #4c4c4c;
    background: #fff;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .m-link-wrap .m-link + .m-link {
    border-top: 1px solid #ebebeb;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-date {
  display: none;
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-date {
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: -0.025em;
    color: #4c4c4c;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-date.is-holiday {
  color: #e51937;
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .today {
    margin-left: 15px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0;
    color: #ff7900;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links {
  display: none;
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links {
    display: block;
    margin-top: 10px;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link {
  display: block;
  font-size: 0;
  text-align: left;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link .cate {
  display: inline-block;
  width: 35px;
  height: 17px;
  border-radius: 8px;
  margin-right: 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.05em;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background: #ff7902;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link .cate:lang(en) {
  width: 58px;
  letter-spacing: 0;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link .time {
  display: inline-block;
  max-width: -webkit-calc(100% - 40px);
  max-width: -moz-calc(100% - 40px);
  max-width: calc(100% - 40px);
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: -0.05em;
  vertical-align: middle;
  color: #141414;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link .time:lang(en) {
  max-width: -webkit-calc(100% - 63px);
  max-width: -moz-calc(100% - 63px);
  max-width: calc(100% - 63px);
  letter-spacing: 0;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link.is-disable {
  cursor: default;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link.is-disable .cate {
  color: #999;
  background: #ddd;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link.is-disable .time {
  color: #999;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .pc-links .link + .link {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .calendar-legend {
    padding-top: 10px;
    border-top: 1px solid #d1d1d1;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .calendar-legend .stat {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.025em;
    vertical-align: middle;
    color: #4c4c4c;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-calendar .calendar-body .calendar-legend .stat::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin-right: 5px;
    vertical-align: middle;
    background: #ff7902;
  }
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .calendar-legend .stat.disable {
  margin-left: 30px;
}
.irmeeting-page .content-body.irmeeting-calendar .calendar-body .calendar-legend .stat.disable::before {
  background: #ddd;
}
.irmeeting-page .content-body.irmeeting-reg .reg-desc {
  font-size: 13px;
  font-weight: 400;
  color: #141414;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-desc {
    margin: 14px 0 26px;
    line-height: 22px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-desc {
    margin: 35px 0 30px;
    line-height: 13px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .reg-process {
  font-size: 0;
  text-align: center;
}
.irmeeting-page .content-body.irmeeting-reg .reg-process .process {
  display: inline-block;
  position: relative;
  border-radius: 100%;
  vertical-align: middle;
  background: #f7f7f7;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process {
    width: 100px;
    height: 100px;
  }
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process:lang(en) {
    height: 125px;
    border-radius: 50px;
  }
}
@media (max-width: 768px) and (max-width: 359px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process {
    width: 80px;
    height: 80px;
  }
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process:lang(en) {
    height: 125px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process {
    width: 128px;
    height: 128px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .reg-process .process.point {
  background: #e51937;
}
.irmeeting-page .content-body.irmeeting-reg .reg-process .process.point .txt span, .irmeeting-page .content-body.irmeeting-reg .reg-process .process.point .txt p, .irmeeting-page .content-body.irmeeting-reg .reg-process .process.point .txt .strong {
  color: #fff;
}
.irmeeting-page .content-body.irmeeting-reg .reg-process .process .txt {
  width: 100%;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  left: 0;
  margin: 0 auto;
}
.irmeeting-page .content-body.irmeeting-reg .reg-process .process .txt .strong {
  display: block;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #666;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process .txt .strong {
    font-size: 12px;
    line-height: 15px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process .txt .strong {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process .txt .strong.txt-sm:lang(en) {
    font-size: 12px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .reg-process .process .txt .normal {
  display: block;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.05em;
  color: #666;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process .txt .normal {
    font-size: 10px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .process .txt .normal {
    font-size: 11px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .reg-process .dash {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  overflow: visible;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .dash {
    width: 15px;
    height: 2px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .dash {
    width: 2px;
    height: 2px;
    margin: 0 19px;
    border-radius: 100%;
    background: #666;
  }
}
.irmeeting-page .content-body.irmeeting-reg .reg-process .dash::before, .irmeeting-page .content-body.irmeeting-reg .reg-process .dash::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background: #666;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .dash::before {
    left: 3px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .dash::before {
    left: -5px;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .dash::after {
    right: 3px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .reg-process .dash::after {
    right: -5px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-title {
  position: relative;
  font-size: 0;
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-title img {
  height: 21px;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-title img.multiline {
    height: 46px;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-title .chk-box {
    display: block;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    margin-top: 20px;
    text-align: right;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-title .chk-box {
    position: absolute;
    display: inline-block;
    right: 0;
    bottom: 2px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-title .chk-box .chk-input {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
  vertical-align: middle;
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-title .chk-box .chk-label {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  vertical-align: middle;
  color: #141414;
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-label {
  display: inline-block;
  line-height: 30px;
  font-weight: 700;
  color: #141414;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-label {
    font-size: 13px; /*mib200420 fontsize 미디어쿼리 추가*/
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-label {
    font-size: 12px; /*mib200420 fontsize 미디어쿼리 추가*/
  }
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-label label {
  line-height: 1.3; /*mib200422 lineheight 추가*/
  color: #e51937; /*mib200422 color 추가*/
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-label label:lang(en) {
  letter-spacing: 0; /*mib200422 영문 letterspacing 추가*/
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-label::after {
  content: "";
  display: table;
  clear: both;
  table-layout: fixed; /*mib200518 clearfix 추가*/
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-label .point-must {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  color: #e51937;
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-label .unit {
  float: right;
  font-size: 13px;
  font-weight: 400;
  line-height: inherit;
  vertical-align: middle;
  color: #141414; /*mib200518 unit 선택자 추가*/
}
.irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-wrap {
  border-top: 1px solid #ccc;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-wrap {
    padding: 10px 0 0;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-wrap {
    padding: 26px 0 0;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .irmeeting-reg-wrap.m-custom {
    padding: 5px 0 0;
    border-top: 0;
    margin-top: 0;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info.investor {
    margin-top: 60px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info.investor {
    margin-top: 80px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .irmeeting-reg-label {
  display: block;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .custom-select-wrap {
  height: auto; /*mib200422 추가*/
  border: none; /*mib200422 수정*/
  line-height: 30px; /*mib200422 추가*/
  font-weight: 700; /*mib200422 추가*/
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .custom-select-wrap {
    font-size: 13px; /*mib200422 추가*/
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .custom-select-wrap {
    font-size: 12px; /*mib200422 추가*/
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .custom-select-wrap label {
  line-height: 1.3; /*mib200422 lineheight 추가*/
  color: #e51937; /*mib200422 color 추가*/
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .custom-select-wrap label:lang(en) {
  letter-spacing: 0; /*mib200422 추가*/
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .custom-select-wrap select {
  position: relative;
  height: 40px; /*mib200422 추가*/
  border: 1px solid #e7e7e7; /*mib200422 추가*/
  z-index: 1;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group {
  font-size: 0;
  text-align: left;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item {
  vertical-align: top;
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item {
    display: inline-block;
    width: 328px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  font-size: 14px;
  line-height: 38px;
  letter-spacing: 0;
  color: #333;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text]::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 38px;
  color: #666;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text]:-moz-input-placeholder {
  font-size: 14px;
  line-height: 38px;
  color: #666;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text]::-moz-input-placeholder {
  font-size: 14px;
  line-height: 38px;
  color: #666;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text]:-ms-input-placeholder {
  font-size: 14px;
  line-height: 38px;
  color: #666;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text]::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 38px;
  color: #666;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text]::-moz-placeholder {
  font-size: 14px;
  line-height: 38px;
  color: #666;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text]::-ms-input-placeholder {
  font-size: 14px;
  line-height: 38px;
  color: #666;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text]::placeholder {
  font-size: 14px;
  line-height: 38px;
  color: #666;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text].reg-date {
  display: inline-block;
  width: 99px;
  padding: 0;
  margin-right: 5px;
  vertical-align: top;
  text-align: center;
  color: #999;
  background: #f9f9f9;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text].reg-date + .custom-select-wrap {
  display: inline-block;
  width: -webkit-calc(100% - 104px);
  width: -moz-calc(100% - 104px);
  width: calc(100% - 104px);
  vertical-align: top;
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item.long {
    width: 684px;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item + .item {
    margin-top: 11px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item + .item {
    margin-left: 28px;
  }
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .item-group + .item-group {
    margin-top: 11px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .item-group + .item-group {
    margin-top: 27px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-group .item-group + .item-group {
  border-top: 1px dashed #e7e7e7;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .reg-group .item-group + .item-group {
    padding-top: 12px;
    margin-top: 35px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .reg-group .item-group + .item-group {
    padding-top: 28px;
    margin-top: 33px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append {
  padding-top: 10px;
  border-top: 1px solid #e7e7e7;
  margin-top: 35px;
  text-align: right;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append::after {
    content: "";
    display: table;
    clear: both;
    table-layout: fixed;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn {
  position: relative;
  padding: 0 0 0 32px;
  border: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.025em;
  text-decoration: none;
  vertical-align: top;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn.remove {
    float: left;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn.remove .icon {
  background: #dbdbdb;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn.remove .icon::before {
  display: none;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn.append {
    float: right;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn.append {
    margin-left: 50px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn.append .icon {
  background: #1a1a1a;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn .icon {
  position: absolute;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  overflow: hidden;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn .icon::before, .irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn .icon::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn .icon::before {
  width: 2px;
  height: 11px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-info .reg-append .reg-btn .icon::after {
  width: 11px;
  height: 2px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy {
  margin-top: 27px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea {
  margin-top: 10px;
  padding: 14px 19px;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  background-color: #f7f7f7;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea {
    height: 220px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea {
    height: 165px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea p {
  font-size: 13px;
  line-height: 20px;
  color: #141414;
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea ul {
  border-bottom: 1px solid #e6e6e6;
  margin-top: 11px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea ul {
    border-top: 1px solid #ccc;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea ul + p {
  margin-top: 10px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea li {
    float: left;
    width: 38%;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea li:first-child {
    width: 24%;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea li > div {
  padding: 11px 20px 11px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea li .th {
  border-bottom: 1px solid #e6e6e6;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea li .th {
    border-top: 1px solid #ccc;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-privacy .privacy-textarea li .th p {
  font-weight: 700;
}
.irmeeting-page .content-body.irmeeting-reg .regist-agree {
  margin-top: 12px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-agree::after {
  content: "";
  display: table;
  clear: both;
  table-layout: fixed;
}
.irmeeting-page .content-body.irmeeting-reg .regist-agree .notice {
  display: inline-block;
  font-size: 12px;
  line-height: 21px;
  color: #e51937;
  letter-spacing: -0.05em;
}
.irmeeting-page .content-body.irmeeting-reg .regist-agree .radio-group {
  font-size: 0;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-agree .radio-group {
    display: block;
    margin-top: 26px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-agree .radio-group {
    float: right;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-agree .radio-group .component-wrap {
  display: inline-block;
}
.irmeeting-page .content-body.irmeeting-reg .regist-agree .radio-group .component-wrap + .component-wrap {
  margin-left: 40px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-submit {
  padding-top: 20px;
  border-top: 1px solid #8c8c8c;
  font-size: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-submit {
    margin: 50px auto 75px;
  }
}
@media (min-width: 769px) {
  .irmeeting-page .content-body.irmeeting-reg .regist-submit {
    margin: 70px auto 88px;
  }
}
.irmeeting-page .content-body.irmeeting-reg .regist-submit .btn {
  display: inline-block;
  width: 150px;
  height: 36px;
  font-size: 15px;
  letter-spacing: -0.05em;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 18px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-submit a {
  border: 1px solid #4c4c4c;
  margin-left: 10px;
  line-height: 34px;
}
.irmeeting-page .content-body.irmeeting-reg .regist-submit button {
  border: none;
  color: #fff;
  background-color: #e51937;
}

/*//IR미팅*/
/* min220224 주주총회 태이블 간격 수정 // */
@media (max-width: 768px) {
  .meeting-page .content-body .subject-table-wrap table .cell-3 {
    width: 45px;
  }
  .meeting-page .content-body .subject-table-wrap table .cell-4 {
    width: 50px;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .subject-table-wrap table .cell-3:lang(en) {
    width: 175px;
  }
  .meeting-page .content-body .subject-table-wrap table .cell-4:lang(en) {
    width: 125px;
  }
}
/* // min220224 주주총회 태이블 간격 수정 */
/* 주주총회 시작 // */
.meeting-page .content-body .tab-body .subject-table-wrap table td .sub:lang(en) {
  padding-left: 6px;
}
.meeting-page .content-body .tab-body .sub-title-group {
  position: relative;
}
.meeting-page .content-body .tab-body .sub-title-group .sub-title {
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #141414;
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .sub-title-group .sub-title {
    margin-bottom: 3px;
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .tab-body .sub-title-group .sub-title {
    margin-bottom: 18px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .sub-title-group .unit {
    text-align: right;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .tab-body .sub-title-group .unit {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.meeting-page .content-body .tab-body .online-meeting-wrap {
  padding: 40px 0 27px;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .content-title {
  padding-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.025em;
  color: #141414;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .online-meeting-desc {
  padding-bottom: 33px;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .banner-content .content-title {
  padding-bottom: 12px;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .banner-content .meeting-banner {
  display: block;
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .online-meeting-wrap .banner-content .meeting-banner {
    margin: 11px 0 9px;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .tab-body .online-meeting-wrap .banner-content .meeting-banner {
    width: 425px;
    margin: 9px 0;
  }
}
.meeting-page .content-body .tab-body .online-meeting-wrap .banner-content .meeting-banner .img {
  width: 100%;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .meeting-link {
  font-size: 0;
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .online-meeting-wrap .meeting-link {
    padding: 12px 0 26px;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .tab-body .online-meeting-wrap .meeting-link {
    padding: 11px 0 37px;
  }
}
.meeting-page .content-body .tab-body .online-meeting-wrap .meeting-link .link {
  display: inline-block;
  height: 28px;
  border: 1px solid #4c4c4c;
  font-size: 12px;
  line-height: 26px;
  padding: 0 10px;
  margin-right: 10px;
  color: #141414;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .meeting-link .link:lang(ko) {
  letter-spacing: -0.045em;
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .online-meeting-wrap .online-meeting-notice {
    margin: 0 0 -9px;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .tab-body .online-meeting-wrap .online-meeting-notice {
    margin: 0 0 -30px;
  }
}
.meeting-page .content-body .tab-body .online-meeting-wrap .online-meeting-notice .meeting-ul li {
  position: relative;
  padding-left: 7px;
  font-size: 13px;
  line-height: 20px;
  color: #4c4c4c;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .online-meeting-notice .meeting-ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 2px;
  height: 2px;
  background: #666;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .online-meeting-notice .meeting-ul li::before:lang(en) {
  top: 10px;
}
.meeting-page .content-body .tab-body .online-meeting-wrap .online-meeting-notice .meeting-ul li + .list {
  margin-top: 2px;
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .result-content {
    margin-top: 23px;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .tab-body .result-content {
    margin-top: 45px;
  }
}
.meeting-page .content-body .tab-body .result-content .result-table {
  position: relative;
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .result-content .result-table {
    padding: 14px 0;
    margin: 10px auto;
    border-top: 1px solid #8c8c8c;
    border-bottom: 1px solid #8c8c8c;
  }
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .result-content .result-table table {
    border: none;
  }
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .result-content .result-table table th, .meeting-page .content-body .tab-body .result-content .result-table table td {
    width: 50%;
    padding: 5px 7px;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .tab-body .result-content .result-table table th, .meeting-page .content-body .tab-body .result-content .result-table table td {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .result-content .result-table table th {
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.05em;
    color: #4c4c4c;
    text-align: left;
    margin-right: 18px;
    border-right: 1px solid #d1d1d1;
  }
}
.meeting-page .content-body .tab-body .result-content .result-table table th:lang(en) {
  font-size: 13px;
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .result-content .tip-wrap {
    margin: 5px 14px 0;
  }
}
@media (min-width: 769px) {
  .meeting-page .content-body .tab-body .result-content .tip-wrap {
    margin: 10px 16px 0;
  }
}
.meeting-page .content-body .tab-body .result-content .tip-wrap .tip {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .meeting-page .content-body .tab-body .result-content .tip-wrap .tip {
    padding: 2px 0;
    line-height: 18px;
  }
}
.meeting-page .content-body .tab-body .result-content .tip-wrap .tip.first-tip {
  text-indent: -8px;
}
.meeting-page .content-body .tab-body .result-content .tip-wrap .tip.second-tip {
  padding-left: 5px;
  text-indent: -13px;
}

/* // 끝 주주총회 */
/*지배구조 mib200730 추가//*/
/* .structure-page {
  & .cbody-01 {
    & .part-link {
      &:lang(en) {
        border-top: none;
      }
      border-bottom: 1px solid #b8b8b8;
      @include clearfix;
      @media (max-width: 768px) {
        padding: 16px 10px 20px;
        margin-bottom: 50px;
      }
      @media (min-width: 769px) {
        padding: 35px 20px;
        margin-bottom: 60px;
      }
      /* mib210713 추가 // *
      &.part-line-first {
        border: none;
        @media (max-width: 768px) {
          margin-bottom: 0;
          margin-top: -48px;
        }
        @media (min-width: 769px) {
          margin-bottom: 0;
          margin-top: -65px;
        }
      }
      /* // mib210713 추가 *
      & .title {
        display: inline-block;
        float: left;
        width: auto;
        color: #4c4c4c;
        @media (max-width: 768px) {
          font-size: 14px;
          line-height: 1.6;
        }
        @media (min-width: 769px) {
          font-size: 16px;
          font-weight: 700;
          line-height: 36px;
        }
      }
      & .btn-wrap {
        display: inline-block;
        float: right;
        width: auto;
        @media (max-width: 768px) {
          margin-top: 6px;
        }
        @media (min-width: 769px) {
        }
      }
    }
    /* mib210827 추가 // *
    & .box-caption .btn-wrap {
      position: static;
      text-align: right;
    }
    /* mib210827 추가 // *
    /* mib211012 추가 // *
    .part .director-wrap .wrap-body > .desc-nor + .desc-nor.tip {
      text-indent: -5px;
      padding-left: 5px;
      &:lang(en) {
        text-indent: -10px;
        padding-left: 10px;
      }
    }
    /* // mib211012 추가 *
    .part-04:lang(en) {
      padding-bottom: 0;
    }
  }
  & .cbody-02 {//이사회 활동 현황 *국문
    & table {
    }
  }
  /* mib220113 추가 // *
  & .cbody-04 {
    & .section-inner {
      & .inner-body {
        & .part-02 {
          & .part-content {
            @media (min-width: 769px) {
              padding-left: 3px;
            }
            & .part-year {
              @media (max-width: 768px) {
                display: block;
                vertical-align: top;
                margin-bottom: 8px;
              }
              @media (min-width: 769px) {
              }
              & .desc-year {
                font-weight: 600;
                line-height: 15px;
                color: #1a1a1a;
                @media (max-width: 768px) {
                  font-size: 12px;
                  letter-spacing: 0;
                }
                @media (min-width: 769px) {
                  margin-bottom: 8px;
                  font-size: 13px;
                  letter-spacing: -0.025em;
                }
              }
            }
            & .part-desc {
              @media (max-width: 768px) {
                display: block;
                vertical-align: top;
              }
              @media (min-width: 769px) {
              }
            }
            & + .part-content {
              @media (max-width: 768px) {
                margin-top: 9px;
              }
              @media (min-width: 769px) {
                padding-top: 30px;
                border-top: 1px solid #cbcbcb;
                margin-top: 30px;
              }
            }
          }
        }
      }
    }
  }
  /* // mib220113 추가 *
  & .cbody-06 {//BOD Activities in 2020 *영문
    padding-bottom: 40px;
    background-color: #f7f7f7;
    @media (max-width: 768px) {
      padding-bottom: 45px;
    }
    &:lang(en) {
      @media (min-width: 769px) {
        padding-bottom: 70px;
      }
    }
    & table {
      width: 100%;
      border-top: 1px solid #8c8c8c;
      border-bottom: 1px solid #bababa;
      margin-top: 35px;
      @media (max-width: 768px) {
        margin-top: 25px;
      }
      & thead tr {
        border-bottom: 1px solid #8c8c8c;
      }
      & th, & td {
        &:last-child {
          text-align: right;
          @media (max-width: 768px) {
            text-align: center;
          }
        }
      }
      & th {
        padding: 14px 20px;
        font-size: 15px;
        line-height: 20px;
        font-weight: 700;
        text-align: left;
        letter-spacing: -0.05em;
        color: #4c4c4c;
        @media (max-width: 768px) {
          padding: 12px 10px;
          font-size: 13px;
          text-align: center;
          vertical-align: middle;
        }
      }
      & td {
        padding: 18px 20px;
        font-size: 13px;
        line-height: 22px;
        text-align: left;
        vertical-align: middle;
        letter-spacing: -0.05em;
        color: #4c4c4c;
        @media (max-width: 768px) {
          padding: 15px 0;
          text-align: center;
          word-break: keep-all;
        }
        &:nth-child(2) {
          @media (max-width: 768px) {
            white-space: nowrap;
          }
        }
        &:nth-child(3) {
          @media (max-width: 768px) {
            padding: 15px 10px;
            text-align: left;
          }
        }
      }
      & tbody tr + tr {
        border-top: 1px solid #d1d1d1;
      }
      & .indent-list {
        display: block;
        position: relative;
        font-size: 13px;
        line-height: 22px;
        text-align: left;
        padding-left: 9px;
        color: #4c4c4c;
        &:after {
          content: '-';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          font-size: 13px;
          line-height: 22px;
          text-align: left;
          color: #4c4c4c;
        }
      }
      & :first-child {
        color: #4c4c4c;
      }
    }
    & .notice {
      padding-left: 8px;
      margin-top: 5px;
      font-size: 11px;
      font-weight: 400;
      line-height: 25px;
      text-indent: -8px;
      letter-spacing: -0.024em;
      color: #4c4c4c;
    }
  }
  & .cbody-03 .table-type-nor ul li {
    & > span {
      width: 20%; //mib210827 수정 18 to 20
      vertical-align: middle;
      &:lang(en) {
        width: 17%;
      }
    }
    & > .cate {
      width: 23%;
      &:lang(en) {
        width: 26%;
      }
    }
    & > .width-45 {
      width: 45%; //mib210827 수정 40 to 45
      &:lang(en) {
        width: 45%;
      }
    }
    & > .width-40 {
      &:lang(en) {
        width: 40%;
      }
      & .left:lang(en) {
        @media (max-width: 768px) {
          width: 56%;
        }
        @media (min-width: 769px) {
          width: 100%;
          padding-left: 35px;
          text-align: left;
        }
      }
    }
    & .th {
      @media (max-width: 768px) {
        width: 35% !important;
        // &:lang(en) {
        //   width: 44% !important;
        // }
      }
    }
    & > .width-45 .left {
      @media (max-width: 768px) {//위 .th와 비례해서 줄어듬
        max-width: calc(65% - 18px);
        // &:lang(en) {
        //   max-width: calc(56%);
        // }
      }
    }
  }
  & .cbody-03 .table-type-nor li > .width-30 {
    width: 30%;
    & .left {
      text-align: left;
      @media (min-width: 769px) {
        width: 210px;
      }
    }
  } 
  & .cbody-05 {
    & .desc {
      font-size: 13px;
      font-weight: 400;
      line-height: 20px;
      letter-spacing: -0.01em;
      color: #4c4c4c;
      @media (max-width: 768px) {
        margin: 35px 0 10px;
      }
      @media (min-width: 769px) {
        padding: 0 10px;
        margin: 68px 0 35px;
      }
    }
  }
} */
/*//지배구조 mib200730 추가*/
/*주주환원 mib200723 추가//*/
.return-page .table-type-nor .unit {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 13px;
  line-height: 1;
  color: #666;
  letter-spacing: -0.02em;
}
.return-page .content-body.cbody-01 .section-inner {
  padding-bottom: 5px;
}
.return-page .content-body.cbody-01 .section-inner .part-01 .desc-nor-b .fw-bold {
  font-weight: 600;
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-01 .section-inner .part-01 .desc-nor-b + .desc-nor-b {
    margin-top: 23px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-01 .section-inner .part-01 .desc-nor-b + .desc-nor-b {
    margin-top: 19px;
  }
}
.return-page .content-body.cbody-01 .section-inner .part-01 .list {
  padding: 0;
  margin-top: 2px;
  margin-bottom: 18px;
}
.return-page .content-body.cbody-01 .section-inner .part-01 .list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-01 .section-inner .part-01 .list .item {
    padding-left: 6px;
  }
}
.return-page .content-body.cbody-01 .section-inner .part-01 .list .item p {
  color: #4C4C4C;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-01 .section-inner .part-01 .list .item p {
    font-size: 13px;
    letter-spacing: -0.7px;
    text-indent: -6px;
  }
  .return-page .content-body.cbody-01 .section-inner .part-01 .list .item p:lang(en) {
    letter-spacing: -0.52px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-01 .section-inner .part-01 .list .item p {
    text-indent: -8px;
  }
  .return-page .content-body.cbody-01 .section-inner .part-01 .list .item p:lang(en) {
    font-size: 13px;
  }
}
.return-page .content-body.cbody-02 {
  /* mib230706다음 반영에서 삭제 // */
  /* // mib230706다음 반영에서 삭제 */
}
.return-page .content-body.cbody-02 .section-inner:lang(ko) {
  padding-bottom: 5px;
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li {
    padding: 0;
  }
}
.return-page .content-body.cbody-02 .table-type-nor ul li > span {
  /* &:last-child {
    @media (min-width: 769px) {
      width: 104px;
    }
    &:lang(en) {
      @media (min-width: 769px) {
        width: 95px;
      }
    } 
  } */
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span {
    color: #333;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span {
    width: 64px;
    padding: 15px 0;
    border-left: 1px dashed #ececec;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span:lang(en) {
    width: 62px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.total {
    width: 100px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.total:lang(en) {
    width: 82px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.cate {
    width: 140px;
    padding-left: 16px;
    border-left: none;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.cate:lang(en) {
    width: 175px;
  }
}
.return-page .content-body.cbody-02 .table-type-nor ul li > span.cate .small-text {
  font-size: 10px;
  font-weight: 600;
  line-height: 11px;
  vertical-align: text-top;
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.prev-quarter .th {
    padding-bottom: 12px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span .th {
    padding: 14px 0;
    border-left: 1px solid #ececec;
    top: -52px;
    left: -1px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span .th {
    border-right: 1px solid #d1d1d1;
    margin-right: 18px;
  }
}
.return-page .content-body.cbody-02 .table-type-nor ul li > span .th .small-text {
  font-size: 10px;
  font-weight: 600;
  line-height: 13px;
  vertical-align: text-top;
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.quarter-point {
    color: #666;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.quarter-point {
    width: 58px;
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.quarter-point:lang(en) {
    width: 59px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.quarter-point.last {
    margin-right: -7px;
  }
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.quarter-point .th.fw-normal {
    border-left: 1px solid #d1d1d1;
    padding-left: 6px;
    font-weight: 400;
    color: #7a7a7a !important;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.quarter-point .th.fw-normal {
    font-size: 12px;
    font-weight: 400;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.quarter-point + span {
    border-left: none;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-02 .table-type-nor ul li > span.quarter-point + span .th {
    border-left: none;
  }
}
.return-page .content-body.cbody-02 .table-wrap {
  position: relative;
}
.return-page .content-body.cbody-02 .table-wrap .unit {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 13px;
  line-height: 1;
  color: #666;
  letter-spacing: -0.02em;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table thead th {
  padding: 14px 0;
  border-top: 1px solid #898989;
  border-bottom: 1px solid #898989;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.049em;
  color: #4c4c4c;
  background-color: #f9f9f9;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table thead th .small-text {
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: inherit;
  color: inherit;
  vertical-align: text-top;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table thead th:last-child {
  padding-right: 25px;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr th {
  padding-left: 25px;
  border-bottom: 1px solid #d1d1d1;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 47px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr th .small-text {
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: inherit;
  color: inherit;
  vertical-align: text-top;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr td {
  border-bottom: 1px solid #d1d1d1;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: 0;
  color: #1a1a1a;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr td:last-child {
  padding-right: 35px;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr.quarter th {
  border: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr.quarter td {
  border: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  color: #1a1a1a;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr.quarter.first th, .return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr.quarter.first td {
  padding-top: 9px;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr.accrue-quarter th, .return-page .content-body.cbody-02 .table-wrap .content-table.show-only-desktop .table tbody tr.accrue-quarter td {
  padding-bottom: 9px;
  line-height: 30px;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div:last-child {
  border-bottom: 1px solid #a5a5a5;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .table-title {
  padding: 14px 10px;
  border-top: 1px solid #a5a5a5;
  border-bottom: 1px solid #dbdbdb;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #333;
  background: #f9f9f9;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .table-title .small-text {
  font-size: 10px;
  font-weight: 600;
  line-height: 11px;
  letter-spacing: -0.05em;
  color: #666;
  vertical-align: text-top;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .tbody-div {
  padding: 14px 0;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .tbody-div .tr-div {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #333;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .tbody-div .tr-div .year {
  display: inline-block;
  padding-left: 10px;
  border-right: 1px solid #d1d1d1;
  margin-right: 14px;
  width: 50%;
  font-size: inherit;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: inherit;
  color: inherit;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .tbody-div .tr-div .year .small-text {
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: inherit;
  color: #666;
  vertical-align: text-top;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .tbody-div .quarter .tr-div {
  color: #666;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .tbody-div .quarter .tr-div .year {
  position: relative;
  padding-left: 16px;
  font-weight: 400;
  color: #7a7a7a;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .tbody-div .quarter .tr-div .year:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 20px;
  left: 10px;
  bottom: 0;
  background-color: #d1d1d1;
}
.return-page .content-body.cbody-02 .table-wrap .content-table.show-only-mobile .table-div .tbody-div .quarter .tr-div:first-child .year {
  padding-top: 12px;
}
.return-page .content-body.cbody-03 .table-wrap {
  margin-top: 24px;
}
.return-page .content-body.cbody-03 .table-wrap table {
  width: 100%;
}
.return-page .content-body.cbody-03 .table-wrap table .tbody tr:first-child .th, .return-page .content-body.cbody-03 .table-wrap table .tbody tr:first-child .td {
  border-top: 1px solid #8c8c8c;
}
.return-page .content-body.cbody-03 .table-wrap table .tbody .th {
  border-bottom: 1px solid #d1d1d1;
  border-right: 1px solid #e8e8e8;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
  text-align: left;
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-03 .table-wrap table .tbody .th {
    width: 10%;
    padding: 15px 10px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-03 .table-wrap table .tbody .th {
    width: 160px;
    padding: 15px 16px;
  }
}
.return-page .content-body.cbody-03 .table-wrap table .tbody .th.title-th {
  border-right: none;
}
.return-page .content-body.cbody-03 .table-wrap table .tbody .th.sub-th {
  background-color: #fff;
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-03 .table-wrap table .tbody .th.sub-th {
    width: 28%;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-03 .table-wrap table .tbody .th.sub-th {
    width: 213px;
  }
}
.return-page .content-body.cbody-03 .table-wrap table .tbody .td {
  width: 590px;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0;
  color: #1a1a1a;
  vertical-align: middle;
  border-bottom: 1px solid #d1d1d1;
}
@media (max-width: 768px) {
  .return-page .content-body.cbody-03 .table-wrap table .tbody .td {
    padding: 14px 10px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body.cbody-03 .table-wrap table .tbody .td {
    padding: 16px 30px;
  }
}
.return-page .content-body.cbody-03 .table-wrap table .tbody .td p {
  padding-left: 10px;
  text-indent: -10px;
}
.return-page .content-body.cbody-03 .table-wrap table .tbody .td p:first-child {
  margin-bottom: 16px;
}
.return-page .content-body .section-inner .desc-nor-b {
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .return-page .content-body .section-inner .txt-wrap {
    padding-left: 8px;
    margin-top: 15px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body .section-inner .txt-wrap {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .return-page .content-body .section-inner .txt-wrap .desc-nor.dot-star.last {
    padding-left: 76px;
    text-indent: -76px;
  }
}
.return-page .content-body .section-inner .txt-wrap .desc-nor.dot-star .small-text {
  display: inline;
  font-size: 10px;
  color: #666;
  vertical-align: text-top;
}
@media (min-width: 769px) {
  .return-page .content-body .section-inner .txt-wrap .desc-nor.dot-star .small-text {
    font-weight: 600;
    line-height: 14px;
  }
}
@media (max-width: 768px) {
  .return-page .content-body .section-inner .txt-wrap .desc-nor.dot-star .small-text {
    line-height: 12px;
  }
}
.return-page .content-body .section-inner .txt-wrap .desc-nor.title {
  font-weight: 500;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .return-page .content-body .section-inner .txt-wrap .desc-nor.title {
    margin-bottom: 11px;
  }
}
@media (min-width: 769px) {
  .return-page .content-body .section-inner .txt-wrap .desc-nor.title {
    margin-bottom: 8px;
  }
}

/*//주주환원 mib200723 추가*/
/*주주현황 mib210520 추가//*/
.state-page .cm-notice {
  padding: 12px 18px;
}
.state-page .cm-notice .indent {
  display: inline-block;
  padding-left: 10px;
  font-size: 13px;
  text-indent: -10px;
  color: #666;
}
@media (max-width: 768px) {
  .state-page .cm-notice {
    padding: 12px 0;
  }
}

/*//주주현황 mib210520 추가*/
@media (min-width: 769px) {
  .state-page .cbody-02 .part-01 ul li {
    width: 20%;
  }
}
@media (min-width: 769px) {
  .state-page .cbody-02 .part-01 ul li:lang(en) {
    padding: 15px 13px;
  }
}

.ir-youtube-page .content-body .board-list-wrap .board-list .link {
  position: relative;
  width: 100%;
  font-size: 0;
  /* &:hover, &:focus {
    background-color: #fff;
  } */
}
@media (max-width: 768px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link {
    padding: 16px 0;
  }
}
@media (min-width: 769px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link {
    padding: 35px 20px;
  }
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
@media (max-width: 768px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap {
    width: -webkit-calc(100% - 144px);
    width: -moz-calc(100% - 144px);
    width: calc(100% - 144px);
    padding-right: 33px;
    margin-top: -3px;
  }
}
@media (min-width: 769px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap {
    width: -webkit-calc(100% - 360px);
    width: -moz-calc(100% - 360px);
    width: calc(100% - 360px);
    padding-right: 135px;
    margin-top: -5px;
  }
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .title {
  font-family: "SynergyDisplay";
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #141414;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .title {
    font-size: 16px;
    line-height: 19px;
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 769px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .title {
    font-size: 30px;
    line-height: 38px;
    -webkit-line-clamp: 2;
  }
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .summary, .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .reg-date {
  font-weight: 400;
  letter-spacing: -0.025em;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .summary, .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .reg-date {
    font-size: 11px;
    line-height: 14px;
    color: #141414;
  }
}
@media (min-width: 769px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .summary, .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .reg-date {
    font-size: 15px;
    line-height: 24px;
    color: #4c4c4c;
  }
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .summary {
  height: 52px;
}
@media (max-width: 768px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .summary {
    margin-top: 12px;
  }
}
@media (min-width: 769px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .summary {
    margin-top: 17px;
  }
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .reg-date {
  position: absolute;
  text-align: left;
}
@media (max-width: 768px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .reg-date {
    left: 0;
    bottom: 13px;
  }
}
@media (min-width: 769px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .text-wrap .reg-date {
    left: 20px;
    bottom: 33px;
  }
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .thumbnail-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .thumbnail-wrap {
    top: 0;
    width: 144px;
    height: 81px;
  }
}
@media (min-width: 769px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .thumbnail-wrap {
    width: 360px;
    height: 202px;
  }
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .thumbnail-wrap .thumbnail {
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .thumbnail-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.ir-youtube-page .content-body .board-list-wrap .board-list .link .thumbnail-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon-play-btn.png");
}
@media (max-width: 768px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .thumbnail-wrap::after {
    -webkit-background-size: 24px auto;
            background-size: 24px auto;
  }
}
@media (min-width: 769px) {
  .ir-youtube-page .content-body .board-list-wrap .board-list .link .thumbnail-wrap::after {
    -webkit-background-size: 58px auto;
            background-size: 58px auto;
  }
}

@media (max-width: 768px) {
  .audit-report-page .content-body .board-list-wrap {
    margin-top: 10px !important;
  }
}

@media (max-width: 768px) {
  .annual-report-page .content-header .type-txt, .ir-faq-page .content-header .type-txt {
    margin-bottom: 26px;
  }
}

/* 공시정보 시작 // */
.disclosure-page .content-body .iframe-wrap {
  max-width: 745px;
  overflow: auto;
}
.disclosure-page .contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 745px;
  padding: 0px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0;
}
.disclosure-page .contact .icon {
  color: #555;
  font-family: "Noto Sans CJK KR";
  font-size: 7px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.1px; /* 315.714% */
  letter-spacing: 0;
}
.disclosure-page .contact .name {
  display: inline-block;
  margin-left: 3px;
  color: #555;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0;
}
.disclosure-page .contact .text {
  display: inline-block;
  margin-left: 4px;
  color: #555;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0;
}
.disclosure-page .contact .text a {
  color: #555;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0;
  text-decoration: none;
}

/* // 끝 공시정보 */
.stock-price-page .contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #efefef;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0;
}
.stock-price-page .contact .icon {
  color: #555;
  font-family: "Noto Sans CJK KR";
  font-size: 7px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.1px; /* 315.714% */
  letter-spacing: 0;
}
.stock-price-page .contact .name {
  display: inline-block;
  margin-left: 3px;
  color: #555;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0;
}
.stock-price-page .contact .text {
  display: inline-block;
  margin-left: 4px;
  color: #555;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0;
}
.stock-price-page .contact .text a {
  color: #555;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0;
  text-decoration: none;
}

/* Tum 컨텐츠 추가 //*/
@media (max-width: 768px) {
  .tum-page .content-body.cbody-06 .part-wrap {
    padding-bottom: 30px;
    border-bottom: 1px solid #c9c9c9;
  }
}
@media (max-width: 359px) {
  .tum-page .content-body.cbody-06 .part-02 .tab-header-2 ul li + li {
    margin-left: 4px;
  }
}
.tum-page .content-body.cbody-06 .part-02 .tab-body-2 .box .date {
  font-weight: 400;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-06 .part-02 .tab-body-2 .box .date {
    font-size: 24px;
  }
}
.tum-page .content-body.cbody-07 ul {
  font-size: 0;
}
.tum-page .content-body.cbody-07 ul li {
  float: none;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-07 ul li .title {
    font-size: 16px;
  }
}
.tum-page .content-body.cbody-08 * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.tum-page .content-body.cbody-08 .section-inner {
  position: relative;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .img-wrap {
    position: relative;
    top: auto;
    width: 100%;
    height: 0;
    margin-top: 25px;
    padding-bottom: 53%;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .img-wrap {
    position: absolute;
    top: 110px;
    right: 0;
    width: 475px;
    height: 266px;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .img-wrap img {
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .txt-wrap {
    width: 100%;
    margin-top: 30px;
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .txt-wrap {
    width: 465px;
    margin-top: 30px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .txt-wrap .desc-nor {
    margin-top: 15px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .txt-wrap .desc-nor {
    margin-top: 10px;
  }
}
.tum-page .content-body.cbody-08 .desc-wrap {
  position: relative;
  font-size: 0;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .desc-wrap {
    max-width: 330px;
    margin: 20px auto 10px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .desc-wrap {
    height: 167px;
    margin-top: 25px;
  }
}
.tum-page .content-body.cbody-08 .desc-wrap .circle-wrap {
  display: inline-table;
  border-radius: 57.5px;
  vertical-align: middle;
  background: #f4f4f4;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .desc-wrap .circle-wrap {
    position: relative;
    width: 100%;
    height: 105px;
    padding: 0 0 0 106px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .desc-wrap .circle-wrap {
    width: 475px;
    height: 115px;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .desc-wrap .circle-wrap ~ .circle-wrap {
    margin-top: 5px;
  }
}
.tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .circle {
  display: inline-table;
  border-radius: 100%;
  background: #ff7902;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .circle {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 75px;
    height: 75px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .circle {
    width: 115px;
    height: 115px;
  }
}
.tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .circle.red {
  background: #e51937;
}
.tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .circle.red .txt {
  letter-spacing: 0;
}
.tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .circle .txt {
  display: table-cell;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
  vertical-align: middle;
  text-align: center;
  color: #fff;
}
.tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .desc {
  display: table-cell;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.615384;
  letter-spacing: -0.025em;
  vertical-align: middle;
  color: #666;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .desc {
    text-align: left;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .desc-wrap .circle-wrap .desc {
    width: 360px;
    padding-right: 25px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .desc-wrap .arrow {
    display: block;
    position: absolute;
    top: 96px;
    left: 44px;
    z-index: 1;
    height: 25px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .desc-wrap .arrow {
    display: inline-block;
    width: 56px;
    margin: 0 13px 0 17px;
    vertical-align: middle;
  }
}
.tum-page .content-body.cbody-08 .desc-wrap .tip {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #666;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-08 .desc-wrap .tip {
    display: block;
    padding-left: 25px;
    margin-top: 20px;
    line-height: 1.333333;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-08 .desc-wrap .tip {
    position: absolute;
    right: 0;
    top: 150px;
    line-height: 1.846153;
  }
}
.tum-page .content-body.cbody-09 * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.tum-page .content-body.cbody-09 .desc {
  margin-top: 25px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #001414;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .desc {
    font-size: 15px;
    line-height: 1.533333;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .desc {
    font-size: 18px;
    line-height: 1.333333;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part-wrap {
    margin-top: 28px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part-wrap {
    margin-top: 36px;
  }
}
.tum-page .content-body.cbody-09 .part {
  border-top: 1px solid #a5a5a5;
  font-size: 0;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part {
    padding: 26px 0 20px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part {
    padding: 26px 0;
  }
}
.tum-page .content-body.cbody-09 .part1 .cont-wrap {
  font-size: 0;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap {
    width: 100%;
    max-width: 330px;
    height: 441px;
    padding: 0 0 0 117px;
    margin: 30px auto 0;
    background: url("/images/pr/tum/tum_dl-cont-09-part01_sm.jpg") left 0 top 0/contain no-repeat;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap {
    height: 157px;
    padding: 65px 0 0;
    margin-bottom: 8px;
    background: url("/images/pr/tum/tum_dl-cont-09-part01_lg.png") left 0 top 0/1040px auto no-repeat;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .cont-vr {
    height: 132px;
    padding: 45px 0 0 0;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .cont-vr {
    display: inline-block;
    width: 423px;
    padding: 0 0 0 145px;
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .cont-ar {
    height: 132px;
    padding: 55px 0 0 0;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .cont-ar {
    display: inline-block;
    width: 423px;
    padding: 13px 0 0 160px;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .icon {
    display: inline-block;
    height: 64px;
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .job-list {
    font-size: 0;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .job-list {
    display: inline-block;
    margin: 0;
    vertical-align: top;
  }
}
.tum-page .content-body.cbody-09 .part1 .cont-wrap .job-list .job-item {
  position: relative;
  padding-left: 11px;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.666666;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .job-list .job-item {
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part1 .cont-wrap .job-list .job-item {
    display: inline-block;
    width: 128px;
  }
}
.tum-page .content-body.cbody-09 .part1 .cont-wrap .job-list .job-item:before {
  content: "";
  display: block;
  position: absolute;
  top: -webkit-calc(50% - 2px);
  top: -moz-calc(50% - 2px);
  top: calc(50% - 2px);
  left: 0;
  width: 3px;
  height: 3px;
  background: #666;
}
.tum-page .content-body.cbody-09 .part2 .cont-wrap {
  font-size: 0;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap {
    max-width: 350px;
    height: 688px;
    padding-left: 171px;
    margin: 30px auto 0;
    background: url("/images/pr/tum/tum_dl-cont-09-part02_sm.jpg") 0 0/161px auto no-repeat;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap {
    height: 433px;
    padding: 304px 0 0 32px;
    margin-top: 30px;
    background: url("/images/pr/tum/tum_dl-cont-09-part02_lg.jpg") 0 0/contain no-repeat;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont {
    height: 172px;
    padding-top: 40px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont {
    display: inline-block;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont:nth-child(1) {
    width: 262px;
    margin-top: -60px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont:nth-child(2) {
    width: 267px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont:nth-child(3) {
    width: 256px;
    margin-top: -60px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont:nth-child(4) {
    width: 223px;
  }
}
.tum-page .content-body.cbody-09 .part2 .cont-wrap .cont .tit {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #141414;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont .tit {
    line-height: 1.333333;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont .tit {
    margin: 22px 0 10px;
    line-height: 1;
    white-space: nowrap;
  }
}
.tum-page .content-body.cbody-09 .part2 .cont-wrap .cont .desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.538461;
  letter-spacing: -0.05em;
  color: #666;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont .desc {
    margin-top: 9px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont .desc {
    margin: 0;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part2 .cont-wrap .cont .desc br {
    display: none;
  }
}
.tum-page .content-body.cbody-09 .part3 .cont-wrap {
  font-size: 0;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap {
    margin: 0 -15px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap {
    margin: 26px 0 64px;
    background: url("/images/pr/tum/tum_dl-cont-09-part03_lg.png") right 0 bottom 0/217px auto no-repeat;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont {
    position: relative;
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont {
    display: inline-block;
    position: relative;
    width: 385px;
    vertical-align: top;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont + .cont {
    margin-left: 45px;
  }
}
.tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .flag {
  display: block;
  position: absolute;
  top: 0;
  width: 60px;
  height: 75px;
  padding: 30px 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .flag {
    left: 15px;
    background: url("/images/pr/tum/tum_dl-icon-flag_sm.png") left top/60px auto no-repeat;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .flag {
    left: 0;
    background: url("/images/pr/tum/tum_dl-icon-flag_lg.png") left top/60px auto no-repeat;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap {
    position: absolute;
    top: 0;
    left: 90px;
  }
}
.tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap .tit {
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #141414;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap .tit {
    display: block;
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap .tit {
    position: absolute;
    top: 5px;
    left: 79px;
    font-size: 18px;
  }
}
.tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap .tit .strong {
  font-weight: 700;
}
.tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap .date {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #666;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap .date {
    display: block;
    margin-top: 8px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap .date {
    position: absolute;
    top: 9px;
    right: 0;
  }
}
.tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .tit-wrap .date .strong {
  font-weight: 700;
}
.tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .img {
  display: block;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .img {
    padding-top: 44px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-09 .part3 .cont-wrap .cont .img {
    padding: 39px 0 0 24px;
  }
}
.tum-page .content-body.cbody-10 {
  text-align: center;
  background: #f7f7f7;
}
.tum-page .content-body.cbody-10 * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .section-inner {
    padding-bottom: 75px;
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-10 .section-inner {
    padding-bottom: 87px;
  }
}
.tum-page .content-body.cbody-10 h4 {
  text-align: left;
}
.tum-page .content-body.cbody-10 .progress-wrap {
  font-size: 0;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .progress-wrap {
    margin: 30px auto;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-10 .progress-wrap {
    margin: 35px 0 45px;
  }
}
.tum-page .content-body.cbody-10 .progress-wrap .circle {
  display: inline-table;
  border-radius: 100%;
  vertical-align: middle;
  background: #4c4c4c;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .progress-wrap .circle {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-10 .progress-wrap .circle {
    width: 140px;
    height: 140px;
  }
}
.tum-page .content-body.cbody-10 .progress-wrap .circle .txt {
  display: table-cell;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .progress-wrap .circle .txt {
    padding-top: 4px;
    font-size: 15px;
    line-height: 1.2;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-10 .progress-wrap .circle .txt {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .progress-wrap hr {
    height: 10px;
  }
}
.tum-page .content-body.cbody-10 .progress-wrap .arrow {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .progress-wrap .arrow {
    width: 21px;
    height: 7px;
    margin: 0 4px;
    background: url("/images/pr/tum/tum_dl-icon-arrow_sm.png") center center/contain no-repeat;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-10 .progress-wrap .arrow {
    width: 57px;
    height: 7px;
    margin: 0 13px 0 15px;
    background: url("/images/pr/tum/tum_dl-icon-arrow_lg.png") center center/contain no-repeat;
  }
}
.tum-page .content-body.cbody-10 .link {
  display: inline-block;
  position: relative;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  background: #e51937;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .link {
    height: 36px;
    padding: 0 25px 0 53px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 34px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-10 .link {
    height: 55px;
    padding: 0 31px 0 68px;
    border-radius: 28px;
    font-size: 18px;
    line-height: 53px;
  }
}
.tum-page .content-body.cbody-10 .link::before {
  content: "";
  display: block;
  position: absolute;
  background: url("/images/pr/tum/tum_dl-icon-mail_lg.png") 0 0/contain no-repeat;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .link::before {
    top: 10px;
    left: 25px;
    width: 23px;
    height: 15px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-10 .link::before {
    top: 19px;
    left: 31px;
    width: 25px;
    height: 17px;
  }
}
.tum-page .content-body.cbody-10 .desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.05em;
  text-align: center;
  color: #666;
}
@media (max-width: 768px) {
  .tum-page .content-body.cbody-10 .desc {
    margin-top: 18px;
  }
}
@media (min-width: 769px) {
  .tum-page .content-body.cbody-10 .desc {
    margin-top: 30px;
  }
}

/* //Tum 컨텐츠 추가 */
/*기타 페이지*/
.system-page {
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
@media (min-width: 769px) {
  .system-page {
    min-height: -webkit-calc(100vh - 346px);
    min-height: -moz-calc(100vh - 346px);
    min-height: calc(100vh - 346px);
  }
}
.system-page * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.system-page .wrap {
  width: 100%;
}
@media (max-width: 768px) {
  .system-page .wrap {
    padding: 110px 15px 150px;
  }
}
@media (min-width: 769px) {
  .system-page .wrap {
    padding: 220px 0;
  }
}
.system-page .check-figure {
  margin: 0 auto;
}
.system-page .check-figure .img {
  display: block;
  width: 154px;
  margin: 0 auto;
}
.system-page .check-figure .caption .tit {
  margin-top: 30px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.05em;
  vertical-align: top;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .system-page .check-figure .caption .tit {
    max-width: 330px;
    margin: 30px auto 0;
    font-size: 28px;
    letter-spacing: -0.1em;
  }
  .system-page .check-figure .caption .tit:lang(en) {
    max-width: 400px;
  }
}
@media (min-width: 769px) {
  .system-page .check-figure .caption .tit {
    font-size: 36px;
  }
}
.system-page .check-figure .caption .tit:lang(en) {
  letter-spacing: -0.01em;
}
.system-page .check-figure .caption .date {
  margin-top: 30px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.025em;
  vertical-align: top;
  color: #666;
}
@media (max-width: 359px) {
  .system-page .check-figure .caption .date {
    letter-spacing: -0.05em;
  }
}
@media (max-width: 768px) {
  .system-page .check-figure .caption .date {
    font-size: 20px;
  }
}
@media (min-width: 769px) {
  .system-page .check-figure .caption .date {
    font-size: 21px;
  }
}
.system-page .btns {
  margin-top: 50px;
  font-size: 0;
}
.system-page .btns .btn {
  display: inline-block;
  width: 150px;
  border: 1px solid #4c4c4c;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.05em;
  vertical-align: top;
  color: #1a1a1a;
  background: #fff;
}
@media (max-width: 359px) {
  .system-page .btns .btn {
    width: 130px;
  }
}
.system-page .btns .btn.home {
  border: 1px solid #e51937;
  color: #fff;
  background: #e51937;
}
.system-page .btns .btn + .btn {
  margin-left: 15px;
}

/*아이폰 버그 픽스*/
@media (max-width: 768px) {
  .device-model-iphone .custom-select-wrap select {
    font-size: 16px;
  }
  .device-model-iphone .board-detail-type .board-detail-body a {
    word-break: break-word;
    white-space: pre-line;
  }
  .device-model-iphone .board-search input {
    font-size: 16px;
  }
  .device-model-iphone .board-search .custom-select-wrap select {
    font-size: 16px;
  }
  .device-model-iphone .csr-participate-contact-page input, .device-model-iphone .csr-participate-contact-page textarea {
    font-size: 16px !important;
  }
  .device-model-iphone .irmeeting-page .content-body.irmeeting-reg .regist-info .item-group .item input[type=text] {
    font-size: 16px;
  }
}
/*SK텔레콤 사옥 방문객 개인정보 처리방침 mib201207 추가*/
.visitor-page * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.visitor-page .content-body {
  padding: 49px 0 87px;
}
.visitor-page .point {
  color: #f51937;
}
.visitor-page .visitor-h4 {
  margin-bottom: 11px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
  color: #141414;
}
@media (max-width: 768px) {
  .visitor-page .visitor-h4 {
    font-size: 15px;
    font-weight: 700;
  }
}
.visitor-page .visitor-h4 ~ .visitor-h4 {
  margin-top: 51px;
}
@media (max-width: 768px) {
  .visitor-page .visitor-h4 ~ .visitor-h4 {
    margin-top: 31px;
  }
}
.visitor-page .visitor-ul {
  padding: 0;
}
.visitor-page .visitor-ul .visitor-li {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.visitor-page .visitor-ul .visitor-li.bullet {
  position: relative;
  padding: 0 0 0 29px;
  margin-top: 11px;
}
@media (max-width: 768px) {
  .visitor-page .visitor-ul .visitor-li.bullet {
    padding-left: 23px;
  }
}
.visitor-page .visitor-ul .visitor-li.bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 21px;
  width: 3px;
  height: 3px;
  background: #4c4c4c;
}
@media (max-width: 768px) {
  .visitor-page .visitor-ul .visitor-li.bullet::before {
    left: 15px;
  }
}
.visitor-page .visitor-ul .visitor-li ~ .visitor-li {
  margin-top: 10px;
}
.visitor-page .visitor-ul .inner-ul {
  padding: 0 0 0 21px;
}
@media (max-width: 768px) {
  .visitor-page .visitor-ul .inner-ul {
    padding-left: 23px;
  }
}
.visitor-page .visitor-ul .inner-ul .inner-li {
  margin-top: 13px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.visitor-page .visitor-ul .inner-ul .inner-li .tit {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.visitor-page .visitor-ul .inner-ul .inner-li .txt {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.visitor-page .visitor-ul .inner-ul .inner-li .txt ~ .txt {
  margin-top: 10px;
}
.visitor-page .visitor-ul .inner-ul .inner-li .txt .dash {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.visitor-page .visitor-ul .inner-ul .inner-li .txt .dash ~ .dash {
  margin-top: 0;
}
.visitor-page .visitor-ul .inner-ul .inner-li .bullet {
  position: relative;
  padding: 0 0 0 29px;
  margin-top: 11px;
}
@media (max-width: 768px) {
  .visitor-page .visitor-ul .inner-ul .inner-li .bullet {
    padding-left: 8px;
  }
}
.visitor-page .visitor-ul .inner-ul .inner-li .bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 21px;
  width: 3px;
  height: 3px;
  background: #4c4c4c;
}
@media (max-width: 768px) {
  .visitor-page .visitor-ul .inner-ul .inner-li .bullet::before {
    left: 0px;
  }
}
.visitor-page .visitor-table {
  width: 100%;
  padding: 0 0 0 21px;
}
@media (max-width: 768px) {
  .visitor-page .visitor-table {
    padding-left: 23px;
  }
}
.visitor-page .visitor-table + .visitor-table .table-row.thead {
  border-top: 0;
}
.visitor-page .visitor-table:first-child {
  margin-top: 13px;
}
.visitor-page .visitor-table:last-child {
  margin-bottom: 17px;
}
.visitor-page .visitor-table .table-title {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.visitor-page .visitor-table .table-title.bullet {
  position: relative;
  padding: 0 0 0 9px;
  margin-top: 11px;
}
.visitor-page .visitor-table .table-title.bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0px;
  width: 3px;
  height: 3px;
  background: #4c4c4c;
}
.visitor-page .visitor-table .table-p {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #4c4c4c;
}
.visitor-page .visitor-table .table-row {
  display: table;
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
  font-size: 0;
}
.visitor-page .visitor-table .table-row.thead {
  border-top: 1px solid #a5a5a5;
}
.visitor-page .visitor-table .table-row .div10-10 {
  width: 100%;
}
.visitor-page .visitor-table .table-row .div10-9 {
  width: 90%;
}
.visitor-page .visitor-table .table-row .div10-8 {
  width: 80%;
}
.visitor-page .visitor-table .table-row .div10-7 {
  width: 70%;
}
.visitor-page .visitor-table .table-row .div10-6 {
  width: 60%;
}
.visitor-page .visitor-table .table-row .div10-5 {
  width: 50%;
}
.visitor-page .visitor-table .table-row .div10-4 {
  width: 40%;
}
.visitor-page .visitor-table .table-row .div10-3 {
  width: 30%;
}
.visitor-page .visitor-table .table-row .div10-2 {
  width: 20%;
}
.visitor-page .visitor-table .table-row .div10-1 {
  width: 10%;
}
.visitor-page .visitor-table .table-th {
  display: table-cell;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  vertical-align: middle;
  color: #333;
}
.visitor-page .visitor-table .table-th ~ .table-th {
  border-left: 1px solid #dbdbdb;
}
@media (max-width: 768px) {
  .visitor-page .visitor-table .table-th ~ .table-th {
    border-left: 0;
  }
}
.visitor-page .visitor-table .table-td {
  display: table-cell;
  padding: 8px 0 12px;
  font-size: 13px;
  line-height: 21px;
  text-align: center;
  vertical-align: middle;
  color: #666;
}
.visitor-page .visitor-table .table-td .txt {
  padding-left: 37px;
  font-size: 13px;
  line-height: 21px;
  text-align: left;
  vertical-align: middle;
  color: #666;
}
.visitor-page .visitor-table .table-td .txt.bullet {
  position: relative;
}
.visitor-page .visitor-table .table-td .txt.bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 30px;
  width: 3px;
  height: 3px;
  background: #4c4c4c;
}
.visitor-page .visitor-table .table-td .txt.indent {
  padding-left: 47px;
  text-indent: -10px;
}
.visitor-page .visitor-table .table-td ~ .table-td {
  border-left: 1px solid #dbdbdb;
}
@media (max-width: 768px) {
  .visitor-page .visitor-table .table-td ~ .table-td {
    border-left: 0;
  }
}
.visitor-page .visitor-table .align-left {
  text-align: left;
}

/* mib211101 게시판 페이지 제목 여백 // */
@media (max-width: 768px) {
  .board-detail-type .content-header .section-inner h3.type-txt {
    margin-bottom: 35px;
  }
}
@media (min-width: 769px) {
  .board-detail-type .content-header .section-inner h3.type-txt {
    margin-bottom: 59px;
  }
}

@media (max-width: 768px) {
  .board-list-type .content-header .section-inner h3.type-txt {
    margin-bottom: 35px;
  }
}
@media (min-width: 769px) {
  .board-list-type .content-header .section-inner h3.type-txt {
    margin-bottom: 59px;
  }
}
@media (max-width: 768px) {
  .board-list-type.notice-page .content-header .section-inner h3.type-txt {
    margin-bottom: 15px;
  }
}
@media (min-width: 769px) {
  .board-list-type.notice-page .content-header .section-inner h3.type-txt {
    margin-bottom: 2px;
  }
}
.board-list-type.notice-page .content-body .section-inner h4.type-txt {
  padding: 32px 0 10px !important;
}

/* // mib211101 게시판 페이지 제목 여백 */
/* 사업 제휴 문의 페이지 */
.business-page:lang(ko) *, .business-page:lang(ko) *:after, .business-page:lang(ko) *:before {
  font-family: "SynergyDisplay";
}
@media (max-width: 768px) {
  .business-page .business-section {
    padding: 26px 0 15px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section {
    padding: 48px 0 43px;
  }
}
@media (max-width: 768px) {
  .business-page .business-section.business-esg {
    padding-bottom: 100px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section.business-esg {
    padding-bottom: 200px;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .type-txt {
    margin-bottom: 8px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .type-txt {
    margin-bottom: 14px;
  }
}
.business-page .business-section .type-txt .light {
  font-weight: 300;
}
.business-page .business-section .desc {
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #666;
  color: #202021;
}
@media (max-width: 768px) {
  .business-page .business-section .desc {
    font-size: 13px;
    line-height: 21px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .desc {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .desc:lang(en) {
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .desc:lang(en) {
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .desc {
    font-family: "Noto Sans KR";
    margin-bottom: 15px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .desc {
    margin-bottom: 23px;
  }
}
.business-page .business-section .desc:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .business-page .business-section .desc:lang(en) {
    line-height: 20px;
  }
}
.business-page .business-section .business-content {
  font-size: 0;
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item {
    height: 110px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item {
    display: inline-block;
    width: 480px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item:lang(en) {
    height: auto;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item:lang(en) {
    width: 500px;
    height: 170px;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item + .content-item {
    margin-top: 15px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item + .content-item {
    margin-left: 80px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item + .content-item:lang(en) {
    margin-left: 40px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item + .content-item .item-link .item-text .item-btn {
    margin: 0 20px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item + .content-item .item-link .item-text .item-btn:lang(en) {
    margin: 0 30px;
  }
}
.business-page .business-section .business-content .content-item .item-link {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #b5b5b5;
  text-align: center;
  overflow: hidden;
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  transition: border 0.3s;
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link {
    border-radius: 15px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link {
    border-radius: 30px;
  }
}
.business-page .business-section .business-content .content-item .item-link:hover, .business-page .business-section .business-content .content-item .item-link:focus {
  border: 1px solid #575757;
}
.business-page .business-section .business-content .content-item .item-link .item-img {
  display: inline-block;
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-img {
    position: relative;
    width: 37%;
    padding: 0 10px;
    vertical-align: middle;
  }
}
@media (max-width: 768px) and (max-width: 374px) {
  .business-page .business-section .business-content .content-item .item-link .item-img {
    width: 27%;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link .item-img {
    width: 180px;
    height: 100%;
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-img:lang(en) {
    width: 31%;
  }
}
@media (max-width: 768px) and (max-width: 374px) {
  .business-page .business-section .business-content .content-item .item-link .item-img:lang(en) {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-img img {
    width: 87px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link .item-img img {
    height: 138px;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-img img:lang(en) {
    width: 71px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link .item-img img:lang(en) {
    margin: 15px 0;
  }
}
.business-page .business-section .business-content .content-item .item-link .item-text {
  display: inline-block;
  height: 100%;
  background: #f6f6f6;
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-text {
    width: 63%;
    vertical-align: middle;
  }
}
@media (max-width: 768px) and (max-width: 374px) {
  .business-page .business-section .business-content .content-item .item-link .item-text {
    width: 73%;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link .item-text {
    width: -webkit-calc(100% - 180px);
    width: -moz-calc(100% - 180px);
    width: calc(100% - 180px);
    vertical-align: top;
  }
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-text:lang(en) {
    width: 69%;
  }
}
@media (max-width: 768px) and (max-width: 374px) {
  .business-page .business-section .business-content .content-item .item-link .item-text:lang(en) {
    width: 75%;
  }
}
.business-page .business-section .business-content .content-item .item-link .item-text .item-name {
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-name {
    padding: 19px 0 8px;
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-name {
    padding: 28px 0 14px;
    font-size: 20px;
  }
}
.business-page .business-section .business-content .content-item .item-link .item-text .item-name:lang(en) {
  font-weight: 500;
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-name:lang(en) {
    padding: 8px 0 4px;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-name:lang(en) {
    padding: 24px 0 16px;
  }
}
.business-page .business-section .business-content .content-item .item-link .item-text .item-btn {
  border: 1px solid #202021;
  border-radius: 100px;
  font-weight: 400;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-btn {
    width: -webkit-calc(100% - 35px);
    width: -moz-calc(100% - 35px);
    width: calc(100% - 35px);
    min-width: 190px;
    max-width: 250px;
    padding-right: 15px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 30px;
    background: url("../images/contact/business-contact-btn-icon_sm.png") center right 9px/6px no-repeat;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-btn {
    padding-right: 18px;
    margin: 0 30px;
    font-size: 16px;
    line-height: 38px;
    background: url("../images/contact/business-contact-btn-icon_lg.png") center right 10px/auto no-repeat;
  }
}
.business-page .business-section .business-content .content-item .item-link .item-text .item-btn:lang(en) {
  font-weight: 500;
}
@media (max-width: 768px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-btn:lang(en) {
    width: -webkit-calc(100% - 26px);
    width: -moz-calc(100% - 26px);
    width: calc(100% - 26px);
    padding: 7px 0 7px 0;
    margin-bottom: 14px;
    border-radius: 15px;
    line-height: 17px;
    background-position: center right 9px;
  }
}
@media (max-width: 768px) and (max-width: 374px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-btn:lang(en) {
    padding: 7px 15px 7px 0;
  }
}
@media (min-width: 769px) {
  .business-page .business-section .business-content .content-item .item-link .item-text .item-btn:lang(en) {
    padding: 11px 18px 11px 0;
    border-radius: 20px;
    margin: 0 40px;
    line-height: 23px;
  }
}

/* 231117 ESG자료실(persist) & 애뉴얼리포트(creport) 페이지 내 썸네일형 게시판 스타일 layout_t1.css 에서 옮겨 옴 */
.board-img-list-wrap {
  overflow: hidden;
}
.board-img-list-wrap > ul {
  position: relative;
  width: 1104px;
  bottom: -1px;
  margin-left: -32px;
  border-top: 1px solid #a5a5a5;
  overflow: hidden;
}
@media (max-width: 768px) {
  .board-img-list-wrap > ul {
    width: 100%;
    bottom: 0;
    margin-left: 0;
  }
}
.board-img-list-wrap > ul > li {
  float: left;
  width: 368px;
  padding: 25px 32px 29px;
  border-bottom: 1px solid #d1d1d1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .board-img-list-wrap > ul > li {
    float: none;
    width: 100%;
    padding: 25px 0 29px;
  }
}
.board-img-list-wrap .img-wrap {
  position: relative;
}
.board-img-list-wrap .img-wrap img {
  position: relative;
  width: 120px;
  height: 140px;
  z-index: 1;
}
@media (max-width: 768px) {
  .board-img-list-wrap .img-wrap img {
    width: 144px;
    height: 168px;
  }
}
@media (max-width: 359px) {
  .board-img-list-wrap .img-wrap img {
    width: 106px;
    height: auto;
  }
}
.board-img-list-wrap .img-wrap:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 4px;
  left: 4px;
  background-color: #e5e5e5;
}
.board-img-list-wrap .year {
  height: 25px;
  font-size: 30px;
  line-height: 120%;
  color: #141414;
}
.board-img-list-wrap .year img {
  width: auto;
  height: 100%;
  vertical-align: top;
}
.board-img-list-wrap .box-body {
  position: relative;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .board-img-list-wrap .box-body {
    margin-top: 15px;
  }
}
@media (max-width: 359px) {
  .board-img-list-wrap .box-body {
    height: 140px;
  }
}
.board-img-list-wrap .box-body > * {
  float: left;
}
.board-img-list-wrap .box-body span {
  display: inline-block;
  font-size: 13px;
  line-height: 28px;
  color: #141414;
  letter-spacing: -0.05em;
}
.board-img-list-wrap .box-body ul {
  position: absolute;
  left: 120px;
  bottom: 0;
}
@media (max-width: 768px) {
  .board-img-list-wrap .box-body ul {
    left: auto;
    right: 0;
  }
}
.board-img-list-wrap .box-body ul li + li {
  margin-top: 9px;
}
.board-img-list-wrap .link-wrap {
  float: right;
  display: inline-block;
  width: 82px;
}
.board-img-list-wrap .link-wrap a + a {
  margin-top: 9px;
}
.board-img-list-wrap .float-box {
  width: 184px;
  padding-left: 12px;
  font-size: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.board-img-list-wrap .float-box > * {
  vertical-align: top;
}

.board-img-list-wrap2 {
  border-top: 1px solid #A5A5A5;
  margin-top: 36px;
  overflow: hidden;
}
.board-img-list-wrap2 .item-list {
  position: relative;
  bottom: -1px;
  padding: 0;
  font-size: 0;
}
@media (max-width: 768px) {
  .board-img-list-wrap2 .item-list {
    bottom: 0;
  }
}
@media (min-width: 769px) {
  .board-img-list-wrap2 .item-list {
    display: grid;
    grid-template-columns: auto auto auto;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.board-img-list-wrap2 .item-list .item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 380px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 0 29px 0;
  border-bottom: 1px solid #D1D1D1;
}
@media (max-width: 768px) {
  .board-img-list-wrap2 .item-list .item {
    width: 100%;
    padding: 25px 0 30px;
  }
}
@media (min-width: 769px) {
  .board-img-list-wrap2 .item-list .item:nth-child(3n) {
    width: 280px;
  }
}
.board-img-list-wrap2 .item-list .item .year {
  height: 25px;
}
.board-img-list-wrap2 .item-list .item .year img {
  height: 25px;
}
@media (max-width: 768px) {
  .board-img-list-wrap2 .item-list .item .cont-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.board-img-list-wrap2 .item-list .item .cont-box .thumb {
  position: relative;
  width: 274px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .board-img-list-wrap2 .item-list .item .cont-box .thumb {
    width: 222px;
  }
}
@media (max-width: 359px) {
  .board-img-list-wrap2 .item-list .item .cont-box .thumb {
    width: 200px;
  }
}
.board-img-list-wrap2 .item-list .item .cont-box .thumb img {
  position: relative;
  width: 270px;
}
@media (max-width: 768px) {
  .board-img-list-wrap2 .item-list .item .cont-box .thumb img {
    width: 218px;
  }
}
.board-img-list-wrap2 .item-list .item .cont-box .thumb:before {
  content: "";
  position: absolute;
  display: block;
  width: 265px;
  height: 183px;
  top: 9px;
  left: 9px;
  background: #E5E5E5;
}
@media (max-width: 768px) {
  .board-img-list-wrap2 .item-list .item .cont-box .thumb:before {
    width: 208px;
    height: 144px;
    left: 14px;
    top: 13px;
  }
}
@media (max-width: 359px) {
  .board-img-list-wrap2 .item-list .item .cont-box .thumb:before {
    width: 198px;
    height: 134px;
  }
}
.board-img-list-wrap2 .item-list .item .cont-box .download-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .board-img-list-wrap2 .item-list .item .cont-box .download-group {
    gap: 24px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.board-img-list-wrap2 .item-list .item .cont-box .download-group .download-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 274px;
}
@media (max-width: 768px) {
  .board-img-list-wrap2 .item-list .item .cont-box .download-group .download-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px 0;
    width: 82px;
  }
}
.board-img-list-wrap2 .item-list .item .cont-box .download-group .label {
  color: #141414;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1; /* 215.385% */
  letter-spacing: -0.65px;
}
/* 푸터 페이지 공통 시작 // */
.footer-page a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
@media (max-width: 768px) {
  .footer-page h5.h5-nor {
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .footer-page h5.h5-nor {
    letter-spacing: -0.025em;
  }
  .footer-page h5.h5-nor:lang(en) {
    letter-spacing: 0;
    line-height: 1.333333;
  }
}
.footer-page h6.h6-nor {
  line-height: 20px;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: #141414;
}
@media (max-width: 768px) {
  .footer-page h6.h6-nor {
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .footer-page h6.h6-nor {
    font-size: 15px;
  }
}
.footer-page h6.h6-nor:lang(en) {
  letter-spacing: 0;
}
.footer-page .large-desc {
  font-weight: 400;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  .footer-page .large-desc {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.05em;
  }
}
@media (min-width: 769px) {
  .footer-page .large-desc {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.025em;
  }
  .footer-page .large-desc:lang(ko) {
    font-size: 17px;
    line-height: 170%;
  }
}
@media (max-width: 768px) {
  .footer-page .large-desc + .large-desc {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .footer-page .large-desc + .large-desc {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .footer-page .desc-nor-b {
    line-height: 22.5px;
    letter-spacing: -0.05em;
  }
}
@media (min-width: 769px) {
  .footer-page .desc-nor-b {
    line-height: 22.5px;
    letter-spacing: -0.05em;
  }
}
.footer-page .desc-nor-b:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .footer-page .desc-nor-b + .desc-nor-b {
    margin-top: 18px;
  }
}
@media (min-width: 769px) {
  .footer-page .desc-nor-b + .desc-nor-b {
    margin-top: 22px;
  }
}
.footer-page .table-group .table {
  width: 100%;
}
.footer-page .table-group .table thead th {
  border-top: 1px solid #8c8c8c;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #4c4c4c;
  background: #f9f9f9;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .footer-page .table-group .table thead th {
    padding: 12px 10px;
    border-bottom: 1px solid #d0d0d0;
    font-size: 13px;
    line-height: 15px;
  }
}
@media (min-width: 769px) {
  .footer-page .table-group .table thead th {
    padding: 14px 20px;
    border-bottom: 1px solid #8c8c8c;
    font-size: 15px;
    line-height: 20px;
  }
}
.footer-page .table-group .table tbody td {
  border-bottom: 1px solid #d0d0d0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #1a1a1a;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-page .table-group .table tbody td {
    padding: 8px 10px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .footer-page .table-group .table tbody td {
    padding: 8px 20px 7px;
    line-height: 20px;
  }
}
.footer-page .table-group .table tbody td .num {
  font-size: 10px;
  font-weight: inherit;
  vertical-align: super;
}
.footer-page .table-group .table tbody th {
  text-align: left;
  color: #4c4c4c;
}
@media (min-width: 769px) {
  .footer-page .table-group .table tbody th {
    font-weight: 600;
  }
}
.footer-page .table-group .align-left {
  text-align: left;
}
.footer-page .table-group .align-center {
  text-align: center;
}
.footer-page .table-group .align-right {
  text-align: right;
}
.footer-page .content-body + .content-body {
  padding-top: 55px;
}
.footer-page .content-body:last-of-type {
  padding-bottom: 100px;
}

/* // 푸터 페이지 공통 끝 */
/* 비디오 Policy 시작 // */
.footer-page.video-policy-page .video-policy-intro {
  padding-top: 37px;
}
@media (max-width: 768px) {
  .footer-page.video-policy-page .video-policy-intro {
    padding-top: 31px;
  }
}
.footer-page.video-policy-page .video-policy-term {
  padding-bottom: 200px;
}
.footer-page.video-policy-page .video-policy-term .desc {
  padding: 0 16px;
  color: #4C4C4C;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .footer-page.video-policy-page .video-policy-term .desc {
    font-size: 13px;
    letter-spacing: -0.7px;
  }
}
.footer-page.video-policy-page .video-policy-term .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
  padding: 0;
  margin: 0;
}
.footer-page.video-policy-page .video-policy-term .list .item .list-tit {
  margin-bottom: 12px;
  color: #141414;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .footer-page.video-policy-page .video-policy-term .list .item .list-tit {
    font-size: 14px;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.7px;
  }
}
.footer-page.video-policy-page .video-policy-term .list .item .table-group .table {
  text-align: center;
}
.footer-page.video-policy-page .video-policy-term .list .item .table-group .table th, .footer-page.video-policy-page .video-policy-term .list .item .table-group .table td {
  vertical-align: middle;
}
.footer-page.video-policy-page .video-policy-term .list .item .table-group .table th:nth-child(1), .footer-page.video-policy-page .video-policy-term .list .item .table-group .table td:nth-child(1) {
  width: 33.333333%;
}
.footer-page.video-policy-page .video-policy-term .list .item .table-group .table th:nth-child(2), .footer-page.video-policy-page .video-policy-term .list .item .table-group .table td:nth-child(2) {
  width: 33.333333%;
}
.footer-page.video-policy-page .video-policy-term .list .item .table-group .table th:nth-child(3), .footer-page.video-policy-page .video-policy-term .list .item .table-group .table td:nth-child(3) {
  width: 33.333333%;
}
.footer-page.video-policy-page .video-policy-term .list .item .table-group .table th {
  border-bottom-color: #8c8c8c;
}
.footer-page.video-policy-page .video-policy-term .list .item .table-group .table .total td {
  font-weight: 700;
  color: #141414;
}
.footer-page.video-policy-page .video-policy-term .list .item .ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 0 16px;
  margin-top: 12px;
}
.footer-page.video-policy-page .video-policy-term .list .item .ol .li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  color: #4C4C4C;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: -0.52px;
}
@media (max-width: 768px) {
  .footer-page.video-policy-page .video-policy-term .list .item .ol .li {
    font-size: 13px;
    letter-spacing: -0.7px;
  }
}
.footer-page.video-policy-page .video-policy-term .list .item .ol .li::before {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: inline-block;
  width: 2px;
  height: 2px;
  margin-top: 11px;
  background-color: #141414;
}
@media (max-width: 768px) {
  .footer-page.video-policy-page .video-policy-term .list .item .ol .li::before {
    margin-top: 10px;
  }
}
/* //비디오 Policy 끝 */
@-webkit-keyframes hambergerBounce {
  0% {
    -webkit-transform: scaleX(66.6666%);
            transform: scaleX(66.6666%);
  }
  50% {
    -webkit-transform: scaleX(80%);
            transform: scaleX(80%);
  }
  100% {
    -webkit-transform: scaleX(66.6666%);
            transform: scaleX(66.6666%);
  }
}
@-moz-keyframes hambergerBounce {
  0% {
    -moz-transform: scaleX(66.6666%);
         transform: scaleX(66.6666%);
  }
  50% {
    -moz-transform: scaleX(80%);
         transform: scaleX(80%);
  }
  100% {
    -moz-transform: scaleX(66.6666%);
         transform: scaleX(66.6666%);
  }
}
@keyframes hambergerBounce {
  0% {
    -webkit-transform: scaleX(66.6666%);
       -moz-transform: scaleX(66.6666%);
            transform: scaleX(66.6666%);
  }
  50% {
    -webkit-transform: scaleX(80%);
       -moz-transform: scaleX(80%);
            transform: scaleX(80%);
  }
  100% {
    -webkit-transform: scaleX(66.6666%);
       -moz-transform: scaleX(66.6666%);
            transform: scaleX(66.6666%);
  }
}
/* 메인용 GNB */
body.page-index .gnb.is-active .navigation-header.header-2023::before {
  background-color: #D9D9D9;
  opacity: 1;
}
body.page-index .gnb .navigation-header.header-2023::before {
  background-color: #F7F7F7;
  opacity: 0.15;
}
body.page-index .gnb .navigation-header.header-2023.gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  background: none;
  border-color: #A6A6A6;
}
body.page-index:not(.scroll-active) .gnb:not(.is-active) .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link .icon-chevron .color-white {
  opacity: 1;
}
body.page-index:not(.scroll-active) .gnb:not(.is-active) .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link .icon-chevron .color:not(.color-white) {
  opacity: 0;
}
body.page-index:not(.scroll-active) .gnb:not(.is-active) .gnb-util-nav .support-d1 .support-d1-link .icon-chevron .color-white {
  opacity: 1;
}
body.page-index:not(.scroll-active) .gnb:not(.is-active) .gnb-util-nav .support-d1 .support-d1-link .icon-chevron .color-black {
  opacity: 0;
}
body.page-index.scroll-active .gnb .navigation-header.header-2023::before {
  background-color: #D9D9D9;
  opacity: 1;
}

/* GNB */
.gnb.all-menu-active .navigation-header.header-2023:before {
  background-color: #3c3c41;
}
.gnb.all-menu-active .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group {
  opacity: 0;
}
.gnb.all-menu-active .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  display: none;
}
.gnb.all-menu-active .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap {
  top: 3px;
  background: none;
}
.gnb .navigation-header.header-2023::before {
  background-color: #D9D9D9;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop {
  padding: 0 20px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .logo {
  position: absolute;
  top: 35px;
  left: 20px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap {
  margin: 0;
  padding: 35px 0 0 153px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group:hover .depth1-item:not(:hover) .depth1-h2 .depth1-link {
  color: #202021;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group:hover .depth1-item:not(:hover) .depth1-h2 .depth1-link .icon-chevron .color-black {
  opacity: 1;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group:hover .depth1-item:not(:hover) .depth1-h2 .depth1-link .icon-chevron .color:not(.color-black) {
  opacity: 0;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 {
  margin: 0;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 p.depth1-link {
  cursor: default;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 31.5px 24px;
  color: #202021;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-opened {
  color: #ea002c;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-opened:after {
  content: "";
  position: absolute;
  bottom: 1px;
  z-index: 100;
  height: 2px;
  background: #ea002c;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-opened .icon-chevron .color.color-red {
  opacity: 1;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-opened .icon-chevron .color:not(.color-red) {
  opacity: 0;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link:hover, .gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active {
  color: #ea002c;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link:hover .icon-chevron, .gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active .icon-chevron {
  -webkit-transform: rotateX(180deg) translateY(1px);
     -moz-transform: rotateX(180deg) translateY(1px);
          transform: rotateX(180deg) translateY(1px);
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link:hover .icon-chevron .color.color-red, .gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active .icon-chevron .color.color-red {
  opacity: 1;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link:hover .icon-chevron .color:not(.color-red), .gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.is-active .icon-chevron .color:not(.color-red) {
  opacity: 0;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list01] {
  padding: 20px 20px 24px 37px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list01]:after {
  width: 74.68px;
  left: 37px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list01]:lang(en):after {
  width: 95px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list02] {
  padding: 20px 44px 24px 38px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list02]:lang(en) {
  padding: 20px 29px 24px 34px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list02]:after {
  width: 49.2px;
  left: 38px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list02]:lang(en):after {
  width: 49px;
  left: 35px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list03] {
  padding: 20px 32px 24px 25px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list03]:lang(en) {
  padding: 20px 32px 24px 21px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list03]:after {
  width: 75.6px;
  left: 25px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list03]:lang(en):after {
  width: 159px;
  left: 22px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list04]:lang(en) {
  padding: 20px 22px 24px 21px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list04]:lang(en):after {
  width: 59.2px;
  left: 22.5px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link.none-d2 {
  padding: 20px 33px 24px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list06]:lang(en) {
  padding: 20px 33px 24px 28px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list06]:after {
  width: 73.6px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link[data-d1=d1-list06]:lang(en):after {
  width: 147px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link .icon-chevron {
  position: relative;
  width: 16px;
  height: 16px;
  color: inherit;
  fill: currentColor;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform-origin: center center;
     -moz-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link .icon-chevron .color {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link .icon-chevron .color-black {
  opacity: 1;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth1-h2 .depth1-link .icon-chevron svg {
  fill: currentColor;
  color: inherit;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap {
  height: 380px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-company-2023 {
  height: 110px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-company-2023 .depth2-inner {
  padding: 46px 196px 0 190px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-company-2023 .depth2-inner .depth2-group {
  display: grid;
  grid-template-columns: repeat(5, 110px);
  gap: 0 56px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-esg-2023:lang(en) {
  height: 400px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-esg-2023 .depth2-inner {
  padding: 46px 196px 0 190px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-esg-2023 .depth2-inner:lang(en) {
  padding: 46px 0 0 190px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-esg-2023 .depth2-inner .depth2-group {
  display: grid;
  grid-template-columns: repeat(6, 110px);
  gap: 0 56px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-esg-2023 .depth2-inner .depth2-group:lang(en) {
  grid-template-columns: repeat(6, 141px);
  gap: 0 26px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-esg-2023 .depth2-inner .depth2-group a[href="/en/esg/lib/persist.do"]:lang(en) {
  margin-left: -6px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner {
  display: grid;
  grid-template-columns: 762px 24px 184px;
  padding: 46px 0 0 190px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-group {
  display: grid;
  grid-template-columns: repeat(5, 110px);
  gap: 0 44px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-group:lang(en) {
  grid-template-columns: 150px 170px 170px 150px;
  gap: 0 26px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .line-dotted-group:lang(en) {
  height: 100%;
  border-left: 1px dotted #1a1a1a;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-content .depth2-title {
  padding-left: 5px;
  color: #505051;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-content .down-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
  padding: 0;
  margin-top: 19px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-content .down-group .down-item .down-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 184px;
  height: 40px;
  border-radius: 1000px;
  border: 1px solid #BCBCBC;
  padding: 5px 5px 5px 47px;
  background: url("../images/common/icon-pdf-down_lg.png") 5px center/30px auto no-repeat;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-content .down-group .down-item .down-link .down-link-txt {
  color: #202021;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 13px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-content .down-group .down-item.none-down-item .down-link {
  background-image: url("../images/common/2021/none-down-icon_lg.png");
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-content .down-group .down-item.other-style {
  margin-top: 10px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-content .down-group .down-item.other-style .down-link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  border-color: #e24b2f;
  background-color: #e24b2f;
  background-image: none;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-ir-2023 .depth2-inner .depth2-content .down-group .down-item.other-style a .down-link-txt {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023 {
  height: 130px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023:lang(ko) {
  display: none;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023 .depth2-inner {
  display: grid;
  grid-template-columns: 762px 24px 184px;
  padding: 46px 0 0 190px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023 .depth2-inner .depth2-group {
  display: grid;
  grid-template-columns: 144px 208px;
  gap: 0 24px;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023 .depth2-inner .line-dotted-group {
  height: 100%;
  border-left: 1px dotted #1a1a1a;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023 .depth2-inner .depth2-content .depth2-title {
  color: #505051;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023 .depth2-inner .depth2-content .down-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
  padding: 0;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023 .depth2-inner .depth2-content .down-group .down-item .down-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 184px;
  height: 40px;
  border-radius: 1000px;
  border: 1px solid #BCBCBC;
  padding: 5px 5px 5px 54px;
  background: url("../images/common/icon-pdf-down_lg.png") 5px center/30px auto no-repeat;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap.depth2-news-2023 .depth2-inner .depth2-content .down-group .down-item .down-link .down-link-txt {
  color: #202021;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 13px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner {
  width: 1160px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item p.depth2-link, .gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item div.depth2-link {
  cursor: default;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item a.depth2-link:hover {
  color: #ea002c;
  cursor: pointer;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link {
  color: #202021;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link.is-opened {
  color: #ea002c;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link.red {
  color: #ea002c;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth2-link + .depth3-group {
  margin-top: 14px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item + .depth3-item {
  margin-top: 10px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link {
  padding: 0;
  color: #505051;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 140%;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link.is-opened {
  color: #ea002c;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:hover, .gnb .navigation-header.header-2023 .gnb-content-desktop .nav-wrap .depth1-group .depth1-item .depth2-wrap .depth2-inner .depth2-group .depth2-item .depth3-group .depth3-item .depth3-link:focus {
  color: #ea002c;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 66px;
  top: auto;
  top: unset;
  bottom: 0;
  right: 20px;
  padding: 18px 0 24px;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 {
  width: auto;
  height: 24px;
  margin: 0 8px 0 0;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 5px 0px 9px;
  border-radius: 4px;
  border: 1px solid #A6A6A6;
  color: #505051;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  background: none !important;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link .icon-chevron {
  position: relative;
  width: 16px;
  height: 16px;
  color: inherit;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform-origin: center center;
     -moz-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link .icon-chevron .color {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link .icon-chevron svg {
  fill: currentColor;
  color: inherit;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d1-link .icon-chevron .color-black {
  opacity: 1;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap {
  top: 28px;
  border-radius: 4px;
  border: 1px solid #A6A6A6;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: -webkit-calc(100% + 28px);
  height: -moz-calc(100% + 28px);
  height: calc(100% + 28px);
  position: absolute;
  top: -28px;
  z-index: -1;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .support-d1 .support-d2-wrap .support-d2-link:hover {
  color: #ea002c;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .gnb-lang {
  width: auto;
  height: 24px;
  margin: 0 36px 0 0;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 9px;
  border-radius: 4px;
  border: 1px solid #A6A6A6;
  color: #505051;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:hover, .gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .gnb-lang .lang-link:focus {
  color: white;
}
.gnb .navigation-header.header-2023 .gnb-content-desktop .gnb-util-nav .all-menu .all-menu-open-btn span {
  width: 100%;
  -webkit-transform: scaleX(66.6666%);
     -moz-transform: scaleX(66.6666%);
      -ms-transform: scaleX(66.6666%);
          transform: scaleX(66.6666%);
  -webkit-transform-origin: right;
     -moz-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
}
/* 메인 */
body.page-index .index-vision {
  background: #F4FAFE;
}
body.page-index .index-vision .inner {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner {
    max-width: 100%;
    padding: 50px 15px;
    overflow: hidden;
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner {
    padding: 100px 20px 98px 20px;
  }
}
body.page-index .index-vision .inner .title-wrap .title {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  color: #202121;
  opacity: 0;
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .title-wrap .title {
    font-size: 17.5px;
    line-height: 30px; /* 171.429% */
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .title-wrap .title {
    font-size: 24px;
    line-height: 60px; /* 250% */
  }
}
body.page-index .index-vision .inner .title-wrap .title-desc {
  margin-top: 20px;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  color: #202121;
  opacity: 0;
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .title-wrap .title-desc {
    font-size: 20px;
    line-height: 27px; /* 135% */
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .title-wrap .title-desc {
    font-size: 50px;
    line-height: 65px; /* 130% */
  }
}
body.page-index .index-vision .inner .vision-content {
  opacity: 0;
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .vision-content {
    margin: 20px auto 0;
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .vision-content {
    display: grid;
    grid-template-columns: 430px auto;
    width: 1045px;
    margin: 65px auto 0;
  }
  body.page-index .index-vision .inner .vision-content:lang(en) {
    grid-template-columns: 460px auto;
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .vision-content .desc-group {
    padding-top: 57px;
  }
}
body.page-index .index-vision .inner .vision-content .desc-group .sub {
  margin-bottom: 4px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  color: #666;
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .vision-content .desc-group .sub {
    text-align: center;
    font-size: 15px;
    font-weight: 250;
    line-height: 22px; /* 146.667% */
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .vision-content .desc-group .sub {
    font-size: 22px;
    line-height: 35px;
  }
  body.page-index .index-vision .inner .vision-content .desc-group .sub:lang(en) {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 150%;
  }
}
body.page-index .index-vision .inner .vision-content .desc-group .desc {
  font-style: normal;
  letter-spacing: 0;
  color: #202121;
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .vision-content .desc-group .desc {
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .vision-content .desc-group .desc {
    margin-bottom: 45px;
    font-size: 22px;
    font-weight: 700;
    line-height: 35px; /* 159.091% */
  }
  body.page-index .index-vision .inner .vision-content .desc-group .desc:lang(en) {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .vision-content .desc-group .link {
    display: none;
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .vision-content .desc-group .link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    color: #202121;
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .vision-content .desc-group .link .icon-more {
    width: 6px;
    height: 10px;
    margin-left: 10px;
  }
}
body.page-index .index-vision .inner .vision-content .desc-group .link .icon-more svg {
  fill: currentColor;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop {
  display: none;
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .vision-content .pyramid-desktop {
    display: block;
    position: relative;
    width: 614px;
    height: 286px;
    padding: 65px 0 0 2px;
  }
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -moz-transition: transform 0.1s ease, -moz-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease, -moz-transform 0.1s ease;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link .img {
  display: block;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -moz-transition: transform 0.1s ease, -moz-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease, -moz-transform 0.1s ease;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link .tit-group {
  display: block;
  position: absolute;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link .tit-group .tit {
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: -1px 0px rgb(179, 54, 37), 0px 1px rgb(179, 54, 37), 1px 0px rgb(179, 54, 37), 0px -1px rgb(179, 54, 37);
  text-align: center;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link .tit-group .tit:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 10px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='15' viewBox='0 0 10 15' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.0575 1.75391L8.36188 7.50032L3.0575 13.2467L1.58789 11.8902L5.64007 7.50032L1.58789 3.11047L3.0575 1.75391Z' fill='black'/%3E%3C/svg%3E");
  -webkit-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link .text-group {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link .text-group .desc {
  display: block;
  white-space: nowrap;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: #202121;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link .text-group:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  height: 5px;
  background: url("../../images/main/index-vision-line_lg.png") left top/145px no-repeat;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link01 {
  top: 0;
  padding-left: 101px;
  z-index: 3;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link01 .img {
  width: 166px;
  height: 125px;
  background: url("../../images/main/index-vision-pyramid01_lg.png") center/100% auto no-repeat;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link01 .tit-group {
  top: 57px;
  left: 101px;
  width: 158px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link01 .tit-group .tit {
  top: 4px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link01 .text-group {
  top: 76px;
  left: 222px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link01 .text-group .desc {
  padding-left: 84px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link01 .text-group:after {
  top: 12px;
  width: 76px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link02 {
  top: 110px;
  padding-left: 57px;
  z-index: 2;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link02 .img {
  width: 256px;
  height: 85px;
  background: url("../../images/main/index-vision-pyramid02_lg.png") center/100% auto no-repeat;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link02 .tit-group {
  top: 45px;
  left: 57px;
  width: 246px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link02 .text-group {
  top: 40px;
  left: 227px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link02 .text-group .desc {
  padding-left: 126px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link02 .text-group:after {
  top: 12px;
  width: 119px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 {
  top: 163px;
  left: 0;
  z-index: 1;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 .img {
  width: 372px;
  height: 122px;
  background: url("../../images/main/index-vision-pyramid03_lg.png") center/100% auto no-repeat;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 .tit-group {
  top: 73px;
  left: 0;
  width: 360px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 .text-group {
  top: 75px;
  left: 242px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 .text-group:lang(en) {
  left: 292px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 .text-group .desc {
  padding-left: 149px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 .text-group .desc:lang(en) {
  padding-left: 99px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 .text-group:after {
  width: 145px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop .item-link.link03 .text-group:lang(en):after {
  width: 95px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .item-link .tit-group .tit {
  /* text-shadow: -1px 0px rgba(255, 219, 219, 1), 
  0px 1px rgba(255, 219, 219, 1), 
  1px 0px rgba(255, 219, 219, 1), 
  0px -1px rgba(255, 219, 219, 1); */
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .item-link:hover .tit-group .tit {
  padding-right: 13px;
  color: black;
  text-shadow: none;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .item-link:hover .tit-group .tit:after {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .item-link:hover .text-group .desc {
  font-size: 18px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .item-link:not(:hover):not(:nth-child(2)) + .item-link {
  -webkit-transform: translateY(-2px);
     -moz-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .item-link:not(:hover) .desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link01:hover {
  -webkit-transform: translateY(-4px);
     -moz-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link01:hover .img {
  -webkit-transform: scale(1.1024) !important;
     -moz-transform: scale(1.1024) !important;
      -ms-transform: scale(1.1024) !important;
          transform: scale(1.1024) !important;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link01:hover + .link02 {
  -webkit-transform: translateY(4px);
     -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
          transform: translateY(4px);
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link01:hover + .link02 .img {
  -webkit-transform: scale(0.96875) !important;
     -moz-transform: scale(0.96875) !important;
      -ms-transform: scale(0.96875) !important;
          transform: scale(0.96875) !important;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link01 .text-group {
  left: 236px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link01:not(:hover) .img {
  -webkit-transform: scale(0.9217) !important;
     -moz-transform: scale(0.9217) !important;
      -ms-transform: scale(0.9217) !important;
          transform: scale(0.9217) !important;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link01:not(:hover) .text-group {
  left: 218px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link02:hover .img {
  -webkit-transform: scale(1.10155) !important;
     -moz-transform: scale(1.10155) !important;
      -ms-transform: scale(1.10155) !important;
          transform: scale(1.10155) !important;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link02:hover + .link03 {
  -webkit-transform: translateY(4px);
     -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
          transform: translateY(4px);
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link02:not(:hover) .img {
  -webkit-transform: scale(0.9297) !important;
     -moz-transform: scale(0.9297) !important;
      -ms-transform: scale(0.9297) !important;
          transform: scale(0.9297) !important;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link03:hover .img {
  -webkit-transform: scale(1.05375) !important;
     -moz-transform: scale(1.05375) !important;
      -ms-transform: scale(1.05375) !important;
          transform: scale(1.05375) !important;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link03:hover .text-group:lang(en) {
  left: 300px;
}
body.page-index .index-vision .inner .vision-content .pyramid-desktop:hover .link03:not(:hover) .img {
  -webkit-transform: scale(0.95967) !important;
     -moz-transform: scale(0.95967) !important;
      -ms-transform: scale(0.95967) !important;
          transform: scale(0.95967) !important;
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile {
  display: none;
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .vision-content .pyramid-mobile {
    display: block;
  }
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile .pyramid-img {
  display: block;
  max-width: 100%;
  width: 264px;
  height: 202px;
  margin: 20px auto 0;
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile .desc-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 360px;
  padding: 23px 0 15px 31px;
  margin: 0 auto;
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile .desc-group:lang(en) {
  padding: 20px 0;
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile .desc-group .item {
  display: grid;
  grid-template-columns: 78px auto;
  gap: 8px;
  position: relative;
  padding-left: 8px;
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile .desc-group .item:lang(en) {
  grid-template-columns: 111px auto;
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile .desc-group .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 3px;
  height: 3px;
  background: #202121;
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile .desc-group .item .label {
  color: #202121;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
}
body.page-index .index-vision .inner .vision-content .pyramid-mobile .desc-group .item .desc {
  color: #202121;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  letter-spacing: 0;
  text-align: left;
  padding-left: 9px;
  border-left: 1px solid #C8C8C8;
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .vision-content .link-group {
    margin-top: 20px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  body.page-index .index-vision .inner .vision-content .link-group {
    display: none;
  }
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .vision-content .link-group .link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    color: #202121;
  }
}
@media (max-width: 768px) {
  body.page-index .index-vision .inner .vision-content .link-group .link .icon-more {
    width: 6px;
    height: 10px;
    margin-left: 10px;
  }
}
body.page-index .index-vision .inner .vision-content .link-group .link .icon-more svg {
  fill: currentColor;
}

/* 회사소개 - 비전 */
@media (min-height: 1296px) {
  .introduce-vision-page2 {
    padding-bottom: 30vh;
  }
}
@media (min-height: 1700px) {
  .introduce-vision-page2 {
    padding-bottom: 40vh;
  }
}
.introduce-vision-page2 *, .introduce-vision-page2 *:after, .introduce-vision-page2 *:before {
  font-family: "SynergyDisplay", "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", "AppleSDGothicNeo", "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
  letter-spacing: 0;
}
.introduce-vision-page2 .content-header .breadcrumb ul li span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", AppleSDGothicNeo, "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
}
.introduce-vision-page2 .section-content .inner {
  max-width: 1040px;
  margin: 0 auto;
}
.introduce-vision-page2 .vision-hero {
  overflow: hidden;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero {
    margin-top: 18px;
    height: 880px;
    background: black url("../images/introduce/vision-hero-bg_sm.jpg") top center/cover no-repeat;
  }
  .introduce-vision-page2 .vision-hero:lang(en) {
    height: 872px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero {
    margin-top: 40px;
    height: 1318px;
    background: black url("../images/introduce/vision-hero-bg_lg.jpg") bottom center/cover no-repeat;
  }
  .introduce-vision-page2 .vision-hero:lang(en) {
    height: 1313px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .text-group {
    padding: 80px 0 0;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .text-group {
    padding: 140px 0 0;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .text-group .p-first .tit {
    margin-top: 4px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .text-group .p-second {
    margin-top: 36px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .text-group .p-second {
    margin-top: 40px;
  }
}
.introduce-vision-page2 .vision-hero .text-group .tit {
  color: #FFF;
  text-align: center;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .text-group .tit {
    font-size: 24px;
    line-height: 130%; /* 31.2px */
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .text-group .tit {
    font-size: 36px;
    line-height: 160%; /* 57.6px */
  }
  .introduce-vision-page2 .vision-hero .text-group .tit:lang(en) {
    font-size: 22px;
  }
}
.introduce-vision-page2 .vision-hero .text-group .sub {
  color: #D9D9D9;
  text-align: center;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .text-group .sub {
    font-size: 15px;
    line-height: 145%; /* 21.75px */
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .text-group .sub {
    font-size: 24px;
    line-height: 160%; /* 38.4px */
  }
  .introduce-vision-page2 .vision-hero .text-group .sub:lang(en) {
    font-size: 22px;
  }
}
.introduce-vision-page2 .vision-hero .img-group {
  position: relative;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .img-group {
    margin-top: 24px;
  }
}
@media (max-width: 359px) {
  .introduce-vision-page2 .vision-hero .img-group {
    zoom: 0.9;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .img-group {
    width: 1030px;
    margin: -36px auto 0;
  }
  .introduce-vision-page2 .vision-hero .img-group:lang(en) {
    margin-top: -6px;
  }
}
.introduce-vision-page2 .vision-hero .img-group .img-line {
  position: absolute;
  top: 0;
  left: 500px;
}
.introduce-vision-page2 .vision-hero .img-group .img-pyramid {
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .img-group .img-pyramid {
    left: -webkit-calc(50% - 186px);
    left: -moz-calc(50% - 186px);
    left: calc(50% - 186px);
    width: 372px;
    max-width: none;
  }
  .introduce-vision-page2 .vision-hero .img-group .img-pyramid:lang(en) {
    left: -webkit-calc(50% - 188px);
    left: -moz-calc(50% - 188px);
    left: calc(50% - 188px);
    width: 376px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .img-group .img-pyramid {
    left: -webkit-calc(50% - 426px);
    left: -moz-calc(50% - 426px);
    left: calc(50% - 426px);
    width: 836px;
  }
}
.introduce-vision-page2 .vision-hero .img-group .img-category {
  position: absolute;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .img-group .img-category {
    top: 119px;
    left: -webkit-calc(50% - 166px);
    left: -moz-calc(50% - 166px);
    left: calc(50% - 166px);
    width: 120px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .img-group .img-category {
    top: 280px;
    left: -7px;
    width: 368px;
  }
  .introduce-vision-page2 .vision-hero .img-group .img-category:lang(en) {
    left: 0;
  }
}
.introduce-vision-page2 .vision-hero .img-group .img-logos {
  position: absolute;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .img-group .img-logos {
    top: 100px;
    left: -webkit-calc(50% - 18px);
    left: -moz-calc(50% - 18px);
    left: calc(50% - 18px);
    width: 190px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .img-group .img-logos {
    top: 256px;
    left: 650px;
    width: 506px;
  }
  .introduce-vision-page2 .vision-hero .img-group .img-logos:lang(en) {
    top: 248px;
    left: 644px;
  }
}
.introduce-vision-page2 .vision-hero .img-group .img-values {
  position: absolute;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-hero .img-group .img-values {
    top: 380px;
    left: -webkit-calc(50% - 150px);
    left: -moz-calc(50% - 150px);
    left: calc(50% - 150px);
    width: 300px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-hero .img-group .img-values {
    top: 746px;
    left: 300px;
    width: 414px;
  }
  .introduce-vision-page2 .vision-hero .img-group .img-values:lang(en) {
    left: 218px;
    width: 602px;
  }
}
.introduce-vision-page2 .tab-container {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container {
    padding: 55px 0 0;
    margin-top: 28px;
  }
  .introduce-vision-page2 .tab-container:lang(en) {
    padding-top: 67px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container {
    padding: 120px 0 0;
    margin-top: 80px;
  }
}
.introduce-vision-page2 .tab-container .tab-lnb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  background: white;
}
.introduce-vision-page2 .tab-container .tab-lnb .inner {
  display: grid;
  grid-template-columns: repeat(3, 33.3333333333%);
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  -webkit-transform: translateY(1px);
     -moz-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-lnb .inner {
    padding: 0 15px;
  }
}
.introduce-vision-page2 .tab-container .tab-lnb .inner .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: none;
  border-bottom: 2px solid #D9D9D9;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgb(153, 153, 153);
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-lnb .inner .list {
    height: auto;
    padding: 20px 0 10px;
    font-size: 16px;
    outline: none !important;
  }
  .introduce-vision-page2 .tab-container .tab-lnb .inner .list:lang(en) {
    padding-top: 10px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-lnb .inner .list {
    height: auto;
    padding: 32px 0 16px;
    font-size: 18px;
  }
}
.introduce-vision-page2 .tab-container .tab-lnb .inner .list.active {
  color: #202021;
  border-bottom-color: #202021;
}
.introduce-vision-page2 .tab-container .tab-content {
  position: relative;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .text-group {
    max-width: 360px;
    margin: 0 auto;
  }
}
.introduce-vision-page2 .tab-container .tab-content .text-group .tit {
  color: #202021;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .text-group .tit {
    font-size: 26px;
    line-height: 32px; /* 123.077% */
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .text-group .tit {
    font-size: 44px;
    line-height: 140%; /* 61.6px */
  }
  .introduce-vision-page2 .tab-container .tab-content .text-group .tit:lang(en) {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .text-group .tit + .sub {
    margin-top: 14px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .text-group .tit + .sub {
    margin-top: 20px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .text-group .sub {
  color: #202021;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .text-group .sub {
    padding: 0 15px;
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .text-group .sub {
    font-size: 20px;
  }
  .introduce-vision-page2 .tab-container .tab-content .text-group .sub:lang(en) {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice {
    padding: 60px 0 90px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice {
    padding: 80px 0 180px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group {
    margin-top: 60px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .img-group .img-info {
  display: block;
  margin: 0 auto;
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group {
  text-align: center;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group {
    margin-top: 60px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group {
    margin-top: 42px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group .link-tit {
  color: #202021;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 39.2px */
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group .link-tit {
    font-size: 20px;
  }
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group .link-tit:lang(en) {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group .link-tit {
    font-size: 28px;
  }
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group .link-tit:lang(en) {
    font-size: 24px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 12px 32px;
  border-radius: 1000px;
  border: 1px solid #000;
  margin-top: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group .link {
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiservice .info-group .link-group .link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aix {
    padding: 60px 0 90px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aix {
    padding: 100px 0 180px;
  }
  .introduce-vision-page2 .tab-container .tab-content .vision-aix:lang(en) {
    padding-bottom: 160px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aix .info-group {
    margin-top: 60px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aix .info-group {
    margin-top: 80px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aix .info-group .img-group .img-info {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aix .info-group .text-group {
    margin-top: 60px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aix .info-group .text-group {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra {
    padding: 60px 0 100px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra {
    padding: 100px 0 180px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
    margin-top: 60px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 40px;
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box {
    width: 276px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box {
    width: 312px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .icon {
    width: 70px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .icon {
    width: 80px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .box-tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 100%;
  padding: 6px 30px;
  border-radius: 1000px;
  background: #202021;
  color: #FFF;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .box-tit {
    margin-top: 20px;
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .box-tit {
    margin-top: 40px;
    font-size: 20px;
  }
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .box-tit:lang(en) {
    font-size: 18px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .box-tit.align-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .box-tit .sm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 93px;
  height: 29px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: #999;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .box-tit .sm {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    line-height: 11px; /* 110% */
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .box-tit .sm {
    line-height: 12px; /* 120% */
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  text-align: left;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul {
    gap: 8px;
    padding: 0;
    margin-top: 16px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul {
    gap: 12px;
    padding: 28px 18px 0;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li {
  position: relative;
  color: #333;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li {
    padding-left: 12px;
    font-size: 14px;
  }
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li:lang(en) {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li {
    padding-left: 14px;
    font-size: 16px;
  }
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li:lang(en) {
    font-size: 15px;
  }
}
.introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li::before {
  content: "·";
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li::before {
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li::before {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li:lang(en)::before {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .tab-container .tab-content .vision-aiinfra .info-group .box .ul .li:lang(en)::before {
    font-size: 15px;
  }
}
.introduce-vision-page2 .vision-business {
  background: #F9F9F9;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business {
    padding: 40px 15px 0;
    margin: 40px auto 0;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business {
    margin: 0px auto 0;
    padding: 80px 0 0;
  }
}
.introduce-vision-page2 .vision-business .tit-group .tit {
  color: #202021;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .tit-group .tit {
    text-align: center;
    font-size: 26px;
    line-height: 32px; /* 123.077% */
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .tit-group .tit {
    font-size: 40px;
    line-height: 140%; /* 56px */
  }
}
.introduce-vision-page2 .vision-business .content-countries .table {
  border-top: 1px solid #a5a5a5;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-countries .table {
    margin-top: 19px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table {
    margin-top: 30px;
  }
}
.introduce-vision-page2 .vision-business .content-countries .table * {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row {
    padding: 30px 0;
    border-bottom: 1px solid #dbdbdb;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row {
    height: 130px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 0;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .flag {
    height: 81px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .flag {
    display: inline-block;
    padding: 26px 18px;
    vertical-align: middle;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .flag img {
    height: 75px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .flag img {
    height: 76px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .country {
    max-width: 320px;
    padding-top: 5px;
    padding-bottom: 12px;
    margin: 0 auto;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .country {
    display: inline-block;
    width: 606px;
    padding: 0 23px;
    vertical-align: middle;
  }
}
.introduce-vision-page2 .vision-business .content-countries .table .row .country .location {
  color: #202021;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 176.923% */
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .country .location {
    font-weight: 700;
    line-height: 23px;
  }
}
.introduce-vision-page2 .vision-business .content-countries .table .row .country .name {
  color: #666;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 146.154% */
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .country .name {
    font-weight: 700;
    line-height: 23px;
  }
}
.introduce-vision-page2 .vision-business .content-countries .table .row .country .address {
  color: #202021;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 176.923% */
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .tel {
    text-align: center;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .tel {
    display: inline-block;
    width: 177px;
    vertical-align: middle;
  }
}
.introduce-vision-page2 .vision-business .content-countries .table .row .tel p {
  color: #202021;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 169.231% */
}
.introduce-vision-page2 .vision-business .content-countries .table .row .tel a {
  color: #202021;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 169.231% */
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .fax {
    text-align: center;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-countries .table .row .fax {
    display: inline-block;
    width: 145px;
    vertical-align: middle;
  }
}
.introduce-vision-page2 .vision-business .content-countries .table .row .fax p {
  color: #202021;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 169.231% */
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-consulting {
    padding: 40px 0;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-consulting {
    padding: 80px 0 160px;
  }
}
.introduce-vision-page2 .vision-business .content-consulting .sub-tit {
  color: #202021;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 150% */
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-consulting .sub-tit {
    text-align: center;
    font-size: 16px;
    line-height: 21px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-consulting .sub-tit {
    font-size: 25px;
    line-height: 36px;
  }
}
.introduce-vision-page2 .vision-business .content-consulting .table {
  width: 100%;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-consulting .table {
    margin-top: 24px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-consulting .table {
    margin-top: 32px;
  }
}
.introduce-vision-page2 .vision-business .content-consulting .table * {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-consulting .table th:first-child, .introduce-vision-page2 .vision-business .content-consulting .tabletd:first-child {
    width: 70px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-consulting .table th:first-child, .introduce-vision-page2 .vision-business .content-consulting .tabletd:first-child {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-consulting .table th:nth-child(2), .introduce-vision-page2 .vision-business .content-consulting .tabletd:nth-child(2) {
    width: 82px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-consulting .table th:nth-child(2), .introduce-vision-page2 .vision-business .content-consulting .tabletd:nth-child(2) {
    width: 185px;
  }
}
.introduce-vision-page2 .vision-business .content-consulting .table th {
  border-top: 1px solid #8c8c8c;
  border-bottom: 1px solid #8c8c8c;
  color: #202021;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 146.667% */
  letter-spacing: -0.375px;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-consulting .table th {
    padding: 10px 0 11px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-consulting .table th {
    padding: 10px 0 13px;
  }
}
.introduce-vision-page2 .vision-business .content-consulting .table th + th {
  border-left: 1px solid #8c8c8c;
}
.introduce-vision-page2 .vision-business .content-consulting .table td {
  border-bottom: 1px solid #dbdbdb;
  color: #202021;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 169.231% */
  letter-spacing: -0.325px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-consulting .table td {
    padding: 10px 0 11px;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-consulting .table td {
    padding: 10px 0 13px;
  }
}
.introduce-vision-page2 .vision-business .content-consulting .table td + td {
  border-left: 1px solid #dbdbdb;
}
.introduce-vision-page2 .vision-business .content-consulting .table td:last-child {
  text-align: left;
}
@media (max-width: 768px) {
  .introduce-vision-page2 .vision-business .content-consulting .table td:last-child {
    padding-left: 10px;
    word-break: break-word;
  }
}
@media (min-width: 769px) {
  .introduce-vision-page2 .vision-business .content-consulting .table td:last-child {
    padding-left: 20px;
  }
}

/* 회사소개 - SKMS */
.introduce-skms-page *, .introduce-skms-page *:after, .introduce-skms-page *:before {
  font-family: "SynergyDisplay", "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", "AppleSDGothicNeo", "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
}
.introduce-skms-page .content-header .breadcrumb ul li span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", AppleSDGothicNeo, "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
}
.introduce-skms-page .section-content .inner {
  max-width: 1040px;
  margin: 0 auto;
}
.introduce-skms-page .skms-philosophy {
  overflow: hidden;
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy {
    padding: 0 15px 100px;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy {
    padding: 160px 0 160px;
  }
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .tit-group {
    padding: 40px 0;
  }
}
.introduce-skms-page .skms-philosophy .tit-group .tit {
  color: #202021;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 77px */
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .tit-group .tit {
    font-size: 23px;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .tit-group .tit {
    font-size: 55px;
  }
  .introduce-skms-page .skms-philosophy .tit-group .tit:lang(en) {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .tit-group .tit + .sub {
    margin-top: 8px;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .tit-group .tit + .sub {
    margin-top: 56px;
  }
}
.introduce-skms-page .skms-philosophy .tit-group .sub {
  color: #202021;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .tit-group .sub {
    font-size: 14px;
    line-height: 150%; /* 21px */
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .tit-group .sub {
    font-size: 18px;
    line-height: 160%; /* 32px */
  }
  .introduce-skms-page .skms-philosophy .tit-group .sub:lang(en) {
    font-size: 16px;
  }
}
.introduce-skms-page .skms-philosophy .tit-group .sub + .sub {
  margin-top: 20px;
}
.introduce-skms-page .skms-philosophy .tit-group .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  border-radius: 1000px;
  border: 1px solid #000;
  margin-top: 40px;
  color: #202021;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .tit-group .link {
    font-size: 14px;
    padding: 13px 32px;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .tit-group .link {
    font-size: 16px;
    padding: 12px 32px;
  }
}
.introduce-skms-page .skms-philosophy .info-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .info-group {
    gap: 40px;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .info-group {
    gap: 80px;
    margin-top: 120px;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .info-group .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .info-group .box {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 500px auto;
    gap: 0 20px;
  }
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .info-group .box.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .info-group .box.reverse {
    grid-template-columns: auto 500px;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .info-group .box.reverse .text-group {
    text-align: right;
  }
}
.introduce-skms-page .skms-philosophy .info-group .box .thumb-group .thumb {
  max-width: 100%;
  vertical-align: top;
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .info-group .box .text-group {
    padding: 40px 30px;
  }
}
.introduce-skms-page .skms-philosophy .info-group .box .text-group .box-tit {
  color: #202021;
  font-style: normal;
  font-weight: 700;
  line-height: 135%; /* 43.2px */
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .info-group .box .text-group .box-tit {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .info-group .box .text-group .box-tit {
    font-size: 32px;
  }
}
.introduce-skms-page .skms-philosophy .info-group .box .text-group .box-desc {
  color: #202021;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .info-group .box .text-group .box-desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 150%; /* 21px */
  }
  .introduce-skms-page .skms-philosophy .info-group .box .text-group .box-desc:lang(en) {
    font-size: 13px;
    line-height: 160%;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .info-group .box .text-group .box-desc {
    margin-top: 28px;
    font-size: 16px;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0;
  }
  .introduce-skms-page .skms-philosophy .info-group .box .text-group .box-desc:lang(en) {
    font-size: 15px;
  }
}
.introduce-skms-page .skms-philosophy .notice {
  color: #666;
  font-style: normal;
  font-weight: 350;
  line-height: 160%; /* 20.8px */
}
@media (max-width: 768px) {
  .introduce-skms-page .skms-philosophy .notice {
    padding: 30px 0;
  }
}
@media (min-width: 769px) {
  .introduce-skms-page .skms-philosophy .notice {
    padding: 30px 0 10px;
  }
}

/* 연혁 시작 - 40th 사사 */
.introduce-history-page2 *, .introduce-history-page2 *:after, .introduce-history-page2 *:before {
  font-family: "SynergyDisplay";
}
.introduce-history-page2:lang(en) *, .introduce-history-page2:lang(en) *:after, .introduce-history-page2:lang(en) *:before {
  font-family: "Roboto";
}
.introduce-history-page2 .link-40th {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .introduce-history-page2 .link-40th {
    margin: 0 15px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .link-40th {
    position: absolute;
    top: 86px;
    left: 143px;
    width: 314px;
    opacity: 1 !important;
  }
}
.introduce-history-page2 .link-40th:lang(en) {
  left: 220px;
}
.introduce-history-page2 .content-header .section-inner .breadcrumb ul li span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", AppleSDGothicNeo, "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
}
@media (max-width: 768px) {
  .introduce-history-page2 .content-body .tab-header {
    padding-top: 10px;
    margin: 0 15px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .content-body .tab-header {
    width: 1040px;
    padding-top: 33px;
    margin: 0 auto;
  }
}
.introduce-history-page2 .content-body .tab-header .custom-select-wrap * {
  font-family: "Roboto", "Noto Sans KR";
}
@media (min-width: 769px) {
  .introduce-history-page2 .content-body .tab-header .tab-nav {
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.introduce-history-page2 .content-body .tab-header .tab-nav .tab-item {
  width: 260px;
  border: 1px solid #c4c4c4;
  background-color: #fff;
  -webkit-transition: width 0.3s ease-out;
  -moz-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.introduce-history-page2 .content-body .tab-header .tab-nav .tab-item a {
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0;
  color: #707071;
}
.introduce-history-page2 .content-body .tab-header .tab-nav .tab-item:first-child {
  border-right: none;
  border-top-left-radius: 5px;
}
.introduce-history-page2 .content-body .tab-header .tab-nav .tab-item:last-child {
  border-left: none;
  border-top-right-radius: 5px;
}
.introduce-history-page2 .content-body .tab-header .tab-nav .tab-item.active {
  width: 520px;
  border: none;
  margin-top: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #7b746c;
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
}
.introduce-history-page2 .content-body .tab-header .tab-nav .tab-item.active a {
  height: 60px;
  font-size: 23px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 0;
  color: #fff;
  cursor: default;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th {
    padding: 32px 0 100px;
  }
}
@media (max-width: 768px) and (min-height: 1080px) {
  .introduce-history-page2 .history-40th {
    padding-bottom: 30vh;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th {
    padding: 88px 0 100px;
  }
}
@media (min-width: 769px) and (min-height: 1080px) {
  .introduce-history-page2 .history-40th {
    padding-bottom: 30vh;
  }
}
.introduce-history-page2 .history-40th .history-40th-intro .inner {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-intro .inner {
    padding: 0 15px;
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-intro .inner {
    width: 1040px;
  }
}
.introduce-history-page2 .history-40th .history-40th-intro .inner .tit {
  color: #202021;
  text-align: center;
  font-family: "SynergyDisplay";
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.introduce-history-page2 .history-40th .history-40th-intro .inner .tit:lang(en) {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-intro .inner .tit {
    font-size: 24px;
    letter-spacing: -0.72px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-intro .inner .tit {
    font-size: 40px;
    letter-spacing: -1.2px;
  }
}
.introduce-history-page2 .history-40th .history-40th-intro .inner .desc {
  margin-top: 16px;
  color: #202021;
  text-align: center;
  font-family: "SynergyDisplay";
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: 26px; /* 162.5% */
  letter-spacing: -0.4px;
}
.introduce-history-page2 .history-40th .history-40th-intro .inner .desc:lang(en) {
  font-family: "Roboto";
  font-weight: 400;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-intro .inner .desc {
    font-size: 14px;
    line-height: 150%;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline {
    padding: 37px 15px 0;
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline {
    margin-top: 80px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner {
    width: 1040px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article.active .progress-group .year {
  color: #E51937;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article.active .progress-group .progress .dot {
  border-color: #E51937;
  background-color: white;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article:last-child .progress-group .progress .line {
  height: -webkit-calc(100% - 14px);
  height: -moz-calc(100% - 14px);
  height: calc(100% - 14px);
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article:last-child .cont-group {
  margin-bottom: 0;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  text-align: right;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group {
    width: 33px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group {
    width: 337px;
    padding-top: 7px;
    padding-right: 45px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .year {
  color: #A2A2A2;
  text-align: right;
  font-family: "SynergyDisplay";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 25.5px */
  white-space: nowrap;
  letter-spacing: -0.45px;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .year:lang(en) {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .year {
    position: absolute;
    top: 0;
    left: 33px;
    font-size: 12px;
    letter-spacing: -0.36px;
    text-align: left;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .progress .dot {
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border-radius: 40px;
  border: 3px solid #D9D9D9;
  background: #D9D9D9;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .progress .dot {
    top: 3.04px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .progress .dot {
    top: 13px;
    right: 19px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .progress .line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: #D9D9D9;
  overflow: hidden;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .progress .line {
    top: 3.03px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .progress .line {
    top: 13px;
    right: 25px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .progress-group .progress .line i {
  display: block;
  width: 100%;
  height: 100%;
  background: #E51937;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: top;
     -moz-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
     -moz-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group {
    padding-top: 24px;
    padding-right: 17px;
    margin-left: 33px;
    margin-bottom: 80px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group {
    max-width: 587px;
    margin-left: 337px;
    margin-bottom: 120px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .tit {
  color: #202021;
  font-family: "SynergyDisplay";
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 42px */
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .tit:lang(en) {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .tit {
    font-size: 22px;
    letter-spacing: -0.66px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .tit {
    font-size: 28px;
  }
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .tit:lang(en) {
    font-size: 24px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .sub {
  color: #202021;
  font-family: "SynergyDisplay";
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .sub:lang(en) {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .sub {
    font-size: 14px;
    letter-spacing: -0.42px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .sub {
    font-size: 18px;
    letter-spacing: -0.54px;
  }
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .tit-group .sub:lang(en) {
    font-size: 15px;
    letter-spacing: -0.45px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .img-group {
  position: relative;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .img-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    overflow: hidden;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .img-group {
    margin-top: 16px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .img-group .swiper {
  display: none;
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .img-group .swiper {
    display: block;
    position: relative;
    margin: 0;
    width: 480px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .img-group .img {
    max-width: 100%;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .img-group .img {
    max-width: 480px;
  }
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 490px;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 96px;
  height: 64px;
  border: 0;
  overflow: hidden;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .swiper-pagination .swiper-pagination-bullet .thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: auto;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border-color: #4253F3;
  background: rgba(0, 0, 0, 0);
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .desc-group {
  margin-top: 16px;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .desc-group .desc {
  color: #666;
  font-family: "SynergyDisplay";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 170%; /* 25.5px */
  letter-spacing: -0.45px;
}
.introduce-history-page2 .history-40th .history-40th-timeline .inner .timeline-article .cont-group .desc-group .desc:lang(en) {
  font-family: "Roboto";
  font-weight: 400;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab {
    padding-top: 40px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab {
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history {
    padding-bottom: 67px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history {
    padding-bottom: 135px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history.first .history-img-wrap .history-desktop-img .history-img-title {
    letter-spacing: 0.29em;
  }
}
.introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap {
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap {
    margin-bottom: 40px;
    background-color: #fff !important;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap {
    margin-bottom: 80px;
  }
}
.introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap .history-mobile-img {
  padding-bottom: 52.83%;
  -webkit-background-size: cover;
          background-size: cover;
}
.introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap .history-desktop-img {
  overflow: hidden;
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap .history-desktop-img {
    width: 100%;
    height: 400px;
    background-position: center center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1921px) {
  .introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap .history-desktop-img {
    width: 100%;
    height: 400px;
    max-width: 2200px;
    margin: 0 auto;
    -webkit-background-size: cover;
            background-size: cover;
  }
}
.introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap .history-desktop-img .history-img-title {
  font-family: "SynergyDisplay";
  font-size: 70px;
  font-weight: 400;
  line-height: 400px;
  letter-spacing: 0.31em;
  color: #fff;
  height: 400px;
}
.introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap .history-desktop-img .history-img-title:lang(en) {
  font-family: "Roboto";
}
.introduce-history-page2 .history-img-tab .introduce-history .history-img-wrap .history-desktop-img .history-img-ani {
  position: absolute;
  top: 0;
  left: 0;
  height: 400px;
}
.introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title {
  font-weight: 600;
  letter-spacing: 0em;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title {
    padding-bottom: 22px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title {
    padding-bottom: 51px;
    font-size: 40px;
    line-height: 60px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title.letter-sm {
    letter-spacing: -1.2px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title:lang(en) {
    padding-bottom: 11px;
    line-height: 25px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title:lang(en) {
    line-height: 50px;
  }
}
.introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt {
  letter-spacing: -0.025em;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt:lang(ko) {
    font-family: "Noto Sans KR";
  }
}
.introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt:lang(en) {
    line-height: 17px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt:lang(en) {
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt + .history-txt {
    padding-top: 18px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt + .history-txt {
    padding-top: 26px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt + .history-txt:lang(en) {
    padding-top: 7px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt + .history-txt:lang(en) {
    padding-top: 0;
  }
}
.introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img {
  opacity: 0;
  transform: translate(0px, 100px);
  -webkit-transform: translate(0px, 100px);
  -moz-transform: translate(0px, 100px);
  -ms-transform: translate(0px, 100px);
  width: 100%;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img {
    padding-top: 17px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img {
    padding-top: 64px;
  }
}
.introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img img {
  width: 100%;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img + .text-group {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img + .text-group {
    margin-top: 135px;
  }
}
.introduce-history-page2 .history-txt-tab {
  position: relative;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab {
    padding: 40px 0 45px;
    margin: 0 15px;
    overflow-x: hidden;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-txt-tab {
    width: 1040px;
    padding: 54px 0 88px 0;
    margin: 0 auto;
  }
}
.introduce-history-page2 .history-txt-tab .history-line {
  position: absolute;
  width: 1px;
  background-color: #ea002c;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab .history-line {
    top: 49px;
    left: 54px;
    height: -webkit-calc(100% - 102px);
    height: -moz-calc(100% - 102px);
    height: calc(100% - 102px);
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-txt-tab .history-line {
    top: 80px;
    left: 352px;
    height: -webkit-calc(100% - 198px);
    height: -moz-calc(100% - 198px);
    height: calc(100% - 198px);
  }
}
.introduce-history-page2 .history-txt-tab .history-txt-content {
  position: relative;
  font-size: 0;
}
.introduce-history-page2 .history-txt-tab .history-txt-content:after {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 100px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content:after {
    top: 4px;
    left: 51px;
    width: 7px;
    height: 7px;
    border: 2px solid #ea002c;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content:after {
    top: 22px;
    left: 345px;
    width: 15px;
    height: 15px;
    border: 3px solid #ea002c;
  }
}
.introduce-history-page2 .history-txt-tab .history-txt-content + .history-txt-content {
  margin-top: 42px;
}
.introduce-history-page2 .history-txt-tab .history-txt-content .title-years {
  font-family: "SynergyDisplay";
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  letter-spacing: 0;
  color: #202021;
}
.introduce-history-page2 .history-txt-tab .history-txt-content .title-years:lang(en) {
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .title-years {
    width: 73px;
    font-size: 15px;
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .title-years {
    width: 420px;
    padding: 0 0 0 210px;
    font-size: 30px;
    line-height: 60px;
  }
}
.introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list {
    width: -webkit-calc(100% - 73px);
    width: -moz-calc(100% - 73px);
    width: calc(100% - 73px);
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list {
    width: -webkit-calc(100% - 420px);
    width: -moz-calc(100% - 420px);
    width: calc(100% - 420px);
    padding-top: 15px;
  }
}
.introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list .history-txt-item {
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list .history-txt-item {
    padding-left: 7px;
    font-size: 12px;
    line-height: 17px;
    text-indent: -7px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list .history-txt-item {
    padding: 4px 0;
    font-size: 15px;
    line-height: 22px;
    text-indent: -20px;
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list .history-txt-item + .history-txt-item {
    margin-top: 4px;
  }
}
.introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list .history-txt-item:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-radius: 100px;
  background-color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list .history-txt-item:before {
    width: 2px;
    height: 2px;
    margin-right: 5px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content .history-txt-list .history-txt-item:before {
    width: 5px;
    height: 5px;
    margin-right: 15px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page2 .history-txt-tab .history-txt-content:last-child:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 52px;
    width: 5px;
    height: 100%;
    background-color: #fff;
  }
}

/* 연혁 시작 // */
.introduce-history-page *, .introduce-history-page *:after, .introduce-history-page *:before {
  font-family: "SynergyDisplay";
}
.introduce-history-page:lang(en) *, .introduce-history-page:lang(en) *:after, .introduce-history-page:lang(en) *:before {
  font-family: "Roboto";
}
.introduce-history-page .content-header .section-inner .breadcrumb ul li span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", AppleSDGothicNeo, "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
}
@media (max-width: 768px) {
  .introduce-history-page .content-body .tab-header {
    padding-top: 10px;
    margin: 0 15px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .content-body .tab-header {
    width: 1040px;
    padding-top: 33px;
    margin: 0 auto;
  }
}
.introduce-history-page .content-body .tab-header .custom-select-wrap * {
  font-family: "Roboto", "Noto Sans KR";
}
@media (min-width: 769px) {
  .introduce-history-page .content-body .tab-header ul {
    border: none;
  }
}
.introduce-history-page .content-body .tab-header ul .tab-item {
  width: -webkit-calc(100% - 610px);
  width: -moz-calc(100% - 610px);
  width: calc(100% - 610px);
  border: 1px solid #c4c4c4;
  margin-top: 8px;
  background-color: #fff;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
}
.introduce-history-page .content-body .tab-header ul .tab-item a {
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0;
  color: 707071;
}
.introduce-history-page .content-body .tab-header ul .tab-item:first-child {
  border-right: none;
  border-top-left-radius: 5px;
}
.introduce-history-page .content-body .tab-header ul .tab-item:last-child {
  border-left: none;
  border-top-right-radius: 5px;
}
.introduce-history-page .content-body .tab-header ul .tab-item.active {
  width: 610px;
  border: none;
  margin-top: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #7b746c;
}
.introduce-history-page .content-body .tab-header ul .tab-item.active a {
  height: 60px;
  font-size: 23px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab {
    padding-top: 40px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab {
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history {
    padding-bottom: 67px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history {
    padding-bottom: 135px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history.first .history-img-wrap .history-desktop-img .history-img-title {
    letter-spacing: 0.29em;
  }
}
.introduce-history-page .history-img-tab .introduce-history .history-img-wrap {
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .history-img-wrap {
    margin-bottom: 40px;
    background-color: #fff !important;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .history-img-wrap {
    margin-bottom: 80px;
  }
}
.introduce-history-page .history-img-tab .introduce-history .history-img-wrap .history-mobile-img {
  padding-bottom: 52.83%;
  -webkit-background-size: cover;
          background-size: cover;
}
.introduce-history-page .history-img-tab .introduce-history .history-img-wrap .history-desktop-img {
  overflow: hidden;
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .history-img-wrap .history-desktop-img {
    width: 100%;
    height: 400px;
    background-position: center center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1921px) {
  .introduce-history-page .history-img-tab .introduce-history .history-img-wrap .history-desktop-img {
    width: 100%;
    height: 400px;
    max-width: 2200px;
    margin: 0 auto;
    -webkit-background-size: cover;
            background-size: cover;
  }
}
.introduce-history-page .history-img-tab .introduce-history .history-img-wrap .history-desktop-img .history-img-title {
  font-family: "SynergyDisplay";
  font-size: 70px;
  font-weight: 400;
  line-height: 400px;
  letter-spacing: 0.31em;
  color: #fff;
  height: 400px;
}
.introduce-history-page .history-img-tab .introduce-history .history-img-wrap .history-desktop-img .history-img-ani {
  position: absolute;
  top: 0;
  left: 0;
  height: 400px;
}
.introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title {
  font-weight: 600;
  letter-spacing: 0em;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title {
    padding-bottom: 22px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title {
    padding-bottom: 51px;
    font-size: 40px;
    line-height: 60px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title.letter-sm {
    letter-spacing: -1.2px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title:lang(en) {
    padding-bottom: 11px;
    line-height: 25px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-title:lang(en) {
    line-height: 50px;
  }
}
.introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt {
  letter-spacing: -0.025em;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt:lang(ko) {
    font-family: "Noto Sans KR";
  }
}
.introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt:lang(en) {
    line-height: 17px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt:lang(en) {
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt + .history-txt {
    padding-top: 18px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt + .history-txt {
    padding-top: 26px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt + .history-txt:lang(en) {
    padding-top: 7px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-txt + .history-txt:lang(en) {
    padding-top: 0;
  }
}
.introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img {
  opacity: 0;
  transform: translate(0px, 100px);
  -webkit-transform: translate(0px, 100px);
  -moz-transform: translate(0px, 100px);
  -ms-transform: translate(0px, 100px);
  width: 100%;
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img {
    padding-top: 17px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img {
    padding-top: 64px;
  }
}
.introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img img {
  width: 100%;
}
@media (max-width: 768px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img + .text-group {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-img-tab .introduce-history .section-inner .history-content .history-txt-wrap .history-content-img + .text-group {
    margin-top: 135px;
  }
}
.introduce-history-page .history-txt-tab {
  position: relative;
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab {
    padding: 40px 0 45px;
    margin: 0 15px;
    overflow-x: hidden;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-txt-tab {
    width: 1040px;
    padding: 54px 0 88px 0;
    margin: 0 auto;
  }
}
.introduce-history-page .history-txt-tab .history-line {
  position: absolute;
  width: 1px;
  background-color: #ea002c;
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab .history-line {
    top: 49px;
    left: 54px;
    height: -webkit-calc(100% - 102px);
    height: -moz-calc(100% - 102px);
    height: calc(100% - 102px);
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-txt-tab .history-line {
    top: 80px;
    left: 352px;
    height: -webkit-calc(100% - 198px);
    height: -moz-calc(100% - 198px);
    height: calc(100% - 198px);
  }
}
.introduce-history-page .history-txt-tab .history-txt-content {
  position: relative;
  font-size: 0;
}
.introduce-history-page .history-txt-tab .history-txt-content:after {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 100px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab .history-txt-content:after {
    top: 4px;
    left: 51px;
    width: 7px;
    height: 7px;
    border: 2px solid #ea002c;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-txt-tab .history-txt-content:after {
    top: 22px;
    left: 345px;
    width: 15px;
    height: 15px;
    border: 3px solid #ea002c;
  }
}
.introduce-history-page .history-txt-tab .history-txt-content + .history-txt-content {
  margin-top: 42px;
}
.introduce-history-page .history-txt-tab .history-txt-content .title-years {
  font-family: "SynergyDisplay";
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab .history-txt-content .title-years {
    width: 73px;
    font-size: 15px;
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-txt-tab .history-txt-content .title-years {
    width: 420px;
    padding: 0 0 0 210px;
    font-size: 30px;
    line-height: 60px;
  }
}
.introduce-history-page .history-txt-tab .history-txt-content .history-txt-list {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab .history-txt-content .history-txt-list {
    width: -webkit-calc(100% - 73px);
    width: -moz-calc(100% - 73px);
    width: calc(100% - 73px);
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-txt-tab .history-txt-content .history-txt-list {
    width: -webkit-calc(100% - 420px);
    width: -moz-calc(100% - 420px);
    width: calc(100% - 420px);
    padding-top: 15px;
  }
}
.introduce-history-page .history-txt-tab .history-txt-content .history-txt-list .history-txt-item {
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab .history-txt-content .history-txt-list .history-txt-item {
    padding-left: 7px;
    font-size: 12px;
    line-height: 17px;
    text-indent: -7px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-txt-tab .history-txt-content .history-txt-list .history-txt-item {
    padding: 4px 0;
    font-size: 15px;
    line-height: 22px;
    text-indent: -20px;
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab .history-txt-content .history-txt-list .history-txt-item + .history-txt-item {
    margin-top: 4px;
  }
}
.introduce-history-page .history-txt-tab .history-txt-content .history-txt-list .history-txt-item:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-radius: 100px;
  background-color: #202021;
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab .history-txt-content .history-txt-list .history-txt-item:before {
    width: 2px;
    height: 2px;
    margin-right: 5px;
  }
}
@media (min-width: 769px) {
  .introduce-history-page .history-txt-tab .history-txt-content .history-txt-list .history-txt-item:before {
    width: 5px;
    height: 5px;
    margin-right: 15px;
  }
}
@media (max-width: 768px) {
  .introduce-history-page .history-txt-tab .history-txt-content:last-child:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 52px;
    width: 5px;
    height: 100%;
    background-color: #fff;
  }
}

/* // 연혁 시작 끝 */
/* CI/BI 시작 // */
.brand-cibi-page {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .brand-cibi-page .content-body {
    padding-bottom: 42px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .content-body {
    padding-bottom: 92px;
  }
}
.brand-cibi-page .content-body .section-inner .desc {
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #666;
}
@media (max-width: 768px) {
  .brand-cibi-page .content-body .section-inner .desc {
    font-size: 13px;
    line-height: 21px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .content-body .section-inner .desc {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .content-body .section-inner .desc:lang(en) {
    line-height: 18px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .content-body .section-inner .desc:lang(en) {
    line-height: 26px;
  }
}
.brand-cibi-page .content-body .section-inner .desc:lang(en) {
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-download {
    padding: 20px 0 47px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-download {
    padding: 40px 0 92px;
  }
}
.brand-cibi-page .brand-download .section-inner .download-content {
  border: 10px solid #f0f0f0;
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-download .section-inner .download-content {
    height: 350px;
    font-size: 0;
  }
}
.brand-cibi-page .brand-download .section-inner .download-content .download-item {
  position: relative;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item {
    display: block;
    height: 215px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item {
    display: inline-block;
    width: 50%;
    height: 100%;
  }
}
.brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link {
  display: block;
  text-align: center;
  height: 100%;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link {
    padding: 37px 0 35px;
  }
}
.brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link .logo-img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link .logo-img {
    height: 76px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link .logo-img {
    height: 250px;
  }
}
.brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link .download-icon {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link .download-icon {
    padding: 37px 0 0;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link .download-icon .download-img {
    width: 100px;
    height: 30px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item .download-link .download-icon .download-img {
    width: 130px;
    height: 40px;
  }
}
.brand-cibi-page .brand-download .section-inner .download-content .download-item + .download-item:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #d4d4d4;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item + .download-item:after {
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 0;
    width: 70%;
    height: 1px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-download .section-inner .download-content .download-item + .download-item:after {
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 1px;
    height: 208px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-identity .section-inner .identity-content .identity-textgroup {
    padding: 8px 0 30px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-identity .section-inner .identity-content .identity-textgroup {
    padding: 21px 0 64px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-identity .section-inner .identity-content .identity-figure-content {
    padding-left: 186px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-identity .section-inner .identity-content .identity-figure-content .identity-figure img {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-identity .section-inner .identity-content .identity-figure-content .identity-figure img {
    height: 170px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-textgroup {
    padding: 8px 0 30px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-textgroup {
    padding: 21px 0 33px;
  }
}
.brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content {
  border: 1px solid #d4d4d4;
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content {
    height: 300px;
    font-size: 0;
  }
}
.brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img {
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img {
    display: block;
    padding-bottom: 20px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img {
    display: inline-block;
    width: 50%;
    height: 100%;
  }
}
.brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img .motif-txt {
  padding: 38px 0 44px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0;
  color: #ea002c;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img .motif-txt {
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img .motif-txt {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img img {
    height: 114px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img img {
    height: 164px;
  }
}
.brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img + .motif-img:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #d4d4d4;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img + .motif-img:after {
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 0;
    width: 70%;
    height: 1px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-motif .section-inner .motif-content .motif-img-content .motif-img + .motif-img:after {
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 1px;
    height: 208px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-color {
    padding-bottom: 42px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-color {
    padding-bottom: 92px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-textgroup {
    padding: 8px 0 30px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-textgroup {
    padding: 21px 0 33px;
  }
}
.brand-cibi-page .brand-color .section-inner .color-content .color-img-content {
  border: 1px solid #d4d4d4;
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-img-content {
    font-size: 0;
  }
}
.brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img {
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img {
    padding: 20px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    height: 100%;
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img img {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img img {
    height: 166px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img img.color-img-en {
    height: 186px;
  }
}
.brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img + .color-img:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #d4d4d4;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img + .color-img:after {
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 0;
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    height: 1px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-color .section-inner .color-content .color-img-content .color-img + .color-img:after {
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 1px;
    height: -webkit-calc(100% - 60px);
    height: -moz-calc(100% - 60px);
    height: calc(100% - 60px);
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-mark .section-inner .mark-content .mark-textgroup {
    padding: 8px 0 30px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark .section-inner .mark-content .mark-textgroup {
    padding: 21px 0 103px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark .section-inner .mark-content .mark-img-content {
    padding-left: 117px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-mark .section-inner .mark-content .mark-img-content .mark-img img {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark .section-inner .mark-content .mark-img-content .mark-img img {
    height: 94px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-mark-color {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark-color {
    padding-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-textgroup {
    padding: 8px 0 30px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-textgroup {
    padding: 21px 0 33px;
  }
}
.brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content {
  border: 1px solid #d4d4d4;
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content {
    font-size: 0;
  }
}
.brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img {
  position: relative;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img {
    padding: 20px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img {
    display: inline-block;
    vertical-align: top;
    padding: 31px 255px 0 31px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img img {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img img {
    width: 380px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img:nth-child(2) {
    padding: 31px 0 28px 45px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img:nth-child(2) img {
    width: 300px;
  }
}
.brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img:nth-child(2):after {
  content: "";
  display: block;
  position: absolute;
  background-color: #d4d4d4;
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img:nth-child(2):after {
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 0;
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    height: 1px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-mark-color .section-inner .mark-color-content .mark-color-img-content .mark-color-img:nth-child(2):after {
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 1px;
    height: -webkit-calc(100% - 60px);
    height: -moz-calc(100% - 60px);
    height: calc(100% - 60px);
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-history {
    padding-bottom: 4px;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-history {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .brand-cibi-page .brand-history .brand-history-textgroup {
    padding: 8px 0 0;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-history .brand-history-textgroup {
    padding: 21px 0 0;
  }
}
@media (min-width: 769px) {
  .brand-cibi-page .brand-history .brand-history-textgroup + table {
    margin-top: 60px;
  }
}

/* // CI/BI 끝 */
/* 스포츠 시작 // */
.introduce-sports-page *, .introduce-sports-page *:after, .introduce-sports-page *:before {
  font-family: "SynergyDisplay";
}
.introduce-sports-page:lang(en) *, .introduce-sports-page:lang(en) *:after, .introduce-sports-page:lang(en) *:before {
  font-family: "Roboto";
}
.introduce-sports-page .content-header .section-inner .breadcrumb ul li span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Segoe UI", AppleSDGothicNeo, "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", "Microsoft NeoGothic", "Droid sans", Verdana, Arial, sans-serif;
}
@media (min-width: 769px) {
  .introduce-sports-page .content-header .section-inner .breadcrumb {
    bottom: 6px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .content-header .section-inner h3.type-txt {
    margin-bottom: 37px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .content-header .section-inner h3.type-txt {
    margin-bottom: 54px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner {
    padding-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 {
    padding-bottom: 35px;
    border-bottom: 1px solid #202021;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 {
    border-bottom: 2px solid #202021;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .img-wrap img {
    max-width: 330px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .img-wrap img {
    width: 468px;
    margin-top: 10px;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap {
    margin-top: 18px;
  }
}
.introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .desc-nor {
  font-weight: 400;
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .desc-nor {
    font-family: "Noto Sans KR";
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #666666;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .desc-nor {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0;
    color: #202021;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .desc-nor:lang(en) {
    line-height: 18px;
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .desc-nor:lang(en) {
    font-family: "Roboto";
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .desc-nor + .desc-nor {
    margin-top: 7px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .desc-nor + .desc-nor {
    margin-top: 24px;
  }
}
.introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .sports-link {
  display: block;
  font-weight: 300;
  letter-spacing: 0;
  color: #fff;
  background: #202021 url("../images/introduce/2021/white-btn-icon_lg.png") center right 22px/auto no-repeat;
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .sports-link {
    width: 150px;
    height: 30px;
    border-radius: 30px;
    padding-left: 14px;
    margin-top: 30px;
    font-size: 13px;
    line-height: 31px;
    background-image: url("../images/introduce/2021/sports-btn-icon_sm.png");
    -webkit-background-size: 6px 6px;
            background-size: 6px;
    background-position: center right 14px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .sports-link {
    width: 200px;
    height: 50px;
    padding-left: 23px;
    border-radius: 50px;
    margin: 33px 0 50px;
    font-size: 16px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .sports-link:lang(en) {
    width: 140px;
    height: 35px;
    padding-left: 33px;
    border-radius: 35px;
    line-height: 35px;
    background-position: center right 33px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-01 .txt-wrap .sports-link:lang(en) {
    padding-left: 42px;
    margin-bottom: 40px;
    font-size: 20px;
    background-position: center right 44px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 {
    margin-top: 84px;
  }
}
.introduce-sports-page .cbody-01 .section-inner .part-02 .txt-wrap .desc-str.bdr-bottom {
  border: none;
  font-weight: 600;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .txt-wrap .desc-str.bdr-bottom {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .txt-wrap .desc-str.bdr-bottom {
    font-size: 30px;
    line-height: 60px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap {
    margin-top: 9px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap {
    font-size: 0;
    padding-top: 19px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list {
    display: block;
    height: 70px;
    border-bottom: 1px solid #eaeaea;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list {
    display: inline-block;
    width: 33.33%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list:last-child {
    margin: 0;
  }
}
.introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link {
  display: block;
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link {
    font-size: 0;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .cell-wrap {
    display: inline-block;
    width: 70px;
    vertical-align: middle;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .cell-wrap {
    width: 100%;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .cell-wrap img {
    height: 40px;
    margin: 15px 0;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .cell-wrap img {
    height: 80px;
  }
}
.introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .name {
  display: block;
  font-weight: 400;
  letter-spacing: 0;
  color: #202021;
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .name {
    display: inline-block;
    width: -webkit-calc(100% - 175px);
    width: -moz-calc(100% - 175px);
    width: calc(100% - 175px);
    padding-left: 25px;
    vertical-align: middle;
    font-size: 12px;
    line-height: 70px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .name {
    padding-bottom: 18px;
    font-size: 20px;
    line-height: 20px;
  }
}
.introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .btn {
  border: 1px solid #202021;
  margin: 0 auto;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0;
  color: #202021;
  background: url("../images/introduce/2021/black-btn-icon_lg.png") center right 18px/auto no-repeat;
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .btn {
    display: inline-block;
    width: 105px;
    height: 25px;
    padding-left: 10px;
    border-radius: 25px;
    vertical-align: middle;
    font-size: 11px;
    line-height: 23px;
    background-image: url("../images/introduce/2021/black-btn-icon_sm.png");
    -webkit-background-size: 5px 5px;
            background-size: 5px;
    background-position: center right 11px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .btn {
    width: 160px;
    height: 40px;
    border-radius: 40px;
    padding-left: 17px;
    font-size: 16px;
    line-height: 38px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .btn:lang(en) {
    padding-left: 18px;
    background-position: center right 18px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .part-02 .youtube-list-wrap .youtube-list .youtube-list-link .btn:lang(en) {
    padding-left: 30px;
    background-position: center right 30px;
  }
}
@media (max-width: 768px) {
  .introduce-sports-page .cbody-01 .section-inner .sports-banner-bottom {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .introduce-sports-page .cbody-01 .section-inner .sports-banner-bottom {
    margin-top: 100px;
  }
}

/* // 스포츠 시작 */