@charset 'utf-8';

/******************************
***
***	00공통 > 01메인
***
******************************/
/* INTRO */
.main_page .intro_section {
  /*height:1080px;*/
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}
.main_page .intro_section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
}
.main_page .intro_section video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 100;
}
.main_page .intro_section .inner {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  color: #fff;
  z-index: 300;
}
.main_page .intro_section .title {
  font-size: 72px;
  font-weight: 700;
}
.main_page .intro_section .txt {
  font-size: 24px;
  font-weight: 500;
  margin-top: 12px;
}
.main_page .intro_section .scroll_down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  animation: bounce 2s infinite;
}
/* PC */
@media (min-width: 1441px) {
}
/* Mobile */
@media (max-width: 1440px) {
  .main_page .intro_section {
    /*height:708px;*/
    height: calc(100vh - 60px);
  }
  .main_page .intro_section::before {
  }
  .main_page .intro_section video {
  }
  .main_page .intro_section .inner {
    width: auto;
    padding: 0 30px;
  }
  .main_page .intro_section .title {
    font-size: 32px;
  }
  .main_page .intro_section .txt {
    font-size: 16px;
  }
  .main_page .intro_section .scroll_down {
    bottom: 90px;
  }
  .main_page .intro_section .scroll_down img {
    width: 60px;
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -20px);
  }
  60% {
    transform: translate(-50%, -10px);
  }
}

.content_wrap img[data-i18n-img] {
  width: auto;
  height: auto;
  max-width: 100%;
}
/* 컨텐츠섹션_컨텐츠01 */
.main_page .content_section.content01 {
  padding: 140px 0;
  background: #f6f6f6;
}
.main_page .content_section.content01 .header_wrap {
  margin-bottom: 120px;
}
.main_page .content_section.content01 .header_wrap .title {
  font-size: 40px;
  font-weight: 700;
}
.main_page .content_section.content01 .header_wrap .desc {
  font-size: 20px;
  font-weight: 500;
  color: #6a6a6a;
  line-height: 1.5;
  margin-top: 20px;
}
.main_page .content_section.content01 .content_wrap {
  background: #fff;
}
.main_page .content_section.content01 .content_wrap ul {
  display: flex;
  align-items: stretch;
}
.main_page .content_section.content01 .content_wrap .item {
  flex: 1;
  box-sizing: border-box;
  padding: 160px 20px 40px;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.main_page .content_section.content01 .content_wrap .item ~ .item {
  border-left: 1px solid #e9e9e9;
}
.main_page .content_section.content01 .content_wrap .item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 80px;
  height: 80px;
  background-size: 100% 100%;
  transition: transform 0.6s ease-in-out;
}
.main_page .content_section.content01 .content_wrap .item.ic1::before {
  background-image: url("../images/main/ico_cotent01_01.svg");
}
.main_page .content_section.content01 .content_wrap .item.ic2::before {
  background-image: url("../images/main/ico_cotent01_02.svg");
}
.main_page .content_section.content01 .content_wrap .item.ic3::before {
  background-image: url("../images/main/ico_cotent01_03.svg");
}
.main_page .content_section.content01 .content_wrap .item.ic4::before {
  background-image: url("../images/main/ico_cotent01_04.svg");
}
.main_page .content_section.content01 .content_wrap .item.ic5::before {
  background-image: url("../images/main/ico_cotent01_05.svg");
}
.main_page .content_section.content01 .content_wrap .tit {
  display: block;
  font-size: 24px;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
  min-height: 72px;
}
.main_page .content_section.content01 .content_wrap .ct {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #6a6a6a;
  word-break: auto-phrase;
  line-height: 1.5;
  transition: color 0.3s ease-in-out;
}
/* PC */
@media (min-width: 1441px) {
  .main_page .content_section.content01 .content_wrap .item:hover {
    background: #ff773c;
    box-shadow: 0px 0px 31px 0px rgba(255, 119, 60, 0.5);
  }
  .main_page .content_section.content01 .content_wrap .item:hover .tit,
  .main_page .content_section.content01 .content_wrap .item:hover .ct {
    color: #fff;
  }

  .main_page .content_section.content01 .content_wrap .item.ic1:hover::before {
    background-image: url("../images/main/ico_cotent01_01_on.svg");
  }
  .main_page .content_section.content01 .content_wrap .item.ic2:hover::before {
    background-image: url("../images/main/ico_cotent01_02_on.svg");
  }
  .main_page .content_section.content01 .content_wrap .item.ic3:hover::before {
    background-image: url("../images/main/ico_cotent01_03_on.svg");
  }
  .main_page .content_section.content01 .content_wrap .item.ic4:hover::before {
    background-image: url("../images/main/ico_cotent01_04_on.svg");
  }
  .main_page .content_section.content01 .content_wrap .item.ic5:hover::before {
    background-image: url("../images/main/ico_cotent01_05_on.svg");
  }
  .main_page .content_section.content01 .content_wrap .item:hover::before {
    transform: rotateY(360deg);
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .main_page .content_section.content01 {
    padding: 80px 20px;
  }
  .main_page .content_section.content01 .header_wrap {
    margin-bottom: 40px;
  }
  .main_page .content_section.content01 .header_wrap .title {
    font-size: 20px;
  }
  .main_page .content_section.content01 .header_wrap .desc {
    font-size: 14px;
    margin-top: 12px;
  }
  .main_page .content_section.content01 .content_wrap {
  }
  .main_page .content_section.content01 .content_wrap ul {
    display: block;
  }
  .main_page .content_section.content01 .content_wrap .item {
    height: 100%;
    padding: 84px 20px 24px 20px;
  }
  .main_page .content_section.content01 .content_wrap .item ~ .item {
    border-left: 0;
    border-top: 1px solid #e9e9e9;
  }
  .main_page .content_section.content01 .content_wrap .item::before {
    top: 24px;
    width: 40px;
    height: 40px;
  }
  .main_page .content_section.content01 .content_wrap .item.ic1::before {
  }
  .main_page .content_section.content01 .content_wrap .item.ic2::before {
  }
  .main_page .content_section.content01 .content_wrap .item.ic3::before {
  }
  .main_page .content_section.content01 .content_wrap .item.ic4::before {
  }
  .main_page .content_section.content01 .content_wrap .item.ic5::before {
  }
  .main_page .content_section.content01 .content_wrap .tit {
    font-size: 18px;
    min-height: 40px;
  }
  .main_page .content_section.content01 .content_wrap .ct {
    margin-top: 8px;
    font-size: 14px;
  }
}

/* 컨텐츠섹션_컨텐츠02 */
.main_page .content_section.content02 {
  background: #f6f6f6;
}

/* PC */
@media (min-width: 1441px) {
  .main_page .content_section.content02 {
    padding: 140px 0;
    height: 600px;
    overflow: hidden;
  }
  .main_page .content_section.content02::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    padding-left: 120px;
    background: #f6f6f6;
    z-index: 100;
  }
  .main_page .content_section.content02 .mask {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(50% - 960px);
    background: #f6f6f6;
    z-index: 100;
  }
  .main_page .content_section.content02 .mask::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 285px;
    background: linear-gradient(
      90deg,
      #f6f6f6 4.39%,
      rgba(246, 246, 246, 0) 75.79%
    );
  }
  .main_page .content_section.content02 .desc_wrap {
    position: absolute;
    left: 50%;
    width: 700px;
    margin-left: 80px;
    top: 140px;
    z-index: 500;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
  }
  .main_page .content_section.content02 .swiper-outer {
    position: absolute;
    right: 50%;
    margin-right: 120px;
    top: 50%;
    transform: translateY(-50%);
  }
  .main_page .content_section.content02 .swiper {
    width: 600px;
    height: 600px;
    overflow: visible;
  }
  .main_page .content_section.content02 .swiper-wrapper {
  }
  .main_page .content_section.content02 .swiper-slide {
    height: 600px;
    border-radius: 0 0 100px 0;
    overflow: hidden;
    will-change: transform;
  }

  .main_page .content_section.content02 .swiper-slide:hover {
    transform: scale(1.02);
  }
  .main_page .content_section.content02 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }
  .main_page .content_section.content02 .swiper-slide:hover img {
    transform: scale(1.05);
  }

  /* Coverflow 효과를 위한 추가 스타일 */
  .main_page .content_section.content02 .swiper-slide-shadow-left,
  .main_page .content_section.content02 .swiper-slide-shadow-right {
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.2),
      transparent
    );
  }

  .main_page .content_section.content02 .content-wrapper {
    position: absolute;
    left: 50%;
    width: 640px;
    margin-left: 80px;
    top: 400px;
    z-index: 500;
  }
  .main_page .content_section.content02 .content-wrapper .item {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
  }
  .main_page .content_section.content02 .content-wrapper .item.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  .main_page .content_section.content02 .content-wrapper .title {
    font-size: 24px;
    font-weight: 700;
  }
  .main_page .content_section.content02 .content-wrapper .txt {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #4d4a4a;
    word-break: keep-all;
    line-height: 1.5;
    min-height: 50px;
  }
  .main_page .content_section.content02 .content-wrapper .btn {
    display: flex;
    width: 360px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background: #ff773c;
    color: #fff;
    border-radius: 4px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .main_page .content_section.content02 .content-wrapper .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s ease-in-out;
  }
  .main_page .content_section.content02 .content-wrapper .btn:hover {
    background: #ff4d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 119, 60, 0.3);
  }
  .main_page .content_section.content02 .content-wrapper .btn:hover::before {
    left: 100%;
  }
  .main_page .content_section.content02 .swiper-control {
    position: absolute;
    left: 50%;
    width: 640px;
    margin-left: 80px;
    bottom: 150px;
    z-index: 500;
    font-size: 0;
  }
  .main_page .content_section.content02 .swiper-control .swiper-button {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0 0 0 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #6a6a6a;
    transition: all 0.3s ease-in-out;
  }
  .main_page .content_section.content02 .swiper-control .swiper-button:hover {
    background: #ff773c;
    transform: scale(1.1);
  }
  .main_page .content_section.content02 .swiper-control .swiper-button::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -10px 0 0 -10px;
    background: url("../images/main/ico_arrow_r01.png") 0 0 no-repeat;
    background-size: 20px auto;
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-button-prev::after {
    transform: rotate(180deg);
  }
  .main_page .content_section.content02 .swiper-control .swiper-button-next {
    margin-left: 18px;
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-button-disabled {
    opacity: 1;
    background: #e9e9e9;
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-button-disabled:hover {
    transform: none;
  }
  .main_page .content_section.content02 .swiper-control .swiper-pagination {
    margin-left: 29px;
    position: static;
    width: auto;
    display: inline-block;
    vertical-align: bottom;
    font-size: 16px;
    font-weight: 500;
    color: #adadad;
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-pagination
    .current {
    color: #262626;
    font-size: 24px;
    font-weight: 700;
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-pagination
    .total {
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .main_page .content_section.content02 {
    padding: 80px 0;
  }
  .main_page .content_section.content02 .mask {
    display: none;
  }
  .main_page .content_section.content02 .mask::before {
  }
  .main_page .content_section.content02 .desc_wrap {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .main_page .content_section.content02 .swiper-outer {
    overflow: hidden;
  }
  .main_page .content_section.content02 .swiper {
    overflow: visible;
    padding: 0 20px;
  }
  .main_page .content_section.content02 .swiper-wrapper {
  }
  .main_page .content_section.content02 .swiper-slide {
    width: 89.552%;
    padding-top: 93.333%;
    height: 0;
    border-radius: 0 0 100px 0;
    overflow: hidden;
  }
  .main_page .content_section.content02 .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .main_page .content_section.content02 .content-wrapper {
    padding: 0 20px;
    margin-top: 24px;
  }
  .main_page .content_section.content02 .content-wrapper .item {
    display: none;
  }
  .main_page .content_section.content02 .content-wrapper .item.visible {
    display: block;
  }
  .main_page .content_section.content02 .content-wrapper .title {
    font-size: 20px;
    font-weight: 700;
  }
  .main_page .content_section.content02 .content-wrapper .txt {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4d4a4a;
    line-height: 1.5;
    word-break: keep-all;
    min-height: 65px;
  }
  .main_page .content_section.content02 .content-wrapper .btn {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    border-radius: 4px;
    background: #ff773c;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
  }
  .main_page .content_section.content02 .swiper-control {
    padding: 0 116px 0 20px;
    height: 34px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 28px;
  }
  .main_page .content_section.content02 .swiper-control .swiper-button {
    position: absolute;
    margin: 0;
    left: auto;
    right: 23px;
    top: auto;
    display: inline-block;
    vertical-align: middle;
    width: 34px;
    height: 34px;
    background: #6a6a6a;
    border-radius: 50%;
  }
  .main_page .content_section.content02 .swiper-control .swiper-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    background: url("../images/main/ico_arrow_r01_m.png") 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .main_page .content_section.content02 .swiper-control .swiper-button-prev {
    right: 68px;
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-button-prev::after {
    transform: rotate(180deg);
  }
  .main_page .content_section.content02 .swiper-control .swiper-button-next {
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-button-disabled {
  }
  .main_page .content_section.content02 .swiper-control .swiper-pagination {
    position: static;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    font-size: 12px;
    font-weight: 500;
    color: #adadad;
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-pagination
    .current {
    font-size: 18px;
    font-weight: 700;
    color: #262626;
  }
  .main_page
    .content_section.content02
    .swiper-control
    .swiper-pagination
    .total {
  }
}

/* 컨텐츠섹션_컨텐츠03 */
.main_page .content_section.content03 {
  padding: 140px 0;
  background: url("../images/main/bg_section03.jpg") center center no-repeat;
  background-size: cover;
  color: #fff;
}
.main_page .content_section.content03 .section_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.main_page .content_section.content03 .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.main_page .content_section.content03 .content_wrap {
  width: 720px;
  overflow: hidden;
}
.main_page .content_section.content03 .content_wrap > ul {
  margin: -20px 0 0 -20px;
  font-size: 0;
}
.main_page .content_section.content03 .content_wrap .item {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 350px;
  height: 278px;
  margin: 20px 0 0 20px;
  background: rgba(38, 38, 38, 0.68);
  border-radius: 12px;
  box-sizing: border-box;
  padding: 40px 40px 0;
  position: relative;
  transition: all 0.3s ease-out;
  border: 1px solid transparent;
}
.main_page .content_section.content03 .content_wrap .item .tag {
  font-size: 16px;
  font-weight: 500;
  color: #e9e9e9;
  margin-bottom: 12px;
  display: block;
}
.main_page .content_section.content03 .content_wrap .item .ct {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.main_page .content_section.content03 .content_wrap .item::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 40px;
  height: 40px;
  background: 0 0 no-repeat;
  background-size: 100% 100%;
}
.main_page .content_section.content03 .content_wrap .item.ic1::before {
  background-image: url("../images/main/ico_content03_01.svg");
}
.main_page .content_section.content03 .content_wrap .item.ic2::before {
  background-image: url("../images/main/ico_content03_02.svg");
}
.main_page .content_section.content03 .content_wrap .item.ic3::before {
  background-image: url("../images/main/ico_content03_03.svg");
}
.main_page .content_section.content03 .content_wrap .item.center {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.main_page .content_section.content03 .content_wrap .item.text_center {
  text-align: center;
}
.main_page .content_section.content03 .content_wrap .item.center .ct {
  font-size: 32px;
  font-weight: 600;
}
.main_page .content_section.content03 .content_wrap .item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
/* PC */
@media (min-width: 1441px) {
}
/* Mobile */
@media (max-width: 1440px) {
  .main_page .content_section.content03 {
    padding: 80px 20px;
  }
  .main_page .content_section.content03 .section_inner {
    display: block;
  }
  .main_page .content_section.content03 .title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .main_page .content_section.content03 .content_wrap {
    width: auto;
  }
  .main_page .content_section.content03 .content_wrap > ul {
    margin: -40px 0 0;
  }
  .main_page .content_section.content03 .content_wrap .item {
    display: block;
    width: auto;
    height: 253px;
    margin: 40px 0 0 0;
  }
  .main_page .content_section.content03 .content_wrap .item .tag {
    font-size: 14px;
  }
  .main_page .content_section.content03 .content_wrap .item .ct {
    font-size: 16px;
  }
  .main_page .content_section.content03 .content_wrap .item::before {
  }
  .main_page .content_section.content03 .content_wrap .item.ic1::before {
  }
  .main_page .content_section.content03 .content_wrap .item.ic2::before {
  }
  .main_page .content_section.content03 .content_wrap .item.ic3::before {
  }
  .main_page .content_section.content03 .content_wrap .item.center {
    display: flex;
  }
  .main_page .content_section.content03 .content_wrap .item.center .ct {
  }
}

/* 컨텐츠섹션_컨텐츠03 */
.main_page .content_section.content04 {
  padding: 140px 0;
}
.main_page .content_section.content04 .header_wrap {
  margin-bottom: 120px;
}
.main_page .content_section.content04 .header_wrap .title {
  font-size: 40px;
  font-weight: 700;
}
.main_page .content_section.content04 .content_wrap {
  display: flex;
}
.main_page .content_section.content04 .content_wrap .item {
  position: relative;
}
.main_page .content_section.content04 .content_wrap .item.video {
  width: 680px;
}
.main_page .content_section.content04 .content_wrap .item.catalog {
  flex: 1;
  padding-left: 80px;
}
.main_page .content_section.content04 .content_wrap .item.catalog::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d3d3d3;
}
.main_page .content_section.content04 .content_wrap .headerBox {
  position: relative;
  margin-bottom: 40px;
}
.main_page .content_section.content04 .content_wrap .headerBox .title {
  font-size: 24px;
  font-weight: 500;
}
.main_page .content_section.content04 .content_wrap .headerBox .btnMore {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 500;
  padding-right: 32px;
  color: #8d8d8d;
}
.main_page .content_section.content04 .content_wrap .headerBox .btnMore::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  background: url("../images/main/ico_arrow_r02.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.main_page .content_section.content04 .content_wrap .videoBox {
}
.main_page .content_section.content04 .content_wrap .videoBox .video_type01 {
  padding-top: 380px;
}
.main_page .content_section.content04 .content_wrap .contentBox {
  padding-left: 320px;
  position: relative;
  min-height: 402px;
}
.main_page .content_section.content04 .content_wrap .contentBox .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 280px;
  height: 402px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.14);
}
.main_page .content_section.content04 .content_wrap .contentBox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_page .content_section.content04 .content_wrap .contentBox .desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.main_page .content_section.content04 .content_wrap .contentBox .btnDown {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #3a3a3a;
  font-size: 14px;
  font-weight: 600;
  color: #3a3a3a;
}
.main_page .content_section.content04 .content_wrap .contentBox .btnDown span {
  padding-left: 26px;
  position: relative;
}
.main_page
  .content_section.content04
  .content_wrap
  .contentBox
  .btnDown
  span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: 0;
  background: url("../images/main/ico_download01.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.main_page .content_section.content04 .content_wrap .contentBox .btnDown:hover {
  background: #3a3a3a;
  color: #fff;
}
.main_page
  .content_section.content04
  .content_wrap
  .contentBox
  .btnDown:hover
  span::before {
  background-image: url("../images/main/ico_download02.svg");
}
/* PC */
@media (min-width: 1441px) {
}
/* Mobile */
@media (max-width: 1440px) {
  .main_page .content_section.content04 {
    padding: 80px 20px 66px;
  }
  .main_page .content_section.content04 .header_wrap {
    margin-bottom: 40px;
  }
  .main_page .content_section.content04 .header_wrap .title {
    font-size: 20px;
  }
  .main_page .content_section.content04 .content_wrap {
    display: block;
  }
  .main_page .content_section.content04 .content_wrap .item {
  }
  .main_page .content_section.content04 .content_wrap .item.video {
    width: auto;
  }
  .main_page .content_section.content04 .content_wrap .item.catalog {
    padding: 40px 0 0;
    margin-top: 40px;
    border-top: 1px solid #d3d3d3;
  }
  .main_page .content_section.content04 .content_wrap .item.catalog::before {
    content: normal;
  }
  .main_page .content_section.content04 .content_wrap .headerBox {
    margin-bottom: 20px;
  }
  .main_page .content_section.content04 .content_wrap .headerBox .title {
    font-size: 18px;
  }
  .main_page .content_section.content04 .content_wrap .headerBox .btnMore {
    font-size: 14px;
    padding-right: 24px;
  }
  .main_page
    .content_section.content04
    .content_wrap
    .headerBox
    .btnMore::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
  .main_page .content_section.content04 .content_wrap .videoBox {
  }
  .main_page .content_section.content04 .content_wrap .videoBox .video_type01 {
    padding-top: 55.82%;
  }
  .main_page .content_section.content04 .content_wrap .contentBox {
    padding-left: 0;
    min-height: auto;
  }
  .main_page .content_section.content04 .content_wrap .contentBox .img {
    position: static;
    margin: 0 auto 20px;
    width: 200px;
    height: 288px;
    box-shadow: none;
  }
  .main_page .content_section.content04 .content_wrap .contentBox .img img {
  }
  .main_page .content_section.content04 .content_wrap .contentBox .desc {
  }
  .main_page .content_section.content04 .content_wrap .contentBox .btnDown {
    margin-top: 24px;
  }
  .main_page
    .content_section.content04
    .content_wrap
    .contentBox
    .btnDown
    a:hover {
    color: #fff;
  }
  .main_page
    .content_section.content04
    .content_wrap
    .contentBox
    .btnDown
    span::before {
  }
}

/******************************
***
***	01 NEDEC		> 01 NEDEC하이라이트
***
******************************/
/* PC */
@media (min-width: 1441px) {
  .sub0101_page {
    padding-top: 80px;
  }
}

.sub0101_page .intro_section {
  box-sizing: border-box;
  height: 640px;
  border-top: 1px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("../images/sub0101/bg_intro01.jpg") center center no-repeat;
}
.sub0101_page .intro_section .title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.5;
}
.sub0101_page .intro_section .txt {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #6a6a6a;
  line-height: 1.5;
  word-break: keep-all;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0101_page .intro_section {
    height: 480px;
    border-top: 0;
    justify-content: flex-start;
    padding: 28px 20px 0;
  }
  .sub0101_page .intro_section .title {
    font-size: 32px;
  }
  .sub0101_page .intro_section .txt {
    font-size: 16px;
  }
}

.sub0101_page .content_section.content01 {
  color: #fff;
  position: relative;
}
.sub0101_page .content_section.content01 .title {
  position: absolute;
  left: 50%;
  margin-left: -720px;
  top: 140px;
  font-size: 40px;
  padding-top: 20px;
  z-index: 1000;
}
.sub0101_page .content_section.content01 .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 11px;
  height: 12px;
  background: url("../images/sub0101/ico_nedec01.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.sub0101_page .content_section.content01 .swiper-slide {
  height: 1080px;
  background: center center no-repeat;
  background-size: cover;
}
.sub0101_page .content_section.content01 .swiper-slide.item01 {
  background-image: url("../images/sub0101/img_content01_01.jpg");
}
.sub0101_page .content_section.content01 .swiper-slide.item02 {
  background-image: url("../images/sub0101/img_content01_02.jpg");
}
.sub0101_page .content_section.content01 .swiper-slide.item03 {
  background-image: url("../images/sub0101/img_content01_03.jpg");
}
.sub0101_page .content_section.content01 .swiper-slide.item04 {
  background-image: url("../images/sub0101/img_content01_04.jpg");
}
.sub0101_page .content_section.content01 .swiper-slide .inner {
  position: relative;
  padding-top: 320px;
  width: 1440px;
  margin: 0 auto;
}
.sub0101_page .content_section.content01 .swiper-slide .btn {
  display: flex;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 4px;
  width: 360px;
  height: 48px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
.sub0101_page .content_section.content01 .swiper-slide .btn:hover {
  background: #ff773c;
  border-color: #ff773c;
}
.sub0101_page .content_section.content01 .swiper-button {
  width: 66px;
  height: 66px;
  background: #ff773c;
  border-radius: 50%;
}
.sub0101_page .content_section.content01 .swiper-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  background: url("../images/sub0101/ico_arrow_r01.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.sub0101_page .content_section.content01 .swiper-button-prev {
  transform: rotate(180deg);
  left: 50%;
  margin-left: -720px;
}
.sub0101_page .content_section.content01 .swiper-button-next {
  right: 50%;
  margin-right: -720px;
}
.sub0101_page .content_section.content01 .swiper-button-disabled {
  background: rgba(233, 233, 233, 0.2);
}
.sub0101_page .content_section.content01 .swiper-button-disabled::after {
  opacity: 0.2;
}
.sub0101_page .content_section.content01 .swiper-pagination {
  font-size: 0;
  bottom: 80px;
}
.sub0101_page .content_section.content01 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #6a6a6a;
  opacity: 1;
}
.sub0101_page .content_section.content01 .swiper-pagination-bullet-active {
  background: #ff773c;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0101_page .content_section.content01 {
  }
  .sub0101_page .content_section.content01 .title {
    left: 20px;
    right: 20px;
    margin-left: 0;
    top: 80px;
    font-size: 20px;
    padding-top: 0;
  }
  .sub0101_page .content_section.content01 .title::before {
    content: normal;
  }
  .sub0101_page .content_section.content01 .swiper-slide {
    height: 812px;
  }
  .sub0101_page .content_section.content01 .swiper-slide.item01 {
  }
  .sub0101_page .content_section.content01 .swiper-slide.item02 {
  }
  .sub0101_page .content_section.content01 .swiper-slide.item03 {
  }
  .sub0101_page .content_section.content01 .swiper-slide.item04 {
  }
  .sub0101_page .content_section.content01 .swiper-slide .inner {
    padding: 180px 20px 0;
    width: auto;
  }
  .sub0101_page .content_section.content01 .swiper-slide .btn {
    width: auto;
  }
  .sub0101_page .content_section.content01 .swiper-slide .btn:hover {
  }
  .sub0101_page .content_section.content01 .swiper-button {
    display: none;
  }
  .sub0101_page .content_section.content01 .swiper-button::after {
  }
  .sub0101_page .content_section.content01 .swiper-button-prev {
  }
  .sub0101_page .content_section.content01 .swiper-button-next {
  }
  .sub0101_page .content_section.content01 .swiper-button-disabled {
  }
  .sub0101_page .content_section.content01 .swiper-button-disabled::after {
  }
  .sub0101_page .content_section.content01 .swiper-pagination {
  }
  .sub0101_page .content_section.content01 .swiper-pagination-bullet {
  }
  .sub0101_page .content_section.content01 .swiper-pagination-bullet-active {
  }
}

.sub0101_page .content_section.content02 {
  background: #f6f6f6;
}
.sub0101_page .content_section.content02 .section_inner {
  display: flex;
  justify-content: space-between;
  padding: 140px 0;
}
.sub0101_page .content_section.content02 .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.sub0101_page .content_section.content02 .content_wrap {
  width: 740px;
}
.sub0101_page .content_section.content02 .content_wrap .item {
  padding: 40px 20px;
  border-top: 1px solid #d3d3d3;
}
.sub0101_page .content_section.content02 .content_wrap .item:last-child {
  padding-bottom: 0;
}
.sub0101_page .content_section.content02 .content_wrap .tit {
  font-size: 20px;
  font-weight: 500;
  color: #6a6a6a;
  margin-bottom: 20px;
}
.sub0101_page .content_section.content02 .content_wrap .cont01 {
  font-size: 40px;
  font-weight: 700;
}
.sub0101_page .content_section.content02 .content_wrap .cont02 {
}
.sub0101_page .content_section.content02 .content_wrap .cont02 ul {
  display: flex;
  justify-content: space-between;
}
.sub0101_page .content_section.content02 .content_wrap .cont02 li {
  text-align: left;
  width: 200px;
}
.sub0101_page .content_section.content02 .content_wrap .cont02 li .in {
  text-align: center;
  display: inline-block;
  line-height: 1.5;
}
.sub0101_page .content_section.content02 .content_wrap .cont02 .num {
  display: block;
  font-size: 72px;
  font-weight: 700;
}
.sub0101_page .content_section.content02 .content_wrap .cont02 .unit {
  display: block;
  font-size: 28px;
  font-weight: 600;
  margin-top: 12px;
}
.sub0101_page .content_section.content02 .content_wrap .cont03 {
}
.sub0101_page .content_section.content02 .content_wrap .cont03 ul {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.sub0101_page .content_section.content02 .content_wrap .cont03 li {
  width: 200px;
  font-size: 28px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 92px;
  position: relative;
  text-align: center;
  line-height: 1.5;
}
.sub0101_page .content_section.content02 .content_wrap .cont03 li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  background: 0 0 no-repeat;
  background-size: 100% 100%;
}
.sub0101_page .content_section.content02 .content_wrap .cont03 li.ic1::before {
  background-image: url("../images/sub0101/ico_content02_01.svg");
}
.sub0101_page .content_section.content02 .content_wrap .cont03 li.ic2::before {
  background-image: url("../images/sub0101/ico_content02_02.svg");
}
.sub0101_page .content_section.content02 .content_wrap li ~ li {
  margin-left: 40px;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0101_page .content_section.content02 {
  }
  .sub0101_page .content_section.content02 .section_inner {
    display: block;
    padding: 80px 20px;
  }
  .sub0101_page .content_section.content02 .title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .sub0101_page .content_section.content02 .content_wrap {
    width: auto;
  }
  .sub0101_page .content_section.content02 .content_wrap .item {
    padding: 20px 0;
  }
  .sub0101_page .content_section.content02 .content_wrap .item:last-child {
  }
  .sub0101_page .content_section.content02 .content_wrap .tit {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont01 {
    font-size: 24px;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont02 {
  }
  .sub0101_page .content_section.content02 .content_wrap .cont02 ul {
  }
  .sub0101_page .content_section.content02 .content_wrap .cont02 li {
    width: auto;
    flex: 1;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont02 li ~ li {
    margin-left: 20px;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont02 li .in {
    display: block;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont02 .num {
    font-size: 32px;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont02 .unit {
    font-size: 18px;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont03 {
  }
  .sub0101_page .content_section.content02 .content_wrap .cont03 ul {
    margin-left: 0;
    justify-content: center;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont03 li {
    width: auto;
    flex: 1;
    font-size: 18px;
    padding-top: 60px;
    text-align: center;
  }
  .sub0101_page .content_section.content02 .content_wrap .cont03 li::before {
    width: 48px;
    height: 48px;
    margin-left: -24px;
  }
  .sub0101_page
    .content_section.content02
    .content_wrap
    .cont03
    li.ic1::before {
  }
  .sub0101_page
    .content_section.content02
    .content_wrap
    .cont03
    li.ic2::before {
  }
  .sub0101_page .content_section.content02 .content_wrap .cont03 li ~ li {
    margin-left: 24px;
  }
}

.sub0101_page .content_section.content03 {
  padding: 140px 0 164px;
}
.sub0101_page .content_section.content03 .title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 120px;
}
.sub0101_page .content_section.content03 .content_wrap {
}
.sub0101_page .content_section.content03 .content_wrap > ul {
  border-top: 1px solid #e9e9e9;
}
.sub0101_page .content_section.content03 .content_wrap .item {
  border-bottom: 1px solid #e9e9e9;
  padding: 40px;
  position: relative;
  cursor: pointer;
}
.sub0101_page .content_section.content03 .content_wrap .inner {
  line-height: 1.5;
  max-width: 50%;
}
.sub0101_page .content_section.content03 .content_wrap .inner .tit {
  font-size: 32px;
  font-weight: 700;
  color: #c4c4c6;
}
.sub0101_page .content_section.content03 .content_wrap .inner .ct {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #d3d3d3;
}
.sub0101_page .content_section.content03 .content_wrap .visual {
  display: none;
  position: absolute;
  right: 0;
  width: 700px;
  height: 632px;
  border-radius: 0 0 100px 0;
  overflow: hidden;
}
.sub0101_page .content_section.content03 .content_wrap .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub0101_page
  .content_section.content03
  .content_wrap
  .item:nth-child(1)
  .visual {
  top: 0;
}
.sub0101_page
  .content_section.content03
  .content_wrap
  .item:nth-child(2)
  .visual {
  top: -74px;
}
.sub0101_page
  .content_section.content03
  .content_wrap
  .item:nth-child(3)
  .visual {
  top: 50%;
  transform: translateY(-50%);
}
.sub0101_page
  .content_section.content03
  .content_wrap
  .item:nth-child(4)
  .visual {
  bottom: -74px;
}
.sub0101_page
  .content_section.content03
  .content_wrap
  .item:nth-child(5)
  .visual {
  bottom: 0;
}
.sub0101_page .content_section.content03 .content_wrap .item.active {
  z-index: 100;
}
.sub0101_page
  .content_section.content03
  .content_wrap
  .item.active
  .inner
  .tit {
  color: #262626;
}
.sub0101_page .content_section.content03 .content_wrap .item.active .inner .ct {
  color: #6a6a6a;
}
.sub0101_page .content_section.content03 .content_wrap .item.active .visual {
  display: block;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0101_page .content_section.content03 {
    padding: 80px 20px;
  }
  .sub0101_page .content_section.content03 .title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .sub0101_page .content_section.content03 .content_wrap {
  }
  .sub0101_page .content_section.content03 .content_wrap > ul {
  }
  .sub0101_page .content_section.content03 .content_wrap .item {
    padding: 20px 12px;
  }
  .sub0101_page .content_section.content03 .content_wrap .inner {
    max-width: 100%;
  }
  .sub0101_page .content_section.content03 .content_wrap .inner .tit {
    font-size: 18px;
  }
  .sub0101_page .content_section.content03 .content_wrap .inner .ct {
    margin-top: 12px;
    font-size: 14px;
  }
  .sub0101_page .content_section.content03 .content_wrap .visual {
    position: relative;
    right: auto;
    margin-top: 20px;
    width: auto;
    padding-top: 55.223%;
    height: 0;
  }
  .sub0101_page .content_section.content03 .content_wrap .visual img {
    position: absolute;
    left: 0;
    top: 0;
  }
  .sub0101_page
    .content_section.content03
    .content_wrap
    .item:nth-child(1)
    .visual,
  .sub0101_page
    .content_section.content03
    .content_wrap
    .item:nth-child(2)
    .visual,
  .sub0101_page
    .content_section.content03
    .content_wrap
    .item:nth-child(3)
    .visual,
  .sub0101_page
    .content_section.content03
    .content_wrap
    .item:nth-child(4)
    .visual,
  .sub0101_page
    .content_section.content03
    .content_wrap
    .item:nth-child(5)
    .visual {
    transform: none;
    top: auto;
    bottom: auto;
  }
  .sub0101_page .content_section.content03 .content_wrap .item.active {
    z-index: 100;
  }
  .sub0101_page
    .content_section.content03
    .content_wrap
    .item.active
    .inner
    .tit {
    color: #262626;
  }
  .sub0101_page
    .content_section.content03
    .content_wrap
    .item.active
    .inner
    .ct {
    color: #6a6a6a;
  }
  .sub0101_page .content_section.content03 .content_wrap .item.active .visual {
    display: block;
  }
}

/******************************
***
***	01 NEDEC		> 02 CEO인사말
***
******************************/
.sub0102_page .content_section {
  padding: 140px 0;
}
.sub0102_page .content_section .header_wrap {
  padding-bottom: 120px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 120px;
}
.sub0102_page .content_section .header_wrap .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.sub0102_page .content_section .content_wrap {
  padding-right: 640px;
  position: relative;
}
.sub0102_page .content_section .content_wrap .profile {
  position: absolute;
  right: 0;
  width: 620px;
  top: 60px;
}

@media (max-width: 768px) {
  .sub0102_page .content_section .content_wrap .profile {
    width: 100%;
  }
}

.sub0102_page .content_section .content_wrap .profile img {
  width: 100%;
}
.sub0102_page .content_section .content_wrap .content {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.sub0102_page .content_section .content_wrap .signBox {
  margin-top: 24px;
}
.sub0102_page .content_section .content_wrap .signBox .name {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.sub0102_page .content_section .content_wrap .signBox .sign {
  display: inline-block;
  vertical-align: middle;
  margin-left: 17px;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0102_page .content_section {
    padding: 80px 20px 100px;
  }
  .sub0102_page .content_section .header_wrap {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .sub0102_page .content_section .header_wrap .title {
    font-size: 20px;
    word-break: keep-all;
  }
  .sub0102_page .content_section .content_wrap {
    padding: 0;
  }
  .sub0102_page .content_section .content_wrap .profile {
    position: static;
  }
  .sub0102_page .content_section .content_wrap .profile img {
    width: 100%;
  }
  .sub0102_page .content_section .content_wrap .content {
    font-size: 14px;
    margin-top: 20px;
  }
  .sub0102_page .content_section .content_wrap .signBox {
    margin-top: 20px;
  }
  .sub0102_page .content_section .content_wrap .signBox .name {
    display: block;
    font-size: 20px;
  }
  .sub0102_page .content_section .content_wrap .signBox .sign {
    display: block;
    margin: 12px 0 0;
  }
}

/******************************
***
***	01 NEDEC		> 03 연혁
***
******************************/
.sub0103_page .header_content {
  padding: 140px 0 120px;
}
.sub0103_page .header_content .header_inner {
  width: 1440px;
  margin: 0 auto;
}
.sub0103_page .header_content .btnPrev {
  font-size: 40px;
  font-weight: 700;
  color: #8d8d8d;
  line-height: 1.5;
  padding-left: 80px;
  position: relative;
}
.sub0103_page .header_content .btnPrev::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background: url("../images/sub0103/ico_arrow_r01.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.sub0103_page .header_content .btnPrev:hover {
  color: #6a6a6a;
}
.sub0103_page .header_content .btnPrev:hover::before {
  background-image: url("../images/sub0103/ico_arrow_r02.svg");
}
.sub0103_page .content_section {
  padding: 66px 0 140px;
}
.sub0103_page .content_section .header_type01 {
  margin-bottom: 120px;
}
.sub0103_page .content_section .visual_wrap {
  padding-top: 41.666%;
  height: 0;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 100px 0;
}
.sub0103_page .content_section .visual_wrap video,
.sub0103_page .content_section .visual_wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub0103_page .content_section .visual_wrap ~ .visual_wrap {
  margin-top: 120px;
}
.sub0103_page .content_section .content_wrap {
  margin-top: 80px;
}
.sub0103_page .content_section .content_wrap .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 28px;
}
.sub0103_page .content_section .content_wrap .contentBox {
  border-top: 1px solid #d3d3d3;
}
.sub0103_page .content_section .content_wrap .contentBox li {
  border-bottom: 1px solid #d3d3d3;
  padding: 24px 0;
  line-height: 1.5;
}
.sub0103_page .content_section .content_wrap .contentBox .tit {
  display: inline-block;
  width: 140px;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 700;
}
.sub0103_page .content_section .content_wrap .contentBox .ct {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 500;
}
.sub0103_page .content_section .content_wrap .btnBox {
  margin-top: 40px;
  text-align: right;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0103_page .header_content {
    padding: 80px 20px 40px;
  }
  .sub0103_page .header_content .header_inner {
    width: auto;
  }
  .sub0103_page .header_content .btnPrev {
    font-size: 20px;
    padding-left: 32px;
  }
  .sub0103_page .header_content .btnPrev::before {
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }
  .sub0103_page .header_content .btnPrev:hover {
  }
  .sub0103_page .header_content .btnPrev:hover::before {
  }
  .sub0103_page .content_section {
    padding: 20px 20px 80px;
  }
  .sub0103_page .content_section .header_type01 {
    margin-bottom: 40px;
  }
  .sub0103_page .content_section .visual_wrap {
    padding-top: 95.522%;
  }
  .sub0103_page .content_section .visual_wrap video,
  .sub0103_page .content_section .visual_wrap img {
  }
  .sub0103_page .content_section .visual_wrap ~ .visual_wrap {
    margin-top: 40px;
  }
  .sub0103_page .content_section .content_wrap {
    margin-top: 24px;
  }
  .sub0103_page .content_section .content_wrap .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .sub0103_page .content_section .content_wrap .contentBox {
  }
  .sub0103_page .content_section .content_wrap .contentBox li {
    padding: 20px 0;
  }
  .sub0103_page .content_section .content_wrap .contentBox .tit {
    display: block;
    width: auto;
    font-size: 16px;
  }
  .sub0103_page .content_section .content_wrap .contentBox .ct {
    display: block;
    margin-top: 12px;
    font-size: 14px;
  }
  .sub0103_page .content_section .content_wrap .btnBox {
    margin-top: 24px;
  }
}

/******************************
***
***	01 NEDEC		> 04 글로벌네트워크
***
******************************/
.sub0104_page {
}

.sub0104_page .content_section.content01 {
  padding: 140px 0;
}
.sub0104_page .content_section.content01 .header_type01 {
  margin-bottom: 120px;
}
.sub0104_page .content_section.content01 .content_wrap {
}
.sub0104_page .content_section.content01 .content_wrap img {
  width: 100%;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0104_page .content_section.content01 {
    padding: 80px 20px 40px;
  }
  .sub0104_page .content_section.content01 .header_type01 {
    margin-bottom: 0;
  }
  .sub0104_page .content_section.content01 .content_wrap {
    display: none;
  }
}

.sub0104_page .content_section.content02 {
  margin-top: 120px;
  padding-bottom: 130px;
}
.sub0104_page .content_section.content02 .content_item ~ .content_item {
  margin-top: 120px;
}
.sub0104_page .content_section.content02 .content_item .visual_wrap {
  padding-top: 600px;
  height: 0;
  overflow: hidden;
  position: relative;
}
.sub0104_page .content_section.content02 .content_item .visual_wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub0104_page .content_section.content02 .content_item .content_wrap {
  width: 1440px;
  margin: 80px auto 0;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .headerBox {
  margin-bottom: 60px;
  position: relative;
  line-height: 1.5;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .headerBox
  .title {
  font-size: 32px;
  font-weight: 700;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .headerBox
  .txt {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #6a6a6a;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .headerBox
  .btnMap {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  font-weight: 500;
  padding-right: 48px;
  line-height: 40px;
  color: #adadad;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .headerBox
  .btnMap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: url("../images/sub0104/ico_map01.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .contentBox {
  border-bottom: 1px solid #d3d3d3;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .contentBox
  li {
  border-top: 1px solid #d3d3d3;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .contentBox
  .tit {
  display: inline-block;
  vertical-align: middle;
  width: 160px;
  color: #8d8d8d;
  margin-right: 9px;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .contentBox
  .ct {
  display: inline-block;
  vertical-align: middle;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .contentBox
  li.map {
  border-top: 0;
  padding-top: 0;
  display: none;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .contentBox
  li.map
  .map_iframe {
  padding-top: 51.319%;
  height: 0;
  overflow: hidden;
  position: relative;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap
  .contentBox
  li.map
  iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.sub0104_page .content_section.content02 .content_item .content_wrap.mapOpen {
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap.mapOpen
  .headerBox
  .btnMap {
  color: #ff773c;
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap.mapOpen
  .headerBox
  .btnMap::after {
  background-image: url("../images/sub0104/ico_map01_on.svg");
}
.sub0104_page
  .content_section.content02
  .content_item
  .content_wrap.mapOpen
  .contentBox
  li.map {
  display: block;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0104_page .content_section.content02 {
    margin-top: 40px;
    padding-bottom: 80px;
  }
  .sub0104_page .content_section.content02 .content_item ~ .content_item {
    margin-top: 40px;
  }
  .sub0104_page .content_section.content02 .content_item .visual_wrap {
    padding-top: 85.333%;
  }
  .sub0104_page .content_section.content02 .content_item .visual_wrap img {
  }
  .sub0104_page .content_section.content02 .content_item .content_wrap {
    width: auto;
    margin-top: 24px;
    padding: 0 20px;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .headerBox {
    margin-bottom: 20px;
    padding-top: 52px;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .headerBox
    .title {
    font-size: 18px;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .headerBox
    .txt {
    margin-top: 8px;
    font-size: 14px;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .headerBox
    .btnMap {
    padding-right: 36px;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .headerBox
    .btnMap::after {
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .contentBox {
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .contentBox
    li {
    font-size: 14px;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .contentBox
    .tit {
    display: block;
    width: auto;
    margin-right: 0;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .contentBox
    .ct {
    display: block;
    margin-top: 8px;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .contentBox
    li.map {
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .contentBox
    li.map
    .map_iframe {
    padding-top: 71.641%;
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap
    .contentBox
    li.map
    iframe {
  }
  .sub0104_page .content_section.content02 .content_item .content_wrap.mapOpen {
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap.mapOpen
    .headerBox
    .btnMap {
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap.mapOpen
    .headerBox
    .btnMap::after {
  }
  .sub0104_page
    .content_section.content02
    .content_item
    .content_wrap.mapOpen
    .contentBox
    li.map {
  }
}

/******************************
***
***	02 SOLUTIONS		> 01 보유기술
***
******************************/
.sub0201_page {
}

.sub0201_page .summary_section {
  padding: 140px 0;
  background: #f6f6f6;
}
.sub0201_page .summary_section .descTxt {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 120px;
  word-break: keep-all;
  line-height: 1.5;
}
.sub0201_page .summary_section .descTxt strong {
  font-weight: 700;
}
.sub0201_page .summary_section .header_wrap {
  margin-bottom: 80px;
}
.sub0201_page .summary_section .header_wrap .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.sub0201_page .summary_section .content_wrap {
  border: 1px solid #e9e9e9;
  background: #fff;
}
.sub0201_page .summary_section .content_wrap > ul {
  display: flex;
}
.sub0201_page .summary_section .content_wrap li {
  flex: 1;
  border-right: 1px solid #e9e9e9;
}
.sub0201_page .summary_section .content_wrap li:last-child {
  border-right-width: 0;
}
.sub0201_page .summary_section .content_wrap li a {
  position: relative;
  display: block;
  height: 200px;
  box-sizing: border-box;
  padding-top: 148px;
  font-size: 18px;
  font-weight: 600;
  color: #adadad;
  text-align: center;
  line-height: 1.5;
}
.sub0201_page .summary_section .content_wrap li a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  background: 0 0 no-repeat;
  background-size: 100% 100%;
}
.sub0201_page .summary_section .content_wrap li a.ic1::before {
  background-image: url("../images/sub0201/ico_summary01.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic2::before {
  background-image: url("../images/sub0201/ico_summary02.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic3::before {
  background-image: url("../images/sub0201/ico_summary03.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic4::before {
  background-image: url("../images/sub0201/ico_summary04.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic5::before {
  background-image: url("../images/sub0201/ico_summary05.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic5::before {
  background-image: url("../images/sub0201/ico_summary05.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic6::before {
  background-image: url("../images/sub0201/ico_summary06.svg");
}
.sub0201_page .summary_section .content_wrap li a:hover {
  color: #ff773c;
}
.sub0201_page .summary_section .content_wrap li a.ic1:hover::before {
  background-image: url("../images/sub0201/ico_summary01_hover.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic2:hover::before {
  background-image: url("../images/sub0201/ico_summary02_hover.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic3:hover::before {
  background-image: url("../images/sub0201/ico_summary03_hover.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic4:hover::before {
  background-image: url("../images/sub0201/ico_summary04_hover.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic5:hover::before {
  background-image: url("../images/sub0201/ico_summary05_hover.svg");
}
.sub0201_page .summary_section .content_wrap li a.ic6:hover::before {
  background-image: url("../images/sub0201/ico_summary06_hover.svg");
}
.sub0201_page .summary_section .content_wrap li.on a {
  background: #ff773c;
  box-shadow: 0px 0px 31px 0px rgba(255, 119, 60, 0.5);
  color: #fff;
}
.sub0201_page .summary_section .content_wrap li.on a.ic1::before {
  background-image: url("../images/sub0201/ico_summary01_on.svg");
}
.sub0201_page .summary_section .content_wrap li.on a.ic2::before {
  background-image: url("../images/sub0201/ico_summary02_on.svg");
}
.sub0201_page .summary_section .content_wrap li.on a.ic3::before {
  background-image: url("../images/sub0201/ico_summary03_on.svg");
}
.sub0201_page .summary_section .content_wrap li.on a.ic4::before {
  background-image: url("../images/sub0201/ico_summary04_on.svg");
}
.sub0201_page .summary_section .content_wrap li.on a.ic5::before {
  background-image: url("../images/sub0201/ico_summary05_on.svg");
}
.sub0201_page .summary_section .content_wrap li.on a.ic6::before {
  background-image: url("../images/sub0201/ico_summary06_on.svg");
}
/* PC */
@media (min-width: 1441px) {
  .sub0201_page .summary_section .section_inner {
    width: 1440px;
    margin: 0 auto;
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0201_page .summary_section {
    padding: 80px 20px 30px;
    background: none;
  }
  .sub0201_page .summary_section .descTxt {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .sub0201_page .summary_section .descTxt strong {
  }
  .sub0201_page .summary_section .header_wrap {
    margin-bottom: 20px;
  }
  .sub0201_page .summary_section .header_wrap .title {
    font-size: 20px;
  }
  .sub0201_page .summary_section .content_wrap {
    border-width: 1px 0 0 1px;
  }
  .sub0201_page .summary_section .content_wrap > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .sub0201_page .summary_section .content_wrap li {
    border-bottom: 1px solid #e9e9e9;
  }
  .sub0201_page .summary_section .content_wrap li:last-child {
    border-right-width: 1px;
  }
  .sub0201_page .summary_section .content_wrap li a {
    height: 140px;
    padding-top: 97px;
    font-size: 12px;
  }
  .sub0201_page .summary_section .content_wrap li a::before {
    top: 25px;
    margin-left: -30px;
    width: 60px;
    height: 60px;
  }
  .sub0201_page .summary_section .content_wrap li a.ic1::before {
  }
  .sub0201_page .summary_section .content_wrap li a.ic2::before {
  }
  .sub0201_page .summary_section .content_wrap li a.ic3::before {
  }
  .sub0201_page .summary_section .content_wrap li a.ic4::before {
  }
  .sub0201_page .summary_section .content_wrap li a.ic5::before {
  }
  .sub0201_page .summary_section .content_wrap li a.ic5::before {
  }
  .sub0201_page .summary_section .content_wrap li a.ic6::before {
  }
  .sub0201_page .summary_section .content_wrap li.on a {
  }
  .sub0201_page .summary_section .content_wrap li.on a.ic1::before {
  }
  .sub0201_page .summary_section .content_wrap li.on a.ic2::before {
  }
  .sub0201_page .summary_section .content_wrap li.on a.ic3::before {
  }
  .sub0201_page .summary_section .content_wrap li.on a.ic4::before {
  }
  .sub0201_page .summary_section .content_wrap li.on a.ic5::before {
  }
  .sub0201_page .summary_section .content_wrap li.on a.ic6::before {
  }
}

.sub0201_page .content_section {
  padding: 120px 0 140px;
}
.sub0201_page .content_section .header_type01 {
  margin-bottom: 120px;
}
.sub0201_page .content_section .content_wrap {
  display: flex;
}
.sub0201_page .content_section .content_wrap ~ .content_wrap {
  margin-top: 80px;
}
.sub0201_page .content_section .content_wrap .visualBox {
  width: 600px;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
}
.sub0201_page .content_section .content_wrap .visualBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub0201_page .content_section .content_wrap .contentBox {
  flex: 1;
  margin-left: 100px;
  line-height: 1.5;
  word-break: keep-all;
}
.sub0201_page .content_section .content_wrap .contentBox .title {
  font-size: 32px;
  font-weight: 700;
}
.sub0201_page .content_section .content_wrap .contentBox .cont01 {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 600;
}
.sub0201_page .content_section .content_wrap .contentBox .cont02 {
  margin-top: 20px;
  font-size: 18px;
  color: #6a6a6a;
}
.sub0201_page .content_section .content_wrap .contentBox .cont03 {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #d3d3d3;
}
.sub0201_page .content_section .content_wrap .contentBox .cont03 li {
  font-size: 16px;
  color: #6a6a6a;
}
.sub0201_page .content_section .content_wrap .contentBox .cont03 li ~ li {
  margin-top: 12px;
}
.sub0201_page .content_section .content_wrap .contentBox .cont04 {
  margin-top: 40px;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0201_page .content_section {
    padding: 30px 20px 80px;
  }
  .sub0201_page .content_section .header_type01 {
    margin-bottom: 40px;
  }
  .sub0201_page .content_section .content_wrap {
    display: block;
  }
  .sub0201_page .content_section .content_wrap ~ .content_wrap {
    margin-top: 40px;
  }
  .sub0201_page .content_section .content_wrap .visualBox {
    width: auto;
    height: auto;
  }
  .sub0201_page .content_section .content_wrap .visualBox img {
    width: 100%;
    height: auto;
  }
  .sub0201_page .content_section .content_wrap .contentBox {
    margin: 20px 0 0;
  }
  .sub0201_page .content_section .content_wrap .contentBox .title {
    font-size: 18px;
  }
  .sub0201_page .content_section .content_wrap .contentBox .cont01 {
    font-size: 14px;
  }
  .sub0201_page .content_section .content_wrap .contentBox .cont02 {
    margin-top: 8px;
    font-size: 14px;
  }
  .sub0201_page .content_section .content_wrap .contentBox .cont03 {
    padding-top: 20px;
    margin-top: 20px;
  }
  .sub0201_page .content_section .content_wrap .contentBox .cont03 li {
    font-size: 12px;
  }
  .sub0201_page .content_section .content_wrap .contentBox .cont03 li ~ li {
    margin-top: 4px;
  }
  .sub0201_page .content_section .content_wrap .contentBox .cont04 {
  }
}

/******************************
***
***	02 SOLUTIONS		> 02 주요제품
***
******************************/
.sub0202_page {
}

.sub0202_page .summary_section {
  padding: 140px 0 80px;
}
.sub0202_page .summary_section .txt01 {
  width: 1440px;
  margin: 0 auto;
  line-height: 1.5;
  font-size: 40px;
  font-weight: 400;
}
.sub0202_page .summary_section .txt01 strong {
  font-weight: 700;
}
.sub0202_page .summary_section .visual {
  text-align: right;
  margin-top: 120px;
}
.sub0202_page .summary_section .visual img {
  width: 1280px;
}
.sub0202_page .summary_section .txt02 {
  width: 1440px;
  margin: 120px auto 0;
  font-size: 40px;
  font-weight: 700;
}
/* PC */
@media (min-width: 1441px) {
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0202_page .summary_section {
    padding: 80px 0 40px;
  }
  .sub0202_page .summary_section .txt01 {
    width: auto;
    font-size: 20px;
    padding: 0 20px;
  }
  .sub0202_page .summary_section .txt01 strong {
    font-weight: 700;
  }
  .sub0202_page .summary_section .visual {
    margin-top: 40px;
  }
  .sub0202_page .summary_section .visual img {
    width: 100%;
  }
  .sub0202_page .summary_section .txt02 {
    width: auto;
    margin-top: 40px;
    font-size: 20px;
    padding: 0 20px;
  }
}

@keyframes fillRight {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
.sub0202_page .tab_type03 {
}

.sub0202_page .tab_type03 ul li a {
  /* transition: background 0.3s, color 0.3s; */
  background: linear-gradient(90deg, #ff7a2f 0%, #ff7a2f 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  color: #ccc;
  transition: none;
}
.sub0202_page .tab_type03 ul li.on a {
  background-size: 100% 100%;
  color: #fff;
  animation: fillRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile */
@media (max-width: 1440px) {
  .sub0202_page .tab_type03 {
  }
}

.sub0202_page .content_section {
  padding: 80px 0 140px;
}
.sub0202_page .content_section .header_type01 {
  width: 1440px;
  margin: 0 auto 20px;
}
/* PC */
@media (min-width: 1441px) {
  .sub0202_page .content_section .section_inner {
    width: auto;
  }
  .sub0202_page .content_section .content_wrap {
  }
  .sub0202_page .content_section .content_wrap .txt {
    text-align: right;
  }
  .sub0202_page .content_section .content_wrap .txt img {
    width: auto;
    height: 100%;
  }
  .sub0202_page .content_section .content_wrap .visual {
    position: relative;
  }
  .sub0202_page .content_section .content_wrap .visual img {
    width: 100%;
  }
  .sub0202_page .content_section.content01 .content_wrap .txt {
    height: 112px;
  }
  .sub0202_page .content_section.content01 .content_wrap .visual {
    margin-top: -12px;
  }
  .sub0202_page .content_section.content02 .content_wrap .txt {
    height: 138px;
  }
  .sub0202_page .content_section.content02 .content_wrap .visual {
    margin-top: -38px;
  }
  .sub0202_page .content_section.content03 .content_wrap .txt {
    height: 110px;
  }
  .sub0202_page .content_section.content03 .content_wrap .visual {
    margin-top: -10px;
  }
  .sub0202_page .content_section.content04 .content_wrap .txt {
    height: 130px;
  }
  .sub0202_page .content_section.content04 .content_wrap .visual {
    margin-top: -29px;
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0202_page .content_section {
    padding: 40px 0 80px;
  }
  .sub0202_page .content_section .header_type01 {
    padding: 0 20px;
    width: auto;
  }
  .sub0202_page .content_section .content_wrap {
  }
  .sub0202_page .content_section .content_wrap .txt {
    overflow: hidden;
  }
  .sub0202_page .content_section .content_wrap .txt img {
    width: auto;
    height: 35px;
  }
  .sub0202_page .content_section .content_wrap .visual {
    padding-top: 74.666%;
    height: 0;
    overflow: hidden;
    position: relative;
    margin-top: -4px;
  }
  .sub0202_page .content_section .content_wrap .visual img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/******************************
***
***	02 SOLUTIONS		> 02 주요제품		> 01 자동차부품 / 02 데이터스토리지
***
******************************/
.sub020201_page {
}

.sub020201_page .summary_section {
  padding: 140px 0 80px;
}
.sub020201_page .summary_section .header_type01 {
  margin-bottom: 80px;
}
/* PC */
@media (min-width: 1441px) {
  .sub020201_page .summary_section .section_inner {
    width: 1440px;
    margin: 0 auto;
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .sub020201_page .summary_section {
    padding: 80px 20px 40px;
  }
  .sub020201_page .summary_section .header_type01 {
    margin-bottom: 40px;
  }
}

.sub020201_page .content_section {
}
.sub020201_page .content_section > .header_type01 {
  width: 1440px;
  margin: 0 auto 100px;
}
.sub020201_page .content_section .feature_inner {
  height: 820px;
  background: url("../images/sub020201/bg_feature01.jpg") center center
    no-repeat;
  background-size: cover;
  position: relative;
}
.sub020201_page .content_section .feature_inner.auto {
  height: 820px;
  background: url("../images/sub020201/bg_feature02.jpg") center center
    no-repeat;
  background-size: cover;
  position: relative;
}
.sub020201_page .content_section .feature_inner .inner {
  position: absolute;
  left: 50%;
  margin-left: -720px;
  top: 140px;
  width: 620px;
  color: #fff;
}
.sub020201_page .content_section .feature_inner .headerBox {
}
.sub020201_page .content_section .feature_inner .headerBox .title {
  font-size: 40px;
  font-weight: 700;
}
.sub020201_page .content_section .feature_inner .headerBox .cont {
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid #6a6a6a;
}
.sub020201_page .content_section .feature_inner .headerBox .cont li {
  padding-left: 15px;
  position: relative;
}
.sub020201_page .content_section .feature_inner .headerBox .cont li ~ li {
  margin-top: 40px;
}
.sub020201_page .content_section .feature_inner .headerBox .cont li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 8px;
  background: url("../images/sub020201/ico_logo01.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.sub020201_page .content_section .feature_inner .headerBox .cont .tit {
  display: block;
  font-size: 24px;
  font-weight: 700;
}
.sub020201_page .content_section .feature_inner .headerBox .cont .ct {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: #d3d3d3;
}
.sub020201_page .content_section .section_inner {
  padding: 140px 0;
}
.sub020201_page .content_section .section_inner .header_type01 {
  margin-bottom: 120px;
}
.sub020201_page .content_section .section_inner .tab_type05 {
  margin-bottom: 80px;
}
.sub020201_page .content_section .section_inner .content_inner {
  display: flex;
}
.sub020201_page
  .content_section
  .section_inner
  .content_inner
  .imgViewer_type01 {
}
.sub020201_page .content_section .section_inner .content_inner .content_wrap {
  margin-left: 100px;
  flex: 1;
}
.sub020201_page
  .content_section
  .section_inner
  .content_inner
  .content_wrap
  .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
.sub020201_page
  .content_section
  .section_inner
  .content_inner
  .content_wrap
  .txt {
  margin-top: 20px;
  font-size: 18px;
  color: #6a6a6a;
  line-height: 1.5;
  word-break: keep-all;
}
.sub020201_page
  .content_section
  .section_inner
  .content_inner
  .content_wrap
  .featureBox {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #d3d3d3;
}
.sub020201_page
  .content_section
  .section_inner
  .content_inner
  .content_wrap
  .featureBox
  ul {
  font-size: 0;
}
.sub020201_page
  .content_section
  .section_inner
  .content_inner
  .content_wrap
  .featureBox
  li {
  display: inline-flex;
  vertical-align: middle;
  padding: 0 16px;
  height: 28px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #6a6a6a;
  background: #f6f6f6;
  border-radius: 99px;
}
.sub020201_page
  .content_section
  .section_inner
  .content_inner
  .content_wrap
  .featureBox
  li
  ~ li {
  margin-left: 12px;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub020201_page .content_section {
  }
  .sub020201_page .content_section > .header_type01 {
    width: auto;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .sub020201_page .content_section .feature_inner {
    height: 651px;
    background-image: url("../images/sub020201/bg_feature01_m.jpg");
  }
  .sub020201_page .content_section .feature_inner.auto {
    height: 750px;
    background-image: url("../images/sub020201/bg_feature02_m.png");
  }
  .sub020201_page .content_section .feature_inner .inner {
    left: 20px;
    right: 20px;
    margin-left: 0;
    top: 80px;
    width: auto;
  }
  .sub020201_page .content_section .feature_inner .headerBox {
  }
  .sub020201_page .content_section .feature_inner .headerBox .title {
    font-size: 20px;
  }
  .sub020201_page .content_section .feature_inner .headerBox .cont {
    padding-top: 24px;
    margin-top: 24px;
  }
  .sub020201_page .content_section .feature_inner .headerBox .cont li {
  }
  .sub020201_page .content_section .feature_inner .headerBox .cont li ~ li {
    margin-top: 20px;
  }
  .sub020201_page .content_section .feature_inner .headerBox .cont li::before {
  }
  .sub020201_page .content_section .feature_inner .headerBox .cont .tit {
    font-size: 18px;
  }
  .sub020201_page .content_section .feature_inner .headerBox .cont .ct {
    font-size: 14px;
  }
  .sub020201_page .content_section .section_inner {
    padding: 80px 0;
  }
  .sub020201_page .content_section .section_inner .header_type01 {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .sub020201_page .content_section .section_inner .tab_type05 {
    margin-bottom: 40px;
  }
  .sub020201_page .content_section .section_inner .content_inner {
    padding: 0 20px;
    display: block;
  }
  .sub020201_page
    .content_section
    .section_inner
    .content_inner
    .imgViewer_type01 {
  }
  .sub020201_page .content_section .section_inner .content_inner .content_wrap {
    margin: 40px 0 0;
  }
  .sub020201_page
    .content_section
    .section_inner
    .content_inner
    .content_wrap
    .title {
    font-size: 18px;
  }
  .sub020201_page
    .content_section
    .section_inner
    .content_inner
    .content_wrap
    .txt {
    margin-top: 12px;
    font-size: 14px;
  }
  .sub020201_page
    .content_section
    .section_inner
    .content_inner
    .content_wrap
    .featureBox {
    padding-top: 20px;
    margin-top: 20px;
  }
  .sub020201_page
    .content_section
    .section_inner
    .content_inner
    .content_wrap
    .featureBox
    ul {
  }
  .sub020201_page
    .content_section
    .section_inner
    .content_inner
    .content_wrap
    .featureBox
    li {
    height: 24px;
    font-size: 12px;
    box-sizing: border-box;
  }
  .sub020201_page
    .content_section
    .section_inner
    .content_inner
    .content_wrap
    .featureBox
    li
    ~ li {
  }
}

/******************************
***
***	02 SOLUTIONS		> 02 주요제품		> 03 텔레커뮤니케이션 / 04
***
******************************/
.sub020203_page {
}

.sub020203_page .content_section {
  padding: 140px 0 100px;
}
.sub020203_page .content_section .header_type01 {
  margin-bottom: 120px;
}
.sub020203_page .content_section .content_wrap img {
  width: 100%;
}
/* PC */
@media (min-width: 1441px) {
}
/* Mobile */
@media (max-width: 1440px) {
  .sub020203_page .content_section {
    padding: 80px 20px;
  }
  .sub020203_page .content_section .header_type01 {
    margin-bottom: 40px;
  }
}

/******************************
***
***	02 SOLUTIONS		> 03 품질시스템
***
******************************/
.sub0203_page {
}

.sub0203_page .content_section {
  padding: 140px 0 100px;
}
.sub0203_page .content_section .section_inner ~ .section_inner {
  margin-top: 120px;
}
.sub0203_page .content_section .section_inner.summary {
}
.sub0203_page .content_section .section_inner.summary .header_type01 {
  margin-bottom: 0;
}
.sub0203_page .content_section .section_inner.content01 {
}
.sub0203_page .content_section .section_inner.content02 {
}
.sub0203_page .content_section .header_type01 {
  margin-bottom: 120px;
}
.sub0203_page .content_section .content_wrap img {
  width: 100%;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.14);
}
.sub0203_page .content_section .content_wrap .cont {
  font-size: 20px;
  margin-top: 32px;
  text-align: center;
  line-height: 1.5;
  word-break: keep-all;
}
/* PC */
@media (min-width: 1441px) {
  .sub0203_page .content_section .section_inner .content_wrap ul {
    display: flex;
  }
  .sub0203_page .content_section .section_inner .content_wrap ul li {
    flex: 1;
  }
  .sub0203_page .content_section .section_inner .content_wrap ul li ~ li {
    margin-left: 40px;
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .sub0203_page .content_section {
    padding: 80px 20px 40px;
  }
  .sub0203_page .content_section .section_inner ~ .section_inner {
    margin-top: 40px;
  }
  .sub0203_page .content_section .header_type01 {
    margin-bottom: 40px;
  }
  .sub0203_page .content_section .section_inner .content_wrap ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sub0203_page .content_section .content_wrap .cont {
    font-size: 14px;
  }
}

/******************************
***
***	03 ESG
***
******************************/
.sub03_page {
}

.sub03_page .summary_section {
  padding: 140px 0;
}
/* PC */
@media (min-width: 1441px) {
  .sub03_page .summary_section .section_inner {
    width: 1440px;
    margin: 0 auto;
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .sub03_page .summary_section {
    padding: 80px 20px 40px;
  }
}

.sub03_page .content_section.content01 {
  padding: 66px 0 140px;
}
.sub03_page .content_section.content01 .header_wrap {
  margin-bottom: 120px;
  line-height: 1.5;
}
.sub03_page .content_section.content01 .header_wrap .title {
  font-size: 32px;
  font-weight: 700;
}
.sub03_page .content_section.content01 .header_wrap .txt {
  margin-top: 20px;
  font-size: 20px;
  color: #6a6a6a;
}
.sub03_page .content_section.content01 .content_wrap {
}
.sub03_page .content_section.content01 .content_wrap .item {
  display: flex;
  align-items: center;
}
.sub03_page .content_section.content01 .content_wrap .item ~ .item {
  margin-top: 80px;
}
.sub03_page .content_section.content01 .content_wrap .visual {
  width: 700px;
  padding-top: 420px;
  height: 0;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 100px 0;
}
.sub03_page .content_section.content01 .content_wrap .visual img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub03_page .content_section.content01 .content_wrap .inner {
  margin-left: 40px;
  line-height: 1.5;
  flex: 1;
}
.sub03_page .content_section.content01 .content_wrap .inner .txt01 {
  font-size: 20px;
}
.sub03_page .content_section.content01 .content_wrap .inner .txt02 {
  margin-top: 20px;
  font-size: 16px;
  color: #6a6a6a;
}
.sub03_page .content_section.content01 .content_wrap .inner .txt02 li {
}
.sub03_page .content_section.content01 .content_wrap .item.rtl {
  flex-direction: row-reverse;
}
.sub03_page .content_section.content01 .content_wrap .item.rtl .inner {
  margin-left: 0;
}
.sub03_page .content_section.content01 .descTxt {
  text-align: center;
  margin-top: 174px;
  line-height: 1.5;
}
.sub03_page .content_section.content01 .descTxt .txt01 {
  font-weight: 600;
  font-size: 32px;
}
.sub03_page .content_section.content01 .descTxt .txt02 {
  font-size: 20px;
  margin-top: 20px;
}
/* PC */
@media (min-width: 1441px) {
  .sub03_page .content_section.content01 {
  }
  .sub03_page
    .content_section.content01
    .content_wrap
    .inner
    .txt02
    li::before {
    content: "· ";
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .sub03_page .content_section.content01 {
    padding: 40px 0 80px;
  }
  .sub03_page .content_section.content01 .header_wrap {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .sub03_page .content_section.content01 .header_wrap .title {
    font-size: 18px;
  }
  .sub03_page .content_section.content01 .header_wrap .txt {
    font-size: 14px;
  }
  .sub03_page .content_section.content01 .content_wrap {
  }
  .sub03_page .content_section.content01 .content_wrap .item {
    display: block;
  }
  .sub03_page .content_section.content01 .content_wrap .item ~ .item {
    margin-top: 40px;
  }
  .sub03_page .content_section.content01 .content_wrap .visual {
    width: 100%;
    padding-top: 85.333%;
  }
  .sub03_page .content_section.content01 .content_wrap .visual img {
  }
  .sub03_page .content_section.content01 .content_wrap .inner {
    margin: 24px 0 0;
    padding: 0 20px;
  }
  .sub03_page .content_section.content01 .content_wrap .inner .txt01 {
    font-size: 16px;
    font-weight: 600;
  }
  .sub03_page .content_section.content01 .content_wrap .inner .txt02 {
    margin-top: 12px;
    font-size: 14px;
  }
  .sub03_page .content_section.content01 .content_wrap .inner .txt02 li {
  }
  .sub03_page .content_section.content01 .content_wrap .item.rtl {
  }
  .sub03_page .content_section.content01 .content_wrap .item.rtl .inner {
  }
  .sub03_page .content_section.content01 .descTxt {
    margin-top: 40px;
  }
  .sub03_page .content_section.content01 .descTxt .txt01 {
    font-size: 16px;
  }
  .sub03_page .content_section.content01 .descTxt .txt02 {
    font-size: 14px;
  }
}

.sub03_page .content_section.content02 {
  box-sizing: border-box;
  padding-top: 140px;
  height: 1076px;
  background: url("../images/sub03/bg_content02.jpg") center center no-repeat;
  background-size: cover;
}
.sub03_page .content_section.content02 .header_type01 {
  margin-bottom: 120px;
}
.sub03_page .content_section.content02 .header_type01 .title {
  color: #fff;
}
.sub03_page .content_section.content02 .header_type01 .txt {
  color: #d3d3d3;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub03_page .content_section.content02 {
    padding: 80px 20px;
    height: auto;
  }
  .sub03_page .content_section.content02 .header_type01 {
    margin-bottom: 40px;
  }
  .sub03_page .content_section.content02 .header_type01 .title {
  }
  .sub03_page .content_section.content02 .header_type01 .txt {
  }
  .sub03_page .content_section.content02 .content_wrap {
    text-align: center;
  }
  .sub03_page .content_section.content02 .content_wrap img {
    width: 100%;
    max-width: 670px;
  }
}

.sub03_page .content_section.content03 {
  background: #f6f6f6;
  padding: 140px 0;
}
.sub03_page .content_section.content03 .header_type01 {
  margin-bottom: 120px;
}
.sub03_page .content_section.content03 .content_wrap img {
  width: 100%;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub03_page .content_section.content03 {
    padding: 80px 20px;
  }
  .sub03_page .content_section.content03 .header_type01 {
    margin-bottom: 40px;
  }
  .sub03_page .content_section.content03 .content_wrap img {
  }
}

.sub03_page .content_section.content04 {
  padding: 140px 0;
}
.sub03_page .content_section.content04 .header_type01 {
  margin-bottom: 120px;
}
.sub03_page .content_section.content04 .content_wrap {
}
.sub03_page .content_section.content04 .content_wrap .img {
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.14);
}
.sub03_page .content_section.content04 .content_wrap .img img {
  width: 100%;
}
.sub03_page .content_section.content04 .content_wrap .cont {
  text-align: center;
  font-size: 20px;
  margin-top: 32px;
}
/* PC */
@media (min-width: 1441px) {
  .sub03_page .content_section.content04 .content_wrap {
  }
  .sub03_page .content_section.content04 .content_wrap ul {
    display: flex;
  }
  .sub03_page .content_section.content04 .content_wrap li {
    flex: 1;
  }
  .sub03_page .content_section.content04 .content_wrap li ~ li {
    margin-left: 40px;
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .sub03_page .content_section.content04 {
    padding: 80px 20px;
  }
  .sub03_page .content_section.content04 .header_type01 {
    margin-bottom: 40px;
  }
  .sub03_page .content_section.content04 .content_wrap {
  }
  .sub03_page .content_section.content04 .content_wrap ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sub03_page .content_section.content04 .content_wrap li {
  }
  .sub03_page .content_section.content04 .content_wrap li ~ li {
  }
  .sub03_page .content_section.content04 .content_wrap .img {
  }
  .sub03_page .content_section.content04 .content_wrap .img img {
  }
  .sub03_page .content_section.content04 .content_wrap .cont {
    font-size: 14px;
    margin-top: 20px;
  }
}

.sub03_page .content_section.content05 {
  padding: 140px 0;
}
.sub03_page .content_section.content05 .header_type01 {
  margin-bottom: 120px;
}
.sub03_page .content_section.content05 .content_wrap {
}
.sub03_page .content_section.content05 .content_wrap .item {
}
.sub03_page .content_section.content05 .content_wrap .item ~ .item {
  margin-top: 80px;
}
.sub03_page .content_section.content05 .content_wrap .headerBox {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #d3d3d3;
}
.sub03_page .content_section.content05 .content_wrap .headerBox .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
.sub03_page .content_section.content05 .content_wrap .headerBox .btnOpen {
  position: absolute;
  right: 0;
  top: 50%;
  width: 24px;
  padding-top: 24px;
  margin-top: -22px;
  height: 0;
  overflow: hidden;
  background: url("../images/sub03/btn_open01_off.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.sub03_page .content_section.content05 .content_wrap .contentBox {
  display: none;
}
.sub03_page .content_section.content05 .content_wrap .contentBox .outerLine {
  display: flex;
}
.sub03_page
  .content_section.content05
  .content_wrap
  .contentBox
  .outerLine
  .content {
  flex: 1;
}
.sub03_page .content_section.content05 .content_wrap .contentBox .content {
  display: flex;
  border-bottom: 1px solid #eaeaec;
}
.sub03_page .content_section.content05 .content_wrap .contentBox .content .tit {
  width: 140px;
  padding: 14px 16px;
  background: #f5f6f8;
  font-size: 14px;
  color: #8e8e8e;
}
.sub03_page
  .content_section.content05
  .content_wrap
  .contentBox
  .content
  .cont {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  color: #191919;
}
.sub03_page .content_section.content05 .content_wrap .item.open {
}
.sub03_page
  .content_section.content05
  .content_wrap
  .item.open
  .headerBox
  .btnOpen {
  background-image: url("../images/sub03/btn_open01_on.svg");
}
.sub03_page .content_section.content05 .content_wrap .item.open .contentBox {
  display: block;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub03_page .content_section.content05 {
    padding: 80px 20px;
  }
  .sub03_page .content_section.content05 .header_type01 {
    margin-bottom: 40px;
  }
  .sub03_page .content_section.content05 .content_wrap {
  }
  .sub03_page .content_section.content05 .content_wrap .item {
  }
  .sub03_page .content_section.content05 .content_wrap .item ~ .item {
    margin-top: 40px;
  }
  .sub03_page .content_section.content05 .content_wrap .headerBox {
  }
  .sub03_page .content_section.content05 .content_wrap .headerBox .title {
    font-size: 16px;
    font-weight: 600;
  }
  .sub03_page .content_section.content05 .content_wrap .headerBox .btnOpen {
  }
  .sub03_page .content_section.content05 .content_wrap .contentBox {
  }
  .sub03_page .content_section.content05 .content_wrap .contentBox .outerLine {
    display: block;
  }
  .sub03_page
    .content_section.content05
    .content_wrap
    .contentBox
    .outerLine
    .content {
  }
  .sub03_page .content_section.content05 .content_wrap .contentBox .content {
  }
  .sub03_page
    .content_section.content05
    .content_wrap
    .contentBox
    .content
    .tit {
  }
  .sub03_page
    .content_section.content05
    .content_wrap
    .contentBox
    .content
    .cont {
  }
  .sub03_page .content_section.content05 .content_wrap .item.open {
  }
  .sub03_page
    .content_section.content05
    .content_wrap
    .item.open
    .headerBox
    .btnOpen {
  }
  .sub03_page .content_section.content05 .content_wrap .item.open .contentBox {
  }
}

/******************************
***
***	04 PR
***
******************************/
.sub04_page {
  background: #f6f6f6;
}
/* Mobile */
@media (max-width: 1440px) {
}

.sub04_page .content_section {
  padding: 140px 0 160px;
}
.sub04_page .content_section .section_inner ~ .section_inner {
  margin-top: 120px;
}
.sub04_page .content_section .section_inner.content01 {
}
.sub04_page .content_section .section_inner.content02 {
}
.sub04_page .content_section .section_inner.content03 {
  display: flex;
}
.sub04_page .content_section .section_inner.content03 .content_inner {
  flex: 1;
  box-sizing: border-box;
}
.sub04_page .content_section .section_inner.content03 .content_inner.ltr {
  padding-right: 80px;
}
.sub04_page .content_section .section_inner.content03 .content_inner.rtl {
  padding-left: 80px;
  border-left: 1px solid #d3d3d3;
}
.sub04_page .content_section .header_type01 {
  margin-bottom: 120px;
}
/* PC */
@media (min-width: 1441px) {
  .sub04_page .content_section {
    background: url("../images/sub04/bg_body01.jpg") center center no-repeat;
  }
}
/* Mobile */
@media (max-width: 1440px) {
  .sub04_page .content_section {
    padding: 80px 20px;
  }
  .sub04_page .content_section .section_inner ~ .section_inner {
    margin-top: 80px;
  }
  .sub04_page .content_section .section_inner.content01 {
  }
  .sub04_page .content_section .section_inner.content02 {
  }
  .sub04_page .content_section .section_inner.content03 {
    display: block;
  }
  .sub04_page .content_section .section_inner.content03 .content_inner {
  }
  .sub04_page .content_section .section_inner.content03 .content_inner.ltr {
    padding-right: 0;
  }
  .sub04_page .content_section .section_inner.content03 .content_inner.rtl {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #d3d3d3;
    padding-top: 40px;
    margin-top: 40px;
  }
  .sub04_page .content_section .header_type01 {
    margin-bottom: 40px;
  }
}

.sub04_page .content_section .section_inner.content01 {
}
.sub04_page .content_section .section_inner.content01 .content_wrap {
}
.sub04_page
  .content_section
  .section_inner.content01
  .content_wrap
  .video_type01 {
  padding-top: 56.25%;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub04_page
    .content_section
    .section_inner.content01
    .content_wrap
    .video_type01 {
    padding-top: 55.82%;
  }
}

.sub04_page .content_section .section_inner.content02 {
}
.sub04_page .content_section .section_inner.content02 .content_wrap > ul {
  display: flex;
}
.sub04_page .content_section .section_inner.content02 .content_wrap .item {
  flex: 1;
}
.sub04_page
  .content_section
  .section_inner.content02
  .content_wrap
  .item
  ~ .item {
  margin-left: 40px;
}
.sub04_page .content_section .section_inner.content02 .content_wrap .visual {
  height: 482px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.14);
}
.sub04_page
  .content_section
  .section_inner.content02
  .content_wrap
  .visual
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub04_page .content_section .section_inner.content02 .content_wrap .contBox {
  margin-top: 32px;
}
.sub04_page
  .content_section
  .section_inner.content02
  .content_wrap
  .contBox
  .tit {
  display: block;
  font-size: 20px;
}
.sub04_page
  .content_section
  .section_inner.content02
  .content_wrap
  .contBox
  .btn_type01 {
  display: flex;
  width: 100%;
  margin-top: 20px;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub04_page .content_section .section_inner.content02 .content_wrap > ul {
    display: block;
  }
  .sub04_page .content_section .section_inner.content02 .content_wrap .item {
  }
  .sub04_page
    .content_section
    .section_inner.content02
    .content_wrap
    .item
    ~ .item {
    margin: 40px 0 0;
  }
  .sub04_page .content_section .section_inner.content02 .content_wrap .visual {
    height: auto;
    box-shadow: none;
    text-align: center;
  }
  .sub04_page
    .content_section
    .section_inner.content02
    .content_wrap
    .visual
    img {
    width: 200px;
    height: auto;
  }
  .sub04_page .content_section .section_inner.content02 .content_wrap .contBox {
    margin-top: 20px;
  }
  .sub04_page
    .content_section
    .section_inner.content02
    .content_wrap
    .contBox
    .tit {
    width: 140px;
    margin: 0 auto;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }
  .sub04_page
    .content_section
    .section_inner.content02
    .content_wrap
    .contBox
    .btn_type01 {
    margin-top: 12px;
  }
}

.sub04_page .content_section .section_inner.content03 {
}
.sub04_page .content_section .section_inner.content03 .content_inner.ltr {
}
.sub04_page .content_section .section_inner.content03 .content_inner.rtl {
}
.sub04_page .content_section .section_inner.content03 .content_wrap {
}
.sub04_page .content_section .section_inner.content03 .content_wrap .visual {
}
.sub04_page
  .content_section
  .section_inner.content03
  .content_wrap
  .visual
  img {
  width: 100%;
}
.sub04_page .content_section .section_inner.content03 .content_wrap .btnBox {
  margin-top: 40px;
  text-align: center;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub04_page .content_section .section_inner.content03 .content_wrap {
  }
  .sub04_page .content_section .section_inner.content03 .content_wrap .visual {
  }
  .sub04_page
    .content_section
    .section_inner.content03
    .content_wrap
    .visual
    img {
  }
  .sub04_page .content_section .section_inner.content03 .content_wrap .btnBox {
    margin-top: 20px;
  }
  .sub04_page
    .content_section
    .section_inner.content03
    .content_inner.ltr
    .content_wrap
    .visual {
    text-align: center;
  }
  .sub04_page
    .content_section
    .section_inner.content03
    .content_inner.ltr
    .content_wrap
    .visual
    img {
    max-width: 335px;
  }
}

/******************************
***
***	05 CONTACT
***
******************************/
.sub05_page {
}

.sub05_page .content_section {
  padding: 140px 0;
}
.sub05_page .content_section .header_wrap {
  line-height: 1.5;
  margin-bottom: 120px;
}
.sub05_page .content_section .header_wrap .title {
  font-size: 40px;
  font-weight: 700;
  color: #ff4d00;
}
.sub05_page .content_section .header_wrap .txt {
  margin-top: 20px;
  font-size: 20px;
  color: #6a6a6a;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub05_page .content_section {
    padding: 80px 20px;
  }
  .sub05_page .content_section .header_wrap {
    margin-bottom: 20px;
  }
  .sub05_page .content_section .header_wrap .title {
    font-size: 20px;
  }
  .sub05_page .content_section .header_wrap .txt {
    margin-top: 12px;
    font-size: 14px;
  }
}

/* 기본 드롭다운 (아래로) */
.selectBox01.active ul {
  display: block;
  top: 100%;
}

/* 위로 열리는 드롭다운 */
.selectBox01.active.up ul {
  top: -550% !important;
  bottom: auto;
}

/* 네덱 다양한 혁신 기술 - solution car에만 존재 */
.sub020201_page .contact_section {
  height: 100%;
}
.sub020201_page .contact_section .section_inner {
  padding-top: 80px;
  padding-bottom: 95px;
}
.sub020201_page .section_inner .content_wrap > ul {
  display: flex;
  gap: 80px;
  margin-top: 60px;
}
.sub020201_page .section_inner .content_wrap li a {
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sub020201_page .section_inner .content_wrap li a {
  border-radius: 50%;
  background-color: #333333;
  position: relative;
  display: block;
  width: 300px;
  height: 300px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  color: #c4c4c6;
  padding-top: 198px;
}
.sub020201_page .section_inner .content_wrap li a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 78px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  background: 0 0 no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s ease-in-out;
}
.sub020201_page .section_inner .content_wrap li a.ic1::before {
  background-image: url("../images/sub0201/ico_product01_electrification.svg");
}
.sub020201_page .section_inner .content_wrap li a.ic2::before {
  background-image: url("../images/sub0201/ico_product02_powertrain.svg");
}
.sub020201_page .section_inner .content_wrap li a.ic3::before {
  background-image: url("../images/sub0201/ico_product03_camera.svg");
}
.sub020201_page .section_inner .content_wrap li a.ic4::before {
  background-image: url("../images/sub0201/ico_product04_e-mobility.svg");
}
.sub020201_page .section_inner .content_wrap li a:hover {
  color: #262626;
  cursor: pointer;
}
.sub020201_page .section_inner .content_wrap li a.ic1:hover::before {
  background-image: url("../images/sub0201/ico_product01_electrification_hover.svg");
  transform: scale(1.3);
}
.sub020201_page .section_inner .content_wrap li a.ic2:hover::before {
  background-image: url("../images/sub0201/ico_product02_powertrain_hover.svg");
  transform: scale(1.3);
}
.sub020201_page .section_inner .content_wrap li a.ic3:hover::before {
  background-image: url("../images/sub0201/ico_product03_camera_hover.svg");
  transform: scale(1.3);
}
.sub020201_page .section_inner .content_wrap li a.ic4:hover::before {
  background-image: url("../images/sub0201/ico_product04_e-mobility_hover.svg");
  transform: scale(1.3);
}
.sub020201_page .section_inner .content_wrap li a:hover {
  background-color: #fff;
}
/* Mobile */
@media (max-width: 1440px) {
  .sub020201_page .section_inner .content_wrap > ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
  .sub020201_page .section_inner .content_wrap li a {
    width: 150px;
    font-size: 12px;
    height: 150px;
    padding-top: 90px;
    white-space: pre-line;
  }
  .sub020201_page .section_inner .content_wrap li a::before {
    top: 40px;
    height: 48px;
  }
}
.whitespace0 {
  white-space: pre-line;
}
