@charset "UTF-8";
:root {
  --primary-color-1: #0066b3;
  --primary-color-2: #0077b4;
  --font-color-1: #333;
  --font-color-2: #222;
  --font-color-3: #000;
  --font-color-4: #666;
}
.mb30 {
  margin-bottom: 30px;
}
.wrap {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.icon_box img {
  display: block;
  width: 100%;
}
.wrap2 {
  max-width: 1454px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.wrap3 {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.wrap4 {
  max-width: 964px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.flex_sb {
  display: flex;
  justify-content: space-between;
}
header {
  z-index: 1000;
  position: relative;
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  background: #fff;
}
header.on {
  background: var(--primary-color-1);
}
header.on .logo img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
header.on .gnb_wrap > ul > li > a {
  color: #fff;
}
header.on .btn_menu span {
  background: #fff;
}
header .hd_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  padding: 0 55px;
  height: 100px;
  margin: 0 auto;
}
header .logo {
  width: 153px;
  margin-right: 100px;
}
header .logo a {
  display: block;
}
header .logo img {
  width: 100%;
  display: block;
}
header .btn_menu {
  width: 26px;
  height: 16px;
  position: relative;
}
header .btn_menu span {
  position: absolute;
  width: 26px;
  height: 2px;
  display: block;
  background: #222;
}
header .btn_menu span:first-child {
  left: 0;
  top: 0;
}
header .btn_menu span:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .btn_menu span:nth-child(3) {
  left: 0;
  bottom: 0;
}
header .btn_menu.on {
  width: 20px;
  height: 20px;
}
header .btn_menu.on span:first-child {
  transform: rotate(45deg);
  top: 50%;
}
header .btn_menu.on span:nth-child(2) {
  display: none;
}
header .btn_menu.on span:last-child {
  transform: rotate(-45deg);
  top: 50%;
  bottom: initial;
}
.gnb_wrap > ul {
  display: flex;
  align-items: center;
}
.gnb_wrap > ul > li {
  transition: 0.2s ease-in-out;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
}

.sub_gnb {
  max-height: calc(100vh - 100px);
  overflow-y: scroll;
  transition: 0.2s ease-in-out;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
}
.site_map {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 110;
  background: #fff;
  width: 100%;
  height: 888px;
  display: none;
}
.site_map.on {
  display: block;
}
.site_map_wrap {
  position: relative;
}
.site_map_wrap > ul {
  width: 100%;
  height: 888px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.site_map_wrap > ul > li {
  width: calc(100% / 7);
  padding-left: 45px;
  height: 100%;
  border-right: 1px solid #eee;
  padding-top: 175px;
}
.site_map_close {
  position: absolute;
  top: 42px;
  right: 56px;
  width: 21px;
  display: block;
}
.site_map_close img {
  width: 100%;
  display: block;
}
.site_map_wrap > ul > li:last-child {
  border-right: none;
}
.site_map_wrap > ul > li > a {
  color: #0c5e9e;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 64px;
  display: block;
  width: fit-content;
  position: relative;
}

.gnb_wrap > ul > li > a {
  display: block;
  text-align: center;
}
.site_map_wrap > ul > li:hover > a::after {
  width: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 10;
}
.site_map_wrap > ul > li > a {
  position: relative;
}
.site_map_wrap > ul > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -7px;
  display: block;
  content: "";
  background-color: var(--primary-color-1);
}
.site_map .dep2 li a {
  color: #444;
  font-size: 2.2rem;
  font-weight: 500;
}
.site_map .dep2 li + li {
  margin-top: 40px;
}
.gnb_wrap li.on .sub_gnb {
  transition: 0.2s ease-in-out;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
}
.dimmed {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 80;
  background-color: #000;
  display: none;
  top: 0;
  opacity: 0;
}
.dimmed.on {
  display: block;
  opacity: 0.6;
}
.gnb_wrap > ul > li > a {
  font-size: 1.8rem;
  line-height: 100px;
  font-weight: bold;
  color: var(--font-color-2);
}
.sub_gnb .img_box {
  width: 265px;
  height: 105px;
  overflow: hidden;
  margin-bottom: 26px;
}
.sub_gnb li:hover img {
  transform: scale(1.2);
}
.sub_gnb .img_box img {
  width: 100%;
  transition: 0.2s ease-in-out;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
}

.flamme a {
  display: block;
}
.flamme a img {
  display: block;
  width: 100%;
}
.hd_right {
  display: flex;
  align-items: center;
  margin-left: 177px;
}
.lang_box {
  margin-right: 32px;
}
.gnb_wrap li {
  position: relative;
}
.gnb_wrap > ul > li {
  padding: 0 3.1%;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
}
.gnb_wrap {
  width: calc(100% - 458px);
  max-width: 1039px;
}

.gnb_wrap ul > li:hover .sub_gnb {
  opacity: 1;
  display: block;
  height: fit-content;
  transition: 0.4s ease-in-out;

  padding-bottom: 69px;
  padding-top: 40px;
}
.sub_gnb {
  height: 0;
  background: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 100px;

  /* opacity: 0; */
  transition: 0.4s ease-in-out;
}
.sub_gnb ul {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 44px;
  column-gap: 40px;
}
.sub_gnb ul img {
  display: block;
  width: 265px;
}
.sub_gnb ul p {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
  font-family: "NanumBarunGothic";
}
.sub_gnb ul span {
  font-size: 1.6rem;
  line-height: 1.38;
  font-family: "NanumBarunGothic";
}

.lang_box {
  border: #eee;
  background: #fff;
}
.lang_box select::-ms-expand {
  display: none;
}
.lang_box {
  position: relative;
}
.lang_box::before {
  content: "";
  display: block;
  background: url(../img/earth.png) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.lang_box select {
  width: 100px;
  background: #fff;
  height: 40px;

  border: 1px solid #eee;
  background: url("../img/lang_box_arrow.png") calc(100% - 10px) center
    no-repeat;
  background-size: 10px;
  padding: 5px 20px 5px 34px;
  border-radius: 4px;
  outline: 0 none;
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--primary-color-1);
  font-size: 1.4rem;
}
.lang_list {
  border-top: 1px solid #eee;
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  display: none;
}
.lang_list ul {
  display: flex;
  align-items: center;
  column-gap: 14px;
  justify-content: center;
  padding-top: 20px;
}
.lang_list ul li a {
  font-size: 14px;
  font-weight: bold;
  color: #666;
}
.lang_list ul li.on a {
  color: #2086cd;
}

footer {
  width: 100%;
  padding: 86px 55px 60px;
  background: #1e2432;
  position: relative;
  z-index: 50;
}
footer .ft_top {
  border-bottom: 1px solid #353a47;
  margin-bottom: 27px;
  padding-bottom: 20px;
}
footer .ft_top ul {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
footer .ft_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .ft_top ul li {
  position: relative;
}
footer .ft_top ul li + li::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background: #a4a4a4;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
footer .ft_top ul a {
  color: #a4a4a4;
  display: block;
  font-size: 14px;
}
.ft_logo {
  width: 99px;
  display: block;
}
.ft_logo img {
  width: 100%;
  display: block;
}
.ft_info p.txt {
  color: #f8f8f8;
  font-size: 14px;
  font-family: "NanumBarunGothic";
  margin-bottom: 54px;
}
footer .ft_mnone {
  display: none;
}
.copyright {
  color: #a4a4a4;
  font-family: "NanumBarunGothic";
  font-size: 12px;
}
footer select {
  background: #1a1f2b;
  width: 220px;
  height: 57px;
  color: #888;
  border: 1px solid #888;
  background: url("../img/ft_select.png") calc(100% - 20px) center no-repeat;
  background-size: 10px;
  padding: 5px 20px 5px 34px;
  outline: 0 none;
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#top_btn {
  background: #0069ce;
  width: 70px;
  height: 70px;
  display: block;
  position: fixed;
  bottom: 50px;
  right: 20px;
  cursor: pointer;
  z-index: 200;
}
#top_btn.sub_pg {
  background: #000;
  width: 52px;
  height: 52px;
  border-radius: 52px;
}
#top_btn.sub_pg a {
  width: 52px;
  height: 52px;
}
#top_btn a {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top_btn a img {
  width: 22px;
  transform: rotate(-90deg);
  display: block;
}
.m_none {
  display: block;
}
/*  */
.main_slide {
  height: 860px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 50px;
}
.main_slide .mySwiper {
  height: 860px;
  width: 100%;
}
.main_slide_box {
  width: 100%;
  height: 860px;
  position: relative;
  background: url(../img/main_slide01.jpg) no-repeat center / cover;
}
.main_slide_box02 {
  width: 100%;
  height: 860px;
  position: relative;
  background: url(../img/main_slide02.jpg) no-repeat center / cover;
}
.main_slide_box03 {
  width: 100%;
  height: 860px;
  position: relative;
  background: url(../img/main_slide03.jpg) no-repeat center / cover;
}
.main_slide_img > img {
  width: 100%;
  height: 860px;
  object-fit: cover;
}
.main_slide .btn_more a {
  width: 219px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  background: #333333;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
}
.main_slide .btn_more .icon {
  width: 12px;
  display: block;
}
.main_slide_box .txt {
  color: #fff;
  padding-top: 276px;
}
.main_slide_box .txt h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 34px;
  line-height: 1.2;
}
.main_slide_box .txt p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 50px;
}
.main_slide .swiper-pagination .current {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.main_slide .swiper-pagination .total {
  color: rgba(255, 255, 255, 0.15);
  font-size: 18px;
  font-weight: 500;
}
.main_slide .autoplay-progress {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 45px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
}
.main_slide .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  stroke-width: 2px;
  stroke: #fff;
  fill: none;
  stroke-dashoffset: calc(100 * (1 - var(--progress)));
  stroke-dasharray: 100;
}
.main_slide .progress-box {
  position: relative;
  width: 110px;
  height: 26px;
  z-index: 11;
}
.main_slide .progress-wrap {
  position: absolute;
  left: 50%;
  top: 221px;
  transform: translateX(-50%);
  max-width: 1460px;
  width: 100%;
  padding: 20px;
  z-index: 20;
}
.main_slide .swiper-pagination {
  display: flex;
  color: #fff;
  justify-content: space-between;
  position: static;
  text-align: left;
}

/*  NEW
ARRIVALS */
.arrivals_wrap {
  margin: 0 auto 50px;
}
.arrivals_wrap .tit {
  margin-bottom: 22px;
}
.arrivals_wrap > .flex_sb {
  margin-bottom: 22px;
}
.arrivals_wrap .tit h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.06;
  color: var(--font-color-3);
  margin-bottom: 38px;
  position: relative;
}
.arrivals_wrap .tit h2::after {
  content: "";
  display: block;
  background: var(--primary-color-1);
  width: 26px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -26px;
}
.arrivals_wrap .tit p {
  color: var(--font-color-4);
  font-size: 1.8rem;
  line-height: 1;
}
.arrivals_list ul {
  column-gap: 21px;
  display: flex;
  align-items: flex-start;
}
.arrivals_list li {
}
.arrivals_list li a {
  display: block;
  height: 100%;
  padding: 15px;
}
.arrivals_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s ease-in;
  /* background: var(--primary-color-2); */
}
.arrivals_box p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 1;
  text-align: center;
}
.arrivals_box p span {
  font-size: 20px;
  font-weight: 100;
  font-family: "Noto Sans KR", sans-serif;
  text-align: center;
  color: #fff;
}

.arrivals_item:hover .arrivals_box {
  background: var(--primary-color-2);
  padding: 39px 0 24px;
  opacity:0.6;
}
.arrivals_item button {
  font-size: 50px;
  font-weight: 100;
  height: 25px;
  display: block;
  color: #fff;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: 0.2s ease-in;
  display: none;
}
.arrivals_item:hover .arrivals_box button {
  opacity: 1;
  display: block;
}
.arrivals_item01 {
  width: 473px;
  height: 206px;
  background: url(../img/arrivals_item01.jpg) no-repeat center / cover;
}
.arrivals_item02 {
  width: 924px;
  height: 360px;
  background: url(../img/arrivals_item02.jpg) no-repeat center / cover;
}
.arrivals_item03 {
  width: 474px;
  height: 291px;
  background: url(../img/arrivals_item03.jpg) no-repeat center / cover;
}
.arrivals_item04 {
  width: 370px;
  height: 379px;
  background: url(../img/arrivals_item04.jpg) no-repeat center / cover;
}
.arrivals_item05 {
  width: 532px;
  height: 292px;
  background: url(../img/arrivals_item05.jpg) no-repeat center / cover;
}
/* .news_wrap */

.news_wrap {
  background: #f8f8f8;
  padding-top: 110px;
  padding-bottom: 123px;
  box-shadow: inset 0px 7px 10px rgba(0, 0, 0, 0.04);
}
.news_wrap .tit {
  color: var(--font-color-2);
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 82px;
}
.news_menu {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 70px;
}
.news_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.news_menu li {
  width: calc(100% / 4);
  padding-bottom: 22px;
  border-bottom: 2px solid #eeeeee;
  position: relative;
}
.news_menu li + li::after {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background: #eeeeee;
  position: absolute;
  left: 0;
  top: 6px;
}
.news_menu li a {
  display: block;
  text-align: center;
  color: #3c3c3c;
  line-height: 1;
  font-size: 18px;
}
.news_menu li.on {
  border-bottom: 2px solid var(--primary-color-2);
}
.news_menu li.on a {
  color: var(--primary-color-2);
}
.news_img {
  margin-bottom: 29px;
}
.news_img img {
  width: 100%;
  display: block;
}
.news_category_box {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-bottom: 24px;
}
.news_category_box span {
  font-size: 16px;
  display: inline-block;
  color: #666;
}
.news_category_box span.news_category {
  color: var(--primary-color-1);
  position: relative;
}
.news_category_box span.news_category::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background: #e5e5e5;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}
.news_item p {
  font-size: 18px;
  height: 60px;
  margin-bottom: 14px;
  color: #2d2d2d;
}
.news_day_wrap {
  border-top: 1px solid #e5e5e5;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_day {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.news_day span {
  font-size: 16px;
  line-height: 1.2;
  display: inline-block;
  color: #888;
}
.news_day .icon_box {
  width: 16px;
  height: 16px;
}
.news_day .icon_box img {
  display: block;
  width: 100%;
}
.news_day_wrap button {
  width: 25px;
  display: block;
}
.news_day_wrap button img {
  width: 100%;
  display: block;
}
.news_img {
  position: relative;
  height: fit-content;
  display: block;
}
.news_img_box {
  position: relative;
  height: fit-content;
  display: block;
}

.news_img::after,
.news_img::before {
  width: 4px;
  height: 0;
  position: absolute;
  display: block;
  content: "";
  background-color: var(--primary-color-1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.news_img_box::after,
.news_img_box::before {
  width: 0;
  height: 4px;
  position: absolute;
  display: block;
  content: "";
  background-color: var(--primary-color-1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.news_img_box::after,
.news_img::after {
  left: 0;
  top: 0;
}

.news_img_box::before,
.news_img::before {
  right: 0;
  bottom: 0;
}

.news_item:hover .news_img::after,
.news_item:hover .news_img::before {
  height: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 10;
}
.news_item:hover .news_img_box::after,
.news_item:hover .news_img_box::before {
  width: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 10;
}
.news_slide_btn {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  background: #444444;
  transition: 0.2s ease-in;
}
.news_slide_btn img {
  width: 24px;
  display: block;
}
.news_slide_btn:hover {
  background: var(--primary-color-1);
}
.news_slide_btn_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 70px);
  position: absolute;
  left: -35px;
  top: 113px;
  z-index: 50;
}
.news_slide {
  position: relative;
}
.news_more {
  margin: 100px auto 120px;
  width: 219px;
}
.news_more a {
  width: 219px;
  height: 59px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  font-weight: 500;
  background: #333333;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
}
.news_slide_tab .news_slide {
  display: none;
}
.news_slide_tab .news_slide:first-child {
  display: block;
}

/* ceo 인사말 ceo.html */
.location_list {
  width: 100%;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.location_list_box {
  max-width: 1920px;
  width: 100%;
  padding: 0 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 58px;
}
.icon_home {
  margin-right: 20px;
  width: 20px;
  position: relative;
}
.icon_home::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #eee;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.icon_home a {
  display: block;
}
.icon_home img {
  display: block;
}
.selectBox2 * {
  box-sizing: border-box;
}
.selectBox2 {
  position: relative;
  width: 300px;
  height: 58px;
  background: url("../img/arrow_d.png") calc(100% - 30px) center no-repeat;
  background-size: 10px;
  cursor: pointer;
  z-index: 50;
}

.selectBox2 .label {
  display: flex;
  align-items: center;
  width: inherit;
  height: inherit;
  border: 0 none;
  outline: 0 none;
  padding-left: 31px;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.selectBox2 .optionList {
  width: 100%;
  background: #fff;
  color: #fff;
  list-style-type: none;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: 0.3s ease-in;
}

.selectBox2.active .optionList {
  max-height: 500px;
}

.selectBox2 .optionItem {
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-weight: 500;
  padding-left: 31px;
  transition: 0.1s;
  line-height: 60px;
  font-size: 1.6rem;
}

.selectBox2 .optionItem a {
  display: block;
  line-height: 62px;
  font-size: 1.6rem;
}

.selectBox2 .optionItem:hover {
  background: var(--primary-color-1);
  color: #fff;
}
.selectBox2 .optionItem:hover a {
  color: #fff;
}

.selectBox2 .optionList::-webkit-scrollbar {
  width: 6px;
}
.selectBox2 .optionList::-webkit-scrollbar-track {
  background: transparent;
}
.selectBox2 .optionList::-webkit-scrollbar-thumb {
  background: #303030;
  border-radius: 45px;
}
.selectBox2 .optionList::-webkit-scrollbar-thumb:hover {
  background: #303030;
}
.depth1_box01 .selectBox2,
.depth2_box .selectBox2 {
  background-color: var(--primary-color-1);
  color: #fff;
}
.depth2_box.on .selectBox2 {
  background-color: #fff;
}
.depth2_box.on .selectBox2 .label {
  color: #333;
}
.depth1_box01 .selectBox2 .label,
.depth2_box .selectBox2 .label {
  color: #fff;
}
.sub_visual {
  width: 100%;
  height: 270px;
  margin-bottom: 72px;
}
.sub_visual .wrap {
  position: relative;
}
.sub_visual01 {
  background: url(../img/v_menu1.png) no-repeat center / cover;
}
.sub_visual02 {
  background: url(../img/v_menu2.jpg) no-repeat center / cover;
}
.sub_visual03 {
  background: url(../img/v_menu3.jpg) no-repeat center / cover;
}
.sub_visual04 {
  background: url(../img/v_menu4.jpg) no-repeat center / cover;
}
.sub_visual05 {
  background: url(../img/v_menu5.jpg) no-repeat center / cover;
}
.sub_visual05_05.sub_visual {
  background: url(../img/v_menu5_5.jpg) no-repeat center / cover;
  height: 520px;
}
.sub_visual06 {
  background: url(../img/v_menu6.jpg) no-repeat center / cover;
}
.sub_visual07 {
  background: url(../img/v_menu7.jpg) no-repeat center / cover;
}
.sub_visual08 {
  background: url(../img/v_menu8.jpg) no-repeat center / cover;
}
.sub_visual05_05.sub_visual .txt {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.sub_visual05_05.sub_visual .wrap {
  height: 100%;
}
.sub_visual05_05.sub_visual .txt {
  padding-top: 0;
}
.sub_visual05_05.sub_visual .wrap .txt p {
  text-align: center;
  color: #f8f8f8;
  font-size: 40px;
}
.sub_visual img {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.sub_visual .wrap .txt {
  padding-top: 56px;
  padding-left: 16px;
}
.sub_visual .wrap .txt h2 {
  font-size: 50px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}
.sub_visual .wrap .txt p {
  font-size: 22px;
  line-height: 1.3;
  color: #eee;
}
.sub_contents .tit {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 55px;
}
.greetings_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.greetings_wrap h4 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 42px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 50px;
  max-width: 694px;
  width: 100%;
}
.greetings_wrap h4 span {
  color: #0c5e9e;
}
.greetings_wrap p {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.06rem;
}
.greetings_txt {
  width: 781px;
}
.greetings_img {
  width: 508px;
}
.greetings_img img {
  display: block;
  width: 100%;
}
.greetings_signature {
  font-family: "NanumPen";
  font-size: 30px;
  color: #272727;
  text-align: right;
  display: block;
  margin-top: 30px;
}
.sub_contents {
  margin-bottom: 168px;
}

/* 연혁 */
.img_box {
  display: block;
}
.img_box img {
  width: 100%;
  display: block;
}
.history_year_img img {
  width: fit-content;
}
.history_year_img img {
  display: block;
}
.history_year_img {
  position: absolute;
  left: -130px;
  top: 0;
  display: block;
  transform: translateX(-100%);
}
.history_year_img02 {
  top: 70px;
}
.history_top {
  margin-bottom: 110px;
}
.history_top ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 155px;
}
.history_top ul p {
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--font-color-4);
  text-align: center;
  line-height: 1;
}
.history_top ul li {
  position: relative;
}
.history_top ul li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--font-color-4);
  width: 8px;
  height: 8px;
  border-radius: 8px;
  z-index: 10;
}
.history_top ul li.on::before {
  background: var(--primary-color-1);
}
.history_top ul li + li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: -50%;
  background: #dcdcdc;
  width: 280px;
  height: 1px;
  transform: translateX(-69%);
  z-index: 0;
}
.history_top ul li.on p span,
.history_top ul li.on p {
  color: var(--primary-color-1);
}
.history_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/history01.png) no-repeat center / cover;
  height: 311px;
  margin-bottom: 78px;
}
.history_box.history2010 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/history04.jpg) no-repeat center / cover;
  height: 311px;
  margin-bottom: 78px;
}
.history_box p {
  text-align: center;
  font-size: 66.5px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.87);
}
.history_box p span {
  font-size: 33px;
  line-height: 2.06;
  color: rgba(255, 255, 255, 0.87);
}
.history_year {
  font-family: "EBSHMJESaeron";
  color: #0c5e9e;
  font-size: 45px;
  line-height: 1;
  margin-bottom: 34px;
}
.history_list {
  display: flex;
  justify-content: end;
  align-items: end;
  flex-direction: column;
}
.history_list ul {
  width: 50%;
  position: relative;
  margin-bottom: 100px;
}
.history_list p {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 3.13;
}
.history_year_box {
  padding-left: 78px;
}
.history_list ul::after {
  content: "";
  display: block;
  position: absolute;
  background: #dcdcdc;
  height: calc(100% + 380px);
  width: 1px;
  left: 0;
  top: -80px;
  z-index: -1;
}
.history_list ul li {
  position: relative;
}
.history_list ul li + li {
  margin-top: 74px;
}
.history_list ul li::before {
  width: 19px;
  height: 19px;
  border-radius: 19px;
  background: #0c5e9e;
  content: "";
  display: block;
  position: absolute;
  left: -9px;
  top: 6px;
  z-index: 10;
}
.history_list ul li::after {
  width: 60px;
  height: 1px;
  background: #0c5e9e;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 15px;
  z-index: 10;
}
/* 비전 */
.vision_box {
  width: 100%;
  height: 475px;
  background: url(../img/vision_bg.jpg);
  padding-top: 136px;
}
.vision_box .tit {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  color: rgba(248, 248, 248, 0.87);
}
.vision_list {
  /* background: url(../img/vision_one_bg1.png) no-repeat top center;
  background-size: contain; */
  width: 100%;
  /* height: 368px; */
  padding-top: 53px;
  margin-top: -180px;
  padding-bottom: 126px;
  /* margin-bottom: 178px; */
  position: relative;
}
.vision_list::after {
  content: "";
  background: url(../img/vision_one_bg1.png) no-repeat top center;
  background-size: contain;
  width: 100%;
  height: 368px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.vision_list ul {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.vision_list li {
  width: 356px;
  border-radius: 250px;
  padding-top: 34px;
}
.vision_list_txt li + li,
.vision_list li + li {
  margin-left: -30px;
}

.vision_list li p.tit {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 183px;
}
.vision_list .icon_box {
  width: fit-content;
  display: block;
  height: 93px;
  margin-bottom: 20px;
  margin: 0 auto;
}
.vision_list_txt {
  margin-top: 40px;
  margin-bottom: 130px;
}
.vision_list_txt ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision_list_txt li {
  width: 356px;
}
.vision_list .txt_box p,
.vision_list_txt p {
  text-align: center;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.4px;
  color: #181818;
}
.vision_list .txt_box span,
.vision_list_txt span {
  display: block;
  text-align: center;
  margin-top: 41px;
  font-size: 30px;
}
.vision_txt {
  margin-top: 46px;
}
.vision_txt p {
  color: #666;
  line-height: 1.33;
  font-size: 18px;
}
.vision_txt p span {
  color: #0c5e9e;
  font-weight: 500;
  display: inline-block;
}
.vision_box2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 38px;
  margin-top: 48px;
}
.vision_box2 .img_box {
  width: 481px;
  display: block;
}
.vision_box2 .img_box img.m_block {
  display: none;
}
.vision_box2 table {
  width: 769px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.vision_box2 table tr {
  height: 68px;
}
.vision_box2 table tr + tr {
  border-top: 1px solid #f3f3f3;
}
.vision_box2 table tr td:last-child {
  color: #444;
  line-height: 1.38;
  font-size: 16px;
  width: 545px;
  padding-top: 12px;
}
.vision_box2 table tr td:last-child p {
  position: relative;
  padding-left: 11px;
}
.vision_box2 table tr td:last-child p::after {
  width: 4px;
  height: 4px;
  border-radius: 3px;
  background: #0c5e9e;
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  display: block;
}
.vision_box2 table tr td:nth-child(1) {
  font-weight: bold;
  color: #0c5e9e;
  font-size: 18px;
  font-weight: 500;
  width: 40px;
}
.vision_box2 table tr td:nth-child(2) {
  font-weight: bold;
  color: #0c5e9e;
  font-size: 18px;
  color: #000;
}

/*  */
.certification_wrap {
  margin-bottom: 381px;
}
.certification_wrap ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  column-gap: 27px;
}
.certification_wrap li {
  width: calc((100% - 81px) / 4);
}
.certification_wrap li a {
  position: relative;
  display: block;
}

.certification_wrap li .img_box {
  aspect-ratio: 333 / 362;
  display: block;
}
.certification_wrap li .img_box img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  display: block;
}
.certification_wrap li .cont_tit {
  color: #fff;
  font-size: 30px;
  letter-spacing: -0.15px;
  position: absolute;
  left: 0;
  padding: 0 34px;
  top: 68px;
  width: 100%;
  font-weight: 400;
}
.certification_pop {
  width: 60%;
  max-width: 500px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  display: none;
}
.certification_pop.on {
  display: block;
}
.certification_pop .certification_box {
  width: 100%;
  position: relative;
}
.certification_pop .img_box img,
.certification_pop .img_box {
  width: 100%;
  display: block;
}
.certification_box .btn_close {
  position: absolute;
  right: -68px;
  top: 0;
  width: 58px;
}
.certification_box .btn_close button {
  width: 58px;
  display: block;
}
.certification_box .btn_close button img {
  width: 100%;
  display: block;
}

/*  */

.tab_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.tab_menu ul li {
  width: calc(100% / 3);
}
.tab_menu ul li a {
  display: block;
  background: #ececec;
  color: #787878;
  text-align: center;
  font-size: 20px;
  line-height: 80px;
  font-weight: 500;
}
.tab_menu ul li.on a {
  background: #045e9f;
  color: #fff;
}
.map_box {
  background: #0c5e9e;
  width: calc(100% - 903px);
  height: 600px;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
}
.map_box .map_tit {
  color: #fff;
  letter-spacing: 2.6px;
  font-size: 24px;
  position: relative;
  margin-bottom: 40px;
}
.map_box .map_tit::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -16px;
}
.map_wrap .tab_menu {
  margin-bottom: 80px;
}
.map_tab {
}
.map_tab_cont {
  display: flex;
  column-gap: 14px;
}
.map_info {
  font-size: 16px;
  color: #fff;
}
.map_info li {
  display: flex;

  column-gap: 25px;
}
.map_info li + li {
  margin-top: 18px;
}
.map_info p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.map_info span {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  width: 72px;
}
.map_img {
  display: block;
  width: 100%;
  max-width: 460px;
  max-height: 157px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.map_img img {
  width: 100%;
  display: block;
}
.map_cont .map_tab {
  display: none;
}
.map_cont .map_tab:first-child {
  display: block;
}
.table_list {
  border-top: 2px solid #333;
}
.table_list li {
  border-bottom: 1px solid #898989;
}
.table_list li:hover {
  background: #fafafa;
}
.table_list li a {
  display: flex;
  align-items: center;
}
.table_list li p {
  color: #777;
  font-size: 16px;
  text-align: center;
  line-height: 60px;
}
.table_list li .num_box {
  width: 163px;
}
.table_list li .date_box {
  width: 240px;
}
.table_list li .name_box {
  width: 258px;
}
.table_list li .info_tit {
  width: calc(100% - 661px);
  padding: 0 10px;
}
.table_list li .info_tit p {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.table_list li.table_list_hd2 {
  border-bottom: 1px solid #333 !important;
}
.table_list.table_list2 li a div + div {
  border-left: none;
}
.table_list li a div + div {
  border-left: 1px solid #ddd;
}
.table_list li.table_list_hd p {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-align: center !important;
}
.table_list li.table_list_hd:hover {
  background: #fff;
}
.page_list {
  margin-top: 110px;
}
.page_list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
}
.page_list2.page_list li a {
  width: 30px;
  height: 30px;
}
.page_list li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: normal;
  color: #999;
}
.page_list2.page_list li.on a {
  background: #0c4da2;
  border: 1px solid #0c4da2;
  font-weight: normal;
}

.page_list li.on a {
  background: #333;
  color: #fff;
  font-weight: bold;
}
.page_list2.page_list li a img {
  width: 30px;
}
.page_list li a img {
  width: 12px;
  display: block;
}
.ir_wrap .table_list .info_tit {
  width: calc(100% - 360px);
}
.ir_wrap .table_list .table_list_hd .info_tit p {
  text-align: center;
}
.ir_wrap .table_list .info_tit p {
  text-align: left;
}
.table_list .num_box .icon_box {
  width: 16px;
  margin: 0 auto;
}
.table_list.table_list2 li p {
  color: #222;
  font-size: 16px;
  text-align: center;
  line-height: 60px;
}
.table_list.table_list2 li {
  border-bottom: 1px solid #ddd;
}
.news_list_wrap ul {
  display: flex;
  column-gap: 50px;
  row-gap: 94px;
  flex-wrap: wrap;
}
.news_list_wrap .img_box {
  width: 100%;
  aspect-ratio: 429 / 285;
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
}
.news_list_wrap li {
  width: calc((100% - 100px) / 3);
  transition: 0.2s ease-in;
}
.news_list_wrap li .img_box::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/news_arrow.png) no-repeat center;
  background-size: contain;
  z-index: 15;
  opacity: 0;
  transition: 0.2s ease-in;
}
.news_list_wrap li .img_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #0c5e9e;
  opacity: 0;
  z-index: 10;
  transition: 0.2s ease-in;
}
.news_list_wrap {
  margin-bottom: 300px;
}
.news_list_wrap li:hover .img_box::before {
  opacity: 1;
}
.news_list_wrap li:hover .img_box::after {
  opacity: 0.85;
}
.news_list_wrap li p {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 26px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.news_list_wrap li:hover p {
  color: #0c5e9e;
}
.news_list_wrap li span {
  color: #666;
  font-size: 16px;
  display: block;
}
.news_list_wrap .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 429 / 285;
}
.table_list .views_box,
.sub0206_wrap .file_box {
  width: 160px;
}
.sub0206_wrap .file_box button {
  color: #0c5e9e;
  text-align: center;
  display: block;
  font-size: 16px;
  margin: 0 auto;
}

.sub0206_wrap .table_list li .info_tit {
  width: calc(100% - 723px);
}
.sub0206_wrap .table_list li .info_tit p {
  text-align: left;
}
.tab_menu2 li a {
  color: #666;
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
}
.tab_menu2 {
  border-bottom: 1px solid #e5e8ef;
  width: 100%;
  margin-bottom: 96px;
}
.tab_menu2 ul {
  display: flex;

  justify-content: center;
}
.tab_menu2 ul li {
  width: calc(100% / 5);
  padding-bottom: 30px;
  position: relative;
}
.tab_menu2 ul li br {
  display: none;
}
.tab_menu2 li.on a {
  color: #0c5e9e;
  font-weight: 500;
}
.tab_menu2 ul li.on::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #0c5e9e;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.esg_cont .sec_tit h4 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
}
.esg_tab01 .tit {
  margin-bottom: 20px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.esg_tab01 .sec_tit {
  margin-bottom: 21px;
}
.esg_tab02 .sec_tit {
  margin-bottom: 37px;
}
.esg_tab03 .sec_tit {
  margin-bottom: 36px;
}
.esg_tab04 .sec_tit {
  margin-bottom: 38px;
}
.esg_tab05 .sec_tit {
  margin-bottom: 40px;
}
.esg_tab01 .list_box {
  border-top: 2px solid #333;
}
.esg_tab01 li {
  display: flex;
  column-gap: 28px;
  padding: 32px 20px;
  border-bottom: 1px solid #eeeeee;
}
.esg_tab01 li .icon_box {
  width: 103px;
}
.esg_tab01 li .txt_box .txt p {
  color: #666;
  font-size: 16px;
  line-height: 1.75;
}
.esg_tab01 li .txt_box {
  width: calc(100% - 132px);
}
.esg_tab01 li .txt_box .red_color {
  color: #f00;
}
.esg_tab02cont {
  padding: 24px 20px;
  border: 1px solid #e9e9e9;
  height: 725px;
  overflow-y: scroll;
  margin-bottom: 110px;
}
.esg_tab02cont p {
  color: #666;
  line-height: 2;
  font-size: 14px;
}
.esg_tab02 .btn_download {
  margin: 0 auto;
  width: 215px;
}
.esg_tab02 .btn_download a {
  width: 215px;
  height: 50px;
  display: flex;
  background: #045e9f;
  column-gap: 22px;
  align-items: center;
  color: #fff;
  padding-left: 29px;
}
.esg_tab02 .btn_download a span {
  color: #fff;
  font-size: 16px;
}
.esg_tab02 .btn_download .icon_box {
  width: 14px;
  display: block;
}
.esg_tab03cont p {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.88;
}
.esg_tab03cont .nanumpenscript {
  color: #333;
  font-size: 36px;
  display: block;
  margin-top: 34px;
  margin-bottom: 62px;
}
.esg_tab03cont .img_box {
  width: 100%;
  display: block;
}
.esg_tab04 .txt p {
  color: #4f4f4f;
  line-height: 1.88;
  font-size: 16px;
}
.esg_tab04 .txt span {
  color: #004aae;
}
.esg_tab4_cont {
  margin: 32px auto 64px;
  padding: 84px 0;
  width: 100%;
  background: url(../img/esg_tab04.jpg) no-repeat center / cover;
}
.esg_tab4_cont .num {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 60px;
}
.esg_tab4_cont p {
  color: #fff;
}
.esg_tab4_cont ul {
  border-top: 2px solid #fff;
}
.esg_tab4_cont li {
  display: flex;
  padding: 36px 40px 48px;
  border-bottom: 1px solid #869092;
  min-height: 168px;
}
.esg_tab4_cont .text_box {
  width: calc(100% - 60px);
}
.esg_tab4_cont .text_box p {
  color: #eee;
  font-size: 18px;
  margin-bottom: 15px;
}
.esg_tab4_cont .text_box span {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.88;
}
.esg_tab04 .txt span.nanumpenscript {
  font-size: 36px;
  color: #4f4f4f;
  display: block;
  margin-top: 55px;
}
.esg_tab05cont .tit {
  text-align: left;
  color: #0c5e9e;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
.esg_tab05cont .list_box li {
  padding-left: 14px;
  position: relative;
}
.esg_tab05cont .list_box li::after {
  content: "";
  display: block;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #0c5e9e;
  position: absolute;
}
.esg_tab05cont .list_box li p {
  color: #4f4f4f;
  font-size: 16px;
}
.esg_tab05cont .list_box li + li {
  margin-top: 12px;
}
.esg_tab05cont .list_box {
  margin-bottom: 150px;
}
.organization_chart .depth2,
.organization_chart .depth1 {
  text-align: center;
  color: #fff;
  font-size: 22px;
  display: block;
  line-height: 72px;
}
.organization_chart .depth1 {
  background: #045e9f;
  width: 267px;
  margin: 0 auto;
}
.organization_chart .depth2 {
  width: 215px;
  background: #7d99c7;
}
.organization_chart {
  width: fit-content;
}
.organization_chart .depth1 {
  position: relative;
}
.organization_chart .depth2_list ul {
  display: flex;
  align-items: center;
  column-gap: 270px;
  margin-top: 30px;
}

.organization_chart .depth2_list ul li + li {
  position: relative;
}
.organization_chart .depth2_list ul li + li::after {
  content: "";
  width: 240px;
  height: 1px;
  background: #cecece;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateX(-100%);
}
.organization_chart .depth1::after {
  content: "";
  width: 1px;
  height: 50px;
  background: #cecece;
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateY(100%);
}
.esg_cont .esg_tabcont {
  display: none;
}
.esg_cont .esg_tabcont:first-child {
  display: block;
}
.esg_wrap #tabSelect {
  display: none;
}
.quality_box1 {
  border: 1px solid #c3c3c3;
  margin-bottom: 80px;
}
.quality_box1 .img_box {
  width: 100%;
  display: block;
  margin-bottom: 61px;
}
.quality_box1 .txt_box {
  padding-left: 50px;
  padding-right: 26px;
  padding-bottom: 80px;
}
.quality_box1 .txt_box p {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 36px;
}
.quality_box1 .txt_box p span {
  color: #9c9c9c;
  font-size: 22px;
  font-weight: 500;
}
.quality_box1 .txt_box > span {
  color: #3b3b3b;
  font-size: 16px;
  line-height: 1.88;
  display: block;
}
.quality_box2 {
  margin-bottom: 239px;
}
.quality_box2 .img_box {
  background: #f5f5f5;
  padding-top: 14px;
  padding-bottom: 22px;
  margin-bottom: 49px;
}
.quality_box2 .txt_box {
  border: 1px solid #c3c3c3;
  width: 100%;
  padding: 30px 20px;
}
.quality_box2 .txt_box p {
  text-align: center;
  color: #696969;
  line-height: 1.94;
  font-size: 16px;
}
.quality_box3 {
  margin-bottom: 70px;
  border: 1px solid #c3c3c3;
}
.quality_box3 .img_box {
  width: 100%;
  display: block;
  margin-bottom: 60px;
}
.quality_box3 p {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 38px;
  padding-left: 50px;
}
.quality_box3_list {
  padding-bottom: 56px;

  padding-left: 10px;
}
.quality_box3_list ul {
  display: flex;
  align-items: center;
  column-gap: 22px;
  row-gap: 86px;
  flex-wrap: wrap;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
}
.quality_box3_list li {
  position: relative;
}
.quality_box3_list .icon_box {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/quality_o.png) no-repeat center;
  background-size: contain;
}
.quality_box3_list .icon_box img {
  width: fit-content;
  display: block;
}
.quality_box3_list span {
  color: #444;
  font-size: 13px;
  display: block;
  text-align: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.quality_box3_list li:nth-child(2n) span {
  top: initial;
  bottom: -30px;
}
.quality_box3_list li + li::after {
  position: absolute;
  width: 22px;
  z-index: 0;
  height: 1px;
  background: #c3c3c3;
  left: -22px;
  top: 50%;
  content: "";
  display: block;
}
.quality_box4_cont .icon_box {
  width: 140px;
}
.quality_box4_cont .icon_box img {
  width: fit-content;
}
.quality_box4_cont {
  background: #f5f5f5;
  min-height: 220px;
  padding-left: 110px;
  padding-bottom: 20px;
  padding-top: 46px;
  display: flex;
  column-gap: 80px;
}
.quality_box4_cont .txt_box > p {
  color: #444;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 28px;
}
.quality_box4_cont .txt_box ul li p {
  color: #444;
  font-size: 16px;
}
.quality_box4_cont .txt_box ul li + li {
  margin-top: 8px;
}
.quality_box4_cont .txt_box ul li {
  position: relative;
}
.quality_box4_cont .txt_box ul li::after {
  content: "";
  display: block;
  background: #061a72;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  position: absolute;
  left: -14px;
  top: 50%;
}
.quality_box4_cont01 li {
  width: 400px;
}
.quality_box4_cont01 li:nth-child(2) {
  margin-top: 0 !important;
}
.quality_box4_cont01 {
  display: flex;
  flex-wrap: wrap;
}
.quality_box4_cont {
  margin-bottom: 10px;
}
.quality_box2 .img_box {
  position: relative;
}
.quality_box2 ul {
  display: flex;
  justify-content: space-between;
}
.quality_box2 li span {
  text-align: center;
  color: #000;
  line-height: 1.63;
  display: block;
  font-size: 16px;
}
.quality_box2 li {
  width: 30%;
}
.quality_box2_list {
  top: 270px;
  left: 0;
  position: absolute;
  width: 100%;
}
.sub04_slide {
  position: relative;
  width: 100%;
  margin-bottom: 94px;
}
.sub04_slide .sub04_slide_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  position: absolute;
  z-index: 40;
}
.sub04_slide .img_box {
  width: 100%;
  display: block;
  background: #f8f8f8;
}
.sub04_slide .sub04_slide_btn button {
  width: 49px;
  display: block;
}
.sub04_slide .sub04_slide_btn button img {
  width: 100%;
  display: block;
}
.sub04_info .sec_tit {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  position: relative;
  width: 140px;
  line-height: 1;
  height: fit-content;
}
.sub04_info .sec_tit::after {
  position: absolute;
  right: -16px;
  transform: translateX(100%);
  top: 50%;
  width: 20px;
  height: 1px;
  background: #0066b4;
  display: block;
  content: "";
}
.sub04_box {
  display: flex;
  column-gap: 130px;
}
.sub04_box + .sub04_box {
  margin-top: 110px;
}
.sub04_info_box p {
  color: #333;
  font-size: 16px;
}
.sub04_info_box li + li {
  margin-top: 8px;
}
.sub04_info_box p span {
  display: inline-block;
  padding-left: 20px;
  line-height: 1.75;
}
.sub04_info_box li {
  position: relative;
}
.sub04_info_box li::after {
  content: "";
  display: block;
  background: #061a72;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  position: absolute;
  left: -14px;
  top: 10px;
}
.sub04_info_box .color_b {
  color: #0066b3;
}
.sub04_info_box li .pl0 {
  padding-left: 0;
}
.tab_menu3 ul {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.tab_menu3 {
  margin-bottom: 70px;
}
.tab_menu3 li {
  width: calc((100% - 48px) / 5);
}
.tab_menu3 li a {
  display: block;
  border-radius: 25px;
  text-align: center;
  color: #fffefe;
  background-color: #5c5c5c;
  font-size: 18px;
  line-height: 54px;
}
.tab_menu3 li.on a {
  background-color: #0066b3;
}
.sub04_product_cont li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sub04_product_cont .txt_box {
  padding: 47px 60px;
  position: relative;
  background: #eeeeee;
  border: 1px solid #333;
  width: calc(100% - 680px);
  height: 353px;
}
.sub04_product_cont .txt_box p {
  color: #273e82;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.07;
  margin-bottom: 44px;
}
.sub04_product_cont .txt_box span {
  color: #222;
  line-height: 1.88;
  letter-spacing: 0.8px;
  font-size: 16px;
  display: block;
}

.sub04_product_cont li {
  transition: 0.1s ease-in-out;
}
.sub04_product_cont li:hover .txt_box {
  background: #273e82;
  border: none;
  transition: 0.1s ease-in-out;
}
.sub04_product_cont li:hover p {
  color: #fff;
  transition: 0.1s ease-in-out;
}
.sub04_product_cont li:hover span {
  color: #fff;
  transition: 0.1s ease-in-out;
}
.sub04_product_cont li .img_box {
  width: 680px;
  height: 100%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;

  aspect-ratio: 680 / 353;
}
.sub04_product_cont li .img_box p {
  font-size: 16px;
  text-align: center;
  display: block;
}
.sub04_product_cont .pro_more_btn {
  width: 28px;
  position: absolute;
  right: 37px;
  bottom: 25px;
}
.sub04_product_cont .pro_more_btn button {
  width: 28px;
  display: block;
}
.sub04_product_cont .pro_more_btn button img {
  width: 100%;
  display: block;
}
.sub04_product_cont li:hover button img {
  filter: invert(100%);
}
.sub04_product_cont li + li {
  margin-top: 30px;
}
.sub04_slide .pc_img {
  display: block;
}
.sub04_slide .m_img {
  display: none;
}
.tab_menu4 {
  margin-bottom: 120px;
}
.tab_menu4 ul {
  display: flex;
}
.tab_menu4 ul li {
  width: calc(100% / 3);
  border-bottom: 1px solid #e6e9f0;
}
.sub0404_wrap .tab_menu4 ul li {
  width: calc(100% / 4);
  border-bottom: 1px solid #e6e9f0;
}

.tab_menu4 ul li a {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #666;
  font-weight: 500;
  padding-bottom: 26px;
}
.tab_menu4 ul li.on a {
  color: #0c5e9e;
}
.tab_menu4 ul li.on {
  border-bottom: 1px solid #0c5e9e;
}
.sub04_wrap03_tab_cont .pro_name {
  font-size: 22px;
  font-weight: 500;
  line-height: 80px;
  height: 80px;
  text-align: center;
  width: 100%;
  display: block;
}
.list_back {
  width: 80px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.sub04_wrap03_tab_cont_top .wrap3 {
  position: relative;
}
.sub04_wrap03_tab_cont_top {
  margin-bottom: 42px;
}
.sub04_wrap03_tab_wrap .sub04_wrap03_tab_cont {
  display: none;
}
.sub04_wrap03_tab_wrap .sub04_wrap03_tab_cont:first-child {
  display: block;
}
#tabSelect {
  display: none;
}
/* .sub04_product .sub04_product_cont {
  display: none;
}
.sub04_product .sub04_product_cont:first-child {
  display: block;
} */
.sub0603_wrap .table_list li .info_tit {
  width: calc(100% - 563px);
  padding: 0 10px;
}
.news_section .img_box {
  width: 250px;
}
.news_section li {
  border-bottom: 1px solid #dcdcdc;
}
.news_section li a {
  display: flex;
  height: 222px;
  padding: 35px 69px 35px 35px;
  column-gap: 34px;
}
.news_section ul {
  border-top: 3px solid #333;
}
.news_section .category_txt {
  margin-bottom: 16px;
  padding-top: 14px;
}
.news_section .info_box {
  width: calc(100% - 286px);
  position: relative;
}
.news_section .category_txt p {
  color: #1052b5;
  font-size: 16px;
}
.news_section .info_tit {
  margin-bottom: 40px;
}
.news_section .info_tit p {
  color: #333;
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  width: calc(100% - 200px);
}
.news_section .date_box {
  display: flex;
  column-gap: 9px;
  align-items: center;
}
.news_section .date_box .icon_box {
  width: 14px;
  display: block;
}
.news_section .date_box p {
  color: #777;
  font-size: 14px;
}
.news_section .btn_more {
  position: absolute;
  right: 0;
  bottom: 55px;
}
.news_section .btn_more button {
  display: flex;
  align-items: center;
  column-gap: 16px;
  height: 40px;
  width: 38px;
  border: 1px solid #ccc;
  padding-left: 12px;
}
.news_section .btn_more .icon_box {
  display: block;
  width: 14px;
}
.news_section .btn_more button span {
  color: #0066b3;
  font-size: 16px;
  display: none;
}
.news_section li:hover .btn_more button {
  width: 147px;
  border: 1px solid #0066b3;
}
.news_section li:hover .btn_more button span {
  display: block;
}
.employment_wrap .banner_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/sub05_03.jpg) no-repeat center / cover;
  height: 517px;
  margin-bottom: 75px;
  padding: 0 20px;
}
.welfare_wrap .banner_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/sub05_02.jpg) no-repeat center / cover;
  height: 517px;
  margin-bottom: 185px;
  padding: 0 20px;
}
.human_wrap .banner_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/sub05_01.jpg) no-repeat center / cover;
  height: 517px;
  margin-bottom: 185px;
  padding: 0 20px;
}
.recruitment_wrap .banner_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/sub05_04.jpg) no-repeat center / cover;
  height: 260px;
  margin-bottom: 50px;
  padding: 0 20px;
}
.recruitment_wrap .banner_box p,
.employment_wrap .banner_box p,
.welfare_wrap .banner_box p,
.human_wrap .banner_box p {
  text-align: center;
  color: #f8f8f8;
  line-height: 1.41;
  font-size: 22px;
  padding-bottom: 20px;
}
.human_wrap .list_box {
  margin-bottom: 60px;
}
.human_wrap .list_box ul {
  display: flex;
  column-gap: 16px;
}
.human_wrap .list_box li {
  background: #f2f3f6;
  border-radius: 14px;
  width: calc((100% - 32px) / 3);
  padding: 60px 16px 0;
  height: 455px;
}
.human_wrap .list_box .icon_box {
  width: 140px;
  display: block;
  margin: 0 auto 32px;
}
.human_wrap .list_box h4 {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 32px;
}
.human_wrap .list_box p {
  color: var(--font-color-4);
  font-size: 16px;
  text-align: center;
  line-height: 1.45;
}
.human_wrap .list_box p span {
  color: var(--primary-color-1);
  display: inline-block;
}
.employment_wrap .btn_border,
.human_wrap .btn_border {
  display: block;
  width: 230px;
  margin: 0 auto;
}
.employment_wrap .btn_border a,
.human_wrap .btn_border a {
  display: block;
  line-height: 60px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  text-align: center;
  border: 1px solid #333;
}
.welfare_wrap .list_box .img_box {
  width: 100%;
  margin-bottom: 36px;
}
.welfare_wrap .list_box ul {
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.welfare_wrap .list_box ul {
  margin-top: 50px;
}
.welfare_wrap .list_box li {
  width: calc((100% - 30px) / 4);
  padding: 26px 27px;
  border: 1px solid #dadada;
  border-radius: 30px;
}
.welfare_wrap .list_box li p {
  text-align: center;
  color: #000;
  font-size: 18px;
  margin-bottom: 25px;
}
.welfare_wrap .list_box li span {
  display: block;
  text-align: center;
  letter-spacing: -0.08px;
  text-align: center;
  font-size: 16px;
  color: #555;
}
.employment_box1 {
  margin-bottom: 100px;
}
.introduction_wrap .list_tit,
.employment_wrap .list_tit,
.welfare_wrap .list_box .list_tit {
  color: #000;
  padding-left: 20px;
  font-size: 22px;
  color: #000;
  border-left: 4px solid #0066b4;
  line-height: 22px;
}
.welfare_wrap .list_box + .list_box {
  margin-top: 200px;
}
.welfare_wrap .text_box {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-top: 130px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.welfare_wrap .text_box p {
  background: url(../img/sub05_02_img01.png) no-repeat center;
  /*background: #f2f2f2;*/
  width: 200px;
  line-height: 200px;
  border-radius: 200px;
  text-align: center;
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
.employment_box1 .sec_tit {
  text-align: center;
  color: #0066b3;
  font-size: 22px;
  margin-bottom: 24px;
}
.employment_box1 .txt {
  letter-spacing: -0.09px;
  text-align: center;
  color: #333;
  font-size: 18px;
  display: block;
}
.employment_box1 .txt_box {
  border: 1px solid #b9b9b9;
  border-radius: 15px;
  padding: 40px 20px;
  margin-top: 60px;
}
.employment_box1 .txt_box ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.employment_box1 .txt_box ul li {
  width: 620px;
  position: relative;
}
.employment_box1 .txt_box ul li::after {
  content: "";
  display: block;
  background: url(../img/employment_check.png) no-repeat center;
  width: 20px;
  height: 20px;
  background-size: contain;
  position: absolute;
  left: -35px;
  top: 8px;
}
.employment_box1 .txt_box ul p {
  line-height: 1.94;
  letter-spacing: -0.09px;
  text-align: left;
  color: #333;
  font-size: 18px;
}
.employment_box2 {
  margin-bottom: 70px;
}
.employment_box2 .sub_box p {
  width: 100px;
  color: #000;
  font-size: 18px;
}
.employment_box2 .flex_sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.employment_box2 .sub_box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 12px;
  height: 90px;
  padding-left: 24px;
  width: calc((100% - 30px) / 2);
}
.employment_box2 .sub_box span {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1;
  padding-left: 20px;
  border-left: 1px solid #ccc;
}
.employment_wrap .list_tit {
  margin-bottom: 50px;
}
.employment_box3 ul {
  display: flex;
}
.employment_box3 .icon_box {
  width: 100px;
  margin: 0 auto 80px;
}
.employment_box3 .step {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.09px;
  text-align: center;
  color: #fff;
  background: #2e2c4b;
  line-height: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  width: 124px;
}
.employment_box3 li {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.employment_box3 li + li::after {
  content: "";
  display: block;
  background: url(../img/employment_arrow.png) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 100px;
  left: -42px;
}
.employment_box3 li p {
  letter-spacing: -0.09px;
  text-align: center;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}
.employment_box3 span {
  color: #333;
  line-height: 1.63;
  font-size: 16px;
  text-align: center;
  display: block;
}
.employment_box3 ul {
  display: flex;
  justify-content: space-between;
}
.employment_box3 {
  margin-bottom: 100px;
}
.tab_menu5 ul {
  display: flex;
  align-items: center;
}
.tab_menu5 ul li {
  width: 25%;
  border: 1px solid #ebebeb;
}
.tab_menu5 ul li + li {
  border-left: none;
}
.tab_menu5 ul li a {
  display: block;
  line-height: 72px;
  text-align: center;
  color: #777;
  font-size: 18px;
}
.tab_menu5 ul li.on a {
  background: #0a0a0a;
  color: #fefefe;
}
.tab_menu5 ul li.on {
  border: 1px solid #0a0a0a;
}
.recruitment_wrap .tab_menu5 {
  margin-bottom: 82px;
}
.qna_list .a_box,
.qna_list .q_box {
  display: flex;
  position: relative;
  padding: 30px;
  column-gap: 26px;
}
.qna_list .q_box::after {
  content: "";
  display: block;
  background: url(../img/lang_box_arrow.png) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.qna_list li.on .q_box::after {
  content: "";
  display: block;
  background: url(../img/lang_box_arrow.png) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(180deg);
}
.qna_list {
  border-top: 1px solid #000;
}
.qna_list .q_box {
  border-bottom: 1px solid #ddd;
}
.qna_list .icon {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}
.qna_list .q_box .icon {
  background: #dddddd;
  color: #fff;
}
.qna_list li.on .q_box .icon {
  background: #0c5e9e;
}
.qna_list {
  margin-bottom: 67px;
}
.qna_list .a_box {
  background: #f8f8f8;
  display: none;
}
.qna_list li {
  cursor: pointer;
}
.qna_list li.on {
  border: 1px solid #0c5e9e;
}
.qna_list li.on .q_box .txt {
  color: #0c5e9e;
}
.qna_list li.on .a_box {
  display: flex;
}
.qna_list .a_box .icon {
  background: #fff;
  color: #ddd;
}
.qna_list .txt {
  width: calc(100% - 100px);
  font-size: 18px;
  padding-top: 6px;
}
.qna_list .a_box .txt p {
  font-size: 16px;
}
.recruitment_wrap .table_list2 .state_box {
  width: 160px;
}
.recruitment_wrap .table_list li .info_tit p {
  text-align: left;
}
.recruitment_wrap .table_list2 .state_box p {
  color: #0c5e9e;
}
.recruitment_wrap .table_list2 .state_box p.red_color {
  color: #ff0000;
}
.recruitment_wrap .table_list2 .table_list_hd .state_box p {
  color: #222;
}
.recruitment_wrap .table_list2 li {
  min-height: 60px;
}
.notice_board_top {
  display: grid;
  grid-template-columns: 12% 38% 12% 38%;
  line-height: 60px;
  border-top: 1px solid #000;
}
.notice_board_top .notice_file {
  grid-column: 2 / 5;
}
.notice_board_top div.notice_tit {
  background: #f8f8f8;
  text-align: center;
  padding: 0;
}
.notice_board_top > div {
  padding: 0 12px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
}
.notice_file_tit .icon_box {
  width: 14px;
}
.btn_notice_download .icon_box {
  width: 14px;
}
.btn_notice_download a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  column-gap: 14px;
  width: 160px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
}
.btn_notice_download span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.05px;
}
.notice_file {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notice_file_tit {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: calc(100% - 200px);
}
.notice_file_tit p {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 70%;
  color: #888;
}
.notice_board_cont {
  min-height: 560px;
}
.notice_board_bot {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.notice_board_bot li a {
  display: flex;
  align-items: center;
  height: 60px;
}
.notice_board_bot li a .flex_box {
  width: 150px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
  position: relative;
}
.notice_board_bot li a .flex_box::after {
  content: "";
  display: block;
  background: #e5e5e5;
  width: 1px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.notice_board_bot li span,
.notice_board_bot li p {
  font-size: 14px;
}
.notice_board_bot li p {
  padding-left: 30px;
  color: #000;
  width: calc(100% - 150px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice_board_bot li .icon_box.transform {
  transform: rotate(180deg);
}
.notice_board_bot li .icon_box {
  width: 6px;
}
.notice_board_bot li + li {
  border-top: 1px solid #e5e5e5;
}
.notice_board .btn_list {
  width: 220px;
  margin: 140px auto 0;
}
.notice_board .btn_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 220px;
  column-gap: 10px;
  border: 1px solid #e5e5e5;
}
.notice_board .btn_list .icon_box {
  width: 20px;
}
.notice_board .btn_list span {
  font-size: 16px;
  color: #333;
}
.search_box {
  margin-bottom: 30px;
}
.search_box form {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  row-gap: 10px;
}
.search_box form select {
  width: 100%;
  border: 1px solid #e5e5e5;
  height: 50px;
  padding: 0 20px;
  background: url("../img/ft_select.png") calc(100% - 20px) center no-repeat;
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}
.search_box input {
  line-height: 50px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  width: 320px;
  padding: 0 20px;
}
.search_box input::placeholder {
  color: #e5e5e5;
}
.search_box button {
  width: 80px;
  color: #fff;
  line-height: 50px;
  font-size: 14px;
  background: #333;
  display: block;
}
.recruitment_wrap .tab_wrap .tac_cont {
  display: none;
}
.recruitment_wrap .tab_wrap .tac_cont:first-child {
  display: block;
}
.qna_wrap .search_box {
  background: #f8f8f8;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.qna_wrap .search_box form {
  justify-content: center;
}
.qna_wrap .search_box form select {
  display: block;
  width: 150px;
  background-color: #fff;
  margin-right: 16px;
}
.faq_tit {
}
.faq_tit .wrap3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 72px;
  padding-bottom: 110px;
}
.faq_tit .wrap3 p {
  text-align: right;
  color: #333;
  font-size: 40px;
  font-family: "NanumBarunGothic";
  font-weight: bold;
}
.faq_tit .wrap3 h2 {
  color: #222;
  font-size: 50px;
  font-family: "NanumBarunGothic";
  font-weight: bold;
}
.faq_tit .wrap3 p span {
  color: #0c5e9e;
  font-family: "NanumBarunGothic";
}
.ci_logo .ci_bg {
  width: 100%;
  display: block;
  z-index: 0;
}
.ci_logo .ci_bg2 {
  display: none;
  width: 100%;
  z-index: 0;
}
.ci_logo_list {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.ci_logo {
  position: relative;
  margin-bottom: 180px;
}
.ci_logo_list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 440px;
}
.ci_tit {
  color: #0c5e9e;
  font-size: 22px;
  line-height: 1.1;
  padding-left: 20px;
  border-left: 4px solid #0c5e9e;
  margin-bottom: 50px;
}
.ci_sec02 {
  margin-bottom: 180px;
}
.ci_sec02 > p {
  color: #555;
  line-height: 1.94;
  font-size: 18px;
}
.ci_sec02 ul {
  border: 1px solid #eee;
  padding: 50px 40px;
  margin-top: 80px;
}
.ci_sec02 ul li {
  font-size: 16px;
  color: #555;
  position: relative;
  padding-left: 13px;
}
.ci_sec02 ul li + li {
  margin-top: 15px;
}
.ci_sec02 ul li::after {
  content: "";
  display: block;
  background: #0c5e9e;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 10px;
}
.ci_sec03 ul {
  border-top: 1px solid #e5e5e5;
}
.ci_sec03 ul li {
  display: flex;
  padding: 12px 30px;
  column-gap: 4px;
  border-bottom: 1px dashed #ccc;
}

.ci_sec03 ul li p {
  width: calc(100% - 35px);
  color: #555;
  font-size: 18px;
  line-height: 1.72;
}
.ci_sec03 ul li span {
  width: 26px;
  height: 26px;
  line-height: 22px;
  background: #00afeb;
  display: block;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  border-radius: 26px;
  margin-top: 6px;
}
.contact_tit {
  color: #000;
  letter-spacing: -0.4px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}
.contact_us input {
  width: 100%;
  line-height: 60px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 0 30px;
  font-size: 18px;
}
.contact_us input::placeholder {
  color: #999;
}
.contact_us input.w50p {
  width: 620px;
}

.contact_us .flex_sb .sub_box {
  width: calc((100% - 40px) / 2);
}
.contact_us textarea {
  width: 100%;
  height: 360px;
  line-height: 1.45;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 20px 30px;
  font-size: 18px;
}
.radio_contact span {
  color: #555;
  font-size: 18px;
  display: block;
}
.radio_contact label {
  display: flex;
  column-gap: 9px;
  align-items: center;
}
.contact_us .check_wrap {
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  margin-bottom: 60px;
}
.contact_us .check_wrap label {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 30px;
}
.agreement_box {
  background: #f3f5f8;
  padding: 25px;
  height: 200px;
  font-size: 14px;
  line-height: 1.4;
  overflow-y: scroll;
}
.contact_us .check_wrap label span {
  color: #222;
  font-size: 18px;
}
.contact_us .check_wrap input[type="checkbox"] {
  accent-color: #213458;
  width: 24px;
  height: 24px;
}
.contact_us .radio_contact input[type="radio"] {
  width: 40px;
  height: 40px;
  accent-color: #213458;
}
.contact_us .radio_contact {
  margin-bottom: 70px;
}
.contact_us .radio_contact ul {
  display: flex;
  align-items: center;
  column-gap: 100px;
}
.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}
.btn_contact_file {
  position: relative;
  margin-top: 30px;
}
.btn_contact_file label {
  width: 200px;
  line-height: 60px;
  display: block;
  text-align: center;
  font-size: 18px;
  border: 1px solid #000;
  font-weight: 500;
}
.btn_contact_file span {
  font-size: 14px;
  color: #555;
  display: block;
  margin-top: 20px;
}
.btn_contact {
  margin-top: 70px;
}
.btn_contact button {
  width: 100%;
  line-height: 80px;
  background: #121212;
  color: #fff;
  font-size: 18px;
}
.btn_agreement {
  margin-bottom: 30px;
}
.btn_agreement button {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.btn_agreement button span {
  font-size: 16px;
}
.btn_agreement .icon_box {
  width: 10px;
}
.btn_agreement button.on .icon_box {
  transform: rotate(180deg);
}
.agreement_box.on {
  display: none;
}
.intro_sec01 .img_box {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
.intro_sec01 .img_box > img {
  width: 100%;
  display: block;
}
.intro_sec02 .img_box {
  position: relative;
}
.intro_sec02 .img_box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 0 40px;
}
.intro_sec02 .img_box .icon img {
  width: fit-content;
  display: block;
}
.intro_sec02 p,
.intro_sec01 p {
  font-size: 16px;
  color: #333;
  margin-top: 29px;
  padding-left: 20px;
}
.intro_sec02 {
  margin-top: 127px;
  margin-bottom: 178px;
}
.intro_sec02 .img_box {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
.intro_sec02 .img_box .icon .pc_img {
  display: block;
}
.intro_sec02 .img_box .icon .m_img {
  display: none;
}
.introduction_table {
  margin-bottom: 150px;
}
.introduction_table table {
  width: 100%;
}
.introduction_table table thead {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.introduction_table table th {
  color: #222;
  font-size: 16px;
  padding: 18px 0;
}
.introduction_table table td {
  padding: 16px 20px;
  font-size: 16px;
  vertical-align: middle;
  color: #222;
}
.introduction_table table tr td:nth-child(3) {
  width: 210px;
  text-align: center;
}
.introduction_table table tr td:last-child {
  text-align: center;
}
.introduction_table table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}
.industrial_tit {
  width: 220px;
  background: #f7f7f7;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.industria_box .txt_box {
  height: 115px;
  display: flex;
  align-items: center;
  padding-left: 0;
  background: url(../img/industrial_arrow.png) no-repeat left center / cover;
  position: relative;
  width: 0;
  transition: 0.3s ease-in-out;
}
.industria_box .txt_box p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
}
.industria_box .img_box {
  width: 99px;
  margin-right: 14px;
}
.industria_box {
  border-top: 1px solid#000;
  margin-bottom: 270px;
}
.industria_sub {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}
.industria_box {
  transition-delay: 0.1s;
}
.industria_box .flex_box {
  display: flex;
  align-items: center;
  width: calc(100% - 190px);
}
.industria_box .icon_box {
  width: 115px;
}
.industria_box .industria_sub .txt_box::after,
.industria_box .industria_sub .txt_box::after {
  content: "";
  display: block;
  background: url(../img/industrial_icon.png) no-repeat center;
  width: 115px;
  height: 115px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}
.industria_box.on .industria_sub:first-child .txt_box,
.industria_box .industria_sub.on:first-child .txt_box {
  width: calc(100% - 113px);
  padding-left: 10px;
}
.industria_box.on .industria_sub:first-child .txt_box::after,
.industria_box .industria_sub:first-child .txt_box::after {
  transform: translate(0, -50%);
}
.industria_box.on .industria_sub:nth-child(2) .txt_box,
.industria_box .industria_sub.on:nth-child(2) .txt_box {
  width: 537px;
  padding-left: 10px;
}
.industria_box.on .industria_sub:nth-child(3) .txt_box,
.industria_box .industria_sub.on:nth-child(3) .txt_box {
  max-width: 813px;
  width: 100%;
  padding-left: 10px;
}
.industria_box.on .industria_sub:nth-child(4) .txt_box,
.industria_box .industria_sub.on:nth-child(4) .txt_box {
  width: 652px;
  padding-left: 10px;
}
.industria_last {
  text-align: right;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-top: 16px;
}
.corporate_certification .tab_menu ul li {
}
.corporate_certification .tab_menu ul li a {
  line-height: 49px;
  font-size: 20px;
}
.corporate_certification .tab_menu {
  margin-bottom: 80px;
}
.corporate_list ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 18px;
  row-gap: 18px;
}
.corporate_list ul li {
  border: 1px solid #d9d9d9;
  width: calc((100% - 90px) / 6);
}
.corporate_list ul li a,
.corporate_list ul li img {
  width: 100%;
  display: block;
}
.pop_swiper .mySwiper2_wrap img {
  aspect-ratio: 214 / 351;
  width: 100%;
}
.pop_swiper .mySwiper2_wrap {
  position: absolute;
  max-width: 500px;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pop_swiper .mySwiper2 {
  max-height: 700px;
  max-width: 500px;
  width: 80%;
}
.mySwiper2_wrap .swiper-slide {
  padding: 20px;
}
.mySwiper2_wrap img {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.pop_swiper .mySwiper {
  height: 100vh;
  box-sizing: border-box;
  padding: 10px 0;
}
.pop_swiper .mySwiper .swiper-slide {
  width: 100%;
  height: fit-content;
}

.pop_swiper .mySwiper4_wrap img {
  aspect-ratio: 214 / 351;
  width: 100%;
}
.pop_swiper .mySwiper4_wrap {
  position: absolute;
  max-width: 500px;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pop_swiper .mySwiper4 {
  max-height: 700px;
  max-width: 500px;
  width: 80%;
}
.mySwiper4_wrap .swiper-slide {
  padding: 20px;
}
.mySwiper4_wrap img {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.pop_swiper .mySwiper3 {
  height: 100vh;
  box-sizing: border-box;
  padding: 10px 0;
}
.pop_swiper .mySwiper3 .swiper-slide {
  width: 100%;
  height: fit-content;
}

.pop_swiper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  background: #fff;
  display: none;
}
.pop_swiper.on {
  display: block;
}
.pop_swiper_box {
  position: relative;
  width: 100%;
  height: 100%;
}
.pop_swiper .thumbs_slide {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px !important;
  height: 80vh !important;
}
.pop_swiper .thumbs_slide .swiper-slide {
  border: 1px solid #e5e5e5;
}
.pop_swiper .thumbs_slide .swiper-slide img {
  width: 100%;
  display: block;
}
.pop_swiper_btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  display: block;
}
.pop_swiper_btn img {
  display: block;
  width: 100%;
}
.corporate_cerbox {
  padding: 30px 50px;
  background: #f1f1f1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.corporate_cerbox01 .corporate_cerbox_r {
  width: 803px;
  height: 373px;
  aspect-ratio: 803 / 373;
  background: #000;
}
.corporate_cerbox .img_box {
  width: fit-content;
}
.corporate_cerbox .img_box img {
  width: fit-content;
}
.corporate_cerbox + .corporate_cerbox {
  margin-top: 24px;
}
.corporate_cerbox02 .corporate_cerbox_r {
  display: flex;
  column-gap: 10px;
}
.corporate_cerbox03 .img_box img,
.corporate_cerbox02 .img_box img {
  width: fit-content;
}
.corporate_cerbox03 p,
.corporate_cerbox02 p {
  text-align: center;
  font-size: 44px;
  font-weight: 300;
}
.corporate_cerbox03 .flex_sb {
  margin-right: 64px;
  column-gap: 60px;
  align-items: center;
}
.corporate_certification #tabSelect {
  display: none;
}

.corporate_cerbox.corporate_cerbox03 {
  justify-content: center;
}
.corporate_certification .tab_wrap .tab_cont {
  display: none;
}
.corporate_certification .tab_wrap .tab_cont:first-child {
  display: block;
}
.industria_box .img_box:hover {
  transform: scale(1.2);
  transition: 0.2s ease-in-out;
}
.industria_box .industria_sub .txt_box {
  overflow: hidden;
}

.industria_box .industria_sub .txt_box::after {
  right: 100%;
  transition: 2s ease-in-out;
  transform: translate(50%, -50%);
  opacity: 0;
}
.industria_box.on .industria_sub .txt_box::after,
.industria_box .industria_sub.on .txt_box::after {
  right: 0;
  transition: 2s ease-in-out;
  transform: translate(100%, -50%);
  opacity: 1;
}

.industria_box.on .industria_sub .txt_box,
.industria_box .industria_sub.on .txt_box {
  overflow: initial;
}
.industria_box.on .industria_sub:first-child .txt_box::after,
.industria_box .industria_sub:first-child .txt_box::after {
  transform: translate(0, -50%);
}
.bar-chart_wrap {
  width: 420px;
  height: 350px;
}
.line-chart_wrap {
  width: 420px;
  height: 350px;
}

.Investment_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.investment_m table {
  width: 100%;
}
.investment_pc table {
  width: 100%;
  border-top: 2px solid #000;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  vertical-align: middle;
}
.bar-chart-box {
  position: relative;
}
.bar-chart-box span {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  color: #777;
}
.line-chart-box span {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  color: #777;
}
.Investment_wrap .sec_tit {
  font-size: 20px;
  display: block;
  text-align: center;
  margin-top: 45px;
}
.investment_pc table thead {
  border-bottom: 1px solid #000;
}
.investment_pc table thead th {
  height: 60px;
  vertical-align: middle;
}
.investment_pc table thead th + th {
  border-left: 1px solid #ccc;
}
.investment_pc table th {
  font-weight: 400;
  vertical-align: middle;
}
.investment_pc table td {
  color: #888;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;

  height: 47px;
}
.investment_pc table tbody tr {
  border-bottom: 1px solid #ccc;
}
.investment_m table tbody tr:nth-child(2n + 1),
.investment_pc table tbody tr:nth-child(2n + 1) {
  background: #f9f9f9;
}
.investment_pc table tbody tr td {
  border-left: 1px solid #ccc;
}

.investment_m table tbody tr {
  height: 60px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
}
.investment_m table tbody tr th {
  font-weight: 400;
  vertical-align: middle;
}
.investment_m table td {
  color: #888;
  vertical-align: middle;
}
.investment_m + .investment_m {
  margin-top: 20px;
}
.investment_m table {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
.investment_m table tbody tr:first-child td:first-child {
  background: #fff;
  color: #222;
  font-weight: 500;
}
.investment_m table tbody tr {
  border-bottom: 1px solid #ccc;
}
.investment_m table tbody th {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.investment_m {
  display: none;
}
.investment_pc {
  margin-top: 90px;
}
.investment_pc span {
  text-align: right;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  color: #777;
}
.chart-div {
  width: 440px;
  height: 440px;
}
.label_list p {
  color: #333;
  font-size: 16px;
}
.label_list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
.label_list {
  margin-top: 30px;
}
.label_list span {
  width: 18px;
  height: 18px;
  background: #4e92e3;
  display: block;
}
.label_list .label02 span {
  background: #ff9b32;
}
.label_list .label03 span {
  background: #99897e;
}
.label_list .label04 span {
  background: #ddc000;
}
.label_list .label05 span {
  background: #f4303c;
}
.chart_box {
  display: flex;
  column-gap: 120px;
  margin-bottom: 80px;
}
.chart_table {
}
.chart_table ul {
  display: flex;
  border-top: 1px solid #1269ca;
}
.chart_table li {
  width: calc(100% / 6);
}
.chart_table li p {
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  background: #f5f7f9;
  text-align: center;
  display: block;
  border-bottom: 1px solid #e1e1e1;
}
.chart_table ul li + li {
  border-left: 1px solid #e1e1e1;
}
.chart_table li span {
  text-align: center;
  color: #777;
  display: block;
  font-size: 16px;
  line-height: 50px;
  border-bottom: 1px solid #898989;
}
.chart_wrap {
  display: flex;

  justify-content: space-between;
}
.chart_wrap .chart_info {
  padding-top: 156px;
}
.chart_wrap .chart_info p {
  color: #222;
  font-size: 40px;
  margin-bottom: 25px;
  line-height: 1;
  text-align: right;
}
.chart_wrap .chart_info span {
  color: #777;
  font-size: 16px;
  display: block;
  text-align: right;
}
.chart_table > p {
  color: #777;
  font-size: 16px;
  text-align: right;
  margin-bottom: 13px;
}
.sub04_product_tab .sub04_product_cont {
  display: none;
}
.sub04_product_tab .sub04_product_cont:first-child {
  display: block;
}
.sub_contents {
  min-height: calc(100vh - 200px);
}
.depth2_box .selectBox2 .depth2_sub {
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
}
.depth2_box .selectBox2 ul {
  display: none;
}
.depth2_box .selectBox2 .depth2_sub ul:first-child {
  display: block;
}
.ft_info .flamme {
  width: 60px;
  margin-top: 24px;
}
.ft_info .flamme a {
  display: block;
}
.ft_info .flamme a img {
  width: 100%;
  display: block;
}
.ft_right {
  display: flex;
  align-items: end;
  flex-direction: column;
}

/*  */
.sub03_01_tit {
  margin: 0 auto 90px;
  display: block;
  width: fit-content;
}
.sub03_01_tit p {
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 26px;
  border-bottom: 1px solid #333;
  text-align: center;
  width: fit-content;
  margin-bottom: 28px;
}
.sub03_01_tit span {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #696969;
  display: block;
}

.sub03_imglist ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 110px;
  column-gap: 20px;
}
.sub03_imglist ul li {
  width: calc((100% - 20px) / 2);
}
.sub03_imglist ul li span {
  color: #3b3b3b;
  text-align: center;
  display: block;
  font-size: 16px;
  margin-top: 24px;
}
.sub03_imglist ul li a {
  display: block;
}
.sub03_imglist ul li img {
  width: 100%;
  display: block;
}
.sub03_imglist01 {
  margin-bottom: 181px;
}
.sub03_imglist03 ul li .img_box {
  background: #f7f7f7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 634 / 400;
}
.sub03_imglist01 ul li .img_box {
  background: #f7f7f7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 581 / 400;
}

.sub03_imglist ul li .img_box img {
  width: fit-content;
}
.sub03_imglist02 .txt {
  text-align: center;
  color: #696969;
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}
.sub03_imgbox {
  background: #f7f7f7;
  padding: 47px 20px 38px;
  margin-bottom: 140px;
}
.sub03_imgbox ul {
  display: flex;
  justify-content: center;
  column-gap: 109px;
}
.sub03_imgbox li a {
  display: block;
}
.sub03_imgbox li img {
  width: fit-content !important;

  display: block;
}
.sub03_imgbox li span {
  display: block;
  text-align: center;
  color: #3b3b3b;
  font-size: 16px;
  margin-top: 18px;
}

.esg_tab09cont {
  padding: 24px 20px;
  border: 2px solid #5e5e5e;
  height: 3250px;
  overflow-y: hidden;
  margin-bottom: 110px;
}
.esg_tab09cont p {
  color: #666;
  line-height: 2;
  font-size: 14px;
}
.esg_tab10cont {
  padding: 90px 30px;
  border: 2px solid #5e5e5e;
  height: 450px;
  overflow-y: hidden;
  margin-bottom: 0px;
}
.esg_tab10cont p {
  color: #666;
  line-height: 2;
  font-size: 16px;
}
.esg_tab11cont {
  padding: 90px 30px;
  border: 2px solid #dddddd;
  height: 3200px;
  overflow-y: hidden;
  margin-bottom: 0px;
}
.esg_tab11cont p {
  color: #666;
  line-height: 2;
  font-size: 16px;
}