.esg-tab-menu {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  background-color: #F5F5F5;
  padding: 0 16px;
}

.esg-tab-menu .tab {
  padding: 20px 0px;
  font-size: 20px;
  width:187px;
  color: #333;
  cursor: pointer;
  position: relative;
  text-align:center;
}

.esg-tab-menu .tab.active {
  color: #006838; /* 포인트 색상 */
  font-weight: 600;
}

.esg-tab-menu .tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 3px;
  background-color: #006838;
  border-radius: 2px;
}

.esg-wrap {
  padding: 100px 0px;
  max-width: 1120px;
  margin: auto;
}
.esg-wrap h2.title {color: #000; text-align: center; font-size:36px; font-weight:bold;}


.btn-outline {
  border: 1px solid #006838;
  padding: 10px 20px;
  background: none;
  color: #006838;
  font-weight: bold;
  margin: 30px 0;
  cursor: pointer;
  border-radius: 4px;
}

.esg-campaign .campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.accordion-header {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 24px 12px 24px 12px;
  font-size:22px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.arrow-icon {
  transition: transform 0.3s ease;
}

.esg-accordion.open .arrow-icon {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
}

.esg-description {margin-bottom:16px;}
.esg-description h3 {
  font-size: 22px;
  font-weight:bold;
  margin-bottom: 16px;
}

.esg-description p {
  font-size: 16px;
  color: #444;
  line-height:24px;
}
.esg-description p > span {color:#999;}

.esg-photo small {
	color: #222;
	font-family: "Noto Sans KR";
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 171.429% */
	letter-spacing: -0.28px;
	margin-bottom: 8px;
    display: inline-block;
}



.esg-download {
  margin-top: 32px;
}

.btn-download {
	transition:all 0.3s;
	display:inline-block;
	padding:18px 24px;
	border-radius:10px;
	border-radius: 10px;
	border: 1px solid #01592E;
	width:252px;
	font-size: 18px;
	font-weight:bold;
	color:#01592E;
	background:url('/resource/images/esg/icon_download.png')no-repeat right 24px center;
}
.btn-download:hover {color:#fff; background:#01592E url('/resource/images/esg/icon_download_on.png')no-repeat right 24px center;}
.btn-link {
	display:inline-block;
	padding:18px 24px;
	border-radius:10px;
	border-radius: 10px;
	border: 1px solid #01592E;
	width:252px;
	font-size: 18px;
	font-weight:bold;
	color:#01592E;
	background:url('/resource/images/esg/icon_link.png')no-repeat right 24px center;
}
.btn-link:hover {color:#fff; background:#01592E url('/resource/images/esg/icon_link_on.png')no-repeat right 24px center;}

.esg_float {margin-bottom:40px;}
.esg_float:after {clear:both; content:""; display:block;}
.esg_org_graph {float:left;}
.esg-photo {margin:15px 0 0 16px; float:left; width:340px;}
.esg-photo img {margin-bottom:8px;}
.esg-layout {border-bottom:1px solid #000; padding:40px 0;}
.second-layout {border-bottom:none;}

.esg_campaign {
	margin-top:26px;
	display: flex;
	padding: 10px 0px;
	align-items: flex-start;
	align-content: flex-start;
	gap: 14px;
	align-self: stretch;
	flex-wrap: wrap;
}

.esg-table-wrap > p {
	color: #444;

	/* Base Text */
	font-family: "Noto Sans KR";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	letter-spacing: -0.32px;
}
.esg-table {
  width: 100%;
  border-collapse: collapse;
  border-top:2px solid #000;
  table-layout: fixed;
  margin-top:100px;
}
.esg-table tr th:first-child, .esg-table tr td:first-child {border-left:none;}
.esg-table tr th:last-child, .esg-table tr td:last-child {border-right:none;}
.esg-table th {border:1px solid #CCCCCC; color:#444; border-top:none; background:#F5F5F5; font-size:16px; font-weight:500;}
.esg-table td {border:1px solid #CCCCCC; color:#444; font-size:16px; vertical-align: middle;}
.esg-table td.taleft {text-align:left; padding-left:10px;}
.esg-table td.taright {text-align:right; padding-right:10px;}
.esg-table td strong {font-weight:700;}
.esg-table th, .esg-table td {
  padding: 11px 0;
  text-align: center;
}

.esg-table thead th {
  background-color: #f7f7f7;
  font-weight: 600;
}

.esg-note {
  font-size: 13px;
  color: #555;
  margin-top: 12px;
  line-height: 1.4;
}
/* 각 열 너비 지정 */
.esg-table colgroup col:nth-child(1) {
  width: 200px; /* 구분 (colspan 포함) */
}

.esg-table colgroup col:nth-child(2) {
  width: 400px; /* 항목명 (예: 친환경 인증 제품 매출액) */
}

.esg-small-tab {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  justify-content: center;
  margin-top:12px;
}

.esg-small-tab .tab {
  color: #ccc;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.esg-small-tab .tab.active {
  color: #01592E;
  font-weight: 700;
}

.esg-small-tab .divider {
  color: #ddd;
  margin: 0 4px;
}

.esg-text-wrap {
	padding:40px 0;
	border-bottom:1px solid #ccc;
}
.esg-text-wrap:last-child {border-bottom:none;}
.title_imgBox {padding:10px; margin-top:16px;}
.title_imgBox h3 {
	color: #222;
	text-align: center;

	/* Subtitle Text */
	font-family: "Noto Sans KR";
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 34px; /* 154.545% */
	letter-spacing: -0.44px;
}
.eco-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  color: #222;
  margin-top:16px;
}

.eco-table th {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 17px 0;
  background-color: #f9f9f9;
  border-top:2px solid #444;
  border-bottom: 1px solid #ccc;
}


.eco-table td {
	text-align:center;
	padding: 16px;
	vertical-align: top;
	border-bottom: 1px solid #e0e0e0;
	color: #444;
	font-size: 16px;
	vertical-align:middle;
}
.eco-table td img {margin-bottom:8px;}
.eco-table th, .eco-table td {border:1px solid #ccc;}
.eco-table th {border-top:2px solid #000;}
.eco-table td:nth-child(2) {text-align:left;}
.eco-table th:first-child, .eco-table td:first-child {border-left:none;}
.eco-table th:last-child, .eco-table td:last-child {border-right:none;}

.safety-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #222;
}

.safety-table th,
.safety-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  vertical-align: top;
}

.safety-table th {
  background-color: #f9f9f9;
  text-align: center;
  font-weight: 500;
}

.safety-table thead td {
  text-align: center;
  font-weight: 500;
  border: 1px solid #ccc;
}

.safety-table ul {
  margin: 0;
  padding-left: 18px;
  list-style-type: disc;
}

.safety-table {border-top:2px solid #000; margin-top:10px;}
.safety-table th {
	border-left:none;
	vertical-align:middle;
	color: #444;
	text-align: center;
	font-family: "Noto Sans KR";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
}
.safety-table td, .safety-table td li {
	color: #444;
	/* Base Text */
	font-family: "Noto Sans KR";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	letter-spacing: -0.32px;
}
.safety-table td:last-child {border-right:none;}
.floatImg {float:right;}
.floatBox {float:left; width:552px;}
.cf:after {clear:both; content:""; display:block;}
.esgimgList {margin-top:16px;}
.esgimgList li {float:left; margin-right:14px;}
.esgimgList li:last-child {margin-right:0;}
.imgTextBox {width:550px; float:left;}
.imgTextBox2 {width:360px; float:left; margin-right: 20px;}
.imgTextBox2:last-child {margin-right:0px;}
.imgTextBox2 img {width:100%;}
.imgTextBox h3, .imgTextBox2 h3 {margin-top:12px;}
.imgTextBox:nth-child(odd) {margin-right:20px;}
.imgTextBox ul li {
    font-size: 16px;
    color: #444;
    line-height: 24px;
	padding-left: 11px;
    text-indent: -11px;
}

.growth-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #222;
}

.growth-table th,
.growth-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  vertical-align: top;
  text-align:center;
}

.growth-table thead th {
  background-color: #f9f9f9;
  text-align: center;
  font-weight: 500;
}

.growth-table thead td {
  text-align: center;
  font-weight: 500;
  border: 1px solid #ccc;
}

.growth-table ul {
  margin: 0;
  padding-left: 18px;
  list-style-type: disc;
}

.growth-table {
  border-top: 2px solid #000;
  margin-top: 10px;
}

.growth-table th {
  border-left: none;
  color: #444;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.growth-table th:last-child, .growth-table td:last-child {border-right:none;}
.growth-table th:last-child, .growth-table td:last-child {border-right:none;}
.growth-table td:first-child {border-left:none;}
.growth-table td:last-child {text-align:left;}
.growth-table td {
  color: #444;
  font-family: "Noto Sans KR";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.32px;
}
.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}
.tooltip sup {position:relative; top:-10px;}


.tooltip .tooltiptext {
  visibility: hidden;
  width: max-content;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 6px 8px;
  border-radius: 6px;
  position: absolute;
  z-index: 10;
  bottom: 120%; /* 텍스트 위에 표시 */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
  white-space: nowrap;
}

.tooltip .tooltiptext::after {
  content: '';
  position: absolute;
  top: 100%; /* 말풍선 아래쪽 삼각형 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.sticky-submenu {
  position: sticky;
  top: 78px; /* 헤더 높이만큼 떨어뜨림 */
  background-color: white;
  z-index: 999; /* 헤더보다 낮지만 다른 요소보단 위 */
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}