@charset "UTF-8";

.td01 {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

.td02 {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.td03 {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.td04 {
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.td05 {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.td06 {
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}

.td07 {
  -webkit-transition-delay: .7s;
  transition-delay: .7s;
}

.td08 {
  -webkit-transition-delay: .8s;
  transition-delay: .8s;
}

.td09 {
  -webkit-transition-delay: .9s;
  transition-delay: .9s;
}

.td10 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.td11 {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.td12 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.animated {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all ease 1.5s;
  transition: all ease 1.5s;
}

.animated-x {
  opacity: 0;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.animated-x.on {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.animated.on {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.skip-btn{
  position: absolute;
  top: -99999px;
  left: -99999px;
  width: 100%;
  opacity: 0;
  z-index: 99999999999;
}

.skip-btn:focus{
  top: 0;
  left: 0;
  height: 45px;
  line-height: 45px;
  background-color: #0154a6;
  color: #fff;
  text-align: center;
  opacity: 1;
}

#skip{
  width: 1px;
  height: 1px;
}

/* 2023-05-19 추가 s */
.hidearea {
  overflow:hidden; 
  position:absolute; 
  left:-99999999px; 
  top:-99999999px; 
  height:0;
}
/* // 2023-05-19 추가 e */

.quick {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1008;
  width: 85px;
  height: 85px;
  cursor: pointer;
}

/* 2023-06-21 문의 아이콘 수정 s */
.quick .img {
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background-image: url(../image/common/quick.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.quick .quick__menu {
  position: absolute;
  left: -125px;
  top: -6px;
  display: none;
  opacity: 0;
}

.quick .quick__menu>a {
  display: block;
  width: 130px;
  background-color: #fff;
  border: 1px solid #00ae41;
  border-radius: 20px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  margin: 5px 0;
  color: #00ae41;
  font-size: 14px;
  font-family: 'Hyundai', 'Noto Sans KR', sans-serif;
  font-weight: 600;
}

.quick.active .img {
  background-image: url(../image/common/quick_on.png);
}

.quick .quick-tooltip {
  position: absolute;
  top: -60px;
  right: 0;
  background-color: #fff;
  border: 1px solid #00ae41;
  border-radius: 30px;
  width: 250px;
  font-size: 16px;
  font-weight: 500;
  color: #00ae41;
  line-height: 1em;
  padding: 15px;
  text-align: center;
}
/* // 2023-06-21 문의 아이콘 수정 e */

.quick__dim {
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 1004;
  display: none;
  opacity: 0;
  cursor: pointer;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.quick__contact-wrap {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1005;
  width: 480px;
  background-color: #fff;
  height: 100vh;
  -webkit-transition: all ease .8s;
  transition: all ease .8s;
}

.quick__contact-wrap.active {
  right: 0;
}

.quick__contact-wrap .quick__top {
  padding: 45px 35px;
  background-color: #0154a6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 26px;
  color: #fff;
}

.quick__contact-wrap .quick__top .quick__close {
  cursor: pointer;
}

.quick__contact-wrap .quick__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ddd;
}

.quick__contact-wrap .quick__tab>li {
  width: 33.3%;
  padding: 25px 0;
  text-align: center;
  font-size: 20px;
  color: #9f9f9f;
  cursor: pointer;
}

.quick__contact-wrap .quick__tab>li.active {
  color: #0154a6;
  position: relative;
}

.quick__contact-wrap .quick__tab>li.active::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #0154a6;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.quick__contact-wrap .quick__cont .cont__banner {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 55px 45px;
  font-size: 20px;
  line-height: 1.4em;
  color: #fff;
}

.quick__contact-wrap .quick__cont .cont__list {
  padding: 40px;
  height: calc(100vh - 116px - 71px - 166px);
  overflow-y: scroll;
}

.quick__contact-wrap .quick__cont .cont__list::-webkit-scrollbar {
  width: 0px;
  display: none;
  background: none;
}

.quick__contact-wrap .quick__cont .cont__list::-webkit-scrollbar-thumb {
  background: #dcdcdc;
}

.quick__contact-wrap .quick__cont .cont__list::-webkit-scrollbar-track {
  background: none;
}

.quick__contact-wrap .quick__cont .cont__list:last-child {
  border-bottom: none;
}

.quick__contact-wrap .quick__cont .cont__list>li {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #ddd;
}

.quick__contact-wrap .quick__cont .cont__list>li:last-child {
  margin-bottom: 0;
}

.quick__contact-wrap .quick__cont .cont__list .para01 {
  margin-bottom: 17px;
}

.quick__contact-wrap .quick__cont .cont__list .para01 span {
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.quick__contact-wrap .quick__cont .cont__list .para01 span:first-child {
  margin-right: 8px;
  padding-right: 16px;
  position: relative;
}

.quick__contact-wrap .quick__cont .cont__list .para01 span:first-child::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #ccc;
  position: absolute;
  top: 2px;
  right: 0;
}

.quick__contact-wrap .quick__cont .cont__list .para02 {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quick__contact-wrap .quick__cont .cont__list .para02 span {
  color: #777;
  font-size: 17px;
  display: block;
}

.quick__contact-wrap .quick__cont .cont__list .para02 span:first-child {
  width: 65px;
}

.quick__contact-wrap .quick__cont .cont__list .para02:last-child {
  margin-bottom: 0;
}

.quick__contact-wrap .quick__cont.hiding {
  display: none;
}

.header {
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header .header__top {
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1760px;
  margin: auto;
  padding: 55px 0;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

/* 2023-03-23 신규 사명 수정 s */
.header .header__logo {
  /* 2023-01-02 logo 변경으로 인한 자리 넓힘 - pub */
  width: 290px; 
  height: 36px;
  background-image: url(/image/common/logo01.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* 2023-01-02 logo 변경으로 인한 자리 넓힘 - pub */
  display: block;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  font-size: 0;
}
/* // 2023-03-23 신규 사명 수정 e */

.header .header__menu {
  margin-left: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .header__menu>a {
  color: #fff;
  display: block;
  font-size: 21px;
  line-height: 1em;
  width: 180px;
  text-align: center;
  position: relative;
}

.header .header__menu>a:last-child {
  margin-right: 0;
}

.header .header__menu>a::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #0154a6;
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.header .header__menu>a.active::before {
  width: 100%;
}

.header .header__right {
  margin-left: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.header .header__right>a {
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  display: block;
  margin-right: 10px;
}

.header .header__solar p {
  position: absolute;
  top: -9999999px;
  left: -9999999px;
  visibility: hidden;
  width: 0;
  height: 0;
  font-size: 0;
}

.header .header__lang {
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  border-radius: 25px;
  font-family: 'Noto Sans KR';
  cursor: pointer;
}

.header .header__lang>button {
  font-size: 13px;
  color: #fff;
  font-weight: 300;
  line-height: 23px;
  height: 25px;
  padding-left: 10px;
  padding-right: 22px;
  background-image: url(/image/common/select_arrow01.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.header .header__lang .lang__list {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  display: none;
  padding: 8px 5px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.header .header__lang .lang__list>a {
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}

.header .header__lang .lang__list>a:hover {
  font-weight: 500;
}

.header .header__lang .lang__list>a:last-child {
  margin-bottom: 0;
}

.header .header__search {
  width: 25px;
  height: 25px;
  background-image: url(/image/common/search_icon01.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 20px;
  cursor: pointer;
}

.header .header__solar {
  width: 160px;
  height: 37px;
  background-image: url(/image/common/soladesign_logo01.png);
  background-repeat: no-repeat;
  display: block;
  margin-left: 50px;
  padding-left: 25px;
  position: relative;
}

.header .header__solar::before {
  content: "";
  width: 1px;
  height: 37px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: -25px;
  top: 0;
}

.header .header__gsnb {
  display: none;
  opacity: 0;
  background-color: #fff;
}

.header .header__gsnb .gnsb__inner {
  padding-top: 45px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #ddd;
}

.header .header__gsnb .gnsb__inner>li {
  width: 180px;
}

.header .header__gsnb .gnsb__inner>li>a {
  display: block;
  text-align: center;
  line-height: 1em;
  margin-bottom: 25px;
  color: #777777;
  font-size: 17px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .7s;
  transition-duration: .7s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.header .header__gsnb .gnsb__inner>li>a:last-child {
  margin-bottom: 0;
}

.header .header__gsnb .gnsb__inner>li>a:hover {
  color: #0154a6;
}

.header .header__gsnb .gnsb__inner>li>a.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header.style02 .header__top {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.header.style02 .header__inner {
  padding: 40px 0;
}

.header.style02 .header__logo {
  background-image: url(/image/common/logo02.png);
}

.header.style02 .header__menu>a {
  color: #222;
}

.header.style02 .header__right>a {
  color: #777;
}


.header.style02 .header__lang {
  border: 1px solid #ddd;
}

.header.style02 .header__lang>button {
  color: #666666;
  background-image: url(/image/common/select_arrow02.png);
}

.header.style02 .header__search {
  background-image: url(/image/common/search_icon02.png);
}

.header.style02 .header__solar {
  background-image: url(/image/common/soladesign_logo02.png);
}

.header.style02 .header__solar::before {
  background-color: #ddd;
}

.header.style02 .header__solar>p {
  font-size: 0;
  visibility: hidden;
}

.header__dim {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  opacity: 0;
  cursor: pointer;
}

.search__dim {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  opacity: 0;
  cursor: pointer;
}

.search__wrap {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 140px 0;
  z-index: 1001;
  display: none;
  opacity: 0;
}

.search__wrap .search__inner {
  width: 1120px;
  margin: auto;
  position: relative;
}

.search__wrap .search__inner .search__para01 {
  font-size: 48px;
  line-height: 1.4em;
  font-weight: 600;
}

.search__wrap .search__inner .search__input {
  margin-top: 75px;
  border-bottom: 1px solid #ddd;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.search__wrap .search__inner .search__input input {
  border: none;
  width: 1040px;
  font-size: 25px;
}

.search__wrap .search__inner .search__input input::-webkit-input-placeholder {
  color: #666;
}

.search__wrap .search__inner .search__input input:-ms-input-placeholder {
  color: #666;
}

.search__wrap .search__inner .search__input input::-ms-input-placeholder {
  color: #666;
}

.search__wrap .search__inner .search__input input::placeholder {
  color: #666;
}

.search__wrap .search__inner .search__input button {
  width: 45px;
}

.search__wrap .search__inner .search__input button img {
  margin: auto;
}

.search__wrap .search__inner .search__input label {
  font-size: 0;
  width: 0;
  height: 0;
}

.search__wrap .search__inner .search__keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search__wrap .search__inner .search__keyword>a {
  height: 40px;
  background-color: #fff;
  line-height: 40px;
  padding: 0 20px;
  font-size: 14px;
  color: #888;
  background-color: #f3f3f3;
  margin-right: 5px;
  display: block;
}

.search__wrap .search__inner .search__keyword>a:last-child {
  margin-right: 0;
}

.search__wrap .search__inner .search__close {
  position: absolute;
  top: -85px;
  right: -160px;
  cursor: pointer;
}





.header.style02 .hamburger__btn span {
  background: #000;
}

.hamburger__btn {
  width: 25px;
  cursor: pointer;
  display: none;
}

.hamburger__btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.hamburger__btn span+span {
  margin-top: 6px;
}

.hamburger__btn.active span:nth-child(1) {
  -webkit-animation: ease .7s top forwards;
  animation: ease .7s top forwards;
}

.hamburger__btn.not-active span:nth-child(1) {
  -webkit-animation: ease .7s top-2 forwards;
  animation: ease .7s top-2 forwards;
}

.hamburger__btn.active span:nth-child(2) {
  -webkit-animation: ease .7s scaled forwards;
  animation: ease .7s scaled forwards;
}

.hamburger__btn.not-active span:nth-child(2) {
  -webkit-animation: ease .7s scaled-2 forwards;
  animation: ease .7s scaled-2 forwards;
}

.hamburger__btn.active span:nth-child(3) {
  -webkit-animation: ease .7s bottom forwards;
  animation: ease .7s bottom forwards;
}

.hamburger__btn.not-active span:nth-child(3) {
  -webkit-animation: ease .7s bottom-2 forwards;
  animation: ease .7s bottom-2 forwards;
}

@-webkit-keyframes top {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    top: 8px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@keyframes top {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    top: 8px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@-webkit-keyframes top-2 {
  0% {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  50% {
    top: 8px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    top: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes top-2 {
  0% {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  50% {
    top: 8px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    top: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes bottom {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    bottom: 8px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    bottom: 8px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    bottom: 8px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    bottom: 8px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}

@-webkit-keyframes bottom-2 {
  0% {
    bottom: 8px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  50% {
    bottom: 8px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    bottom: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 8px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  50% {
    bottom: 8px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    bottom: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes scaled {
  50% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes scaled {
  50% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-webkit-keyframes scaled-2 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaled-2 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.side__dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1009;
  display: none;
  opacity: 0;
  cursor: pointer;
}

.side__menu {
  width: 500px;
  position: fixed;
  top: 0;
  right: -500px;
  height: 100vh;
  overflow-y: hidden;
  background-color: #fff;
  z-index: 1010;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  visibility: hidden;
}

.side__menu.active {
  right: 0;
  visibility: visible;
}

.side__menu .side__top {
  padding: 37px 20px;
  background-color: #0154a6;
}

.side__menu .side__top>.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.side__menu .side__top .top__lang {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 12px 5px 12px;
  display: inline-block;
}

.side__menu .side__top .top__lang>a {
  color: #fff;
  font-size: 18px;
}

.side__menu .side__top .top__lang>a:not(:last-child) {
  margin-right: 7px;
  padding-right: 12px;
  position: relative;
}

.side__menu .side__top .top__lang>a:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  right: 0;
}

.side__menu .menu__wrap {
  padding: 20px;
  height: calc(100vh - 106px);
  overflow-y: scroll;
}

.side__menu .menu__wrap::-webkit-scrollbar {
  width: 0px;
  background: none;
}

.side__menu .menu__wrap::-webkit-scrollbar-thumb {
  background: none;
}

.side__menu .menu__wrap::-webkit-scrollbar-track {
  background: none;
}

.side__menu .menu__wrap:last-child {
  border-bottom: none;
}


.side__menu .menu__wrap .menu__list .menu__depth1 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  padding-bottom: 25px;
  padding-top: 25px;
  border-bottom: 1px solid #ddd;
  position: relative;
  cursor: pointer;
}

.side__menu .menu__wrap .menu__list .menu__depth1::before {
  content: "";
  width: 17px;
  height: 9px;
  background-image: url(/image/common/side_arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 32px;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.side__menu .menu__wrap .menu__list .menu__depth1.active {
  color: #0154a6;
}

.side__menu .menu__wrap .menu__list .menu__depth1.active::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.side__menu .menu__wrap .menu__list .menu__depth2 {
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
}

.side__menu .menu__wrap .menu__list .menu__depth2>a {
  display: block;
  color: #888;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.side__menu .menu__wrap .menu__list .menu__depth2>a:last-child {
  margin-bottom: 0;
}






.footer {
  background-color: #717171;
  padding-bottom: 150px;
}

.footer .footer__inner {
  padding-top: 80px;
  max-width: 1760px;
  margin: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* 2023-03-23 신규 사명 수정 s */
.footer .footer__logo {
  margin-right: 110px; 
}
/* // 2023-03-23 신규 사명 수정 e */

.footer .footer__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.footer .footer__info .info__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 2023-06-19 수정 s */
.footer .footer__info .info__link>a {
  position: relative;
  padding-right: 15px;
  margin-right: 14px;
  color: #e4e4e4;
}

/* .footer .footer__info .info__link>a.private {
  color: #fff;
  position: relative;
  padding-right: 15px;
  margin-right: 14px;
} */

.footer .footer__info .info__link>a::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #4f4f4f;
  position: absolute;
  top: 1px;
  right: 0;
}

.footer .footer__info .info__link>a:last-child::before {
  display: none;
}
/* // 2023-06-19 수정 e */

.footer .footer__info .info__addr {
  color: #e4e4e4;
  margin-top: 25px;
  line-height: 1.6em;
}

.footer .footer__info .info__addr .hasBorder {
  position: relative;
  padding-right: 15px;
  margin-right: 14px;
}

.footer .footer__info .info__addr .hasBorder::before {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #4f4f4f;
  position: absolute;
  top: 3px;
  right: 0;
}

.footer .footer__info .info__copy {
  color: #efefef;
  margin-top: 30px;
}

.footer .footer__info .info__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.footer .footer__info .info__sns>a {
  display: block;
  margin-right: 18px;
}

.footer .footer__family {
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer .footer__family select {

  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-left: 0;
  padding-bottom: 12px;
  font-size: 14px;
  width: 175px;
  background: url(../image/common/select_arrow03.png) no-repeat 100% 3px;
  /* 화살표 모양의 이미지 */
  -webkit-appearance: none;
  /* 네이티브 외형 감추기 */
  -moz-appearance: none;
  appearance: none;
}

.footer .footer__family button {
  font-size: 14px;
  color: #fff;
  ;
  display: block;
  width: 100%;
  margin-top: 15px;
  border: 1px solid #fff;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 3px;
}

.footer .footer__family select::-ms-expand {
  display: none;
}

.footer .footer__family select option {
  background-color: #232323;
}

.footer .footer__family label {
  font-size: 0;
  width: 0;
  height: 0;
}

.footer .footer__family .wa-mark{
  width: 104px;
  margin-bottom: 30px;
  display: block;
}

.footer .footer__family .wa-mark img{
  width: 100%;
}

.footer .footer__top-btn {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

/* 공통 */
.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}


@media all and (max-width: 1800px) {
  .header .header__inner {
    padding: 55px 20px;
  }

  .header.style02 .header__inner {
    padding: 40px 20px;
  }

  .footer .footer__inner {
    max-width: auto;
    margin-left: 3.90625%;
    margin-right: 3.90625%;
  }
}

@media all and (max-width: 1400px) {

  .header .header__gsnb .gnsb__inner>li,
  .header .header__menu>a {
    width: 130px;
  }
}

@media all and (max-width: 1300px) {
  .footer .footer__logo{
    margin-right: 70px;
  }
}

@media all and (max-width: 1199px) {
  .inner {
    width: auto;
    margin-left: 3.90625%;
    margin-right: 3.90625%;
  }

  .search__wrap .search__inner {
    width: auto;
    margin: 0 3.90625%;
  }

  .footer .footer__inner {
    flex-direction: column;
  }

  .footer .footer__logo {
    margin-right: 0;
  }

  .footer .footer__info {
    flex: auto;
    width: 100%;
    margin-top: 75px;
  }

  .header.style02 .header__inner,
  .header .header__inner {
    padding: 30px 20px;
  }

  .header .header__right .right__contact,
  .header .header__lang,
  .header .header__menu {
    display: none;
  }


  .header .header__solar {
    order: 1;
    margin-left: 0;
    margin-right: 25px !important;
    width: 171px;
    display: block;
    height: 46px;
    background-image: url(/image/common/solar_icon01.png);
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    padding-left: 0;
  }

  .header .header__solar::before {
    display: none;
  }

  .header.style02 .header__solar {
    background-image: url(/image/common/solar_icon02.png);
  }

  .header .header__search {
    order: 2;
    margin-left: 0;
    margin-right: 25px !important;
  }

  .hamburger__btn {
    order: 3;
    display: block;
  }

  .search__wrap .search__inner .search__close {
    right: 0;
  }
}

@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }

  .hide-1024 {
    display: none !important;
  }

  .footer .footer__family {
    position: initial;
    margin-top: 40px;
    width: 175px;
  }
}

/* 2023-04-10 추가 s */
@media all and (max-width: 950px) {
  .show-950 {
    display: block !important;
  }

  .hide-950 {
    display: none !important;
  }
}
/* // 2023-04-10 추가 e */

@media all and (max-width: 768px) {
  .show-768 {
    display: block !important;
  }

  .hide-768 {
    display: none !important;
  }


  .search__wrap {
    padding: 80px 0
  }

  .search__wrap .search__inner .search__close {
    top: -50px;
    width: 25px;
    height: 25px;
  }

  .search__wrap .search__inner .search__close img {
    width: 100%;
  }

  .search__wrap .search__inner .search__para01 {
    font-size: 32px;
  }

  .search__wrap .search__inner .search__input {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .search__wrap .search__inner .search__input input {
    font-size: 20px;
    width: calc(100% - 45px);
  }
}

@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }

  .hide-640 {
    display: none !important;
  }

  .header .header__logo {
    width: 120px;
    height: 27.4px;
    /* 2023-01-02 logo 변경으로 인한 자리 넓힘 - pub s */
    background-size:contain;
    background-position:left center;
    /* 2023-01-02 logo 변경으로 인한 자리 넓힘 - pub e */
  }

  .header .header__solar {
    width: 119px;
    height: 32px;
    margin-right: 15px !important;
  }

  .header .header__search {
    width: 17px;
    height: 17px;
    margin-right: 15px !important;
  }

  .header.style02 .header__inner,
  .header .header__inner {
    padding: 15px 3.90625%;
  }

  .search__wrap .search__inner .search__para01 {
    font-size: 24px;
  }

  .search__wrap {
    padding: 60px 0 40px;
  }

  .search__wrap .search__inner .search__close {
    top: -38px;
    width: 20px;
    height: 20px;
  }

  .search__wrap .search__inner .search__keyword>a {
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
  }

  .search__wrap .search__inner .search__input {
    padding-bottom: 5px;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .search__wrap .search__inner .search__input input {
    font-size: 16px;
  }

  .search__wrap .search__inner .search__input button {
    width: 20px;
  }

  .search__wrap .search__inner .search__input button img {
    width: 100%;
  }

  .side__menu {
    width: 300px;
  }

  .side__menu .side__top {
    padding: 15px 0;
  }


  .side__menu .side__top .top__lang {
    padding: 5px 10px;
  }

  .side__menu .side__top .top__lang>a {
    font-size: 14px;
  }

  .side__menu .side__top .top__lang>a:not(:last-child) {
    margin-right: 3px;
    padding-right: 9px;
  }

  .side__menu .side__top .top__lang>a:not(:last-child)::before {
    top: 1px;
    height: 11px;
  }

  .side__menu .menu__wrap .menu__list .menu__depth1 {
    padding-bottom: 15px;
    padding-top: 20px;
    font-size: 20px;
  }

  .side__menu .menu__wrap .menu__list .menu__depth1::before {
    top: 25px;
  }

  .side__menu .menu__wrap .menu__list .menu__depth2>a {
    margin-bottom: 16px;
  }

  .quick {
    bottom: 3%;
    right: 3%;
    width: 70px;
    height: 70px;
  }

  /* 2023-06-21 문의 아이콘 수정 s */
  .quick .quick__menu {
    left: -175px;
    top: -9px;
  }
  /* // 2023-06-21 문의 아이콘 수정 e */

  .quick .quick-tooltip {
    top: -50px;
    width: 215px;
    font-size: 14px;
    padding: 12px 15px;
  }

  .quick .quick__menu>a {
    width: 100px;
    line-height: 35px;
    height: 35px;
  }

  .footer {
    padding-bottom: 120px;
  }

  .footer .footer__inner {
    padding-top: 45px;
  }

  .footer .footer__logo {
    width: 140px;
  }

  .footer .footer__logo img {
    width: 100%;
  }

  .footer .footer__top-btn {
    width: 40px;
    height: 40px;
  }

  .footer .footer__top-btn img {
    width: 100%;
  }

  .footer .footer__info {
    margin-top: 45px;
  }

  .footer .footer__info .info__addr {
    margin-top: 15px;
    font-size: 3.3vw;
  }

  .footer .footer__info .info__addr span {
    display: block;
  }

  .footer .footer__info .info__addr br {
    display: none;
  }

  .footer .footer__info .info__addr .hasBorder {
    margin-right: 0;
    padding-right: 0;
  }

  .footer .footer__info .info__addr .hasBorder::before {
    display: none;
  }

  .footer .footer__info .info__copy {
    margin-top: 15px;
    font-size: 3.3vw;
  }

  .footer .footer__info .info__sns {
    margin-top: 25px;
  }
  

  .footer .footer__family select,
  .footer .footer__family{
    width: 100%;
  }
  .footer .footer__family .wa-mark{
    width: 90px;
  }
}

@media all and (max-width: 568px) {
  .show-568 {
    display: block !important;
  }

  .hide-568 {
    display: none !important;
  }
}

@media all and (max-width: 425px) {
  .show-425 {
    display: block !important;
  }

  .hide-425 {
    display: none !important;
  }
}

@media all and (max-width: 375px) {
  .show-375 {
    display: block !important;
  }

  .hide-375 {
    display: none !important;
  }
}

@media all and (max-width: 320px) {
  .show-320 {
    display: block !important;
  }

  .hide-320 {
    display: none !important;
  }
}

  /* 2024-08-05 개인정보처리방침 리스트 추가 s */
.dept_select {
    width: 162px;
    height: 48px;
    font-size: 17px;
    background-color: #fff;
    border: 1px solid #666;
    position: absolute;
    right: 0;
    top: 30px;
    overflow: hidden;
    cursor: pointer;
}

.dept_select a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
}

.dept_select > a.now {
    background: #fff url(../image/common/select_arrow1.png) right 9px center no-repeat;
}

.dept_select .select_inner {
    display: none;
}

.dept_select .select_inner li a:hover {
    color: #0068db;
    background-color: #f5f5f5;
}

.dept_select.open {
    height: auto;
    max-height: 324px;
    border-color: #222;
}

.dept_select.open > a.now {
    font-weight: 400;
    background-image: url(../image/common/select_arrow2.png);
}

@media screen and (max-width: 768px) {
    .policy_box {
        padding-left: 0px;
    }
    .dept_select {
        width: 150px;
        height: 42px;
        font-size: 15px;
        top: 22px;
    }
}

@media screen and (max-width: 480px) {
    .dept_select {
        width: 143px;
        height: 38px;
        top: 20px;
    }
    .dept_select a {
        padding: 6px 10px;
    }
}

/* // 2024-08-05 개인정보처리방침 리스트 추가 e */