@charset "utf-8";

/*================= reset =================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
}
a {
  display: block;
  color: #000;
  text-decoration: none;
}
a:focus {
  outline: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  outline: none;
}
strong {
  font-weight: 500;
}
img {
  outline: none;
  border: none;
}
img:focus {
  outline: none;
}
input,
textarea,
button,
select,
a,
img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*================= common =================*/
body {
  font-family: 'SUIT', 'Poppins', helvetica, 'Apple SD Gothic Neo', 'NanumBarunGothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  overflow-x: hidden;
}
.en * {
  font-family: 'Poppins', helvetica, 'Apple SD Gothic Neo', 'NanumBarunGothic', sans-serif;
}
.enType {
  font-family: 'Poppins', sans-serif;
}
#wrap {
  width: 100%;
}

header {
  width: 100%;
}

#container {
  position: relative;
  margin-top: 131px;
  width: 100%;
}
#container.ir.overview {
  margin-top: 76px;
}
#container.pr.news {
  margin-top: 76px;
}

footer {
  width: 100%;
}

.flex {
  display: flex;
  align-items: center;
}
.gray {
  color: rgba(0, 0, 0, 0.3);
}
.ellipsis {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 145px;
  height: 38px;
  padding: 0 30px;
  background: #f8f8f9 url(../images/icon/icon_arr_select.svg) no-repeat 95% center;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
select option {
  font-size: 1rem;
  font-weight: 500;
}
select::-ms-expand {
  display: none;
}
button {
  font-family: 'SUIT', 'Poppins', helvetica, 'Apple SD Gothic Neo', 'NanumBarunGothic', sans-serif;
}

/* component:badge */
.badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background: #fff;
  font-size: 0.875rem;
  border: solid 1px #d3d3d9;
  border-radius: 17px;
}

/*slick dot*/
.slick-slide {
  outline: none;
}
.slick-dots {
  display: flex;
  justify-content: center;
  width: calc(100% + 20px);
  margin-top: 26px;
}
.slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: rgba(211, 211, 217, 0.7);
  border-radius: 50%;
}
.slick-dots li.slick-active {
  background: #35353d;
}
.slick-dots li button {
  text-indent: -9999px;
  overflow: hidden;
  border: none;
}
.slick-dots {
  display: flex;
  justify-content: center;
  width: calc(100% + 20px);
  margin-top: 26px;
}
.slick-dots li {
  width: 8px;
  height: 8px;
  /* margin:0 4px; */
  background: rgba(211, 211, 217, 0.7);
  border-radius: 50%;
}
.slick-dots li.slick-active {
  background: #35353d;
}
.slick-dots li button {
  text-indent: -9999px;
  overflow: hidden;
  border: none;
}

/* search */
.board .search-wrap {
  position: relative;
  /* top:15px; */
  padding: 9px 16px;
  border-color: transparent;
}
.board .search-wrap.active {
  border: solid 1px #d3d3d9;
}
.board .search-wrap .txt-search {
  display: none;
  width: 310px;
  height: 38px;
  border: none;
}
.board .search-wrap.active .txt-search {
  display: inline-block;
}
.board .search-wrap .btn-search {
  width: 38px;
  height: 38px;
  background: url(../images/icon/icon_search.svg) no-repeat;
  border: none;
  cursor: pointer;
}
.board .search-wrap .btn-search-submit {
  width: 38px;
  height: 38px;
  background: url(../images/icon/icon_search.svg) no-repeat;
  border: none;
  cursor: pointer;
}
.board .search-wrap .btn-txt {
  display: none;
  margin-left: 12px;
  font-size: 1.125rem;
  font-weight: 500;
  background: none;
  border: none;
}
.board .search-wrap.active .btn-txt {
  display: inline-block;
}

/* popup */
.popup-area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
}
.alert-area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
}
.popup-area .bg_shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.4);
}
.alert-area .bg_shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.4);
}
.popup-area .cont-area,
.alert-area .cont-area {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.popup-area .cont-area .btn-close,
.alert-area .cont-area .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: url(../images/icon/icon_close.svg) no-repeat;
  border: none;
}

.popup-area.useMain,
.alert-area.useMain {
  display: block;
}
.popup-area.useMain .cont-area,
.alert-area.useMain .cont-area {
  min-width: 280px;
  padding: 30px;
  border-radius: 10px;
}
.popup-area.useMain .cont-area .btn-close, 
.alert-area.useMain .cont-area .btn-close {
  top: 18px;
  right: 18px;
}
.popup-area.useMain .cont-area .title-wrap,
.alert-area.useMain .cont-area .title-wrap {
  margin-bottom: 20px;
  text-align: center;
}
.popup-area.useMain .bg_shadow {
  -webkit-backdrop-filter: inherit;
  backdrop-filter: inherit;
  background-color: rgba(0, 0, 0, 0.4);
}
.popup-area.useMain .cont-area .foot-wrap{
  margin-top: 30px;
  text-align: center;
}
.popup-area.useMain .cont-area .logo-bt {
  display: inline-block;
  width: 138px;
  height: 20px;
  box-sizing: content-box;
  background: url('../images/logo.svg') no-repeat;
}

/* component:btn */
.btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  text-indent: -9999px;
  overflow: hidden;
}
.round {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  font-size: 0.875rem;
  border-radius: 17px;
}
.btn-short {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 400;
  border: solid 1px #35353d;
  background: #35353d;
}
.btn-short::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 3px;
  background: url('../images/icon/icon_arr_short.svg') no-repeat;
}
.btn-short.line {
  color: #000;
  font-weight: 500;
  border: solid 1px #d3d3d9;
  background: #fff;
}
.btn-short.line::after {
  background: url('../images/icon/icon_arr_short_b.svg') no-repeat;
}
.btn-top {
  display: none;
  position: fixed;
  right: 48px;
  bottom: 50px;
  width: 68px;
  height: 68px;
  background: transparent url(../images/icon/icon_arr_top.png) center center no-repeat;
  background-size: contain;
  border: none;
  z-index: 3;
}
.btn-down {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 182px;
  height: 52px;
  margin-right: 5px;
  font-size: 0.875rem;
  border: solid 1px #d3d3d9;
}
.btn-down::after {
  content: '';
  width: 18px;
  height: 18px;
  margin-left: 10px;
  background: url(../images/icon/icon_down.svg) no-repeat;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-size: 1.125rem;
  border: 1.5px solid #dadae1;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.8);
}

.btn-dark-confirm {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.8);
}

/*================= header =================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 11;
}
header #header {
  justify-content: space-between;
  max-width: 1520px;
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 22px 0;
}
header h1 {
  width: 138px;
  height: 20px;
  background: url('../images/logo.svg') no-repeat;
}
header h1 a {
  width: 100%;
  height: 100%;
}
header #header nav li {
  margin-left: 62px;
}
header #header nav li.select {
  position: relative;
}
header #header nav li.select::before {
  content: '';
  position: absolute;
  left: -10px;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}
header #header nav a {
  font-family: 'Poppins', sans-serif;
}
header #header nav li:hover a {
  color: rgba(0, 0, 0, 0.4);
}
header .btn-lang {
  width: 32px;
  height: 32px;
  margin-left: 62px;
  background: url(../images/icon/icon_lang_b.svg) no-repeat;
  border: none;
}
header #header .btn-menu {
  display: none;
  width: 25px;
  height: 25px;
  background: url(../images/icon/btn_menu_m_b.svg) no-repeat;
  background-size: cover;
  border: none;
}

/* index */
.index header {
  position: fixed;
  top: 0;
  left: 50%;
  background: transparent;
  transform: translateX(-50%);
  z-index: 11;
}
.index header #header {
  background: transparent;
}
.index header #header h1 {
  background: url('../images/logo_w.svg') no-repeat;
}
.index header #header nav {
  flex-direction: row;
}
.index header #header nav a {
  color: #fff;
}
.index header #header .btn-lang {
  background: url(../images/icon/icon_lang.svg) no-repeat;
}
.index header #header .btn-menu {
  background: url(../images/icon/btn_menu_m.svg) no-repeat;
  background-size: cover;
}
.index header .nav-sub {
  background: transparent;
}
.index #container,
.index #container.ir.overview,
.index #container.pr.news {
  margin-top: 0;
}
/*scroll*/
.index header.scroll {
  background: #fff;
  transition: all 0.5s ease;
}
.index header.scroll #header h1 {
  background: url('../images/logo.svg') no-repeat;
}
.index header.scroll #header nav a {
  color: #000;
}
.index header #header nav li:hover a {
  color: rgba(0, 0, 0, 0.4);
}
.index header.scroll #header .btn-lang {
  background: url(../images/icon/icon_lang_b.svg) no-repeat;
}
.index header.scroll #header .btn-menu {
  background: url(../images/icon/btn_menu_m_b.svg) no-repeat;
  background-size: cover;
}
.index.en header.scroll #header .btn-lang {
  background: url(../images/icon/icon_lang_ko_b.svg) no-repeat;
  background-size: contain;
}
.index #container .company-area li a {
  width: 100%;
  height: 100%;
}
/* nav sub */
header .nav-sub {
  padding: 15px 0;
  background: #fff;
  border-top: 1px solid #d3d3d9;
}
header .nav-sub ul {
  justify-content: center;
}
header .nav-sub ul a {
  margin: 0 50px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}
header .nav-sub li.select a,
header .nav-sub li:hover a {
  /* color:rgba(0, 0, 0, 0.4); */
  color: #d0312a;
}

/*================= container =================*/
.content section {
  border-bottom: 1px solid rgba(211, 211, 217, 0.7);
}
.content section:last-of-type {
  border: none;
}

/* index */
#visualSlider {
  width: 100%;
  height: 100%;
}
#visualSlider .slick-track {
  width: 100%;
  height: 1080px;
  height: 1080px;
}
#visualSlider .slide {
  position: relative;
}

/*#visualSlider .slide:nth-child(1) {
    width:100%;
    height:100%;
    background:url(../images/img/img_main_visual_4.jpg) center center no-repeat;
    background-size:cover;
    background-size:contain;

}*/
#visualSlider .slide:nth-child(1) {
  width: 100%;
  height: 100%;
  background: url(../images/img/img_main_visual_1.jpg) center center no-repeat;
  background-size: cover;
  /* background-size:contain; */
}
#visualSlider .slide:nth-child(2) {
  width: 100%;
  height: 100%;
  background: url(../images/img/img_main_visual_2.jpg) center center no-repeat;
  background-size: cover;
  /* background-size:contain; */
}
#visualSlider .slide:nth-child(3) {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../images/img/img_main_visual_3.jpg) center center no-repeat;
  background-size: cover;
  /* background-size:contain; */
}
#visualSlider .slide:nth-child(3)::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26%;
  height: 537px;
  background: url(../images/img/img_main_character_1.png) right bottom no-repeat;
  background-size: contain;
  z-index: 3;
}
#visualSlider .slide:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 316px;
  right: 18px;
  width: 17.21%;
  height: 226px;
  background: url(../images/img/img_main_character_2.png) right top no-repeat;
  background-size: contain;
  z-index: 3;
}

#visualSlider .title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1520px;
  width: 100%;
  transform: translate(-50%, -50%);
}
#visualSlider .title-wrap h2 {
  margin-bottom: 36px;
  color: #fff;
  font-size: 3.25rem;
  font-weight: 600;
}
#visualSlider .title-wrap p {
  max-width: 740px;
  width: 60%;
  color: #fff;
  font-size: 1.375rem;
  line-height: 2.5rem;
}
#visualSlider .slide:nth-child(3) .title-wrap {
  position: relative;
}
#visualSlider .slide:nth-child(3) .title-wrap::before {
  content: '';
  position: absolute;
  top: -299px;
  left: 49.67%;
  width: 24.17%;
  height: 729px;
  background: url(../images/img/img_main_phone_1.png) no-repeat;
  background-size: contain;
}
#visualSlider .slide:nth-child(3) .title-wrap::after {
  content: '';
  position: absolute;
  top: -185px;
  left: 70.95%;
  width: 23.52%;
  height: 716px;
  background: url(../images/img/img_main_phone_2.png) no-repeat;
  background-size: contain;
}
#visualSlider .slick-dots {
  display: flex;
  position: absolute;
  bottom: 55px;
  right: calc((100% - 1520px) / 2);
  align-items: center;
  justify-content: flex-end;
}
#visualSlider .slick-dots::before {
  content: '01';
  margin-right: 26px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
}
#visualSlider .slick-dots::after {
  content: '03';
  margin-left: 26px;
  font-size: 0.875rem;
  color: #fff;
}
#visualSlider .slick-dots li[role='presentation'] {
  width: 110px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
#visualSlider .slick-dots li[role='presentation'] {
  position: relative;
  width: 110px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}
#visualSlider .slick-dots li[role='presentation'].slick-active {
  background: #fff;
}

#container .company-area {
  position: absolute;
  bottom: 56px;
  left: calc((100% - 1520px) / 2);
}
#container .company-area li:nth-child(1) {
  width: 112px;
  height: 20px;
  margin-right: 60px;
  background: url(../images/icon/icon_company_1_new.svg) no-repeat;
  background-size: contain;
}
#container .company-area li:nth-child(2) {
  width: 120px;
  height: 20px;
  margin-right: 60px;
  background: url(../images/icon/icon_company_2.svg) no-repeat;
  background-size: contain;
}
#container .company-area li:nth-child(3) {
  width: 106px;
  height: 22px;
  background: url(../images/icon/icon_company_3.svg) no-repeat;
  background-size: contain;
}

#visualSlider .useVideo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#visualSlider .useVideo .title-wrap {
  display: flex;
  flex-direction: column;
  align-self: center;
}
#visualSlider .useVideo .title-wrap .videoWrap {
  margin: 0 auto;
  width: 894px;
}
#visualSlider .useVideo .title-wrap .videoWrap .videoHolder {
  margin: 0 auto 32px;
  width: 742px;
  height: 417px;
}
#visualSlider .useVideo .title-wrap .videoWrap h2 {
  display: block;
  margin-bottom: 12px;
  font-family: 'SUIT';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #282828;
  text-align: center;
}
#visualSlider .useVideo .title-wrap .videoWrap h2 b {
  color: #0966b1;
}
#visualSlider .useVideo .title-wrap .videoWrap p {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: 'SUIT';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #282828;
}
#visualSlider .useVideo .title-wrap .applyHr {
  display: block;
  margin: 30px auto 25px;
  width: 100%;
  max-width: 868px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
#visualSlider .useVideo .title-wrap .applyWrap {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 742px;
}
#visualSlider .useVideo .title-wrap .applyWrap b {
  display: block;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: #1272bd;
}
#visualSlider .useVideo .title-wrap .applyWrap p {
  display: block;
  margin-bottom: 15px;
  width: 100%;
  font-family: 'SUIT';
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #262526;
}
#visualSlider .useVideo .title-wrap .applyWrap p + p {
  color: #494949;
}
#visualSlider .useVideo .title-wrap .applyWrap .applyBtn {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  justify-content: space-between;
}
#visualSlider .useVideo .title-wrap .applyWrap .applyBtn a {
  display: flex;
  position: relative;
  width: 360px;
  min-height: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  background: #444344;
  justify-content: center;
  align-items: center;
}
#visualSlider .useVideo .title-wrap .applyWrap .applyBtn a:after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background: url(../images/icon/icon_applyLinkArrow.png) no-repeat center center;
}

.en #visualSlider .useVideo .title-wrap .videoWrap h2 {
  font-family: 'Poppins';
  font-size: 22px;
  line-height: 28px;
  text-align: left;
}
.en #visualSlider .useVideo .title-wrap .videoWrap p {
  line-height: 19px;
  color: #676767;
  text-align: left;
}
.en #visualSlider .useVideo .title-wrap .applyHr {
  margin: 25px auto 20px;
  max-width: 894px;
}
.en #visualSlider .useVideo .title-wrap .applyWrap {
  max-width: 894px;
}
.en #visualSlider .useVideo .title-wrap .applyWrap b {
  font-family: 'Poppins';
}
.en #visualSlider .useVideo .title-wrap .applyWrap p {
  max-width: 100%;
  margin-bottom: 5px;
  line-height: 19px;
}
.en #visualSlider .useVideo .title-wrap .applyWrap .applyBtn a {
  padding-left: 16px;
  width: 480px;
  font-size: 15px;
  justify-content: left;
}
.en #visualSlider .useVideo .title-wrap .applyWrap .applyBtn a + a {
  width: 380px;
}

/* #visualSlider .slick-dots{
    display:none !important;
} */

/*================= footer =================*/
footer {
  margin: 0 auto;
  padding: 47px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#footer {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1520px;
  width: 100%;
  margin: auto;
}
footer .left {
  align-items: center;
}
footer .logo-bt {
  width: 138px;
  height: 20px;
  padding-right: 52px;
  box-sizing: content-box;
  background: url('../images/logo.svg') no-repeat;
}
footer .info-area {
  align-items: flex-start;
}
footer .info-area ul {
  margin-right: 52px;
}
footer .info-area .policy-wrap a {
  font-size: 0.875rem;
  font-weight: bold;
}
footer .info-area .policy-wrap li:nth-child(2) {
  position: relative;
  padding: 0 14px;
  margin-right: 14px;
  margin-left: 14px;
}
footer .info-area .policy-wrap li:nth-child(2)::before,
footer .info-area .policy-wrap li:nth-child(2)::after {
  content: '';
  position: absolute;
  top: 15%;
  width: 1px;
  height: 70%;
  background: rgba(0, 0, 0, 0.2);
}
footer .info-area .policy-wrap li:nth-child(2)::before {
  left: 0;
}
footer .info-area .policy-wrap li:nth-child(2)::after {
  right: 0;
}
footer .info-area .company-wrap {
  margin: 20px 0 2px;
}
footer .info-area .company-wrap li {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
}
footer .info-area .company-wrap li:nth-child(2) {
  position: relative;
  padding: 0 14px;
  margin-right: 14px;
  margin-left: 14px;
}
footer .info-area .company-wrap li:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 15%;
  width: 1px;
  height: 70%;
  background: rgba(0, 0, 0, 0.2);
}
/* 마케팅 요청으로 삭제 22.3.24 - 박성현 */
/* footer .info-area .company-wrap li:nth-child(2)::after {
    content:'';
    position:absolute;
    top:15%;
    width:1px;
    height:70%;
    background:rgba(0, 0, 0, 0.2);
} */
footer .info-area .company-wrap li:nth-child(2)::before {
  left: 0;
}
footer .info-area .company-wrap li:nth-child(2)::after {
  right: 0.5px;
}
footer .info-area .txt-copy {
  width: 100%;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 400;
}
footer .sns-area {
  margin-right: 40px;
}
footer .sns-area li {
  margin: 0 5px;
}
footer .sns-area a {
  text-indent: -9999px;
  overflow: hidden;
  width: 38px;
  height: 38px;
}
footer .sns-area li:nth-child(1) {
  background: url(../images/icon/icon_footer_fantoo.png) no-repeat 0 0 / 38px;
}
footer .sns-area li:nth-child(2) {
  background: url(../images/icon/icon_footer_twitter2.png) no-repeat 0 0 / 38px;
}
footer .sns-area li:nth-child(3) {
  background: url(../images/icon/icon_footer_linkedin.png) no-repeat 0 0 / 38px;
}
footer .sns-area li:nth-child(4) {
  background: url(../images/icon/icon_footer_facebook.png) no-repeat 0 0 / 38px;
}
footer .sns-area li:nth-child(5) {
  background: url(../images/icon/icon_footer_youtube.png) no-repeat 0 0 / 38px;
}

footer .site-area {
  position: relative;
}
footer .site-area .btn-show {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 230px;
  height: 46px;
  padding: 0 10px 0 26px;
  background: #f8f8f9;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  border: none;
  cursor: pointer;
}
footer .site-area .btn-show::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 9px;
  width: 24px;
  height: 24px;
  background: url(../images/icon/icon_arr_up.svg) no-repeat;
}
footer .site-area.show .btn-show::after {
  transform: rotate(180deg);
}
footer .site-area ul {
  display: none;
  position: absolute;
  top: -250px;
  right: 0;
  width: 100%;
  padding: 15px 13px;
  border-radius: 11px;
  box-shadow: 0 0 15px 0 rgba(46, 46, 67, 0.15);
  background-color: #fff;
}
footer .site-area.show ul {
  display: block;
  z-index: 6;
}
footer .site-area ul a {
  padding: 0 12px;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 2.125rem;
}
footer .site-area ul li:hover {
  background: #f8f8f9;
}

/* footer-m */
.footer-m {
  display: none;
}
.footer-m .site-area {
  padding: 22px 20px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}
.footer-m .site-area .btn-show {
  width: 100%;
  background: #f8f8f9;
  font-size: 0.75rem;
  font-weight: 500;
}
.footer-m .site-area ul {
  width: 160px;
  top: -227px;
  right: 20px;
}
.en .footer-m .site-area ul {
  width: 239px;
}
.footer-m .left {
  position: relative;
  padding: 24px 16px;
}
.footer-m .info-area .policy-wrap {
  margin-left: 5px;
  margin-top: 20px;
  line-height: 1.625rem;
}
.footer-m .info-area .policy-wrap li:nth-child(2),
.footer-m .info-area .company-wrap li:nth-child(2) {
  margin: 0;
  padding: 0;
}
.footer-m .info-area .policy-wrap a {
  font-size: 0.75rem;
}
.footer-m .info-area .policy-wrap li:nth-child(2)::before,
.footer-m .info-area .policy-wrap li:nth-child(2)::after {
  display: none;
}
.footer-m .info-area .company-wrap {
  margin-left: 5px;
  margin-bottom: 5px;
  line-height: 1.625rem;
}
.footer-m .info-area .company-wrap li:nth-child(2)::before,
.footer-m .info-area .company-wrap li:nth-child(2)::after {
  display: none;
}
.footer-m .info-area .txt-copy {
  margin-left: 5px;
  color: rgba(0, 0, 0, 0.3);
}
.footer-m .sns-area {
  position: absolute;
  top: 17px;
  right: 12px;
  margin-right: 0;
}
.footer-m .sns-area a {
  width: 31px;
  height: 30px;
}
.footer-m .sns-area li {
  margin: 0;
  background-size: contain !important;
}

/*================= mobile =================*/
header .header-m {
  position: fixed;
  top: 0;
  left: 100%;
  width: calc(100% + 1px);
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  z-index: 10;
}
header .header-m .menu-area {
  justify-content: space-between;
  height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid #d3d3d9;
}
header .header-m h1 {
  background: url(../images/logo.svg) no-repeat;
}
header .header-m .btn-close {
  width: 34px;
  height: 34px;
  margin-left: 5px;
  background: url(../images/icon/icon_close_nav.svg) no-repeat;
  background-size: contain;
  border: none;
}
header .header-m .btn-lang {
  background: url(../images/icon/icon_lang_b.svg) no-repeat;
}
header .header-m nav {
  padding: 17px 20px;
}
header .header-m nav > ul > li {
  margin-bottom: 27px;
}
header .header-m nav strong,
header .header-m nav > ul > li > a {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
}
header .header-m nav .menu-flip {
  position: relative;
}
header .header-m nav .menu-flip::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: url(../images/icon/icon_flip.svg) no-repeat;
}
header .header-m nav .menu-flip.show::after {
  transform: rotate(0deg);
}
header .header-m nav .menu-flip::after {
  transform: rotate(180deg);
}
header .header-m nav .sub {
  display: none;
  margin-left: 16px;
  line-height: 2.125rem;
}

.en header .btn-lang {
  background: url(../images/icon/icon_lang_ko_b.svg) no-repeat;
  background-size: contain;
}
.en.index header #header .btn-lang {
  background: url(../images/icon/icon_lang_ko.svg) no-repeat;
  background-size: contain;
}
.en header .header-m .btn-lang {
  background: url(../images/icon/icon_lang_ko_b.svg) no-repeat;
  background-size: contain;
}

/*================= media query =================*/

@media screen and (max-width: 1720px) {
  header #header {
    padding-left: 20px;
    padding-right: 20px;
  }
  #visualSlider .title-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  #container .cont-area {
    padding-left: 20px;
    padding-right: 20px;
  }
  #container .company-area {
    left: calc((100% - 1520px) / 2 + 20px);
  }
  #visualSlider .slick-dots {
    right: calc((100% - 1520px) / 2 + 20px);
  }
  #footer {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1520px) {
  #visualSlider .slick-slide:nth-child(1) .title-wrap p,
  #visualSlider .slick-slide:nth-child(2) .title-wrap p {
    width: 60%;
  }
  #container .company-area {
    left: 20px;
  }
  #visualSlider .slick-dots {
    right: 20px;
  }
  #visualSlider .slide:nth-child(3) .title-wrap::before {
    top: -199px;
  }
  #visualSlider .slide:nth-child(3) .title-wrap::after {
    top: -085px;
  }
  .btn-top {
    right: 30px;
  }
}

@media screen and (max-width: 1200px) {
  /* footer */
  footer {
    padding: 0;
    border-top: none;
  }
  footer #footer {
    display: none;
  }
  .footer-m {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  /*common*/
  #container .content section:last-of-type {
    padding-bottom: 90px;
  }
  .content section:last-of-type .cont-area {
    padding-bottom: 0;
  }
  #container .content section.visual {
    padding-top: 0;
  }
  .others .content section:first-child .slick-dots {
    margin-bottom: 40px;
  }
  .fantoo .content section:first-child .slick-dots {
    /* margin-top:-20px; */
    padding-bottom: 40px;
  }
  .fantoo .content section:nth-child(3) .slick-dots {
    padding-bottom: 40px;
  }
  .badge {
    padding: 0 10px;
  }

  /* header */
  header #header {
    padding: 9px 14px;
  }
  header h1 {
    width: 126px;
    height: 18px;
    background-size: contain !important;
  }
  header .btn-lang {
    width: 26px;
    height: 26px;
    margin: 0;
    background-size: contain !important;
  }
  header #header .btn-menu {
    display: block;
    width: 34px;
    height: 34px;
    margin-left: 12px;
    text-indent: -9999px;
    overflow: hidden;
  }
  header #header nav > ul {
    display: none !important;
  }
  header .nav-sub {
    display: none;
  }

  /* content */
  #container,
  #container.ir.overview,
  #container.pr.news {
    margin-top: 52px;
  }
  /* #container .content section:first-child {
        padding-top:14px;
    } */
  #container .cont-area .title-wrap h3 {
    font-size: 1.25rem;
  }

  #container .cont-area .tag-wrap .btn-short {
    text-indent: -9999px;
    overflow: hidden;
  }
  #container .cont-area .title-wrap p {
    font-size: 0.875rem;
    line-height: 1.625rem;
  }
  #container .content .cont-area.full {
    padding-left: 0;
    padding-right: 0;
  }
  #container .content .cont-area.full h3 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn-short::after {
    margin-left: 0;
  }

  /* visual slide */
  #visualSlider .title-wrap {
    top: 152px;
    left: 0;
    transform: translate(0);
  }
  #visualSlider .title-wrap h2 {
    width: 60%;
    margin-bottom: 20px;
    font-size: 1.875rem;
  }
  #visualSlider .title-wrap p {
    width: 85% !important;
    font-size: 1rem;
    line-height: 1.625rem;
  }
  #visualSlider .slick-dots {
    bottom: 43px;
    width: calc(100% - 40px);
  }
  #visualSlider .slick-dots li[role='presentation'] {
    /* width:33.33333% */
    width: 25%;
  }
  #container .company-area {
    display: none;
  }
  #visualSlider .slide:nth-child(3) .title-wrap p {
    width: 70% !important;
  }
  #visualSlider .slide:nth-child(3)::before {
    width: 85%;
    height: 303px;
    background-size: contain;
  }
  #visualSlider .slide:nth-child(3)::after {
    top: 365px;
    width: 41.11%;
    height: 128px;
    background-size: contain;
  }
  #visualSlider .slide:nth-child(3) .title-wrap::before,
  #visualSlider .slide:nth-child(3) .title-wrap::after {
    background-position: bottom left;
  }

  .btn-top {
    bottom: 40px;
    width: 46px;
    height: 45px;
    background: url(../images/icon/icon_arr_top_m.png) no-repeat;
    background-size: contain;
  }

  footer {
    border-top: none;
  }

  #visualSlider .useVideo .title-wrap {
    top: 60px;
    padding: 0;
    align-self: normal;
  }
  #visualSlider .useVideo .title-wrap .videoWrap {
    width: 100%;
  }
  #visualSlider .useVideo .title-wrap .videoWrap .videoHolder {
    margin: 0 auto 30px;
    width: 100%;
    height: 202px;
  }
  #visualSlider .useVideo .title-wrap .videoWrap h2 {
    padding: 0 20px;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    text-align: left;
  }
  #visualSlider .useVideo .title-wrap .videoWrap h2 br {
    display: none;
  }
  #visualSlider .useVideo .title-wrap .videoWrap p {
    padding: 0 20px;
    width: 100% !important;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
  }
  #visualSlider .useVideo .title-wrap .videoWrap p br {
    display: none;
  }
  #visualSlider .useVideo .title-wrap .applyHr {
    display: none;
  }
  #visualSlider .useVideo .title-wrap .applyWrap {
    margin-top: 40px;
    padding: 30px 20px;
    background: #fff;
  }
  #visualSlider .useVideo .title-wrap .applyWrap b {
  }
  #visualSlider .useVideo .title-wrap .applyWrap p {
    width: 100% !important;
  }
  #visualSlider .useVideo .title-wrap .applyWrap .applyBtn {
    flex-direction: column;
  }
  #visualSlider .useVideo .title-wrap .applyWrap .applyBtn a {
    margin-bottom: 10px;
    padding-left: 16px;
    width: 100%;
    min-height: 50px;
    justify-content: left;
  }

  .en #visualSlider .useVideo .title-wrap .videoWrap h2 {
    font-size: 16px;
    line-height: 22px;
  }
  .en #visualSlider .useVideo .title-wrap .videoWrap p {
    font-size: 12px;
    line-height: 18px;
  }
  .en #visualSlider .useVideo .title-wrap .applyWrap b {
    font-size: 18px;
    line-height: 24px;
  }
  .en #visualSlider .useVideo .title-wrap .applyWrap p {
  }
  .en #visualSlider .useVideo .title-wrap .applyWrap .applyBtn a,
  .en #visualSlider .useVideo .title-wrap .applyWrap .applyBtn a + a {
    margin-bottom: 10px;
    padding: 14px 50px 14px 16px;
    width: 100%;
    min-height: 50px;
    justify-content: left;
  }
}

@media screen and (max-width: 480px) {
  #visualSlider .slick-track {
    width: 100%;
    height: 1100px;
  }
  /* #visualSlider .slide:nth-child(1) {
        background:url(../images/img/img_main_visual_4_m.jpg) center center no-repeat;
        background-size:cover;
    } */
  #visualSlider .slide:nth-child(1) {
    background: url(../images/img/img_main_visual_1_m.jpg) center center no-repeat;
    background-size: cover;
  }
  #visualSlider .slide:nth-child(2) {
    background: url(../images/img/img_main_visual_2_m.jpg) center center no-repeat;
    background-size: cover;
  }
  #visualSlider .slide:nth-child(3) {
    background: url(../images/img/img_main_visual_3_m.jpg) center center no-repeat;
    background-size: cover;
  }
  #visualSlider .slide:nth-child(3) .title-wrap::before,
  #visualSlider .slide:nth-child(3) .title-wrap::after {
    display: none;
  }
}

/* 20230421 */
.visualPanel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 1080px;
  background: url(../images/img/img_main_visual_4.jpg) center center no-repeat;
  background-size: cover;
}
.visualPanel .title-wrap {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.visualPanel .title-wrap .videoWrap {
  margin: 0 auto;
  width: 894px;
}
.visualPanel .title-wrap .videoWrap .videoHolder {
  margin: 0 auto 32px;
  width: 742px;
  height: 417px;
}
.visualPanel .title-wrap .videoWrap h2 {
  display: block;
  margin-bottom: 12px;
  font-family: 'SUIT';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #282828;
  text-align: center;
}
.visualPanel .title-wrap .videoWrap h2 b {
  color: #0966b1;
}
.visualPanel .title-wrap .videoWrap p {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: 'SUIT';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #282828;
}
.visualPanel .title-wrap .applyHr {
  display: block;
  margin: 30px auto 25px;
  width: 100%;
  max-width: 868px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.visualPanel .title-wrap .applyWrap {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 742px;
}
.visualPanel .title-wrap .applyWrap b {
  display: block;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: #1272bd;
}
.visualPanel .title-wrap .applyWrap p {
  display: block;
  margin-bottom: 15px;
  width: 100%;
  font-family: 'SUIT';
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #262526;
}
.visualPanel .title-wrap .applyWrap p + p {
  color: #494949;
}
.visualPanel .title-wrap .applyWrap .applyBtn {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  justify-content: space-between;
}
.visualPanel .title-wrap .applyWrap .applyBtn a {
  display: flex;
  position: relative;
  width: 360px;
  min-height: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  background: #444344;
  justify-content: center;
  align-items: center;
}
.visualPanel .title-wrap .applyWrap .applyBtn a:after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background: url(../images/icon/icon_applyLinkArrow.png) no-repeat center center;
}

.en .visualPanel .title-wrap .videoWrap h2 {
  font-family: 'Poppins';
  font-size: 22px;
  line-height: 28px;
  text-align: left;
}
.en .visualPanel .title-wrap .videoWrap p {
  line-height: 19px;
  color: #676767;
  text-align: left;
}
.en .visualPanel .title-wrap .applyHr {
  margin: 25px auto 20px;
  max-width: 894px;
}
.en .visualPanel .title-wrap .applyWrap {
  max-width: 894px;
}
.en .visualPanel .title-wrap .applyWrap b {
  font-family: 'Poppins';
}
.en .visualPanel .title-wrap .applyWrap p {
  max-width: 100%;
  margin-bottom: 5px;
  line-height: 19px;
}
.en .visualPanel .title-wrap .applyWrap .applyBtn a {
  padding-left: 16px;
  width: 480px;
  font-size: 15px;
  justify-content: left;
}
.en .visualPanel .title-wrap .applyWrap .applyBtn a + a {
  width: 380px;
}

/* #visualSlider .slick-dots{
    display:none !important;
} */

@media screen and (max-width: 1024px) {
  .visualPanel {
    display: block;
    padding-top: 60px;
    height: auto;
    position: relative;
  }
  .visualPanel .title-wrap {
    top: 60px;
    padding: 0;
    align-self: normal;
  }
  .visualPanel .title-wrap .videoWrap {
    width: 100%;
  }
  .visualPanel .title-wrap .videoWrap .videoHolder {
    margin: 0 auto 30px;
    width: 100%;
    height: 202px;
  }
  .visualPanel .title-wrap .videoWrap h2 {
    padding: 0 20px;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    text-align: left;
  }
  .visualPanel .title-wrap .videoWrap h2 br {
    display: none;
  }
  .visualPanel .title-wrap .videoWrap p {
    padding: 0 20px;
    width: 100% !important;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
  }
  .visualPanel .title-wrap .videoWrap p br {
    display: none;
  }
  .visualPanel .title-wrap .applyHr {
    display: none;
  }
  .visualPanel .title-wrap .applyWrap {
    margin-top: 40px;
    padding: 30px 20px;
    max-width: 100%;
    background: #fff;
  }
  .visualPanel .title-wrap .applyWrap b {
  }
  .visualPanel .title-wrap .applyWrap p {
    width: 100% !important;
  }
  .visualPanel .title-wrap .applyWrap .applyBtn {
    flex-direction: column;
  }
  .visualPanel .title-wrap .applyWrap .applyBtn a {
    margin-bottom: 10px;
    padding: 14px 50px 14px 16px;
    width: 100%;
    min-height: 50px;
    justify-content: left;
  }

  .en .visualPanel .title-wrap .videoWrap h2 {
    font-size: 16px;
    line-height: 22px;
  }
  .en .visualPanel .title-wrap .videoWrap p {
    font-size: 12px;
    line-height: 18px;
  }
  .en .visualPanel .title-wrap .applyWrap b {
    font-size: 18px;
    line-height: 24px;
  }
  .en .visualPanel .title-wrap .applyWrap p {
  }
  .en .visualPanel .title-wrap .applyWrap .applyBtn a,
  .en .visualPanel .title-wrap .applyWrap .applyBtn a + a {
    margin-bottom: 10px;
    width: 100%;
    min-height: 50px;
    justify-content: left;
  }
}
