@charset "UTF-8";
html, body {
  min-width: 320px !important;
  word-break: keep-all;
}

@media (max-width: 991.98px) {
  body {
    font-size: .875rem;
  }
}

#view {
  min-height: 550px;
  padding-bottom: 200px;
  padding-top: 60px;
}

@media (max-width: 991.98px) {
  #view {
    padding-bottom: 60px;
    padding-top: 30px;
  }
}

#header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1001;
  height: 100px;
  transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -o-transition: all 0.15s;
}

#header > .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 60px;
  margin: 0 auto;
  max-width: none;
}

#header .logo {
  line-height: 1;
  position: relative;
}

#header .logo a {
  display: inline-block;
  width: 142px;
  height: 53px;
  background: url("/K/resources/images/common/logo_eco.png") no-repeat 0 0;
  background-size: contain;
}

#header .menu {
  color: #fff;
}

#header .menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .menu > ul > li {
  margin-left: 30px;
  position: relative;
}

#header .quick {
  text-decoration: none;
}

#header .btn-lang {
  color: #fff;
  position: relative;
  text-decoration: none;
  font-size: 15px;
  vertical-align: top;
  font-weight: 500;
}

#header .btn-lang::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  height: 19px;
  background: url("/K/resources/images/common/ico_global.png") no-repeat 0 0;
  margin-top: -2px;
  margin-right: 8px;
}

#header .btn-lang i {
  margin-left: 5px;
}

#header .btn-sitemap {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

#header .btn-sitemap::after, #header .btn-sitemap::before,
#header .btn-sitemap span {
  display: block;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  content: '';
  margin: 10px 0;
  height: 4px;
  background-color: #fff;
}

#header #gnb {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: background-color 200ms ease-in-out, height 420ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: background-color 200ms ease-in-out, height 420ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

#header #gnb .row {
  width: 740px;
}

#header #gnb a {
  color: #fff;
}

#header #gnb a:hover {
  text-decoration: none;
}

#header #gnb .depth1 {
  cursor: pointer;
}

#header #gnb .depth1 > a {
  display: block;
  height: 100%;
  padding: 35px 7px;
  font-size: 20px;
  font-weight: 700;
}

#header #gnb .list {
  display: none;
  letter-spacing: -0.03em;
  position: absolute;
  left: 45px;
  top: 100px;
  text-align: left;
  padding-top: 30px;
  width: 100%;
}

#header #gnb .list > li {
  line-height: 1.8;
  margin-bottom: 3px;
}

#header #gnb .list > li > a {
  font-size: 15px;
  position: relative;
}

#header #gnb .list > li > ul {
  padding-left: 15px;
}

#header #gnb .list > li > ul > li:before {
  content: '- ';
}

#header #gnb .list > li > ul > li > a {
  font-size: 13px;
}

#header #gnb .list > li.active > a {
  font-weight: 700;
}

#header #gnb .list > li.active > a::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -4px;
  background-color: #862991;
}

#header #gnb .depth1.active > a span {
  position: relative;
}

#header #gnb .depth1.active > a span::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: #862991;
}

html:not(.open-sitemap) #header:hover {
  background: #fff;
}

html:not(.open-sitemap) #header:hover .logo a {
  background-image: url("/K/resources/images/common/logo_eco_b.png");
}

html:not(.open-sitemap) #header:hover .quick {
  color: #4b4e51;
}

html:not(.open-sitemap) #header:hover .btn-lang {
  color: #4b4e51;
}

html:not(.open-sitemap) #header:hover .btn-lang i {
  color: #4b4e51;
}

html:not(.open-sitemap) #header:hover .btn-lang::before {
  background-image: url("/K/resources/images/common/ico_global_b.png");
}

html:not(.open-sitemap) #header:hover .btn-sitemap::after, html:not(.open-sitemap) #header:hover .btn-sitemap::before,
html:not(.open-sitemap) #header:hover .btn-sitemap span {
  background-color: #4b4e51;
}

html:not(.open-sitemap) #header:hover #gnb a {
  color: #4b4e51;
}

@media (max-width: 991.98px) {
  #header {
    padding: 0 15px;
    height: 60px;
  }
  #header .container {
    padding: 0;
  }
  #header .logo a {
    height: 38px;
  }
  #header .btn-sitemap {
    width: 30px;
  }
  #header .btn-sitemap::after, #header .btn-sitemap::before,
  #header .btn-sitemap span {
    margin: 7px 0;
    height: 3px;
  }
  #header #gnb {
    display: none;
  }
}

html.open-gnb-sub #header .logo a,
html.header-over #header .logo a {
  background-image: url("/K/resources/images/common/logo_b.png");
}

html.open-gnb-sub #header .quick,
html.header-over #header .quick {
  color: #4b4e51;
}

html.open-gnb-sub #header .btn-lang,
html.header-over #header .btn-lang {
  color: #4b4e51;
}

html.open-gnb-sub #header .btn-lang i,
html.header-over #header .btn-lang i {
  color: #4b4e51;
}

html.open-gnb-sub #header .btn-lang::before,
html.header-over #header .btn-lang::before {
  background-image: url("/K/resources/images/common/ico_global_b.png");
}

html.open-gnb-sub #header .btn-sitemap::after, html.open-gnb-sub #header .btn-sitemap::before,
html.open-gnb-sub #header .btn-sitemap span,
html.header-over #header .btn-sitemap::after,
html.header-over #header .btn-sitemap::before,
html.header-over #header .btn-sitemap span {
  background-color: #4b4e51;
}

html.open-gnb-sub #header #gnb a,
html.header-over #header #gnb a {
  color: #4b4e51;
}

html.open-gnb-sub #header::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 1;
}

html.open-gnb-sub #header #gnb {
  height: 500px;
  background: #fff;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}

html.open-gnb-sub #header #gnb .list {
  display: block;
}

html.header-fixed #header {
  background-color: white;
  height: calc(100px - 20px);
  border-bottom: 1px solid #ddd;
}

html.header-fixed #header > .container {
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
}

html.header-fixed #header .logo a {
  height: 56px;
  background-image: url("/K/resources/images/common/logo_b.png");
}

html.header-fixed #header .quick {
  color: #4b4e51;
}

html.header-fixed #header .btn-lang {
  color: #4b4e51;
}

html.header-fixed #header .btn-lang i {
  color: #4b4e51;
}

html.header-fixed #header .btn-lang::before {
  background-image: url("/K/resources/images/common/ico_global_b.png");
}

html.header-fixed #header .btn-sitemap::after, html.header-fixed #header .btn-sitemap::before,
html.header-fixed #header .btn-sitemap span {
  background-color: #4b4e51;
}

html.header-fixed #header #gnb {
  display: none;
}

html.hide-gnb #header {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: -webkit-transform 220ms ease-in-out;
  transition: -webkit-transform 220ms ease-in-out;
  transition: transform 220ms ease-in-out;
  transition: transform 220ms ease-in-out, -webkit-transform 220ms ease-in-out;
}

@media (max-width: 991.98px) {
  html.header-fixed #header {
    height: calc(60px - 10px);
  }
  html.header-fixed #header .container {
    padding: 0;
  }
  html.header-fixed #header .logo a {
    height: calc(60px - 25px);
  }
  html.hide-gnb #header {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}

.sitemap-wrap {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-transition: left 380ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: left 380ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.sitemap-wrap .sitemap-container {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.sitemap-wrap .sitemap {
  padding: 0 15%;
  height: 100%;
}

.sitemap-wrap .sitemap .container {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.sitemap-wrap .sitemap .row {
  margin-left: -25px;
  margin-right: -25px;
}

.sitemap-wrap .sitemap .row [class^=col-] {
  padding-left: 25px;
  padding-right: 25px;
}

.sitemap-wrap .sitemap .depth1 > a {
  display: block;
  color: #fff;
  font-size: 38px;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 30px;
}

.sitemap-wrap .sitemap .depth1 > a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-color: #fff;
  -webkit-transition: width 280ms ease-in-out;
  transition: width 280ms ease-in-out;
}

.sitemap-wrap .sitemap a {
  color: #fff;
  line-height: 1.7;
  text-decoration: none;
}

.sitemap-wrap .sitemap .list > li {
  margin-bottom: 10px;
  font-size: 24px;
}

.sitemap-wrap .sitemap .list > li > ul > li {
  font-size: 17px;
  margin: 4px 0 4px 10px;
}

.sitemap-wrap .sitemap .list > li > ul > li > a::before {
  content: '- ';
}

.sitemap-wrap .sitemap .depth1.active > a::before {
  width: 100%;
}

html.open-sitemap {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

html.open-sitemap #header .btn-sitemap::before {
  transform: translateY(14px) rotate(135deg);
  -webkit-transform: translateY(14px) rotate(135deg);
  -moz-transform: translateY(14px) rotate(135deg);
  -ms-transform: translateY(14px) rotate(135deg);
  -o-transform: translateY(14px) rotate(135deg);
}

html.open-sitemap #header .btn-sitemap::after {
  transform: translateY(-14px) rotate(-135deg);
  -moz-transform: translateY(-14px) rotate(-135deg);
  -webkit-transform: translateY(-14px) rotate(-135deg);
  -ms-transform: translateY(-14px) rotate(-135deg);
  -o-transform: translateY(-14px) rotate(-135deg);
}

html.open-sitemap #header .btn-sitemap span {
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
}

html.open-sitemap #header #gnb {
  display: none;
}

html.open-sitemap .sitemap-wrap {
  left: 0;
  -webkit-transition: left 480ms 120ms cubic-bezier(0.45, 0, 0.25, 1);
  transition: left 480ms 120ms cubic-bezier(0.45, 0, 0.25, 1);
}

.sitemap-wrap .sitemap {
  padding: 0 4%;
}

@media (max-width: 991.98px) {
  .sitemap-wrap {
    padding-top: 60px;
  }
  .sitemap-wrap .sitemap-container {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .sitemap-wrap .sitemap .row {
    height: 100%;
  }
  .sitemap-wrap .sitemap .depth1 > a {
    font-size: 18px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
  .sitemap-wrap .sitemap .depth1 > a::before {
    width: 100%;
    border-bottom-width: 2px;
  }
  .sitemap-wrap .sitemap .list > li,
  .sitemap-wrap .sitemap .list > li > ul > li {
    font-size: 13px;
  }
  html.open-sitemap #header .btn-sitemap::before {
    transform: translateY(10px) rotate(135deg);
    -webkit-transform: translateY(10px) rotate(135deg);
    -moz-transform: translateY(10px) rotate(135deg);
    -ms-transform: translateY(10px) rotate(135deg);
    -o-transform: translateY(10px) rotate(135deg);
  }
  html.open-sitemap #header .btn-sitemap::after {
    transform: translateY(-10px) rotate(-135deg);
    -moz-transform: translateY(-10px) rotate(-135deg);
    -webkit-transform: translateY(-10px) rotate(-135deg);
    -ms-transform: translateY(-10px) rotate(-135deg);
    -o-transform: translateY(-10px) rotate(-135deg);
  }
}

#nav {
  border-bottom: 1px solid #ddd;
}

#nav .container {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#nav .container div {
  height: 100%;
}

#nav .container > div {
  min-width: 250px;
  position: relative;
  height: 100%;
}

#nav .container > div::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

#nav .container > div li.active {
  display: none;
}

#nav .container > div .ing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  text-decoration: none;
  padding: 0 20px;
  font-size: 19px;
}

#nav .container > div .ing::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid black;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -2.5px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

#nav .container > div .ing.active {
  background-color: #f5f5f5;
}

#nav .container > div .ing.active + ul {
  display: block;
}

#nav .container > div .ing.active:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#nav .container > div:last-of-type > a {
  color: #862991;
  font-weight: 700;
}

#nav .container > div.home {
  min-width: inherit;
  border-left: 1px solid #ddd;
  margin-left: 0;
}

#nav .container > div.home .ing::before {
  display: none;
}

#nav .container > div.dep2, #nav .container > div.dep3 {
  display: none;
}

#nav .container ul {
  display: block;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 2;
  width: 100%;
  padding: 10px 0;
  line-height: 34px;
  letter-spacing: -0.03em;
  display: none;
}

#nav .container ul li {
  padding-left: 0;
  padding-right: 0;
  width: auto;
  max-width: none;
}

#nav .container ul a {
  font-size: 17px;
  text-decoration: none;
  color: #666;
  display: block;
  padding: 10px 20px;
  line-height: 1;
  text-align: left;
}

#nav .container ul a:hover {
  background-color: #f4f4f4;
  color: #862991;
}

#nav.system .dep1 a, #nav.util .dep1 a {
  pointer-events: none;
}

#nav.system .dep1 a::before, #nav.util .dep1 a::before {
  display: none;
}

@media (max-width: 991.98px) {
  #nav .container {
    height: 50px;
    padding: 0;
  }
  #nav .container > div {
    min-width: 50%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #nav .container > div .ing {
    padding: 0 15px;
    font-size: 14px;
  }
  #nav .container > div .ing.active + ul {
    -webkit-box-shadow: 2px 2px 300px rgba(0, 0, 0, 0.6);
            box-shadow: 2px 2px 300px rgba(0, 0, 0, 0.6);
  }
  #nav .container > div.home, #nav .container > div.dep1 {
    display: none;
  }
  #nav .container ul {
    top: 50px;
  }
  #nav .container ul a {
    font-size: 14px;
    padding: 10px 15px;
  }
  #nav.util {
    display: none;
  }
}

#footer {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  font-size: 14px;
}

#footer .container {
  position: relative;
}

#footer .menu {
  margin-bottom: 25px;
  padding-top: 12px;
}

#footer .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .menu li {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  margin-right: 15px;
  padding-right: 15px;
}

#footer .menu li strong {
  color: #862991;
}

#footer .menu li::before {
  content: '';
  display: block;
  width: 1px;
  height: 12px;
  background-color: #ddd;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
}

#footer .menu li:last-child {
  margin-right: 0;
  padding-right: 0;
}

#footer .menu li:last-child::before {
  display: none;
}

#footer .social-wrap {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#footer .social-wrap .social {
  margin-right: 30px;
}

#footer .social-wrap .social i {
  font-size: 46px;
  color: #5064a8;
}

#footer .social-wrap .familysite .btn-outline-dark {
  background: #fff !important;
  color: #4b4e51 !important;
  position: relative;
  z-index: 2;
}

#footer .social-wrap .familysite .dropdown-toggle {
  font-size: 14px;
  min-width: 230px;
  padding: 0.72rem 1.25rem;
  text-align: left;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

#footer .social-wrap .familysite .dropdown-toggle:after {
  margin-top: .6em;
  float: right;
}

#footer .social-wrap .familysite .dropdown-menu {
  width: 230px;
  font-size: 14px;
  padding: 15px 15px 55px;
  border-radius: 25px;
  border: 1px solid #4b4e51;
  margin-bottom: -40px;
  z-index: 1;
}

#footer .social-wrap .familysite .dropdown-menu a {
  padding: 0.5rem 0.5rem;
}

#footer .social-wrap .familysite .dropdown-menu .box {
  height: 300px;
  overflow-x: hidden;
}

#footer .info > div {
  margin: 6px 0 0;
}

#footer .copyright {
  margin: 15px 0 0;
}

.btn-top {
  position: fixed;
  right: -80px;
  bottom: 10px;
  z-index: 999;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.btn-top a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #ed0283;
  font-size: 16px;
  color: #fff;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.btn-top.active {
  right: 10px;
}

@media (max-width: 991.98px) {
  #footer {
    padding: 20px 0;
    font-size: 12px;
    letter-spacing: -0.035em;
  }
  #footer .menu {
    margin-bottom: 15px;
    padding-top: 0;
  }
  #footer .menu li {
    font-size: 13px;
    white-space: nowrap;
    margin-right: 8px;
    padding-right: 8px;
    line-height: 1.8;
  }
  #footer .social-wrap {
    position: static;
    margin-bottom: 20px;
  }
  #footer .social-wrap .social {
    margin-right: 15px;
  }
  #footer .social-wrap .social i {
    font-size: 36px;
  }
  #footer .social-wrap .familysite .dropdown-toggle {
    padding-top: .4rem;
    padding-bottom: .4rem;
  }
  #footer .social-wrap .familysite .dropdown-menu {
    font-size: 13px;
    padding: 15px 15px 43px;
    margin-bottom: -33px;
    z-index: 1;
  }
  #footer .social-wrap .familysite .dropdown-menu a {
    padding: 0.4rem 0.4rem;
  }
  #footer .social-wrap .familysite .dropdown-menu .box {
    height: 180px;
  }
  .btn-top {
    bottom: 15px;
  }
  .btn-top a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .btn-top.active {
    right: 15px;
  }
}

.line {
  width: 100%;
  height: 1px;
  background: #ddd;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.mt-content-padding {
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .mt-content-padding {
    margin-top: 30px;
  }
}

#visual {
  height: 400px;
  text-align: center;
  padding-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}

#visual::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: black;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

#visual h2 {
  color: #fff;
  font-size: 72px;
  line-height: 1;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 350ms ease-in-out, -webkit-transform 350ms ease-in-out;
  transition: opacity 350ms ease-in-out, -webkit-transform 350ms ease-in-out;
  transition: opacity 350ms ease-in-out, transform 350ms ease-in-out;
  transition: opacity 350ms ease-in-out, transform 350ms ease-in-out, -webkit-transform 350ms ease-in-out;
}

#visual p {
  color: #fff;
  font-size: 24px;
  line-height: 2.67;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: opacity 380ms 200ms ease-in-out, -webkit-transform 380ms 200ms ease-in-out;
  transition: opacity 380ms 200ms ease-in-out, -webkit-transform 380ms 200ms ease-in-out;
  transition: opacity 380ms 200ms ease-in-out, transform 380ms 200ms ease-in-out;
  transition: opacity 380ms 200ms ease-in-out, transform 380ms 200ms ease-in-out, -webkit-transform 380ms 200ms ease-in-out;
  -webkit-transition: opacity 380ms 200ms ease-in-out, transform 380ms 200ms ease-in-out;
  -moz-transition: opacity 380ms 200ms ease-in-out, transform 380ms 200ms ease-in-out;
  -ms-transition: opacity 380ms 200ms ease-in-out, transform 380ms 200ms ease-in-out;
  -o-transition: opacity 380ms 200ms ease-in-out, transform 380ms 200ms ease-in-out;
}

#visual.company {
  background-image: url("/K/resources/images/content/bg_visual_company.jpg");
}

#visual.product {
  background-image: url("/K/resources/images/content/bg_visual_product.jpg");
}

#visual.esg {
  background-image: url("/K/resources/images/content/bg_visual_esg.jpg");
}

#visual.invest {
  background-image: url("/K/resources/images/content/bg_visual_invest.jpg");
}

#visual.promotion {
  background-image: url("/K/resources/images/content/bg_visual_promotion.jpg");
}

#visual.util {
  background-image: url("/K/resources/images/content/bg_visual_util.jpg");
}

#visual.system {
  background-image: url("/K/resources/images/content/bg_visual_util.jpg");
}

#visual.active h2, #visual.active p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
      text-align: center;
}

@media (max-width: 1259.98px) {
  #visual h2 {
    font-size: 56px;
  }
}

@media (max-width: 991.98px) {
  #visual {
    height: 210px;
    padding-top: 60px;
  }
  #visual h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  #visual p {
    font-size: 16px;
    line-height: 1.6;
  }
}

.title-wrap {
  text-align: center;
  position: relative;
}

.title-wrap::after {
  content: '';
  display: block;
  width: 1px;
  height: 38px;
  background-color: #4b4e51;
  margin: 20px auto;
}

.title-wrap .title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #fff;
  padding: .98rem 2rem 1rem;
  vertical-align: top;
  position: relative;
  margin: 0 auto;
}

.title-wrap .title::before, .title-wrap .title::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.title-wrap .title.active::before, .title-wrap .title.active::after {
  -webkit-transform: scale(1);
}

.title-wrap .title.active::before {
  border-bottom: 2px solid #4b4e51;
  border-left: 2px solid #4b4e51;
  -webkit-transform-origin: 0 100%;
}

.title-wrap .title.active::after {
  border-top: 2px solid #4b4e51;
  border-right: 2px solid #4b4e51;
  -webkit-transform-origin: 100% 0%;
}

.title-wrap .desc {
  font-size: 24px;
  font-weight: 500;
  margin-top: 18px;
}

.title-wrap .desc strong {
  color: #862991;
  font-weight: 500;
}

.subtitle {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

.subtitle::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: #4b4e51;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: 0;
}

.subtitle span {
  color: #862991;
}

.subtitle.left {
  text-align: left;
}

.subtitle.left::before {
  left: 0;
  margin-left: 0;
}

.subtitle.lg {
  font-size: 32px;
}

@media (max-width: 991.98px) {
  .title-wrap::after {
    height: 25px;
    margin: 10px auto;
  }
  .title-wrap .title {
    padding: .58rem 1.5rem .6rem;
    font-size: 17px;
  }
  .title-wrap .desc {
    font-size: 15px;
  }
  .subtitle {
    font-size: 16px;
  }
  .subtitle::before {
    width: 30px;
    margin-left: -15px;
  }
  .subtitle.lg {
    font-size: 17px;
  }
}

.summary {
  padding: 60px 0;
}

.summary ul li .num span {
  display: block;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background: #862991;
  margin: 0 auto;
  text-align: center;
  line-height: 60px;
  position: relative;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.summary ul li .num::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: #4b4e51;
  margin: 20px auto;
}

.summary ul li .heading {
  font-size: 22px;
  font-weight: 700;
  display: block;
}

.summary ul li .text {
  margin-top: 20px;
}

.summary ul li .text em {
  color: #862991;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .summary {
    padding: calc(30px / 2) 0;
  }
  .summary ul li {
    margin: calc(30px / 2) 0;
  }
  .summary ul li .num span {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
  }
  .summary ul li .num::after {
    height: 20px;
    margin: 15px auto;
  }
  .summary ul li .heading {
    font-size: 18px;
  }
  .summary ul li .text {
    line-height: 1.5;
    margin-top: 12px;
  }
}

.tab {
  border-bottom: 1px solid #ddd;
  margin-bottom: 60px;
}

.tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.tab a {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  height: 100%;
}

.tab a:hover {
  text-decoration: none;
  color: inherit;
}

.tab a.active {
  font-weight: 500;
  position: relative;
}

.tab a.active::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4b4e51;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media (max-width: 991.98px) {
  .tab {
    margin-bottom: 30px;
  }
  .tab a {
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: -0.05em;
  }
  .tab a.active::before {
    height: 2px;
  }
}

.jumbotron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  color: #fff;
  font-size: 28px;
  text-align: center;
  height: 372px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 60px;
}

.jumbotron::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
}

.jumbotron p {
  position: relative;
}

.jumbotron p::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 20px;
}

.jumbotron p::after {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 20px;
}

.jumbotron strong {
  font-weight: 500;
  position: relative;
}

.banner {
  margin-top: 130px;
}

@media (max-width: 991.98px) {
  .jumbotron {
    font-size: 16px;
    height: 160px;
    margin-bottom: 30px;
  }
  .jumbotron p {
    padding: 0 15px;
  }
  .jumbotron p::before {
    margin-right: 10px;
  }
  .jumbotron p::after {
    margin-left: 10px;
  }
  .banner {
    margin-top: 50px;
  }
}

button {
  background: rgba(0, 0, 0, 0);
  padding: 0;
  margin: 0;
  border: 0;
}

.icon-new {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #ed0283;
  color: #fff;
  line-height: 16px;
  border-radius: 100px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  font-family: tahoma;
}

.btns {
  text-align: center;
  margin-top: 60px;
}

.btn.btn-lg.min-width {
  min-width: 140px;
}

.btn.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  .btns {
    text-align: center;
    margin-top: 30px;
  }
  .btn.btn-lg.min-width {
    min-width: 100px;
    font-size: 1.025rem;
  }
  .btn.btn-xl {
    padding: 0.7rem 1.25rem;
    font-size: 1.075rem;
    font-weight: 500;
  }
  .form-control-lg {
    height: calc(1.5em + 1rem);
    padding: 0.7rem 0.75rem;
    font-size: 1.075rem;
    font-weight: 500;
  }
}

.input-box {
  position: relative;
}

.input-box input[type=text] {
  border: 0;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ddd;
}

.input-box input[type=text]:focus {
  border-color: #ed0283;
}

.input-box button {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #888;
}

@media (max-width: 991.98px) {
  .input-box input[type=text] {
    padding: 0.5rem .75rem;
  }
  .input-box button {
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #888;
  }
}

.table-title {
  font-weight: 700;
  margin: 30px 0 10px;
  line-height: 1.3;
}

.board-view .board-row {
  border-bottom: 1px solid #ddd;
  padding: 1.25em;
  font-size: 18px;
}

.board-view .board-row .label {
  display: inline-block;
  margin-right: 20px;
}

.board-view .board-row.subject {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  border-top: 1px solid #4b4e51;
  background: #f9f9f9;
}

.board-btns {
  text-align: right;
  margin-top: 30px;
}

.board-list + .board-btns {
  margin-top: -40px;
}

.board-search .search {
  text-align: right;
}

.board-search .search .input-box input {
  width: 250px;
  display: inline-block;
}

.board-search + .board-list {
  margin-top: 30px;
}

@media (max-width: 991.98px) {
  .board-view .board-row {
    padding: 0.75em;
    font-size: 13px;
  }
  .board-view .board-row .label {
    margin-right: 15px;
  }
  .board-view .board-row.subject {
    font-size: 16px;
  }
  .board-btns {
    margin-top: 15px;
  }
  .board-list + .board-btns {
    margin-top: 15px;
  }
  .board-search .search .input-box input {
    width: 100%;
  }
  .board-search + .board-list {
    margin-top: 15px;
  }
}

.pager {
  text-align: center;
  margin-top: 60px;
}

.pager .prev,
.pager .next {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 20px;
}

.pager .prev i,
.pager .next i {
  display: inline-block;
  vertical-align: top;
  line-height: 39px;
}

.pager .num {
  display: inline-block;
  vertical-align: middle;
}

.pager .num a {
  padding: 5px;
  margin: 0 10px;
}

.pager .num a.active {
  color: #862991;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .pager {
    margin-top: 15px;
  }
  .pager .prev,
  .pager .next {
    width: 34px;
    height: 34px;
    margin: 0 10px;
  }
  .pager .prev i,
  .pager .next i {
    font-size: 13px;
    line-height: 34px;
  }
  .pager .num a {
    padding: 5px;
    margin: 0 5px;
  }
}

.filebox label {
  margin-bottom: 0;
}

.filebox input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.filebox .upload-name {
  display: inline-block;
  width: calc(100% - 80px);
  padding: 0.345rem 0 0.345rem 0.5rem;
  font-size: 1rem;
  vertical-align: middle;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 991.98px) {
  .filebox .upload-name {
    font-size: .875rem;
  }
}

.text-14px {
  font-size: 14px;
}

.text-1-1em {
  font-size: 1.1em;
}

.text-1-2em {
  font-size: 1.2em;
}

.text-1-3em {
  font-size: 1.3em;
}

#main {
  width: 100%;
  overflow: hidden;
}

#main section {
  position: relative;
  z-index: 1;
}

#main .background {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100vh;
  width: 100%;
  -webkit-transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
  transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
}

#main .background.sec-service {
  background-image: url(/K/resources/images/main/bg1.jpg);
}

#main .background.sec-news {
  background-image: url(/K/resources/images/main/bg2.jpg);
}

#main .background.sec-product {
  background-image: url(/K/resources/images/main/bg3.jpg);
}

#main .background.sec-company {
  background-image: url(/K/resources/images/main/bg4.jpg);
}

#main .object div {
  position: absolute;
  z-index: 2;
  -webkit-transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
  transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#main .object .o1 {
  right: 260px;
  top: -200px;
  width: 329px;
  height: 581px;
  background-image: url("/K/resources/images/main/object1.png");
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#main .object .o2 {
  left: 195px;
  top: -193px;
  width: 219px;
  height: 387px;
  background-image: url("/K/resources/images/main/object2.png");
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}

#main .object .o3 {
  right: 195px;
  top: -193px;
  width: 219px;
  height: 387px;
  background-image: url("/K/resources/images/main/object3.png");
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

#main .object .o4 {
  left: 86px;
  top: -220px;
  width: 219px;
  height: 387px;
  background-image: url("/K/resources/images/main/object4.png");
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

#main .object .o5 {
  right: 0;
  top: -140px;
  width: 701px;
  height: 1237px;
  background-image: url("/K/resources/images/main/object5.png");
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

@media (max-width: 991.98px) {
  #main .object .o1 {
    width: 140px;
    height: 250px;
    top: -80px;
  }
  #main .object .o2 {
    width: 160px;
    left: auto;
    right: -20px;
  }
  #main .object .o4 {
    width: 140px;
    height: 250px;
    left: auto;
    right: 0;
    top: -125px;
  }
}

#main .showup .o1,
#main .showup .o2,
#main .showup .o3,
#main .showup .o4,
#main .showup .o5 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#main .wrapper {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  text-transform: uppercase;
  /* -webkit-transform: translateY(40vh);
                transform: translateY(40vh); */
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
  transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
}

.main-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  background: url("/K/resources/images/main/bul_point.png") no-repeat 50% 100%;
  padding-bottom: 42px;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 4;
}

.main-subtitle {
  line-height: 1.42;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 4;
}

/** ir탭 **/
.container .ir_tab {width: 100%; margin-bottom: 50px;}
.container .ir_tab ul{overflow: hidden;}
.container .ir_tab ul li{float: left; width: 15.83%; background-color: #adb5bd; text-align: center; color: #fff; padding: 12px 8px; margin-right: 1%; border-radius: 24px; cursor: pointer;}
.container .ir_tab ul li.on {background-color: #9736a3;}
.container .ir_tab ul li.on:hover {background-color: #741e7f;}
.container .ir_tab ul li:hover {background-color: #919090;}
.container .ir_tab ul li:last-child {margin-right: 0;}
.container .ir_tab ul li a {color: #fff; text-decoration: none;}

/** ir_2dph탭 **/
.container .subdth_tab {width: 305px; margin-bottom: 20px;}
.container .subdth_tab ul.subdth {overflow: hidden;}
.container .subdth_tab ul.subdth li{float: left; width: 150px; margin-right:5px; background-color: #adb5bd; text-align: center; color: #fff; padding: 12px 8px;}
.container .subdth_tab ul.subdth li:last-child{margin-right:0px;}
.container .subdth_tab ul.subdth li.on {background-color: #575757;}
.container .subdth_tab ul.subdth li{}
.container .subdth_tab ul.subdth li a{color: #fff; text-decoration: none;}


/** ir_form **/
.form {width:100%; margin: 0 auto; border-top: solid 2px #333333; padding-bottom:40px;}
.form table {width:100%; table-layout: fixed;}
.form table tr th {width:20%; text-align:left; color: #444444; font-weight: 500; font-size:15px; padding:14px; border-right: solid 1px #e0e0e0; border-bottom: solid 1px #e0e0e0;}
.form table tr td {width:80%; text-align:left; color: #444444; font-weight: 500; font-size:15px; padding:14px; border-bottom: solid 1px #e0e0e0;}
.form table tr td select {width:160px; padding: 6px 5px; font-size: 14px; vertical-align: middle; border-radius: 5px; border:1px solid #d9d9d9;}
.form table tr td input {width:320px; padding: 5px; vertical-align: middle; border-radius: 5px; border:1px solid #d9d9d9;}
.form table tr td input.email {width:420px; padding: 5px; vertical-align: middle; border-radius: 5px; border:1px solid #d9d9d9;}
.form table tr td input.subject {width:100%; padding: 5px; vertical-align: middle; border-radius: 5px; border:1px solid #d9d9d9;}
.form table tr td textarea {width:100%; height:150px; border-radius: 5px; border:1px solid #d9d9d9;}
.job_agree p{font-size:20px; color:#444; font-weight: 500; padding:10px 0px;}
.job_agree .agree {width:100%; background-color: #f8f8f8; padding:20px;}
.job_agree .agree textarea {width:100%; height:200px; font-size:14px; color:#666; padding:20px;}
.agreeChk {text-align:center; padding:28px 0px; font-size:15px; color:#444;}
.agreeChk strong{font-weight: 500;}
.formbtnBox {width:100%; margin: 0 auto; text-align:center;}
.formbtnBox .inquiry_btn {display: inline-block; width:160px; text-align: center; color:#fff; font-size:14px; background-color: #442270; vertical-align: middle; border-radius: 5px; padding:8px; border: 0px;}
.formbtnBox .cencls_btn{display: inline-block; width:160px; text-align: center; color:#fff; font-size:14px; background-color: #333; vertical-align: middle; border-radius: 5px; padding:8px;}

.autoWrite {width:100%;}
.autoWrite #ff {width:120px; height:40px; border:1px solid #ddd; text-align: center; line-height: 40px; display: inline-block; vertical-align: middle; font-size:20px; font-weight:600; margin-bottom:8px;background-color:#dce7f0; margin-right:5px; border-radius:3px;}
.autoWrite input {width:120px!important; display: inline-block; vertical-align: middle; margin-bottom:8px;border:1px solid #ddd !important; }
.autoWrite p {display: inline-block; padding-left: 14px;  font-size:16px; color:#444; word-break: keep-all;}

/** ir_qna **/
.container .qnatit {text-align: center; font-size:20px; color:#000; font-weight: 500; padding-bottom:20px;}
.container .qnabox {width:100%; margin: 0 auto; text-align:center; background-color: #eb0081;  border-radius: 30px; padding: 12px 8px; margin-bottom: 20px;}
.container .qnabox ul.qnaUl {width: 988px; overflow: hidden; margin: 0 auto;}
.container .qnabox ul.qnaUl li{float: left; text-align:left; color:#fff; font-size:18px;}
.container .qnabox ul.qnaUl li:nth-child(1){width: 337px; padding-left: 30px; background: url("/K/resources/images/content/qnaicon.png") left top 4px no-repeat;}
.container .qnabox ul.qnaUl li:nth-child(2){width: 407px; padding-left: 43px; background: url("/K/resources/images/content/qnaicon2.png") left top 6px no-repeat;}
.container .qnabox ul.qnaUl li:nth-child(3){padding-left: 37px; background: url("/K/resources/images/content/qnaicon3.png") left top 2px no-repeat;}

/** ir_box **/
.container .irinfo_box {width:100%; margin:0 auto; padding-bottom:20px;}
.container .irinfo_box ul {overflow: hidden;}
.container .irinfo_box ul li{float: left; width:32%; height:396px; border: solid 1px #d9d9d9; background-color: #fcfcfc; text-align:left; padding:30px; margin-right: 2%; border-radius: 5px;}
.container .irinfo_box ul li:last-child{margin-right:0px;}
.container .irinfo_box ul li p {font-size: 20px; font-weight: 500; color: #000;}
.container .irinfo_box ul li p span {float: right; width:28px; height:28px; padding:0px; margin-top: 4px; text-align:center; background-color: #939393; font-size: 16px; font-weight: 500; color:#fff; border-radius: 100%;}
.container .irinfo_box ul li ul.sinfo_ul {overflow: hidden; padding: 4px 0px 32px 0px;}
.container .irinfo_box ul li ul.sinfo_ul li {float: none; width: 100%; height: auto; text-align:left; padding:0px; font-size: 15px; font-weight: 400; color:#3b3b3b; border: 0px; margin-right: 0px;}
.container .irinfo_box ul li .qna_btn {width: 100%; height: auto; text-align: center; background-color: #dedede; padding: 14px 12px; border-radius: 5px;}
.container .irinfo_box ul li .qna_btn a {font-size: 18px; font-weight: 500; color: #3b3b3b;}

.container .irinfo_box ul li .dataBox {position: relative; width: 100%; height: 33px;}
.container .irinfo_box ul li .dataBox .more {position: absolute; right:9px; top:35px; font-size: 14px; font-weight: 500; z-index: 1;}
.container .irinfo_box ul li .dataBox font {position: absolute; right:9px; top:55px; font-size: 14px; font-weight: 500; z-index: 1;}
.container .irinfo_box ul li .dataBox font.em {position: absolute; left:5px; top:30px; font-size: 14px; font-weight: 500; z-index: 1;}
.container .irinfo_box ul li .dataBox p {float: left; font-size: 20px; font-weight: 500; color: #000;}
.container .irinfo_box ul li .dataBox {float: right;}
.container .irinfo_box ul li .dataBox ul.graphTab {overflow: hidden;}
.container .irinfo_box ul li .dataBox ul.graphTab li{float: left; height: auto; text-align: right; padding: 9px 0px;  border: 0px; font-size:14px; color:#333; margin-right:0; border-radius:0;}
.container .irinfo_box ul li .dataBox ul.graphTab li a {font-size:14px; color:#333; text-decoration: none;}
.container .irinfo_box ul li .dataBox ul.graphTab li.list_on a{color:#f76161;}

.container .irinfo_box ul li #irData {width: 100%; height: 100%; padding-top: 46px;}
.container .irinfo_box ul li #irData .graphbox {position: relative; width: 100%; height: 100%; overflow: hidden;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist{width: 100%; height: 100%; overflow: hidden;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li{position: relative; float: left; width: 25%;  height: 100%; text-align: center; padding:0px; margin-right: 0px; border-radius: 0px; border: 0px;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li .graphsbox{position: absolute; left:0px; bottom:30px; width: 84%; height: auto;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li .graphsbox div{text-align: center; background-color: #dedede; text-indent: -1000px;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li .graphsbox p {font-size:13px; color:#333; text-align: center;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li .graph_year{position: absolute; left:0px; bottom:0px; text-align: center; width: 84%; font-size:14px; color:#333;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li:nth-child(4) .graphsbox div{text-align: center; background-color: #f76161; text-indent: -1000px;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li:nth-child(4) .graphsbox p {font-size:13px; color:#f76161; text-align: center;}


.container .sboard_ul ul {overflow: hidden; padding: 4px 0px 32px 0px;}
.container .sboard_ul ul li {float: left; width: 70%;height: auto; text-align:left; padding:0px; font-size: 15px; font-weight: 400; color:#3b3b3b; border: 0px; margin-right: 0px;}
.container .sboard_ul ul li:nth-child(2n+0) {width: 30%; text-align:center;}

.container .irinfo_box ul li .finance_btn {width: 100%; height: auto;  text-align: center; background-color: #dedede; padding: 14px 12px; border-radius: 5px;}
.container .irinfo_box ul li .finance_btn a {font-size: 18px; font-weight: 500; color: #3b3b3b;}

@media (max-width: 991.98px) {
  #main {
    width: 100%;
    overflow: hidden;
  }
  #main .background {
    height: auto;
    background-attachment: scroll;
  }
  #main .wrapper {
    padding: 100px 0;
    height: auto;
  }
  .main-title {
    font-size: 16px;
    padding-bottom: 25px;
    background-size: 20px auto;
    margin-bottom: 30px;
  }
  .main-subtitle {
    font-size: 20px;
    padding-left: 15px;
    padding-right: 15px;
    letter-spacing: -0.02em;
  }
  .main-subtitle br {
    display: none;
  }

  /*** 모바일_ir요약정보 ***/
  /** ir_box **/
.container .irinfo_box {width:100%; margin:0 auto; padding-bottom:20px;}
.container .irinfo_box ul {overflow: hidden;}
.container .irinfo_box ul li{float: none; width:100%; height:480px; border: solid 1px #d9d9d9; background-color: #fcfcfc; text-align:left; padding:30px; margin-right: 0%; margin-bottom: 4%; border-radius: 5px;}
.container .irinfo_box ul li:last-child{margin-right:0px;}
.container .irinfo_box ul li p {font-size: 20px; font-weight: 500; color: #000;}
.container .irinfo_box ul li p span {float: right; width:28px; height:28px; padding:0px; margin-top: 4px; text-align:center; background-color: #939393; font-size: 16px; font-weight: 500; color:#fff; border-radius: 100%;}
.container .irinfo_box ul li ul.sinfo_ul {overflow: hidden; padding: 4px 0px 32px 0px;}
.container .irinfo_box ul li ul.sinfo_ul li {float: none; width: 100%; height: auto; text-align:left; padding:0px; font-size: 15px; font-weight: 400; color:#3b3b3b; border: 0px; margin-right: 0px;}
.container .irinfo_box ul li .qna_btn {width: 100%; height: auto; text-align: center; background-color: #dedede; padding: 14px 12px; border-radius: 5px;}
.container .irinfo_box ul li .qna_btn a {font-size: 18px; font-weight: 500; color: #3b3b3b;}

.container .irinfo_box ul li .dataBox {position: relative; width: 100%; height: 33px;}
.container .irinfo_box ul li .dataBox .more {position: absolute; right:9px; top:35px; font-size: 14px; font-weight: 500; z-index: 1;}
.container .irinfo_box ul li .dataBox p {float: left; font-size: 20px; font-weight: 500; color: #000;}
.container .irinfo_box ul li .dataBox {float: right;}
.container .irinfo_box ul li .dataBox ul.graphTab {overflow: hidden;}
.container .irinfo_box ul li .dataBox ul.graphTab li{float: left; width: 32%; height: auto; text-align: right; padding: 9px 0px;  border: 0px; font-size:14px; color:#333; margin-right:0; border-radius:0;}
.container .irinfo_box ul li .dataBox ul.graphTab li a {font-size:14px; color:#333; text-decoration: none;}
.container .irinfo_box ul li .dataBox ul.graphTab li.list_on a{color:#f76161;}

.container .irinfo_box ul li #irData {width: 100%; height: 100%; padding-top: 46px;}
.container .irinfo_box ul li #irData .graphbox {position: relative; width: 100%; height: 100%; overflow: hidden;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist{width: 100%; height: 100%; overflow: hidden;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li{position: relative; float: left; width: 25%;  height: 100%; text-align: center; padding:0px; margin-right: 0px; border-radius: 0px; border: 0px;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li .graphsbox{position: absolute; left:0px; bottom:30px; width: 84%; height: auto;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li .graphsbox div{text-align: center; background-color: #dedede; text-indent: -1000px;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li .graphsbox p {font-size:13px; color:#333; text-align: center;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li .graph_year{position: absolute; left:0px; bottom:0px; text-align: center; width: 84%; font-size:14px; color:#333;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li:nth-child(4) .graphsbox div{text-align: center; background-color: #f76161; text-indent: -1000px;}
.container .irinfo_box ul li #irData .graphbox ul.graphlist li:nth-child(4) .graphsbox p {font-size:13px; color:#f76161; text-align: center;}

.container .sboard_ul ul {overflow: hidden; padding: 4px 0px 32px 0px;}
.container .sboard_ul ul li {float: left; width: 70%;height: auto; text-align:left; padding:0px; font-size: 15px; font-weight: 400; color:#3b3b3b; border: 0px; margin-right: 0px;}
.container .sboard_ul ul li:nth-child(2n+0) {width: 30%; text-align:center;}

.container .irinfo_box ul li .finance_btn {width: 100%; height: auto;  text-align: center; background-color: #dedede; padding: 14px 12px; border-radius: 5px;}
.container .irinfo_box ul li .finance_btn a {font-size: 18px; font-weight: 500; color: #3b3b3b;}

/** ir_qna **/
.container .qnatit {text-align: center; font-size:20px; color:#000; font-weight: 500; padding-bottom:20px;}
.container .qnabox {width:100%; margin: 0 auto; text-align:center; background-color: #eb0081;  border-radius: 5px; padding: 20px 20px; margin-bottom: 20px;}
.container .qnabox ul.qnaUl {width: 100%; overflow: hidden; margin: 0 auto;}
.container .qnabox ul.qnaUl li{float: none; text-align:left; color:#fff; font-size:18px;}
.container .qnabox ul.qnaUl li:nth-child(1){width: 100%; font-size: 14px; padding-left: 26px; margin-bottom:6px; background: url("/K/resources/images/content/qnaicon.png") left top 2px no-repeat;  background-size: 19px;}
.container .qnabox ul.qnaUl li:nth-child(2){width: 100%; font-size: 14px; padding-left: 27px; margin-bottom:6px; background: url("/K/resources/images/content/qnaicon2.png") left -8px top 4px no-repeat; background-size: 27px;}
.container .qnabox ul.qnaUl li:nth-child(3){font-size: 14px; padding-left: 28px; background: url("/K/resources/images/content/qnaicon3.png") left top no-repeat; background-size: 19px;}


}

.main-jumbotron {
  height: 100vh;
}

.main-jumbotron .swiper-container {
  height: 100%;
}

.main-jumbotron .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.main-jumbotron .swiper-item {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  color: #fff;
}

.main-jumbotron .main-title {
  opacity: 0;
}

.main-jumbotron .main-title.active {
  opacity: 1;
}

.main-jumbotron .main-subtitle {
  line-height: 1.36;
  font-size: 60px;
  font-weight: 700;
  opacity: 0;
  margin-top: 40px;
  margin-bottom: 100px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.main-jumbotron .main-subtitle.active {
  margin-top: 40px;
  opacity: 1;
  margin-top: 0;
}

.main-jumbotron .scroll {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 4;
  color: #fff;
  font-family: sans-serif;
  font-weight: 700;
}

.main-jumbotron .scroll span {
  display: block;
  font-size: 30px;
  color: #fff;
  text-align: center;
  margin: 0 auto 0;
}

.main-jumbotron .scroll span i {
  vertical-align: middle;
}

.main-jumbotron .swiper-pagination {
  bottom: 50px;
}

.main-jumbotron .swiper-pagination-bullet {
  width: 50px;
  height: 1px;
  background: #fff;
  opacity: 1;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.main-jumbotron .swiper-pagination-bullet-active {
  height: 4px;
}

@media (max-width: 991.98px) {
  .main-jumbotron .main-subtitle {
    display: block;
    font-size: 22px;
    line-height: 1.8;
  }
}

.sec-news .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}

.sec-news .col-md-4 {
  max-width: 400px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all .25s .05s ease-in-out;
  transition: all .25s .05s ease-in-out;
}

.sec-news .col-md-4:hover {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.sec-news .news {
  margin-top: 80px;
}

.sec-news .news .stock {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  background: #862991;
  border-radius: 100em;
}

.sec-news .news .stock .box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sec-news .news .stock .box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}

.sec-news .news .stock .box a:hover, .sec-news .news .stock .box a:focus {
  color: inherit;
}

.sec-news .news .stock .box a > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 700;
}

.sec-news .news .stock .box a > strong {
  display: block;
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  margin-top: 20px;
}

.sec-news .news .stock .box a > div {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}

.sec-news .news .stock .box a > div span {
  margin: 0 3px;
}

.sec-news .news .stock .box a > div.up span:nth-child(1)::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #feb834;
  margin-left: 3px;
}

.sec-news .news .stock .box a > div.down span:nth-child(1)::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #feb834;
  margin-left: 3px;
}

.sec-news .news .board {
  background-color: #fff;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.sec-news .news .board a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  text-decoration: none;
  padding: 35px;
  text-align: left;
  -webkit-box-shadow: 4.8px 8.7px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 4.8px 8.7px 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s 0.1s;
  transition: all 0.2s 0.1s;
}

.sec-news .news .board a:hover, .sec-news .news .board a:focus {
  color: inherit;
  -webkit-box-shadow: 4.8px 8.7px 25px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 4.8px 8.7px 25px 0 rgba(0, 0, 0, 0.5);
}

.sec-news .news .board .badge {
  font-size: 14px;
  padding: 8px 15px 9px;
}

.sec-news .news .board strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
  height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sec-news .news .board p {
  line-height: 1.88;
  margin-top: 8px;
  height: 3.76em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sec-news .news .board .date {
  font-size: 15px;
  font-weight: 700;
  color: #999;
  margin-top: 15px;
}

@media (max-width: 991.98px) {
  .sec-news .main-subtitle {
    display: none;
  }
  .sec-news .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .sec-news .col-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .sec-news .news {
    margin-top: 0;
    padding: 0 20px;
  }
  .sec-news .news .stock {
    width: 200px;
    height: 200px;
    padding-bottom: 0;
    margin: 0 auto;
  }
  .sec-news .news .stock .box {
    position: static;
  }
  .sec-news .news .stock .box a > p {
    font-size: 14px;
  }
  .sec-news .news .stock .box a > strong {
    font-size: 22px;
    margin-top: 6px;
  }
  .sec-news .news .stock .box a > div {
    font-size: 14px;
    margin-top: 10px;
  }
  .sec-news .news .board {
    height: auto;
    padding-bottom: 0;
  }
  .sec-news .news .board a {
    position: static;
    padding: 20px;
  }
  .sec-news .news .board .badge {
    font-size: 11px;
  }
  .sec-news .news .board strong {
    font-size: 15px;
    height: auto;
    letter-spacing: -0.02em;
  }
  .sec-news .news .board p {
    height: auto;
    display: none;
  }
  .sec-news .news .board .date {
    font-size: 13px;
  }
}

/*** main_product ***/
.sec-product .products_new {overflow: hidden; text-align: left; width: 1200px; background-color: #fff; margin: 0 auto; margin-top: 50px; box-shadow: 5px 5px 5px -5px grey;}
.sec-product .products_new .left {float: left; width: 359px;}
.sec-product .products_new .left img.pc_pro {display:block;}
.sec-product .products_new .left img.m_pro {display:none;}
.sec-product .products_new .right {float: right; width: 841px; padding: 94px 46px 94px 0px;}
.sec-product .products_new .right p {font-size: 42px; color: #000; font-weight: 600;}
.sec-product .products_new .right span {font-size: 20px; color: #626262; font-weight: 400;}
.sec-product .products_new .right div.pro_btn {width: 120px; background-color: #862990;border-radius: 5px;text-align: center;color: #fff;margin-top: 24px; padding: 4px 0px;}
/*** main_product ***/

.sec-product .products {
  text-align: left;
  margin-top: 50px;
}

.sec-product .products img {
  width: 359px;
}

.sec-product .products .swiper-slide {
  width: 359px;
}

.sec-product .products .swiper-pagination-wrap-products {
  padding-left: 50%;
  margin-left: -170px;
}

.sec-product .products .swiper-pagination-progressbar {
  top: auto;
  position: relative;
  height: 1px;
  background-color: #fff;
  margin-top: 45px;
}

.sec-product .products .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #862a91;
  height: 9px;
  margin-top: -4px;
}

.sec-product .products .card a {
  display: block;
  text-decoration: none;
  background-color: #fff;
}

.sec-product .products .card a:hover, .sec-product .products .card a:focus {
  color: inherit;
}

.sec-product .products .card a:hover .img img,
.sec-product .products .card a:focus .img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.sec-product .products .card .img {
  display: block;
  overflow: hidden;
}

.sec-product .products .card .img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 3s cubic-bezier(0.22, 0.44, 0, 1);
  transition: all 3s cubic-bezier(0.22, 0.44, 0, 1);
}

.sec-product .products .card .info {
  display: block;
  position: relative;
}

.sec-product .products .card .info strong {
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0px;
  height: 64px;
  line-height: 64px;
  padding: 0 20px;
}

.sec-product .products .card .info strong::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #862991;
  display: inline-block;
  border-radius: 10px;
  margin-left: 10px;
}

.sec-product .products .card .info p {
  padding: 70px 50px;
  line-height: 1.88;
  height: calc(10.64em + 60px);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
  .sec-product .wrapper {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

/*** main_product ***/
.sec-product .products_new {overflow: hidden; text-align: left; width: 96%; background-color: #fff; margin: 0 auto; margin-top: 50px; box-shadow: 5px 5px 5px -5px grey;}
.sec-product .products_new .left {float: left; width: 40%;}
.sec-product .products_new .left img.pc_pro {display:block;}
.sec-product .products_new .left img.m_pro {display:none;}
.sec-product .products_new .right {float: right; width: 60%; padding: 46px 52px 46px 0px;}
.sec-product .products_new .right p {font-size: 32px; color: #000; font-weight: 600;}
.sec-product .products_new .right span {font-size: 18px; color: #626262; font-weight: 400;}
.sec-product .products_new .right div.pro_btn {width: 120px; background-color: #862990;border-radius: 5px;text-align: center;color: #fff;margin-top: 24px; padding: 4px 0px;}
/*** main_product ***/

  .sec-product .products {
    margin-top: 0;
  }
  .sec-product .products img {
    width: 200px;
  }
  .sec-product .products .swiper-slide {
    width: 200px;
  }
  .sec-product .products .swiper-pagination-wrap-products {
    margin-left: -100px;
  }
  .sec-product .products .card .info strong {
    display: block;
    font-size: 16px;
    position: static;
    height: auto;
    line-height: 1;
    text-align: center;
    padding: 20px 0;
  }
  .sec-product .products .card .info strong::after {
    display: none;
  }
  .sec-product .products .card .info p {
    display: none;
  }
}

/**** 모바일 ****/
@media screen and (max-width:640px){

/*** main_product ***/
.sec-product .products_new {overflow: hidden; text-align: left; width: 96%; background-color: #fff; margin: 0 auto; margin-top: 50px; box-shadow: 5px 5px 5px -5px grey;}
.sec-product .products_new .left {float: none; width: 100%; display: flex; align-items: center;justify-content: center;}
.sec-product .products_new .left img.pc_pro {display:none;}
.sec-product .products_new .left img.m_pro {display:block; width: 78%; text-align: center;}
.sec-product .products_new .right {float: none; width: 100%; padding: 16px 22px;}
.sec-product .products_new .right p {font-size: 26px; color: #000; font-weight: 600;}
.sec-product .products_new .right span {font-size: 15px; color: #626262; font-weight: 400;}
.sec-product .products_new .right div.pro_btn {width: 100%; background-color: #862990;border-radius: 5px;text-align: center; font-size: 16px; color: #fff;margin-top: 24px; padding: 16px 0px;}
/*** main_product ***/



}

.sec-company .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}

.sec-company .col-4 {
  max-width: 400px;
  padding-left: 5px;
  padding-right: 5px;
}

.sec-company .company {
  width: 1600px;
  margin: 0 auto;
  margin-top: 100px;
}

.sec-company .company div.icon {
  display: inline-block;
  width: 230px;
  height: 230px;
  background-color: rgba(255, 255, 255, 0.8);
  background-position: 50% 40%;
  background-repeat: no-repeat;
  border-radius: 300px;
}

.sec-company .company div.icon span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #862991;
  padding-top: 68%;
}

.sec-company .company div.icon.ico1 {
  background-image: url("/K/resources/images/main/ico1.png");
}

.sec-company .company div.icon.ico2 {
  background-image: url("/K/resources/images/main/ico2.png");
}

.sec-company .company div.icon.ico3 {
  background-image: url("/K/resources/images/main/ico3.png");
}

.sec-company .company div.icon.ico4 {
  background-image: url("/K/resources/images/main/ico4.png");
}

.sec-company .company p {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.01em;
  margin-top: 40px;
}

/*** main_company ***/
.sec-company .company ul{overflow: hidden;}
.sec-company .company ul li{float: left; width: 400px;}
/*** main_company ***/

@media (max-width: 991.98px) {
  .sec-company .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -5px;
  }
  .sec-company .col-4 {
    max-width: 110px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .sec-company .company {
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 20px;
  }
  .sec-company .company div.icon {
    width: 80px;
    height: 80px;
    background-size: auto 28px;
    background-position: 50% 35%;
  }
  .sec-company .company div.icon span {
    display: block;
    font-size: 15px;
    padding-top: 60%;
  }
  .sec-company .company div.icon.ico1 {
    background-image: url("/K/resources/images/main/ico1.png");
  }
  .sec-company .company div.icon.ico2 {
    background-image: url("/K/resources/images/main/ico2.png");
  }
  .sec-company .company div.icon.ico3 {
    background-image: url("/K/resources/images/main/ico3.png");
  }
  .sec-company .company div.icon.ico4 {
    background-image: url("/K/resources/images/main/ico4.png");
  }
  .sec-company .company p {
    font-size: 3.2vw;
    margin-top: 20px;
    line-height: 1.6;
  }

  /*** main_company ***/
 .sec-company .company ul{overflow: hidden;}
 .sec-company .company ul li{float: left; width: 50%; margin-bottom:18px;}
/*** main_company ***/

}

.quick-menu {
  position: fixed;
  top: 50%;
  right: 10px;
  margin-top: -140px;
  z-index: 2;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all .25s 1s ease-in-out;
  transition: all .25s 1s ease-in-out;
}

.quick-menu.showup {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.quick-menu li {
  width: 120px;
  height: 120px;
  background: #442279;
  color: #fff;
  text-align: center;
  -webkit-transition: all .15s;
  transition: all .15s;
  border-radius: 120px;
}

.quick-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: -0.05em;
  -webkit-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 120px;
}

.quick-menu li a:hover {
  -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.4);
          box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.4);
}

.quick-menu li:nth-child(even) {
  background: #862991;
}

@media (max-width: 991.98px) {
  .quick-menu {
    top: 80px;
    margin-top: 0;
  }
  .quick-menu li {
    width: 60px;
    height: 60px;
  }
  .quick-menu li a span {
    display: none;
  }
}

.popupMainWrap {
  display: none;
}

.popupMainWrap .backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 8888;
}

.popupWrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 8889;
  padding: 15px;
}

.popupWrap .row {
  height: 100%;
}

.popupWrap .col-12 {
  margin: 5px 0;
  display: none;
}

.popupMain {
  background: #fff;
  position: relative;
}

.popupMain .img {
  text-align: center;
}

.popupMain .img img {
  vertical-align: top;
}

.popupMain .close {
  position: absolute;
  right: 5px;
  top: 5px;
}

.popupMain .close a {
  display: block;
  font-size: 30px;
  padding: 5px;
  color: #000;
}

.popupMain .today {
  text-align: center;
  padding-bottom: 20px;
  background-color: #fff;
  margin-top: -1px;
  padding-top: 20px;
}

@media (max-width: 991.98px) {
  .popupMain .img img {
    max-height: 30vh;
  }
}

.ceo {
  text-align: center;
}

.ceo .jumbotron-ceo {
  background-image: url("/K/resources/images/content/bg_jumbo_ceo.jpg");
}

.ceo .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.ceo > .txt {
  line-height: 2;
}

.ceo .summary {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 60px 0;
}

.ceo .sign {
  font-size: 20px;
  margin-top: 60px;
}

.ceo .sign > strong {
  margin-right: 8px;
  font-weight: 700;
}

.ceo .sign > div {
  margin-top: 15px;
}

/** ESG **/
.esg {text-align: center;}
.esg p{font-size: 22px; font-weight: 500; text-align: left; color: #000; letter-spacing: -0.055em; padding-bottom:12px;}
.esg span {font-size: 17px; color:#666; font-weight: 500; text-align: left;}
.esg .jumbotron-esg {background-image: url("/K/resources/images/content/bg_jumbo_esg.jpg"); margin-bottom: 40px;}
.esg .txt {font-size: 16px; text-align: left; margin-bottom: 40px; line-height: 1.5;}
.esg .txt font{font-size: 16px; color:#528f16;}

.esg_thum {overflow: hidden; width: 100%;}
.esg_thum .simg {float:left;}
.esg_thum .simg img {}
.esg_thum .simg_ul {float:right;}
.esg_thum .simg_ul ul{overflow: hidden;}
.esg_thum .simg_ul ul li{margin-bottom:34px;}
.esg_thum .simg_ul ul li img {}

.esg_thum .simg_ul_4 {float:right; width: 578px;}
.esg_thum .simg_ul_4 ul{overflow: hidden;}
.esg_thum .simg_ul_4 ul li{float:left; width: 280px; height: 218px; text-align: center; margin-right:17px; margin-bottom:17px;}
.esg_thum .simg_ul_4 ul li:nth-child(2n+0) {margin-right:0px;}
.esg_thum .simg_ul_4 ul li img {}
.esgbox {width: 100%; text-align: left; padding: 24px; border: solid 1px #d9d9d9; background-color: #fdfdfd; margin-top: 12px; margin-bottom: 28px;}
.esg ul.succession {overflow: hidden;}
.esg ul.succession li{float: left;width: 23%; height: 230px;  background-color: #fbfbfb; padding: 18px; border-radius: 10px; border: solid 1px #d9d9d9; margin-right: 2%; }
.esg ul.succession li:last-child{margin-right: 0;}
.esg ul.succession li p {text-align: center; font-size:18px; color:#333; line-height: 1.4;}
.esg ul.succession li ul.small_tx {overflow: hidden;}
.esg ul.succession li ul.small_tx li{position: relative; float: none; width: 100%; height: auto; text-align: left; padding:4px 0px;padding-left:8px; border-radius: 0px; border: 0px; font-size: 13px; margin-right:0px;}
.esg ul.succession li ul.small_tx li:before {position: absolute; top: 4px; left: 0; font-size: 13px; content: '·';  z-index: 1;}

.esg .esgorg_em {width: 904px; margin: 0 auto; overflow: hidden; padding-bottom: 40px;}
.esg .esgorg_em .left {float: left;}
.esg .esgorg_em .left .tftbox {width: 394px; margin: 0 auto; background-color:#f8f8f8; border-radius: 5px; padding: 20px;}
.esg .esgorg_em .left .tftbox ul {overflow: hidden;}
.esg .esgorg_em .left .tftbox ul li{text-align: left; font-size: 14px; padding:4px 0px;}
.esg .esgorg_em .left p {text-align: center; font-size: 24px;}
.esg .esgorg_em .right {float: right;}
.esg .esgorg_em .right p {padding: 75px 0px; padding-top: 89px;}

.esg .tftbox2 {margin-top:20px; margin-bottom: 30px;}
.esg .tftbox2 p {text-align: center; font-size: 24px;}
.esg .tftbox2 div {width: 796px; margin: 0 auto; background-color: #f8f8f8;border-radius: 5px; padding: 20px;}
.esg .tftbox2 div ul {overflow: hidden;}
.esg .tftbox2 div ul li{float:left; width: 33%; text-align: left; font-size: 14px; padding:4px 0px;}

.esg div.download {width: 16%; margin:0 auto; padding: 8px 22px; background-color: #342749; font-size: 16px; color: #fff; border-radius: 30px;}

/** 안전보건 **/

.safeBox{width: 100%; border: solid 1px #d9d9d9; padding: 34px; line-height: 1.8; margin-bottom: 46px;}
.safeBox p {font-size: 18px; color:#528f16; font-weight: 500; text-align: left; padding-bottom:12px;}
.safeBox p.em {font-size: 16px; color:#333; line-height: 1.5;}
.safeBox div {text-align: center; padding-top: 41px; padding-bottom: 22px;}

.safeBox2{width: 100%; border: solid 1px #d9d9d9; padding: 34px; line-height: 1.8; margin-top: 16px; margin-bottom: 46px;}

.safeBox3{width: 100%; border: solid 1px #d9d9d9; padding: 34px; line-height: 1.8; margin-top: 16px; margin-bottom: 46px;}

.esg .safe_ul {padding-top:60px;}
.esg .safe_ul ul{overflow: hidden;}
.esg .safe_ul ul li{float:left; width: 383px; text-align: center; margin-right:25px; background-color:#f8f8f8;}
.esg .safe_ul ul li:last-child{margin-right:0px;}
.esg .safe_ul ul li img{}

.esg3_ul {padding-top: 30px;}
.esg3_ul ul{overflow: hidden;}
.esg3_ul ul li{text-align: left; font-weight: 400; color: #222; padding-bottom: 8px;}
.esg3_ul ul li span{margin-left: 18px; color: #888; font-size: 14px;}

.esg3_ul2 {padding-top: 30px;}
.esg3_ul2 ul{overflow: hidden; margin-bottom: 40px;}
.esg3_ul2 ul li{float:left; width: 380px; height: 180px; text-align: left; font-weight: 400; color: #222; border:solid 1px #ddd; padding: 26px; margin-left: 20px;}
.esg3_ul2 ul li span{margin-left: 18px; color: #888; font-size: 14px;}
.esg3_ul2 ul li p {font-size: 18px; font-weight: 500; text-align: left; color: #852890; padding-bottom:8px; letter-spacing: -0.055em;}


@media (max-width: 991.98px) {
  .ceo .name {
    font-size: 16px;
    margin: 30px 0 15px;
  }
  .ceo > .txt {
    line-height: 1.6;
  }
  .ceo .summary {
    margin: 30px 0;
  }
  .ceo .sign {
    font-size: 18px;
    margin-top: 40px;
  }
}

.history ol {
  position: relative;
  padding: 100px 0;
}

.history ol::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  position: absolute;
  left: 50%;
  top: 0;
}

.history li {
  padding-bottom: 60px;
  padding-left: calc(50% + 85px);
  position: relative;
}

.history li::before {
  content: '';
  display: block;
  width: 65px;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  left: 50%;
  top: 22px;
}

.history li::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: #ddd;
  position: absolute;
  left: 50%;
  top: 22px;
  margin: -4px 0 0 -4px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all .2s;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
}

.history li .year {
  font-family: "Source Serif Pro";
  color: #862991;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.history li .cont p {
  position: relative;
  padding-left: 15px;
}

.history li .cont p::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 2px;
  background-color: #777;
  vertical-align: middle;
  margin-right: 8px;
}

.history li .cont p + p {
  margin-top: 15px;
}

.history li.left {
  padding-left: 0;
  padding-right: calc(50% + 85px);
}

.history li.left::before {
  left: auto;
  right: 50%;
}

.history li.left .year {
  text-align: right;
}

.history li.left .cont {
  text-align: right;
}

.history li.focus::after {
  background-color: #862991;
  transform: scale(1.6);
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -ms-transform: scale(1.6);
  -o-transform: scale(1.6);
}


@media (max-width: 991.98px) {
  .history ol {
    position: relative;
    padding: 50px 0;
  }
  .history ol::before {
    left: 15px;
    top: 0;
  }
  .history li {
    padding-bottom: 30px;
    padding-left: 40px;
  }
  .history li::before {
    width: 17px;
    top: 14px;
    left: 15px;
  }
  .history li::after {
    top: 14px;
    left: 15px;
  }
  .history li .year {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .history li .cont p {
    padding-left: 0;
  }
  .history li .cont p + p {
    margin-top: 6px;
  }
  .history li.left {
    padding-right: 0;
    padding-left: 40px;
  }
  .history li.left::before {
    left: 15px;
    right: auto;
  }
  .history li.left .year {
    text-align: left;
  }
  .history li.left .cont {
    text-align: left;
  }

 .esg_thum {overflow: hidden; width: 100%;}
.esg_thum .simg {float:none; margin-bottom:17px;}
.esg_thum .simg img {width: 100%;}
.esg_thum .simg_ul {float:none;}
.esg_thum .simg_ul ul{overflow: hidden;}
.esg_thum .simg_ul ul li{margin-bottom:24px;}
.esg_thum .simg_ul ul li img {width: 100%;}

.esg_thum .simg_ul_4 {float:right; width: 100%;}
.esg_thum .simg_ul_4 ul{overflow: hidden;}
.esg_thum .simg_ul_4 ul li{float:left; width: 48%; height: auto; overflow: hidden; text-align: center; margin-right:4%; margin-bottom:4%;}
.esg_thum .simg_ul_4 ul li:nth-child(2n+0) {height: auto; overflow: hidden; margin-right:0px;}
.esg_thum .simg_ul_4 ul li img {width: 100%;}
}

.policy {
  text-align: center;
}

.policy .jumbotron-policy {
  background-image: url("/K/resources/images/content/bg_jumbo_policy.jpg");
}

.policy .mission {
  margin: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.policy .mission .circle {
  max-width: 380px;
  height: 380px;
  border: 6px solid #862991;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 -15px;
}

.policy .mission .circle .in {
  height: 100%;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 10px solid rgba(132, 42, 144, 0.1);
}

.policy .mission .circle p {
  font-size: 18px;
  padding: 0 40px;
}

.policy .core {
  border: 1px solid #ddd;
  padding: 60px 15px;
  margin-bottom: 60px;
}

.policy .core .diagram {
  position: relative;
  margin-top: 40px;
}

.policy .core .object {
  background: url("/K/resources/images/content/img_core.png") no-repeat 50% 50%;
  width: 426px;
  height: 389px;
  background-size: contain;
  margin: 0 auto;
}

.policy .core .value {
  position: absolute;
}

.policy .core .value span {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}

.policy .core .value.environment {
  text-align: right;
  top: 137px;
  right: 50%;
  margin-right: 240px;
}

.policy .core .value.service {
  position: static;
  margin-top: -19px;
}

.policy .core .value.technology {
  text-align: left;
  top: 78px;
  left: 50%;
  margin-left: 206px;
}

.policy .action strong {
  display: block;
  background: #862991;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  padding: 15px;
}

.policy .action strong span {
  display: block;
  font-size: 75%;
  font-weight: 500;
}

.policy .action p {
  border: 2px solid #862991;
  padding: 0 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 140px;
}

.policy .action p::before {
  content: '';
  display: block;
  width: 2px;
  height: 0;
  background-color: #fff;
  position: absolute;
  right: -2px;
  top: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.policy .action.showup p::before {
  height: 40%;
}

.policy .action.showup [class^=col-]:nth-child(2) p::before {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.policy .action.showup [class^=col-]:nth-child(3) p::before {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}

.policy .action.showup [class^=col-]:nth-child(4) p::before {
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
}

@media (max-width: 991.98px) {
  .policy .mission {
    margin: 30px 0;
  }
  .policy .mission .circle {
    border-width: 4px;
    margin: 0 -8px;
    height: auto;
    width: 190px;
  }
  .policy .mission .circle .in {
    padding: 30px 0;
    border-width: 7px;
  }
  .policy .mission .circle p {
    font-size: 13px;
    padding: 0 15px;
  }
  .policy .core {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .policy .core .diagram {
    margin-top: 20px;
  }
  .policy .core .object {
    display: none;
  }
  .policy .core .value {
    position: static;
    text-align: left !important;
    margin: 0 !important;
  }
  .policy .core .value + .value {
    margin-top: 15px !important;
  }
  .policy .action .row {
    margin-left: 5px;
    margin-right: -5px;
  }
  .policy .action [class^=col-] {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
  .policy .action strong {
    font-size: 16px;
  }
  .policy .action p {
    height: 110px;
  }
}

.rnd {
  text-align: center;
}

.rnd .jumbotron-rnd {
  background-image: url("/K/resources/images/content/bg_jumbo_rnd.jpg");
}

.rnd .txt {
  line-height: 2;
}

.rnd .summary {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: 60px;
}

.rnd .license {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding-top: 60px;
}

.rnd .license [class^=col-] {
  margin-bottom: 20px;
}

.rnd .license .item {
  padding: 20px;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.rnd .license .item .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28%;
          flex: 0 0 28%;
  max-width: 28%;
}

.rnd .license .item .img img {
  border: 1px solid #ddd;
}

.rnd .license .item .info {
  text-align: left;
  padding-left: 30px;
}

.rnd .license .item .info strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {

    /** ir탭 **/
   .container .ir_tab {width: 100%; margin-bottom: 30px;}
  .container .ir_tab ul{overflow: hidden;}
  .container .ir_tab ul li{float: left; width: 32%; background-color: #adb5bd; text-align: center; color: #fff; padding: 12px 8px; margin-right: 1%; margin-bottom: 1%; border-radius: 24px; cursor: pointer;}
  .container .ir_tab ul li.on {background-color: #9736a3;}
  .container .ir_tab ul li.on:hover {background-color: #741e7f;}
  .container .ir_tab ul li:hover {background-color: #919090;}
  .container .ir_tab ul li:nth-child(3n+0) {margin-right: 0;}
  .container .ir_tab ul li a {color: #fff; text-decoration: none;}


  .rnd .summary {
    margin-top: 30px;
  }
  .rnd .license {
    margin-top: 30px;
    padding-top: 30px;
  }
  .rnd .license [class^=col-] {
    margin-bottom: 10px;
  }
  .rnd .license .item {
    padding: 15px;
    border: 1px solid #ddd;
  }
  .rnd .license .item .img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
    max-width: 24%;
  }
  .rnd .license .item .info {
    padding-left: 15px;
  }
  .rnd .license .item .info strong {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .rnd .license .item .info p {
    line-height: 1.5;
  }
}

.energy {
  text-align: center;
}

.energy .jumbotron-energy {
  background-image: url("/K/resources/images/content/bg_jumbo_energy.jpg");
}

.energy .diagram {
  border: 1px solid #ddd;
  padding: 120px 15px;
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .energy .diagram {
    padding: 30px 15px;
    margin-top: 30px;
  }
}

.rne {
  text-align: center;
}

.rne .jumbotron-rne1 {
  background-image: url("/K/resources/images/content/bg_jumbo_rne1.jpg");
}

.rne .jumbotron-rne2 {
  background-image: url("/K/resources/images/content/bg_jumbo_rne2.jpg");
}

.rne .jumbotron-rne3 {
  background-image: url("/K/resources/images/content/bg_jumbo_rne3.jpg");
}

.rne .jumbotron-rne4 {
  background-image: url("/K/resources/images/content/bg_jumbo_rne4.jpg");
}

.rne .jumbotron-rne5 {
  background-image: url("/K/resources/images/content/bg_jumbo_rne5.jpg");
}

.rne .info {
  text-align: left;
  border-top: 1px solid #ddd;
  padding-top: 60px;
  margin-top: 60px;
}

.rne .info ul li {
  position: relative;
  line-height: 1.63;
  padding-left: 10px;
}

.rne .info ul li:before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
}

.rne .info ul li + li {
  margin-top: 30px;
}

.rne .info ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.rne .info ul li dl dt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  font-weight: 500;
}

.rne .info ul li dl dt::before {
  content: '- ';
  padding: 0 5px;
}

.rne .info ul li dl dt::after {
  content: ':';
  padding: 0 5px;
}

.rne .info ul li dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.rne .info p {
  line-height: 1.63;
}

.rne .diagram {
  background: #fafafa;
  padding: 60px 15px;
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .rne .info {
    padding-top: 30px;
    margin-top: 30px;
  }
  .rne .info [class^=col-] + [class^=col-] {
    margin-top: 30px;
  }
  .rne .info ul li + li {
    margin-top: 15px;
  }
  .rne .diagram {
    padding: 30px 15px;
    margin-top: 30px;
  }
}

.bio {
  text-align: center;
}

.bio .jumbotron-bio {
  background-image: url("/K/resources/images/content/bg_jumbo_bio.jpg");
}

.bio .jumbotron-bio p {
  width: 100%;
  padding: 0 95px;
  font-size: 44px;
  line-height: 1.45;
  font-weight: 700;
  text-align: left;
}

.bio .jumbotron-bio p span {
  display: block;
  font-weight: 400;
  font-size: 26px;
  margin-top: 15px;
}

.bio .jumbotron-bio p::before, .bio .jumbotron-bio p::after {
  display: none;
}

.bio .summary {
  border-top: 1px solid #ddd;
  margin-top: 60px;
}

.bio .info {
  border-top: 1px solid #ddd;
  padding-top: 60px;
}

.bio .info p {
  line-height: 2;
}

@media (max-width: 991.98px) {
  .bio .jumbotron-bio p {
    padding: 0 15px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    text-align: left;
  }
  .bio .jumbotron-bio p span {
    display: block;
    font-weight: 400;
    font-size: 17px;
    margin-top: 10px;
  }
  .bio .summary {
    margin-top: 30px;
  }
  .bio .info {
    padding-top: 30px;
  }
  .bio .info p {
    line-height: 1.7;
  }
}

.location .top {
  background-color: #e7e9e9;
  text-align: center;
  padding: 60px 15px;
  margin-bottom: 60px;
}

.location .card-wrap {
  border-top: 2px solid #4b4e51;
}

.location .card {
  border-bottom: 1px solid #ddd;
}

.location .card-header a {
  display: block;
  padding: 30px;
  position: relative;
}

.location .card-header a:hover {
  text-decoration: none;
  color: inherit;
}

.location .card-header a::before {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d7dfe1;
  font-size: 35px;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -18px;
  transition: all .2s .25s;
  -webkit-transition: all .2s .25s;
  -moz-transition: all .2s .25s;
  -ms-transition: all .2s .25s;
  -o-transition: all .2s .25s;
}

.location .card-header a.collapsed::before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.location .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.location .name span {
  color: #862991;
  font-weight: 500;
}

.location .name span::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 16px;
  background-color: #ddd;
  margin: 0 15px;
}

.location dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.location dl dt {
  font-weight: 500;
}

.location dl dd {
  margin-left: 12px;
}

.location dl dd + dt::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 12px;
  background-color: #999;
  margin: 0 12px;
}

.location dl + dl {
  margin-top: 10px;
}

.location .map-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 42.3%;
  position: relative;
}

.location .map-wrap .map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #aaa;
}

@media (max-width: 991.98px) {
  .location .top {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .location .card-wrap {
    border-top: 1px solid #4b4e51;
  }
  .location .card-header a {
    padding: 15px 35px 15px 10px;
  }
  .location .card-header a::before {
    font-size: 20px;
    right: 10px;
    margin-top: -10px;
  }
  .location .name {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .location .name span::before {
    height: 14px;
    margin: 0 8px;
  }
  .location dl {
    display: block;
  }
  .location dl dt {
    display: inline;
  }
  .location dl dd {
    margin-left: 4px;
    display: inline;
  }
  .location dl dd + dt::before {
    height: 12px;
    margin: 0 7px 0 4px;
  }
  .location dl + dl {
    margin-top: 10px;
  }
}

.kg-family .row + .row {
  margin-top: 85px;
}

.kg-family .logo {
  max-width: 30%;
}

.kg-family .logo .box {
  border: 1px solid #ddd;
  text-align: center;
  position: relative;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kg-family .tbl {
  max-width: 70%;
}

.kg-family .tbl .table {
  margin-bottom: 0;
  font-size: 18px;
}

.kg-family .tbl .table thead th {
  background: #f3e9f4;
  color: #862991;
}

.kg-family .tbl .table tbody th {
  font-weight: 400;
}

.kg-family .tbl .table td {
  word-break: break-all;
}

@media (max-width: 991.98px) {
  .kg-family .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .kg-family .col {
    padding-left: 5px;
    padding-right: 5px;
  }
  .kg-family .logo {
    max-width: 30%;
  }
  .kg-family .logo .box {
    padding: 15px;
  }
  .kg-family .tbl {
    max-width: 70%;
  }
  .kg-family .tbl .table {
    font-size: 14px;
  }
}

.newmaterial ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.newmaterial ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
  padding: 10px;
}

.newmaterial ul li .card {
  border: 1px solid #ddd;
  padding: 30px 26px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.newmaterial ul li .card .name {
  display: block;
  font-size: 26px;
  font-weight: 700;
}

.newmaterial ul li .card p {
  line-height: 1.63;
  margin: 10px 0;
}

.newmaterial ul li .card .btn:hover {
  border-color: #862991;
  background-color: #862991;
  color: #fff;
}

.newmaterial ul li .card:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
  .newmaterial ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
  .newmaterial ul li .card {
    padding: 15px;
  }
  .newmaterial ul li .card .name {
    font-size: 16px;
  }
}

.product-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fafafa;
  padding: 60px;
  margin-bottom: 60px;
}

.product-top .info {
  padding-right: 60px;
}

.product-top .info h3 span {
  display: block;
  font-size: 32px;
  font-weight: 400;
}

.product-top .info h3 strong {
  display: block;
  font-size: 70px;
  font-weight: 700;
}

.product-top .info p {
  font-size: 19px;
  line-height: 1.8;
  margin-top: 25px;
}

.product-top .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 53%;
          flex: 0 0 53%;
  max-width: 53%;
}

@media (max-width: 1259.98px) {
  .product-top .info h3 span {
    font-size: 30px;
  }
  .product-top .info h3 strong {
    font-size: 55px;
  }
  .product-top .info p {
    font-size: 18px;
  }
  .product-top .img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 991.98px) {
  .product-top {
    padding: 20px;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: -15px;
  }
  .product-top .info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-right: 0;
    margin-top: -55px;
  }
  .product-top .info h3 span {
    font-size: 18px;
  }
  .product-top .info h3 strong {
    font-size: 22px;
  }
  .product-top .info p {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.6;
  }
  .product-top .img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 60%;
  }
}

.product-accordion .top {
  background-color: #e7e9e9;
  text-align: center;
  padding: 60px 15px;
  margin-bottom: 60px;
}

.product-accordion .card {
  border-bottom: 1px solid #ddd;
  border-top: 2px solid #4b4e51;
}

.product-accordion .card-header a {
  display: block;
  padding: 30px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
}

.product-accordion .card-header a:hover {
  text-decoration: none;
  color: inherit;
}

.product-accordion .card-header a::before {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d7dfe1;
  font-size: 30px;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -18px;
  transition: all .2s .25s;
  -webkit-transition: all .2s .25s;
  -moz-transition: all .2s .25s;
  -ms-transition: all .2s .25s;
  -o-transition: all .2s .25s;
}

.product-accordion .card-header a.collapsed::before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.product-accordion .card-body {
  padding: 30px 0;
}

.product-accordion .card-body .unit .box {
  border: 1px solid #000;
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
}

.product-accordion .card-body .unit .box em {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .product-accordion .top {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .product-accordion .card {
    border-top: 1px solid #4b4e51;
  }
  .product-accordion .card-header a {
    padding: 15px;
    font-size: 16px;
  }
  .product-accordion .card-header a::before {
    font-size: 24px;
  }
  .product-accordion .card-body {
    padding: 15px 0;
  }
  .product-accordion .card-body .unit .row {
    margin-left: -3px;
    margin-right: -3px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .product-accordion .card-body .unit .col-4 {
    padding-left: 3px;
    padding-right: 3px;
    max-width: none;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .product-accordion .card-body .unit .box {
    margin-bottom: 1rem;
    padding-bottom: 25px;
  }
  .product-accordion .card-body .unit .box em {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.04em;
  }
}

.environtment1 {
  text-align: center;
}

.environtment1 .jumbotron-environment1 {
  background-image: url("/K/resources/images/content/bg_jumbo_environment1.jpg");
}

.environtment1 .diagram {
  border: 1px solid #ddd;
  padding: 60px;
  margin: 60px 0;
}

@media (max-width: 991.98px) {
  .environtment1 .diagram {
    padding: 30px 15px;
    margin: 30px 0;
  }
  .environtment1 .text-column .row {
    margin-top: -15px;
  }
  .environtment1 .text-column .row .col-12 {
    margin-top: 15px;
    margin-bottom: 0;
  }
}

.environtment2 {
  text-align: center;
}

.environtment2 .jumbotron-environment2 {
  background-image: url("/K/resources/images/content/bg_jumbo_environment2.jpg");
}

.environtment2 .diagram {
  border: 1px solid #ddd;
  padding: 60px;
  margin: 60px 0;
}

@media (max-width: 991.98px) {
  .environtment2 .diagram {
    padding: 30px;
    margin: 30px 0;
  }
  .environtment2 .diagram img {
    width: 130px;
  }
}

.environtment3 {
  text-align: center;
}

.environtment3 .jumbotron-environment3 {
  background-image: url("/K/resources/images/content/bg_jumbo_environment3.jpg");
}

.environtment3 .diagram {
  border: 1px solid #ddd;
  padding: 60px;
  margin: 60px 0;
}

@media (max-width: 991.98px) {
  .environtment3 .diagram {
    padding: 30px 15px;
    margin: 30px 0;
  }
}

.environtment5 {
  text-align: center;
}

.environtment5 .summary {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 60px 0;
}

.environtment5 .from {
  line-height: 2;
}

.environtment5 .from strong {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .environtment5 .summary {
    margin: 30px 0;
  }
}

.cogeneration1 {
  text-align: center;
}

.cogeneration1 .jumbotron-cogeneration1 {
  background-image: url("/K/resources/images/content/bg_jumbo_cogeneration1.jpg");
}

.cogeneration1 .diagram {
  border: 1px solid #ddd;
  padding: 60px;
}

.cogeneration1 .diagram .graph {
  display: inline-block;
}

.cogeneration1 .diagram .graph div {
  display: block;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  position: relative;
  margin-top: 10px;
}

.cogeneration1 .diagram .graph div::before {
  content: '';
  height: 1px;
  width: 100%;
  display: block;
  background: #ddd;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}

.cogeneration1 .diagram .graph div span {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  background-color: #fff;
  z-index: 2;
  padding: 0 12px;
}

.cogeneration1 .diagram .graph strong {
  display: block;
  font-weight: 700;
  color: #862991;
  font-size: 18px;
  margin-top: 15px;
}

@media (max-width: 991.98px) {
  .cogeneration1 .diagram {
    padding: 30px 15px;
  }
  .cogeneration1 .diagram .graph div span {
    padding: 0 6px;
    font-size: 13px;
  }
  .cogeneration1 .diagram .graph strong {
    font-size: 15px;
    margin-top: 10px;
  }
}

.cogeneration2 .diagram {
  position: relative;
  padding: 60px;
  border: 1px solid #ddd;
}

.cogeneration2 .diagram .object {
  background: url("/K/resources/images/content/img_cogeneration2.png") no-repeat 50% 50%;
  width: 348px;
  height: 343px;
  margin: 0 auto;
  background-size: cover;
}

.cogeneration2 .diagram li {
  position: absolute;
  padding: 0 60px 0 100px;
  left: 50%;
  top: 50px;
}

.cogeneration2 .diagram li::before {
  content: '';
  width: 85px;
  height: 1px;
  background-color: #4b4e51;
  position: absolute;
  left: 0;
  top: 43px;
}

.cogeneration2 .diagram li::after {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #4b4e51;
  border-radius: 10px;
  position: absolute;
  left: 80px;
  top: 40px;
}

.cogeneration2 .diagram li > span {
  display: none;
}

.cogeneration2 .diagram li strong {
  display: block;
}

.cogeneration2 .diagram li.li1,
.cogeneration2 .diagram li.li3 {
  text-align: right;
  padding: 0 100px 0 60px;
}

.cogeneration2 .diagram li.li1::before,
.cogeneration2 .diagram li.li3::before {
  right: 0;
  left: auto;
}

.cogeneration2 .diagram li.li1::after,
.cogeneration2 .diagram li.li3::after {
  right: 80px;
  left: auto;
}

.cogeneration2 .diagram li.li1 {
  top: 95px;
  left: auto;
  right: 50%;
  margin-right: 156px;
}

.cogeneration2 .diagram li.li2 {
  top: 95px;
  margin-left: 156px;
}

.cogeneration2 .diagram li.li3 {
  top: 243px;
  left: auto;
  right: 50%;
  margin-right: 156px;
}

.cogeneration2 .diagram li.li4 {
  top: 243px;
  margin-left: 156px;
}

@media (max-width: 1259.98px) {
  .cogeneration2 .diagram {
    position: relative;
    padding: 60px;
    border: 1px solid #ddd;
  }
  .cogeneration2 .diagram .object {
    width: 260px;
    height: 260px;
  }
  .cogeneration2 .diagram li {
    padding: 0 30px 0 100px;
  }
  .cogeneration2 .diagram li.li1,
  .cogeneration2 .diagram li.li3 {
    padding: 0 100px 0 30px;
  }
  .cogeneration2 .diagram li.li1 {
    top: 80px;
    margin-right: 118px;
  }
  .cogeneration2 .diagram li.li2 {
    top: 80px;
    margin-left: 118px;
  }
  .cogeneration2 .diagram li.li3 {
    top: 205px;
    margin-right: 118px;
  }
  .cogeneration2 .diagram li.li4 {
    top: 205px;
    margin-left: 118px;
  }
}

@media (max-width: 991.98px) {
  .cogeneration2 .diagram {
    padding: 15px;
  }
  .cogeneration2 .diagram .object {
    display: none;
  }
  .cogeneration2 .diagram li {
    position: static;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .cogeneration2 .diagram li::before, .cogeneration2 .diagram li::after {
    display: none;
  }
  .cogeneration2 .diagram li > span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #ed0283;
    margin-bottom: 5px;
    margin-top: 15px;
  }
}

.cogeneration3 {
  text-align: center;
}

.cogeneration3 .diagram {
  padding: 60px;
  border: 1px solid #ddd;
  background: #fcfcfc;
}

@media (max-width: 991.98px) {
  .cogeneration3 .diagram {
    padding: 15px;
  }
}

.cogeneration4 {
  text-align: center;
}

.cogeneration4 .diagram {
  padding: 60px;
  border: 1px solid #ddd;
}

@media (max-width: 991.98px) {
  .cogeneration4 .diagram {
    padding: 15px;
  }
}

.cogeneration5 section {
  margin-top: 60px;
}

.cogeneration5 .facilities .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cogeneration5 .facilities .table {
  margin-bottom: 35px;
}

.recruit {
  text-align: center;
}

.recruit .jumbotron-recruit {
  background-image: url("/K/resources/images/content/bg_jumbo_recruit.jpg");
}

.recruit .info {
  text-align: left;
  margin-top: 60px;
}

.recruit .info ul li {
  position: relative;
  line-height: 1.63;
  padding-left: 10px;
}

.recruit .info ul li:before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
}

.recruit .info ul li + li {
  margin-top: 10px;
}

.recruit .info ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.recruit .info ul li dl dt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  font-weight: 500;
}

.recruit .info ul li dl dt::before {
  content: '- ';
  padding: 0 5px;
}

.recruit .info ul li dl dt::after {
  content: ':';
  padding: 0 5px;
}

.recruit .info ul li dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.recruit .info p {
  line-height: 1.63;
}

.recruit .diagram {
  margin-top: 60px;
}
.ethicalBox {width: 100%; margin: 0 auto; border:solid 1px #d9d9d9;}
.ethical_thum {padding-bottom:22px;}
ul.ethical_tab {overflow: hidden;}
ul.ethical_tab li{float:left; width: 50%; text-align: center; padding:16px 0px; font-size: 22px;  color:#333;  font-weight: 500; border-right:solid 1px #d9d9d9;}
ul.ethical_tab li:last-child{border-right:0px;}
ul.ethical_tab li.list_on{font-size: 22px;  color:#fff;  font-weight: 500; background-color:#442270;}
ul.ethical_tab li a {text-decoration: none;}
ul.ethical_tab li.list_on a:hover {color:#fff;}
ul.ethical_tab li a:hover {color:#333;}
#contents01,#contents02 {width: 100%; margin: 0 auto; margin-top:40px;}
.ethical {text-align: left; font-size:16px;}
.ethical p{font-size: 22px;  color:#333;  font-weight: 500; border-bottom: solid 1px #d9d9d9;  padding: 24px 0px 14px 0px; margin-bottom: 32px;}
.ethical span {font-size:18px; font-weight: 500;}

.sinmu {width: 100%; margin: 0 auto; border-top:solid 1px #d9d9d9; padding-bottom:32px;}
.sinmu table {border-collapse: collapse;}
.sinmu table tr th {text-align: center; font-size: 16px;  padding:12px; color:#333;  font-weight: 500; background-color: #fafafa; border-bottom:solid 1px #d9d9d9;}
.sinmu table tr td {text-align: left; font-size: 16px; padding:12px;  color:#333;  border-bottom:solid 1px #d9d9d9;}

@media (max-width: 991.98px) {
  .recruit .info {
    margin-top: 30px;
  }
  .recruit .info .col-12:first-of-type {
    margin-top: 0;
  }
  .recruit .info ul li + li {
    margin-top: 5px;
  }
  .recruit .diagram {
    margin-top: 15px;
  }
}

.talent {
  text-align: center;
}

.talent .jumbotron-talent {
  background-image: url("/K/resources/images/content/bg_jumbo_person.jpg");
}

.talent .ets-talent {
  margin-top: 60px;
}

.talent .ets-talent .keyword::before {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background-color: #555;
  margin: 15px auto;
}

.talent .ets-talent strong {
  display: block;
  background: #862991;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  padding: 10px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.talent .ets-talent p {
  font-size: 18px;
  padding: 15px 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.talent .ets-talent p::before {
  content: '';
  display: block;
  width: 2px;
  height: 0;
  background-color: #fff;
  position: absolute;
  right: -2px;
  top: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.talent .ets-talent p em {
  color: #862991;
  font-weight: 500;
  margin-bottom: 10px;
}

.talent .ets-talent [class^=col-]::before {
  content: '';
  display: block;
  width: 75px;
  height: 75px;
  background-image: url("/K/resources/images/content/ico_talent1.png");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.talent .ets-talent [class^=col-]:nth-child(2)::before {
  background-image: url("/K/resources/images/content/ico_talent2.png");
}

.talent .ets-talent [class^=col-]:nth-child(3)::before {
  background-image: url("/K/resources/images/content/ico_talent3.png");
}

.talent .ets-talent [class^=col-]:nth-child(4)::before {
  background-image: url("/K/resources/images/content/ico_talent4.png");
}

@media (max-width: 991.98px) {
  .talent .ets-talent {
    margin-top: 30px;
  }
  .talent .ets-talent .keyword::before {
    height: 20px;
    margin: 10px auto;
  }
  .talent .ets-talent strong {
    font-size: 15px;
    padding: 8px;
  }
  .talent .ets-talent p {
    padding: 15px 10px;
    font-size: 14px;
  }
  .talent .ets-talent .row {
    margin-left: 5px;
    margin-right: -5px;
  }
  .talent .ets-talent [class^=col-] {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
  .talent .ets-talent [class^=col-]::before {
    width: 48px;
    height: 43px;
    background-size: contain;
  }
}

.welfare {
  text-align: center;
}

.welfare .jumbotron-welfare {
  background-image: url("/K/resources/images/content/bg_jumbo_welfare.jpg");
}

.welfare ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.welfare ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 100%;
  text-align: left;
  position: relative;
  padding: 10px;
}

.welfare ul li .card {
  background: #f6f6f6;
  padding: 20px;
  height: 100%;
}

.welfare ul li strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.64;
  display: block;
  height: 120px;
  padding-right: 160px;
  padding-top: 20px;
}

.welfare ul li p {
  margin-top: 10px;
}

.welfare ul li:before {
  content: '';
  display: block;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  right: 30px;
  top: 30px;
}

.welfare ul li.w1:before {
  background-image: url("/K/resources/images/content/icon_welfare1.png");
}

.welfare ul li.w2:before {
  background-image: url("/K/resources/images/content/icon_welfare2.png");
}

.welfare ul li.w3:before {
  background-image: url("/K/resources/images/content/icon_welfare3.png");
}

.welfare ul li.w4:before {
  background-image: url("/K/resources/images/content/icon_welfare4.png");
}

.welfare ul li.w5:before {
  background-image: url("/K/resources/images/content/icon_welfare5.png");
}

.welfare ul li.w6:before {
  background-image: url("/K/resources/images/content/icon_welfare6.png");
}

.welfare ul li.w7:before {
  background-image: url("/K/resources/images/content/icon_welfare7.png");
}

.welfare ul li.w8:before {
  background-image: url("/K/resources/images/content/icon_welfare8.png");
}

.welfare ul li.w9:before {
  background-image: url("/K/resources/images/content/icon_welfare9.png");
}

@media (max-width: 1259.98px) {
  .welfare ul li strong {
    font-size: 18px;
    padding-right: 100px;
    height: 80px;
    padding-top: 10px;
  }
  .welfare ul li:before {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 991.98px) {
  .welfare ul {
    display: block;
  }
  .welfare ul li {
    width: 100%;
  }
  .welfare ul li .card {
    padding: 15px;
  }
  .welfare ul li strong {
    font-size: 16px;
    padding-right: 60px;
    height: auto;
    padding-top: 7px;
  }
  .welfare ul li:before {
    width: 40px;
    height: 40px;
    right: 25px;
    top: 25px;
  }
}

.email .jumbotron-email {
  background-image: url("/K/resources/images/content/bg_jumbo_email.jpg");
}

.email .table tbody th {
  font-size: 16px;
}

.email .table textarea {
  height: 250px;
}

@media (max-width: 991.98px) {
  .email .table tbody th {
    font-size: 13px;
  }
  .email .table textarea {
    height: 180px;
  }
}

.qna select.form-control {
  width: auto;
  display: inline-block;
}

.qna textarea.form-control {
  height: 200px;
}

@media (max-width: 991.98px) {
  .qna textarea.form-control {
    height: 140px;
  }
}

.reagent {
  text-align: center;
}

.jumbotron-reagent {
  background-image: url("/K/resources/images/content/bg_jumbo_reagent.jpg");
}

.reagent .diagram {
  background: #fafafa;
  padding: 60px 15px;
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .reagent .diagram {
    padding: 30px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.elc {
  text-align: center;
}

.jumbotron-elc {
  background-image: url("/K/resources/images/content/bg_jumbo_elc.jpg");
}

.elc .diagram {
  padding: 60px 15px;
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .elc .diagram {
    padding: 30px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.join {
  border-top: 1px solid #ddd;
  margin: 0 auto;
  padding: 60px;
}

.join .row + .row {
  margin-top: 10px;
}

.join .links {
  text-align: center;
  margin-top: 30px;
}

.join .links a + a {
  position: relative;
  padding-left: 20px;
  margin-left: 15px;
}

.join .links a + a::after {
  content: '';
  width: 1px;
  height: 14px;
  background-color: #ddd;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}

@media (max-width: 991.98px) {
  .join {
    width: auto;
    padding: 30px 0;
  }
  .join .row .row + .row {
    margin-top: 10px;
  }
}

.login {
  width: 600px;
  border-top: 1px solid #ddd;
  margin: 0 auto;
  padding: 60px;
}

.login .row + .row {
  margin-top: 15px;
}

.login .links {
  text-align: center;
  margin-top: 30px;
}

.login .links a + a {
  position: relative;
  padding-left: 20px;
  margin-left: 15px;
}

.login .links a + a::after {
  content: '';
  width: 1px;
  height: 14px;
  background-color: #ddd;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}

@media (max-width: 991.98px) {
  .login {
    width: auto;
    padding: 30px 15px;
  }
}

.search-wrap {
  background: #f5f5f5;
  padding: 60px;
  margin-top: 60px;
}

.search-wrap h2 {
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .search-wrap {
    padding: 15px;
  }
  .search-wrap .row .col-12 {
    margin: 0;
  }
}

.article-reagent-view .board-view .board-row .table,
.article-reagent-view .board-view .board-row .table th,
.article-reagent-view .board-view .board-row .table td {
  border-color: #aaa;
}

.article-reagent-view .fas {
  font-size: 20px;
  vertical-align: middle;
}

.article-reagent-view .active .fas {
  color: #dc3545;
  margin-left: 2px;
}

.notice-box {
  border: 1px solid #ddd;
  padding: 60px;
  height: 500px;
  overflow-x: hidden;
}

.cd-multi-steps {
  margin: 0 auto 40px;
  border-radius: .25em;
  background-color: transparent;
  text-align: center;
}

.cd-multi-steps li {
  display: inline-block;
  position: relative;
  float: none;
  margin: 0.4em 40px 0.4em 0;
}

.cd-multi-steps li > * {
  display: inline-block;
  z-index: 1;
  padding: .6em 1.25em .7em;
  border-radius: .25em;
  background-color: #ddd;
}

.cd-multi-steps li::after {
  display: inline-block;
  position: absolute;
  content: '';
  margin: 0;
  height: 4px;
  background: #ddd;
  width: 100%;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-1px, -50%);
          transform: translate(-1px, -50%);
}

.cd-multi-steps li:last-of-type {
  margin-right: 0;
}

.cd-multi-steps li:last-of-type::after {
  display: none;
}

.cd-multi-steps li.visited::after {
  background-color: #4b4e51;
}

.cd-multi-steps li.current > *,
.cd-multi-steps li.visited > * {
  position: relative;
  color: #fff;
  background-color: #4b4e51;
}

.cd-multi-steps li i {
  margin-right: 4px;
}

@media (max-width: 991.98px) {
  .cd-multi-steps li {
    margin-right: 20px;
    font-size: 13px;
  }
}

.dual-list-wrap > .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dual-list-wrap .dual-list {
  background-color: #faf9fa;
  border: 1px solid #ddd;
  padding: 30px;
}

.dual-list-wrap .dual-list .box {
  background-color: #fff;
  border: 1px solid #ddd;
  height: 450px;
  overflow-y: scroll;
}

.dual-list-wrap .dual-list .box .table thead th {
  border-top: 0;
  border-bottom-width: 1px;
  text-align: center;
}

.dual-list-wrap .dual-list .box .table th,
.dual-list-wrap .dual-list .box .table td {
  padding: 0.5rem;
  vertical-align: middle;
}

.dual-list-wrap .dual-list .box .form-control {
  font-size: 15px;
}

.dual-list-wrap .move {
  text-align: center;
  font-size: 36px;
  color: #aaa;
}

@media (max-width: 991.98px) {
  .dual-list-wrap .dual-list {
    padding: 15px;
  }
  .dual-list-wrap .dual-list .box {
    height: 300px;
  }
  .dual-list-wrap .move {
    font-size: 30px;
  }
  .article-reagent-write1 .form-control,
  .article-reagent-write2 .form-control,
  .article-reagent-write3 .form-control {
    font-size: 0.75rem;
    min-width: 55px;
  }
  .article-reagent-write1 select.form-control,
  .article-reagent-write2 select.form-control,
  .article-reagent-write3 select.form-control {
    min-width: 75px;
  }
}

.request-info {
  font-size: 120%;
}

.request-info strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 140%;
}

.html-error,
.html-error body {
  height: 100%;
}

.error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 100%;
}

.error strong {
  font-size: 120px;
  color: #ed0283;
}

.error em {
  font-style: normal;
  font-size: 22px;
  margin-top: 20px;
}

.error p {
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 100px;
}

.error .btn {
  width: 180px;
}

@media (max-width: 767.98px) {
  .error strong {
    font-size: 80px;
  }
  .error em {
    ffont-size: 20px;
    margin-top: 20px;
  }
  .error p {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .error .btn {
    width: 140px;
  }
}