@charset "UTF-8";
:root {
  --aton-color:#009ddf;
  --main-color:#009ddf;
  --error-color:#d32535;
}

/* ~ 599(폰) 600~691(간격) , 691~1000(모바일) , 1001~1300 , 1301~

body .wrap {display:flex; flex-direction:column; justify-content:space-between; height:100vh;}

/* html.flexCol {height:100%;}
html.flexCol .wrap {display:flex; flex-direction:column; justify-content:space-between; width:100%;}
html.flexCol .wrap section {flex:1} */
/* header */
/* html {scroll-behavior:smooth;} */
.header_wrap {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 90px 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

header h1 svg {
  width: 106px;
  fill: #fff;
}

header .main_nav {
  margin-left: 50px;
}

header nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav > ul li + li {
  font-size: 16px;
}

header nav > ul li + li span.new {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-left: 4px;
  font-size: 0;
  line-height: 1em;
  -webkit-animation: ani_wiggle 0.4s ease-in-out;
  animation: ani_wiggle 0.4s ease-in-out;
}

header nav > ul li + li span.new img {
  display: block;
  width: 32px;
  line-height: 1em;
}

header nav > ul > li > a {
  display: block;
  position: relative;
  padding: 2px 1em 2em;
  line-height: 24px;
}

header nav > ul > li > a.new::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  right: 7px;
  width: 4px;
  height: 4px;
  background-color: #f40000;
  border-radius: 100%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: ani_new_dot 1.2s ease-in-out infinite;
  animation: ani_new_dot 1.2s ease-in-out infinite;
}

header nav > ul > li div span {
  display: block;
  margin-bottom: 0.75em;
  color: #333;
  font-size: 1.125em;
  font-weight: 500;
}

header nav > ul > li div li + li {
  margin-top: 0.5em;
}

header nav > ul > li div a {
  color: #888;
}

header nav a,
header nav button {
  text-decoration: none;
  color: #fff;
}

header nav a:hover,
header nav button:hover {
  color: #009ddf;
}

.full_menu {
  display: none;
  position: absolute;
  top: 88px;
  left: 0;
  width: 100%;
  border-top: 1px solid #ddd;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.full_menu > div {
  padding: 30px 90px;
  background-color: #fff;
}

.full_menu > div > ul {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: table;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.full_menu > div > ul > li {
  display: table-cell;
  width: 25%;
}

header nav > ul > li:hover .full_menu {
  display: block;
}

header nav > ul > li .itemmenu {
  display: none;
}

header nav > ul > li:hover .itemmenu {
  display: block;
  position: absolute;
  top: 88px;
  padding: 1em;
  border: 1px solid #ddd;
  background-color: #fff;
}

header nav > ul > li .itemmenu li + li {
  margin-top: 10px;
}

.header_mobile {
  display: none;
}

header .main_nav {
  padding-top: 30px;
}

.header_wrap.active {
  background-color: #fff;
}

.header_wrap.active h1 svg {
  fill: #222;
}

.header_wrap.active nav > ul > li > a,
.header_wrap.active nav > ul > li > button {
  color: #888;
}

.header_wrap.fullMenuOver nav > ul > li > a,
.header_wrap.fullMenuOver nav > ul > li > button {
  color: #888;
}

.header_wrap.fullMenuOver nav > ul > li.megamenu > a {
  color: #009ddf;
}

.header_wrap.fullMenuOver h1 svg {
  fill: #222;
}

/* 상단 문의하기 */
.sub_nav {
  padding-top: 2px;
}

.sub_nav li a,
.sub_nav li button {
  padding: 0.5em 1em;
  font-size: 0.875em;
}

.sub_nav li.ask,
.sub_nav li:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1px;
}

.header_wrap.active .sub_nav li:last-of-type {
  border-color: rgba(0, 0, 0, 0.2);
}

.sub_nav li.ask.active {
  border-color: rgba(0, 0, 0, 0.2);
}

.fullMenuOver li.current-parent-item > span.tit,
.active .current-parent-item > a {
  color: var(--main-color) !important;
}

.fullMenuOver li.current-page-item > a,
.active li.current-page-item > a {
  color: var(--main-color) !important;
}

.open_aside {
  display: none;
}

@media screen and (max-width: 1000px) {
  .header_wrap {
    position: relative;
  }
  .header_wrap::before {
    content: "";
    display: block;
    width: 100%;
    height: 62px;
  }
  .header_wrap header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 62px;
    padding-top: 0;
    background-color: #fff;
  }
  .header_wrap header h1 svg {
    fill: #222;
  }
  .header_wrap nav {
    display: none;
  }
  .header_wrap nav > ul > li > a {
    color: #222;
  }
  .aside_close, .main_nav, .sub_nav {
    display: none;
  }
  .open_aside {
    display: block;
  }
  .open_aside {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
  }
  .open_aside::before,
  .open_aside::after,
  .open_aside span {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 64%;
    height: 2px;
    background-color: #222;
    border-radius: 2px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .open_aside::before {
    top: 25%;
  }
  .open_aside::after {
    bottom: 25%;
  }
  .open_aside span {
    white-space: nowrap;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 690px) {
  header {
    padding: 0 1.25em;
  }
}
/* 페이지 상단 비주얼 영역 */
.visual {
  position: relative;
  overflow: hidden;
}

.visual_txt {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 10vw 90px;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.visual_txt strong.txt {
  display: block;
  margin-bottom: 0.75em;
  color: var(--main-color);
  font-size: 1.125em;
  -webkit-transition: font-size 0.2s;
  transition: font-size 0.2s;
}

.visual_txt h3 {
  font-weight: lighter;
  line-height: 1.5;
  font-size: 27.2px;
  font-weight: 500;
  -webkit-transition: font-size 0.2s;
  transition: font-size 0.2s;
}

.visual_txt h3 strong {
  font-weight: bold;
  font-weight: 900;
}

.visual_txt h3 strong.em {
  color: var(--main-color);
}

.visual_txt p.txt {
  margin-top: 0.5em;
  font-size: 1.125em;
  line-height: 1.66666em;
  -webkit-transition: font-size 0.2s;
  transition: font-size 0.2s;
}

.visual video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.visual video {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.visual div.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
}

.visual div.bg div.img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-animation: ani_visual 1s ease;
  animation: ani_visual 1s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.visual div.bg div.img.info {
  background-image: url("../img/aton_intro_aton_info.jpg");
}

.visual div.bg div.img.guide {
  background-image: url("../img/aton_img_motp.jpg");
}

.visual div.bg div.img.mSafeBox {
  background-image: url("../img/aton_img_msafebox.jpg");
}

.visual div.bg div.img.mOTP {
  background-image: url("../img/aton_img_motp.jpg");
}

.visual div.bg div.img.mPKI {
  background-image: url("../img/aton_img_mpki.jpg");
}

.visual div.bg div.img.uOTP {
  background-image: url("../img/aton_img_uotp.jpg");
}

.visual div.bg div.img.serviceInfo {
  background-image: url("../img/641656.png");
}

.visual div.bg div.img.pass {
  background-image: url("../img/aton_img_pass.jpg");
}

.visual div.bg div.img.passauth {
  background-image: url("../img/aton_img_passauth.jpg");
}

.visual div.bg div.img.passlogin {
  background-image: url("../img/aton_img_passlogin.jpg");
}

.visual div.bg div.img.smartmoney {
  background-image: url("../img/aton_img_smartmoney.png");
}

.visual div.bg div.img.tmoney {
  background-image: url("../img/aton_img_tmoney.png");
}

.visual div.bg div.img.ir {
  background-image: url("../img/main_background.jpg");
}

.visual div.bg div.img.press {
  background-image: url("../img/aton_img_press.png");
}

.visual div.bg div.img.recruit {
  background-image: url("../img/aton_img_recruit.jpg");
}

.visual div.bg div.img.recruit2 {
  background-image: url("../img/aton_img_recruit2.jpg");
}

.visual div.bg div.img.recruit3 {
  background-image: url("../img/aton_img_recruit3.jpg");
}

.visual div.bg div.img.coreTech {
  background-image: url("../img/aton_img_coretech.jpg");
}

.visual div.bg div.img.esg {
  background-image: url("../img/aton_img_esg.jpg");
}

.visual div.bg div.img.quantum {
  background-image: url("../img/aton_img_quantum.jpg");
  background-color: #000;
}

.visual div.bg div.img.quantumOTP {
  background-image: url("../img/aton_img_quantum_safeotp.jpg");
  background-color: #000;
}

.visual div.bg div.img.quantumPAD {
  background-image: url("../img/aton_img_quantum_safepad.jpg");
  background-color: #000;
}

.visual div.bg div.img.quantumLine {
  background-image: url("../img/aton_img_quantum_safeline.jpg");
  background-color: #000;
}

@media screen and (max-width: 690px) {
  .visual_txt {
    padding: 10vw 1.25em;
  }
}
@-webkit-keyframes ani_visual {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ani_visual {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media only screen and (min-width: 1301px) {
  .visual_txt h3,
  .visual_txt h3.long {
    font-size: 32px;
  }
  .visual_txt h3.short {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 1000px) {
  .visual_txt h3,
  .visual_txt h3.long {
    font-size: 27.2px;
  }
  .visual_txt h3.short {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 690px) {
  .visual_txt h3,
  .visual_txt h3.long {
    font-size: 25.6px;
  }
  .visual_txt h3.short {
    font-size: 32px;
  }
}
@media only screen and (max-width: 690px) {
  .visual_txt h3,
  .visual_txt h3.long {
    font-size: 25.6px;
  }
  .visual_txt h3.short {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .visual_txt h3,
  .visual_txt h3.long {
    font-size: 24px;
  }
  .visual_txt h3.short {
    font-size: 28px;
  }
  .visual_txt strong.txt {
    font-size: 0.875em;
  }
  .visual_txt p.txt {
    font-size: 0.875em;
  }
}
.visual.main .visual_txt {
  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;
  width: 100%;
  height: 100vh;
}

/* 햄버거 메뉴 공통 */
.gnb_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.gnb_wrap .nav_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 70%;
  background-color: #121212;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateX(140%);
  transform: translateX(140%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.gnb_wrap .nav_wrap nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gnb_wrap .nav_wrap nav h1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 2.5em;
  margin-bottom: 0.25em;
  padding-left: 0.66666em;
  line-height: 2.5em;
  color: #fff;
  z-index: 1;
  font-size: 1.5em;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}

.gnb_wrap .nav_wrap nav h1 svg {
  width: 4em;
  fill: #fff;
}

.gnb_wrap .nav_wrap nav h1.active {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.gnb_wrap .nav_wrap nav .nav_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 1em 1em;
  overflow-y: auto;
}

.gnb_wrap .nav_wrap nav .nav_section .nav_group {
  padding: 1em 0;
  color: #fff;
}

.gnb_wrap .nav_wrap nav .nav_section .nav_group a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.gnb_wrap .nav_wrap nav .nav_section .nav_group + .nav_group {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.gnb_wrap .nav_wrap nav .nav_section .nav_group.current-parent-item h2 > span {
  color: #009ddf;
}

.gnb_wrap .nav_wrap nav .nav_section h2 a {
  display: inline-block;
  color: #000;
  font-size: 1.125em;
  line-height: 1.5em;
}

.gnb_wrap .nav_wrap nav .nav_section h2 > span {
  display: inline-block;
  color: #000;
  font-size: 1.125em;
  line-height: 1.5em;
}

.gnb_wrap .nav_wrap nav .nav_section h2 + ul {
  padding-left: 1em;
}

.gnb_wrap .nav_wrap nav .nav_section ul li {
  margin-top: 0.8125em;
}

.gnb_wrap .nav_wrap nav .nav_section ul li + li {
  margin-top: 0.25em;
}

.gnb_wrap .nav_wrap nav .nav_section ul li a {
  display: inline-block;
  color: #222;
  font-size: 0.875em;
  line-height: 1.42857em;
}

.gnb_wrap .nav_wrap nav .nav_section ul li.current-page-item a {
  position: relative;
  margin-bottom: 0.5em;
  padding: 0.5em 0.5em 0.5em 1.25em;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.25em;
}

.gnb_wrap .nav_wrap nav .nav_section ul li.current-page-item a::before {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0.5em;
  padding-top: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

.gnb_wrap .nav_wrap nav .nav_footer {
  display: none;
  position: relative;
  z-index: 1;
}

.gnb_wrap .nav_wrap nav .nav_footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f5f5;
}

.gnb_wrap .nav_wrap nav .nav_footer ul li {
  position: relative;
  width: 100%;
  padding: 1.0625em 0;
  text-align: center;
  font-size: 0.75em;
}

.gnb_wrap .nav_wrap nav .nav_footer ul li + li {
  font-weight: 500;
}

.gnb_wrap .nav_wrap nav .nav_footer ul li + li a {
  color: #000;
}

.gnb_wrap .nav_wrap nav .nav_footer ul li a {
  display: block;
  line-height: 1.5em;
}

.gnb_wrap .nav_wrap .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.75em;
  height: 3.75em;
  background-size: 1.5em;
  z-index: 1;
}

.gnb_wrap .nav_wrap .btn_close button {
  width: 100%;
  height: 100%;
}

.gnb_wrap .nav_wrap .btn_close button::before,
.gnb_wrap .nav_wrap .btn_close button::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

.gnb_wrap .nav_wrap .btn_close button::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.gnb_wrap .nav_wrap .btn_close button::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gnb_wrap .nav_wrap .btn_close span {
  opacity: 0;
}

.gnb_wrap.active {
  right: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.gnb_wrap.active .nav_wrap {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.depth2 > li {
  padding: 0.5em 0;
}

.depth2 > li > a {
  font-weight: bold;
  font-size: 1em !important;
}

.depth2 > li > span {
  font-weight: bold;
}

.depth2 ul {
  padding-left: 1em;
}

@media screen and (min-width: 1000px) {
  .gnb_wrap {
    display: none;
  }
}
/* footer */
footer {
  background-color: #000;
  color: #888;
}

footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 1480px;
  margin: 0 auto;
  padding: 3.4em 5.625em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

footer .row .f_logo {
  width: 20%;
}

/*footer .row .f_logo img {width:auto; height:27px;}*/
footer .row .f_logo svg {
  width: auto;
  height: 27px;
  fill: #fff;
}

footer .row .info {
  width: 36%;
  font-size: 0.875em;
}

footer .row .info p {
  margin-bottom: 1em;
}

footer .row .info p:last-of-type {
  margin-bottom: 0;
}

footer .row .contact {
  width: 29%;
  font-size: 0.875em;
}

footer .row .contact ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}

footer .row .contact ul li span {
  display: inline-block;
  width: 1.5em;
  line-height: 1.2em;
  font-weight: bold;
}

footer .row .contact ul li p {
  display: inline-block;
  line-height: 1.2em;
}

footer .row .contact ul li p a {
  color: #fff !important;
}

footer .row .contact div {
  margin-top: 1em;
}

footer .row .contact div a {
  display: inline-block;
  position: relative;
  padding: 0.75em 1.125em;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  color: #fff;
  text-decoration: none;
}

footer .row .contact div a span {
  font-size: 1.125em;
  font-weight: bold;
  letter-spacing: 0;
}

footer .row .f_site {
  position: relative;
  width: 20%;
}

footer .row .f_site select {
  width: 100%;
  height: 1.25em;
}

@media screen and (max-width: 1000px) {
  footer .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3.4em 1.125em;
  }
  footer .row > div {
    width: auto !important;
  }
  footer .row .f_logo {
    margin-bottom: 2.5em;
  }
  footer .row .info {
    margin-bottom: 2.5em;
  }
  footer .row .contact {
    margin-bottom: 2.5em;
  }
}
@media screen and (min-width: 1025px) {
  footer .row .info {
    margin-right: 0.5em;
  }
}
/* footer - isms 관련 추가 */
footer {
  background-color: #000;
  color: #fff;
}

footer .row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 5.625em 3.4em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

footer .row2 .space {
  width: 19%;
  padding-top: 20px;
}

footer .row2 .other {
  width: 81%;
}

/*footer .row2 .f_logo img {width:auto; height:27px;}*/
footer .row2 .isms_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -30px;
  padding: 1em 0;
  border-radius: 2px;
}

footer .row2 .isms_wrap strong.icon {
  display: inline-block;
  width: 90px;
}

footer .row2 .isms_wrap strong.icon img {
  background-color: #fff;
  border-radius: 8px;
}

footer .row2 .isms_wrap div.txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 1.25em;
}

footer .row2 .isms_wrap div.txt p {
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0;
}

footer div.privacy {
  margin-top: 1em;
  text-align: right;
}

footer div.privacy a {
  display: inline-block;
  position: relative;
  padding: 0.75em 1.125em;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  color: #fff;
  text-decoration: none;
}

footer div.privacy a span {
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0;
}

@media screen and (max-width: 1000px) {
  footer .row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0em 1.125em 3.4em;
  }
  footer .row2 > div {
    width: auto !important;
  }
  footer div.privacy {
    position: relative;
  }
}
/* // footer - isms 관련 추가 */
/* footer select */
.select_wrap {
  position: relative;
}

.select_wrap div.triger {
  position: relative;
  z-index: 1;
}

.select_wrap div.triger button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 5px 0 5px 7px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #fff;
  text-align: left;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.select_wrap div.triger button:hover {
  background-color: #009ddf;
  border-color: #009ddf;
}

.select_wrap div.triger.active button {
  background-color: #009ddf;
  border-color: #009ddf;
  color: #fff;
  border-radius: 0 0 3px 3px;
}

.select_wrap div.triger button span {
  display: block;
  padding-right: 2em;
  line-height: 1.875em;
  font-size: 0.875em;
}

.select_wrap div.triger button span::before {
  content: "";
  position: absolute;
  top: 45%;
  right: 1em;
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  vertical-align: top;
}

.select_wrap div.triger button:hover span::before {
  border-top-color: #fff;
}

.select_wrap div.triger.active button span::before {
  content: "";
  margin-top: -5px;
  border-color: transparent;
  border-bottom-color: rgb(255, 255, 255);
}

.select_wrap ul {
  display: none;
  position: absolute;
  bottom: 100%;
  width: 100%;
  max-height: 200px;
  padding: 4px;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  z-index: 1;
  -webkit-animation: fadeIn 0.2s ease;
  animation: fadeIn 0.2s ease;
}

.select_wrap div.triger.active + ul {
  display: block;
}

.select_wrap ul li {
  padding: 0 2px;
  color: #000;
} /*▼▲*/
.select_wrap ul li a {
  display: block;
  padding: 10px 0.75em;
  color: #000;
  font-size: 0.875em;
  border-radius: 2px;
  text-decoration: none;
  -webkit-transform: skewX(-0.03deg);
  transform: skewX(-0.03deg);
  -webkit-transition: 0.1s background-color ease-in-out;
  transition: 0.1s background-color ease-in-out;
}

.select_wrap ul li a:hover {
  background-color: #f1f1f1;
}

.select_wrap ul li a:visited {
  color: inherit;
}

.select_wrap .select_dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  opacity: 0;
}

.select_wrap div.triger.active ~ .select_dim {
  display: block;
}

/* toTop */
.toTop {
  position: fixed;
  right: 17px;
  bottom: -30px;
  width: 29px;
  height: 29px;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 0;
  opacity: 0;
  -webkit-transition: 0.1s all ease-in-out;
  transition: 0.1s all ease-in-out;
  z-index: 1;
}

.toTop::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.toTop.active {
  bottom: 17px;
  opacity: 1;
}

/* 페이지 탭 */
.page_tab {
  padding: 0 90px;
}

.page_tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.page_tab ul::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.page_tab ul li {
  position: relative;
  z-index: 1;
  padding: 2px 0;
}

.page_tab ul li a {
  display: block;
  text-decoration: none;
}

.page_tab ul li a span {
  display: block;
  padding: 0.9em;
  color: #000;
  font-size: 1.25em;
}

.page_tab ul li.active {
  border-bottom: 1px solid var(--main-color);
}

.page_tab ul li.active a span {
  color: var(--main-color);
}

@media screen and (max-width: 1000px) {
  .page_tab {
    padding: 0 1.125em;
  }
  .page_tab ul li a span {
    font-size: 1em;
  }
}
@media screen and (max-width: 600px) {
  .page_tab {
    padding: 0 1em;
  }
  .page_tab ul li a span {
    font-size: 0.875em;
    white-space: nowrap;
  }
}
/* 이미지 가로형 컨텐츠 */
.flexGroup {
  padding: 8vw 90px;
  background-color: #fff;
}

.flexGroup.gray {
  background-color: #f9f9f9;
}

.flexGroup.blue {
  background-color: var(--main-color);
  color: #fff;
}

.flexGroup.lightblue {
  background-color: #e4f3f8;
}

.flexGroup.top div.inner {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flexGroup.bg_img {
  background: url("../img/awef.png") no-repeat center center/cover;
}

.flexGroup.bg_img h3,
.flexGroup.bg_img p.txt,
.flexGroup.bg_img a {
  color: #fff;
}

.flexGroup.bg_img a {
  margin-top: 2em;
  padding: 1em 2em;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.flexGroup.bg_img a:hover {
  background-color: var(--main-color);
  border-color: transparent;
}

.flexGroup > div.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.flexGroup > div.inner.left {
  margin: unset;
}

.flexGroup > div.inner div.col div.img {
  width: 100%;
  text-align: center;
}

.flexGroup > div.inner div.col img {
  max-width: 100%;
  width: auto;
}

.flexGroup > div.inner div.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* width:100%; */
  min-width: 40%;
}

.flexGroup > div.inner div.col.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flexGroup > div.inner div.col.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flexGroup > div.inner div.col.right {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}

.flexGroup > div.inner div.col a {
  display: inline-block;
  padding: 1.25em 1.5em;
  background-color: #fff;
  color: var(--main-color);
  text-decoration: none;
  border-radius: 1px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 1px 0.3125em rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0.3125em rgba(0, 0, 0, 0.05);
}

.flexGroup > div.inner div.col a:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.flexGroup > div.inner div.col a span {
  font-weight: 500;
}

.flexGroup div.img.tac {
  text-align: center;
}

.flexGroup div.img img {
  width: auto;
}

.flexGroup > div.inner div.col-1 {
  width: 6.38297%;
}

.flexGroup > div.inner div.col-2 {
  width: 14.89361%;
}

.flexGroup > div.inner div.col-3 {
  width: 23.40425%;
}

.flexGroup > div.inner div.col-4 {
  width: 31.91489%;
}

.flexGroup > div.inner div.col-5 {
  width: 40.42553%;
}

.flexGroup > div.inner div.col-6 {
  width: 48.93617%;
}

.flexGroup > div.inner div.col-7 {
  width: 57.4468%;
}

.flexGroup > div.inner div.col-8 {
  width: 65.95744%;
}

.flexGroup > div.inner div.col-9 {
  width: 74.46808%;
}

.flexGroup > div.inner div.col-10 {
  width: 82.97872%;
}

.flexGroup > div.inner div.col-11 {
  width: 91.48936%;
}

.flexGroup > div.inner div.col-12 {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .flexGroup {
    padding: 8vw 1.25em;
  }
}
@media screen and (max-width: 800px) {
  .flexGroup > div.inner {
    display: block;
  }
  .flexGroup > div.inner div {
    width: 100%;
    margin: unset;
  }
  .flexGroup > div.inner div.img,
  .flexGroup > div.inner div.col {
    margin-top: 1.5em;
  }
  .flexGroup > div.inner div.col.right {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flexGroup > div.inner div.col-1, .flexGroup > div.inner div.col-2, .flexGroup > div.inner div.col-3, .flexGroup > div.inner div.col-4, .flexGroup > div.inner div.col-5, .flexGroup > div.inner div.col-6, .flexGroup > div.inner div.col-7, .flexGroup > div.inner div.col-8, .flexGroup > div.inner div.col-9,
  .flexGroup > div.inner div.col-10, .flexGroup > div.inner div.col-11, .flexGroup > div.inner div.col-12 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .flexGroup {
    padding: 14vw 1.25em;
  }
}
.colContent {
  margin-top: 4.375em;
}

/* 컨텐츠 타이틀 */
.sectionTit.tal {
  text-align: left;
}

.sectionTit.tac {
  text-align: center;
}

.sectionTit.tac > strong.img {
  display: block;
  margin-bottom: 3em;
}

.sectionTit.tac > strong.img.mb5 {
  margin-bottom: 5em;
}

.sectionTit.tac > strong.img img {
  width: auto;
}

/* left to center */
.sectionTit > strong.tit {
  display: block;
  margin-bottom: 1em;
  color: var(--main-color);
}

.sectionTit > h3 {
  font-size: 2.5em;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  font-weight: normal;
  word-break: keep-all;
}

.sectionTit > h3 strong {
  font-weight: 800;
}

.sectionTit > p {
  margin-top: 1em;
  font-size: 1.125em;
  line-height: 1.77777em;
  word-break: keep-all;
}

.sectionTit > p.sub_txt {
  margin-top: 0.25em;
  opacity: 0.5;
}

.sectionTit > a {
  display: inline-block;
  padding: 0.9375em 2em;
}

.sectionTit > a span {
  display: block;
  font-size: 1em;
}

.sectionTit em {
  color: var(--main-color);
}

@media only screen and (min-width: 1301px) {
  .sectionTit h3.long {
    font-size: 32px;
  }
  .sectionTit h3.short {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 1000px) {
  .sectionTit h3.long {
    font-size: 27.2px;
  }
  .sectionTit h3.short {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 690px) {
  .sectionTit h3.long {
    font-size: 25.6px;
  }
  .sectionTit h3.short {
    font-size: 32px;
  }
}
@media only screen and (max-width: 800px) {
  .sectionTit.tac {
    margin: 0 auto;
    text-align: center;
  }
  .sectionTit.ltc {
    text-align: center;
  }
}
@media only screen and (max-width: 690px) {
  .sectionTit h3.long {
    font-size: 25.6px;
  }
  .sectionTit h3.short {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .sectionTit h3.long {
    font-size: 24px;
  }
  .sectionTit h3.short {
    font-size: 28px;
  }
  .sectionTit > strong.tit {
    font-size: 0.875em;
  }
  .sectionTit > p {
    font-size: 0.875em;
  }
}
/* 메인페이지 컨텐츠 */
/* 메인 Core Technology */
.main_tech {
  background-color: #f4f4f4;
}

.main_tech > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.main_tech > div > div {
  width: 100%;
  padding: 10vw;
}

.main_tech .sectionTit a {
  display: inline-block;
  margin-top: 1em;
  border: 1px solid #ddd;
  padding: 1em 2em;
  color: #333;
  text-decoration: none;
}

.main_tech > div.majorClients {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.main_tech .img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.main_tech .coreTech .img {
  background-image: url("../img/1-12.png");
}

.main_tech .majorClients .img {
  background-image: url("../img/2-11.png");
}

@media only screen and (max-width: 1000px) {
  .main_tech > div {
    display: block;
  }
  .main_tech .img {
    height: 70vw;
  }
}
/* 메인 아톤 실적 */
.atonis {
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-template-columns: 24% 24% 24% 24%;
  row-gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.atonis dl {
  text-align: center;
}

.atonis dl dt strong {
  font-size: 6em;
  font-weight: 900;
  white-space: nowrap;
}

.atonis dl dt span {
  font-size: 2em;
  font-weight: 600;
  white-space: nowrap;
}

.atonis dl dd p {
  margin-top: 2em;
  font-size: 1.125em;
}

@media only screen and (max-width: 1000px) {
  .atonis dl dt strong {
    font-size: 4em;
  }
  .atonis dl dt span {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 800px) {
  .atonis {
    grid-template-columns: 49% 49%;
    row-gap: 10vw;
  }
  .atonis dl dt strong {
    font-size: 3em;
  }
  .atonis dl dt span {
    font-size: 1em;
  }
  .atonis dl dd p {
    margin-top: 1em;
    font-size: 0.875em;
  }
}
/* 메인 아톤의 최신 소식 */
.main_news {
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-template-columns: 31% 31% 31%;
  max-width: 1300px;
  margin: 0 auto;
}

.main_news .item div.thum {
  position: relative;
  height: 300px;
}

.main_news .item div.thum img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  width: auto;
}

.main_news .item div.txt_wrap span {
  display: block;
  margin-top: 2em;
  color: #009ddf;
  font-size: 0.875em;
  font-weight: 700;
}

.main_news .item div.txt_wrap div.tit {
  margin-top: 1em;
  color: #000;
  font-size: 1.125em;
  line-height: 1.5em;
  font-weight: 700;
}

.main_news .item div.txt_wrap p.txt {
  margin-top: 2em;
  font-size: 0.875em;
  line-height: 1.8em;
}

@media only screen and (max-width: 800px) {
  .main_news {
    display: block;
  }
  .main_news .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .main_news .item + .item {
    margin-top: 2em;
  }
  .main_news .item div.thum {
    width: 300px;
    height: 150px;
    margin-right: 2em;
  }
  .main_news .item div.txt_wrap span {
    margin: 0;
  }
  .main_news .item div.txt_wrap div.tit {
    margin-top: 0.5em;
    color: #000;
    font-size: 1.125em;
    line-height: 1.5em;
    font-weight: 700;
  }
  .main_news .item div.txt_wrap p.txt {
    margin-top: 0.5em;
    font-size: 0.875em;
    line-height: 1.8em;
  }
}
@media only screen and (max-width: 600px) {
  .main_news .item {
    display: block;
  }
  .main_news .item div.thum {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .main_news .item div.thum img {
    position: relative;
    width: 100%;
    height: auto;
  }
  .main_news .item div.thum + div.txt_wrap span {
    margin-top: 2em;
  }
}
/* 컨텐츠1 */
.flex_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

.flex_row.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_row.col3 .item {
  width: 31.92307%;
  text-align: center;
}

.flex_row.col3 .item span.img {
  display: block;
  margin-bottom: 1.25em;
}

.flex_row.col3 .item span.img img {
  width: auto;
}

.flex_row.col3 .item div.txt_wrap {
  display: inline-block;
}

.flex_row.col3 .item div.txt_wrap div.tit {
  margin-bottom: 0.29166em;
  font-size: 1.5em;
  line-height: 1.66666em;
  word-break: keep-all;
  letter-spacing: -0.05em;
}

.flex_row.col3 .item div.txt_wrap ul {
  margin-top: 1em;
  text-align: left;
}

.flex_row.col3 .item div.txt_wrap ul li p {
  position: relative;
  padding-left: 0.5em;
  color: #888;
  font-size: 1em;
  line-height: 1.875em;
  word-break: keep-all;
}

.flex_row.col3 .item div.txt_wrap ul li p::before {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.flex_row.col3 .item div.txt_wrap div.txt p {
  color: #000;
  font-size: 1.125em;
  line-height: 1.77777em;
}

.flex_row.col3 .item div.txt_wrap div.txt p.sub_txt {
  color: #888;
  font-size: 1em;
}

@media only screen and (max-width: 800px) {
  .flex_row.col3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex_row.col3 .item {
    width: 80%;
    margin: 0 auto;
  }
  .flex_row.col3 .item + div {
    margin-top: 3.25em;
  }
  .flex_row.col3 .item span.img {
    margin-bottom: 0;
  }
  .flex_row.col3 .item ul {
    text-align: center;
  }
  .flex_row.col3 .item ul li {
    display: inline-block;
  }
  .flex_row.col3 .item ul li + li {
    margin-left: 1em;
  }
}
/* 업체 이미지 목록 */
/* .partners {display:flex; flex-flow:row wrap; justify-content: space-between; max-width:1300px; margin:0 auto; background:#ff6600;;} */
.partners {
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-template-columns: 25% 25% 25% 25%;
  row-gap: 6vw;
  max-width: 1300px;
  margin: 0 auto;
}

.partners li {
  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;
  text-align: center;
  font-size: 0;
}

.partners li img {
  width: auto;
  max-width: 100%;
  vertical-align: top;
}

@media only screen and (max-width: 1000px) {
  .partners {
    grid-template-columns: 32% 32% 32%;
    row-gap: 10vw;
  }
}
@media only screen and (max-width: 600px) {
  .partners {
    grid-template-columns: 49% 49%;
  }
}
/* 보안영역 컨텐츠 */
.core_security {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 2em 0;
  background-color: #e6f5fc;
  border-radius: 2.5em;
}

.core_security > div {
  width: 50%;
  color: #009ddf;
}

.core_security > div strong {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
}

.core_security > div p {
  margin-top: 1em;
}

@media only screen and (max-width: 600px) {
  .core_security {
    display: block;
    text-align: center;
    border-radius: 1em;
  }
  .core_security > div {
    width: 100%;
  }
  .core_security > div:first-of-type {
    padding: 4em 0 1em;
  }
}
/* 앱 다운로드 */
.appDown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.appDown .item {
  width: 32.2%;
  padding: 4vw 4vw;
  background-color: #fff;
  text-align: center;
}

.appDown .item div.tit {
  font-size: 1.125em;
  font-weight: bold;
  white-space: nowrap;
}

.appDown .item p.txt {
  padding: 1em;
  color: #888;
  font-size: 1.125em;
  white-space: nowrap;
}

.appDown .item div.link {
  margin-top: 1em;
}

.appDown .item a {
  display: block;
  padding: 0.75em 1em;
  background-color: #222;
  border-radius: 2px;
  -webkit-box-shadow: inset 1px 1px 10px #000;
  box-shadow: inset 1px 1px 10px #000;
  color: #fff;
  font-size: 1.125em;
  font-weight: 900;
  text-decoration: none;
}

.appDown .item a + a {
  margin-top: 0.5em;
}

a.google,
a.apple {
  display: block;
  padding: 0.75em 1em;
  background-color: #222;
  border-radius: 2px;
  -webkit-box-shadow: inset 1px 1px 10px #000;
  box-shadow: inset 1px 1px 10px #000;
  color: #fff;
  font-size: 1.125em;
  font-weight: 900;
  text-decoration: none;
}

a.google span,
a.apple span {
  display: inline-block;
  padding: 0.5em 0 0.5em 1.75em;
  white-space: nowrap;
  text-shadow: 0 1px 3px #000;
}

a.google span {
  background: url("../img/app_review_google.png") no-repeat left 46%/24px;
}

a.apple span {
  background: url("../img/app_review_apple.png") no-repeat left 36%/24px;
}

@media only screen and (max-width: 800px) {
  .appDown {
    -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;
    margin-top: 2em;
  }
  .appDown .item {
    width: 100%;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  .appDown .item + .item {
    margin-top: 2em;
  }
}
.app_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.app_link a {
  width: 200px;
  margin: 0 0.5em;
  text-align: center;
}

/* 아톤 소개 - 아톤 히스토리 */
.history_list {
  border-left: 1px solid #ddd;
}

.history_list .item {
  position: relative;
  padding: 0.125em 0 0 5em;
  text-align: left !important;
}

.history_list .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  background-color: var(--main-color);
  border-radius: 100%;
  overflow: hidden;
  line-height: 1em;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.history_list .item + .item {
  margin-top: 3em;
}

.history_list .item .tit {
  color: var(--main-color);
  font-size: 1em;
}

.history_list .item h3 {
  margin-top: 0.5em;
  font-size: 1.5em;
}

.history_list .item ul {
  margin-top: 1em;
  font-size: 1em;
}

.history_list .item ul li p {
  position: relative;
  padding-left: 0.5em;
  color: #888;
  font-size: inherit;
  line-height: 1.875em;
  word-break: keep-all;
}

.history_list .item ul li p::before {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

@media only screen and (max-width: 800px) {
  .history_list {
    margin-top: 2em !important;
  }
  .history_list .item {
    padding-left: 2em;
  }
  .history_list .item h3 {
    font-size: 1.25em;
  }
  .history_list .item ul {
    font-size: 0.875em;
  }
}
/* 이미지 회전 */
.flip-box {
  display: inline-block;
  background-color: transparent; /* width:300px; height:240px; */
  width: 100%;
  height: 100%;
  -webkit-perspective: 1200px;
  perspective: 1200px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
} /* width, height 삭제시 이미지 최대 크기 적용 */
.flip-box .flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .flip-box-front {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box .flip-box-back {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box .flip-box-front {
  background-color: #bbb;
  color: black;
}

.flip-box .flip-box-front div {
  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;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.flip-box .flip-box-front div p {
  color: #fff;
  font-size: 22px;
  line-height: 1.63636em;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  opacity: 1;
  font-weight: 600;
}

.flip-box .flip-box-back {
  background-color: #555;
  color: white;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.flip-box:hover .flip-box-inner {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.flip-box:hover .flip-box-front div p {
  -webkit-transform: translateX(-150%);
  transform: translateX(-150%);
  opacity: 0;
}

.flip_box_wrap {
  text-align: left;
}

.flip_box_wrap h3 {
  padding: 1em 0 1.25em;
  font-size: 1.5em;
  line-height: 1.41666em;
}

.flip_box_wrap div.logo img {
  width: auto;
  height: 24px;
}

.flip_box_wrap div.logo img + img {
  margin-left: 1.5em;
}

@media only screen and (max-width: 800px) {
  .flip_box_wrap h3 {
    padding: 1em 0 0.25em;
    font-size: 1.25em;
    line-height: 1.41666em;
    text-align: center;
  }
  .flip_box_wrap div.logo {
    text-align: center;
  }
}
/* 아톤이 일하는 방식 */
.company .txtwrap li {
  position: relative;
  padding-top: 0.25em;
}

.company ol.txtwrap li {
  padding-left: 4em;
}

.company .txtwrap li + li {
  margin-top: 3.5em;
}

.company .txtwrap li div.num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75em;
  height: 1.75em;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100%;
  font-weight: bold;
}

.company .txtwrap li div.num strong {
  color: #fff;
  font-size: 1.5em;
  line-height: 0.6em;
}

.company .txtwrap li div.tit {
  font-size: 1.5em;
  font-weight: 700;
}

.company .txtwrap li div.tit strong {
  color: var(--main-color);
}

.company .txtwrap li p.txt {
  margin-top: 0.75em;
  font-size: 1.125em;
  line-height: 1.77777em;
}

.benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 2em;
}

.benefit li {
  position: relative;
  width: 50%;
  padding-right: 2em;
  padding-left: 5em;
  text-align: left;
}

.benefit li span.icon {
  position: absolute;
  top: 0;
  left: 0;
}

.benefit li span.icon img {
  width: 50px;
}

.benefit li div.tit {
  margin-bottom: 0.4em;
  font-size: 1.25em;
  line-height: 1.77777em;
  font-weight: 700;
  word-break: keep-all;
}

.benefit li p.txt {
  color: #666;
  font-size: 1em;
  line-height: 1.75em;
  word-break: keep-all;
}

@media only screen and (max-width: 800px) {
  .company .txtwrap li {
    text-align: left !important;
  }
}
@media only screen and (max-width: 600px) {
  .benefit li {
    width: 100%;
    text-align: left;
  }
  .benefit li p.txt {
    font-size: 0.875em;
  }
}
/* recruit */
.recruit_email p.email.hr {
  color: #63d1ff;
  font-size: 2em;
  font-weight: 800;
}

.recruit_email ul {
  margin-top: 1.25em;
}

.recruit_email ul li + li {
  margin-top: 0.875em;
}

.recruit_email ul li p {
  line-height: 1.5em;
  font-weight: 600;
}

.recruit_email ul li p {
  position: relative;
  padding-left: 0.5em;
  line-height: 1.375em;
  word-break: keep-all;
}

.recruit_email ul li p::before {
  content: "·";
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  line-height: inherit;
}

/* 기본형 페이지 박스 */
div.page_wrap {
  padding: 0 90px;
  padding-bottom: 10em;
}

div.page_wrap .page_box,
div.box {
  max-width: 1300px;
  margin: 0 auto;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
}

@media screen and (max-width: 1000px) {
  div.page_wrap {
    padding: 0 1.125em 5em;
  }
}
/* 페이지 타이틀 */
.page_title {
  padding: 2.5em 0 1.5em;
  font-size: 2em;
}

@media screen and (max-width: 600px) {
  .page_title {
    padding-top: 3em;
    font-size: 1.5em;
  }
}
/* IR,PR 테이블 컨텐츠 */
.table_content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.table_content_wrap + .table_content_wrap {
  margin-top: 6em;
}

.table_content_wrap > div.tit {
  width: 20%;
  padding-right: 3em;
}

.table_content_wrap > div.tit strong {
  display: block;
  font-size: 1.375em;
  line-height: 1.8181818182em;
  font-weight: normal;
  word-break: keep-all;
}

.table_content_wrap > div.content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-x: auto;
}

.table_content_wrap > div.content > div.txt_wrap p {
  font-size: 1.125em;
  line-height: 1.7777777778em;
}

@media screen and (max-width: 690px) {
  .table_content_wrap {
    display: block;
  }
  .table_content_wrap + .table_content_wrap {
    margin-top: 5em;
  }
  .table_content_wrap > div.tit {
    width: 100%;
    padding-bottom: 0.5em;
  }
}
/* 테이블 컨텐츠 */
table.boardTable {
  width: 100%;
  font-size: 1.125em;
}

table.boardTable thead tr {
  height: 80px;
}

table.boardTable thead th {
  padding: 1em 1em 1em 2.5em;
  background-color: #f9f9f9;
  text-align: left;
}

table.boardTable tbody tr {
  height: 80px;
}

table.boardTable tbody tr td {
  border-bottom: 1px solid #eee;
}

table.boardTable tbody td {
  padding: 1em 0;
  background-color: #fff;
}

table.boardTable th.list-date,
table.boardTable th.list-title,
table.boardTable th.list-user,
table.boardTable td.list-date,
table.boardTable td.list-title,
table.boardTable td.list-user {
  padding: 1em 1em 1em 2.5em;
}

table.boardTable th.list-title {
  width: auto;
}

table.boardTable th.list-title div.default {
  display: block;
}

table.boardTable th.list-title div.mobile {
  display: none;
}

table.boardTable th.list-user {
  width: 200px;
}

table.boardTable th.list-other {
  width: 170px;
  text-align: center;
}

table.boardTable td.list-date {
  width: 200px;
}

table.boardTable td.list-title div.default {
  display: block;
}

table.boardTable td.list-title div.mobile {
  display: none;
}

@media screen and (max-width: 1000px) {
  table.boardTable th.list-date,
  table.boardTable th.list-title,
  table.boardTable th.list-user,
  table.boardTable td.list-date,
  table.boardTable td.list-title,
  table.boardTable td.list-user {
    padding: 1em 1em 1em 1.5em;
  }
}
@media screen and (max-width: 800px) {
  table.boardTable {
    border-top: 1px solid #eee;
    font-size: 1em;
  }
  table.boardTable thead {
    display: none;
  }
  table.boardTable tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #eee;
  }
  table.boardTable tbody tr td.list-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  table.boardTable tbody tr td {
    border-bottom: 0 none;
  }
  table.boardTable td.list-date {
    display: none;
  }
  table.boardTable td.list-title div.default {
    display: none;
  }
  table.boardTable td.list-title div.mobile {
    display: block;
  }
  table.boardTable td.list-title div.mobile p.title {
    color: #222;
    font-size: 0.875em;
    font-weight: bold;
  }
  table.boardTable td.list-title div.mobile span {
    display: inline-block;
    margin-top: 0.75em;
    color: #888;
    font-size: 0.75em;
  }
  table.boardTable td.list-user {
    display: none;
  }
  a.btn.link {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 600px) {
  table.boardTable {
    font-size: 1em;
  }
}
a.btn.link {
  display: inline-block;
  color: #222;
  text-decoration: none;
  border: 1px solid #888;
  border-radius: 1px;
  line-height: 1em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a.btn.link:hover {
  background-color: var(--main-color);
  border-color: transparent !important;
  color: #fff;
}

a.btn.link span {
  display: block;
  padding: 0.75em 1.875em;
  font-size: 1em;
  line-height: 1em;
}

table.dataTable {
  width: 100%;
  font-size: 1.125em;
}

table.dataTable thead tr {
  height: 70px;
}

table.dataTable thead th {
  width: 15%;
  background-color: #f9f9f9;
}

table.dataTable tbody tr {
  height: 70px;
}

table.dataTable tbody tr td {
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

table.dataTable tbody td {
  width: auto;
  padding: 1em 0.5em;
  background-color: #fff;
  text-align: center;
}

table.dataTable tbody td:first-of-type {
  padding-left: 2em;
  text-align: left;
}

/* 재무제표 토글형식 */
.toggle.default .item {
  padding-left: 2em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.toggle.default .item div.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5em 1em 1.5em 0;
  cursor: pointer;
}

.toggle.default .item:first-of-type div.title {
  padding-top: 0.25em;
}

.toggle.default .item div.title p {
  font-size: 1.125em;
}

.toggle.default .item div.title div button.toggle {
  position: relative;
  width: 2em;
  height: 2em;
  overflow: hidden;
  border: 2px solid #888;
  border-radius: 100%;
}

.toggle.default .item div.title div button.toggle::before,
.toggle.default .item div.title div button.toggle::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #888;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.toggle.default .item div.title div button.toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.toggle.default .item div.title div button.toggle::after {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.toggle.default .item div.title div button.toggle span {
  white-space: nowrap;
  color: transparent;
}

.toggle.default .item div.content {
  height: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
}

.toggle.default .item.active div.title p,
.toggle.default .item:hover div.title p {
  color: var(--main-color);
}

.toggle.default .item.active div.title div button.toggle,
.toggle.default .item:hover div.title div button.toggle {
  border-color: var(--main-color);
}

.toggle.default .item.active div.title div button.toggle::before,
.toggle.default .item.active div.title div button.toggle::after,
.toggle.default .item:hover div.title div button.toggle::before,
.toggle.default .item:hover div.title div button.toggle::after {
  background-color: var(--main-color);
}

.toggle.default .item.active div.title div button.toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.toggle.default .item.active div.title div button.toggle::after {
  width: 0%;
}

.toggle.default .item.active div.content {
  height: auto;
  padding: 0 0 1.5em 0;
  opacity: 1;
}

/* 포트폴리오 목록 */
.portfolio_wrap {
  padding: 0 90px;
}

.portfolio_list {
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-template-columns: 32% 32% 32%;
  row-gap: 20px;
  width: 100%;
  max-width: 1300px;
  margin: 2em auto 5em;
}

.portfolio_list li {
  position: relative;
}

.portfolio_list li a {
  display: block;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.portfolio_list li div.txt {
  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;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}

.portfolio_list li div.txt p {
  color: #fff;
  font-size: 1.75em;
  line-height: 1.42857em;
  -webkit-transform: skewX(-0.03deg);
  transform: skewX(-0.03deg);
  -webkit-transition: all 0.75s;
  transition: all 0.75s;
  word-break: keep-all;
  text-align: center;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}

.portfolio_list li div.img {
  overflow: hidden;
}

.portfolio_list li div.img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.portfolio_list li a:hover div.txt {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.portfolio_list li a:hover div.txt p {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.portfolio_list li a:hover div.img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 1000px) {
  .portfolio_wrap {
    padding: 0 1.125em;
  }
  .portfolio_list li div.txt p {
    font-size: 1.125em;
  }
  .portfolio_list li a:hover div.txt p {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (max-width: 600px) {
  .portfolio_list {
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-template-columns: 48% 48%;
    width: 100%;
    max-width: 1300px;
  }
  .portfolio_list li {
    position: relative;
  }
}
/* 포트폴리오 상세 */
.portfolio_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.portfolio_info div:first-of-type {
  width: 23.40425%;
}

.portfolio_info div:last-of-type {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 2em;
}

.portfolio_info dl + dl {
  margin-top: 3em;
}

.portfolio_info dl dt strong {
  font-size: 1.125em;
  word-break: keep-all;
}

.portfolio_info dl dd p {
  margin-top: 0.6375em;
  font-size: 1em;
  line-height: 1.875em;
  word-break: keep-all;
}

.portfolio_img_list {
  margin-top: 2em;
}

.portfolio_img_list ul {
  display: grid;
  gap: 50px;
  grid-template-columns: auto auto auto auto;
}

.portfolio_img_list li a {
  display: block;
  position: relative;
  font-size: 0;
  overflow: hidden;
}

.portfolio_img_list li a img {
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.portfolio_img_list li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.portfolio_img_list li a:hover::before {
  background-color: rgba(0, 0, 0, 0.75);
}

.portfolio_img_list li a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media screen and (max-width: 1000px) {
  .portfolio_info {
    display: block;
  }
  .portfolio_info dl + dl {
    margin-top: 2em;
  }
  .portfolio_info div:first-of-type {
    width: 100%;
  }
  .portfolio_info div:last-of-type {
    margin-top: 2em;
    margin-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .portfolio_img_list ul {
    gap: 30px;
    grid-template-columns: auto auto auto;
  }
}
@media screen and (max-width: 600px) {
  .portfolio_info dl + dl {
    margin-top: 1em;
  }
  .portfolio_info dl dt strong {
    font-size: 0.875em;
  }
  .portfolio_info dl dd p {
    font-size: 0.75em;
  }
  .portfolio_img_list ul {
    gap: 20px;
    grid-template-columns: auto auto;
  }
}
/* 포트폴리오 팝업 보기 */
.layer.portfolio {
  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;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.layer::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10;
}

.layer.portfolio .inner {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 80vh;
  z-index: 20;
}

.layer.portfolio .inner div.content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.layer.portfolio div.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  padding: 0.5em 0;
}

.layer.portfolio div.btn button {
  display: inline-block;
  position: relative;
  width: 2.5em;
  height: 2.5em;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 100%;
  color: transparent;
}

.layer.portfolio div.btn button::before,
.layer.portfolio div.btn button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: #fff;
}

.layer.portfolio div.btn button::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.layer.portfolio div.btn button::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 포트폴리오 이전 다음 목록 */
.portfolio_paging {
  padding: 0 90px;
  background-color: #f7f7f7;
  -webkit-transition: padding 0.2s ease;
  transition: padding 0.2s ease;
}

.portfolio_paging > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  height: 100px;
  margin: 0 auto;
}

.portfolio_paging a {
  position: relative;
  display: inline-block;
  color: #888;
}

.portfolio_paging a:hover {
  color: var(--main-color);
}

.portfolio_paging a.prev,
.portfolio_paging a.next {
  padding: 0 1em;
  -webkit-transition: padding 0.2s ease;
  transition: padding 0.2s ease;
  text-decoration: none;
}

.portfolio_paging a.prev span,
.portfolio_paging a.next span {
  position: relative;
  display: inline-block;
  padding: 0.25em 0;
}

.portfolio_paging a.prev::before,
.portfolio_paging a.prev::after,
.portfolio_paging a.next::before,
.portfolio_paging a.next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.portfolio_paging a.prev::before,
.portfolio_paging a.next::before {
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #888;
}

.portfolio_paging a.prev::before {
  left: 0;
  border-width: 2px 0 0 2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.portfolio_paging a.next::before {
  right: 0;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.portfolio_paging a.prev:hover {
  padding: 0 0 0 2em;
}

.portfolio_paging a.next:hover {
  padding: 0 2em 0 0;
}

.portfolio_paging a.prev:hover::before,
.portfolio_paging a.next:hover::before {
  border-color: var(--main-color);
}

.portfolio_paging a.prev::after,
.portfolio_paging a.next::after {
  width: 20px;
  height: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  background-color: var(--main-color);
  opacity: 0;
}

.portfolio_paging a.prev::after {
  left: 0.5em;
}

.portfolio_paging a.next::after {
  right: 0.5em;
}

.portfolio_paging a.prev:hover::after,
.portfolio_paging a.next:hover::after {
  opacity: 1;
}

.portfolio_paging a.prev:hover::after {
  left: 0;
}

.portfolio_paging a.next:hover::after {
  right: 0;
}

.portfolio_paging a.list {
  display: grid;
  width: 24px;
  height: 24px;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(3, 6px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  background-color: transparent;
  font-size: 0;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.portfolio_paging a.list span {
  background-color: #888;
  font-size: 0;
}

.portfolio_paging a.list:hover {
  width: 28px;
  height: 28px;
}

.portfolio_paging a.list:hover span {
  background-color: var(--main-color);
}

@media screen and (max-width: 800px) {
  .portfolio_paging {
    padding: 0 1.125em;
  }
  .portfolio_paging a.prev span,
  .portfolio_paging a.next span {
    color: transparent;
    letter-spacing: -10em;
  }
}
/* IR소식 게시글 */
.ir_table_wrap .ir_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 1.125em;
}

.ir_table_wrap .list-date {
  padding: 1em 1em 1em 2.5em;
  width: 200px;
}

.ir_table_wrap .list-title {
  padding: 1em 1em 1em 2.5em;
}

.ir_table_wrap .ir_head .ir_title {
  background-color: #f9f9f9;
  font-weight: bold;
}

.ir_table_wrap .ir_body .ir_item {
  border-bottom: 1px solid #eee;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.ir_table_wrap .ir_body .ir_title .list-title {
  display: block;
  position: relative;
  cursor: pointer;
  width: 100%;
  padding-right: 2em;
  word-break: keep-all;
}

.ir_table_wrap .ir_body .ir_title .list-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: 1em;
  width: 0.75em;
  height: 0.75em;
  border-width: 2px 2px 2px 2px;
  border-style: solid;
  border-color: #333;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 1px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 100% 100%;
  transition: 100% 100%;
}

.ir_table_wrap .ir_body .ir_item.active .ir_title .list-title::after {
  -webkit-transform: translateY(0%) rotate(-135deg);
  transform: translateY(0%) rotate(-135deg);
}

.ir_table_wrap .ir_body .ir_item .ir_content {
  height: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  border: 1px solid transparent;
  border-bottom: 0;
}

.ir_table_wrap .ir_body .ir_item.active .ir_content {
  height: auto;
  padding: 2em 0 1.5em 0;
  opacity: 1;
  line-height: 1.875em;
  border-color: #eee;
}

.ir_table_wrap .ir_body .ir_item .ir_content .ir_inner_wrap {
  padding: 20px 50px;
  font-size: 16.5px;
  word-break: keep-all;
}

.ir_table_wrap .ir_body .ir_item .ir_content h3 {
  font-size: 1.875em;
}

.ir_table_wrap .ir_body .ir_item .ir_content img {
  width: auto;
  max-width: 100%;
}

.ir_table_wrap .ir_body .ir_item .ir_content a {
  font-weight: bold;
  color: var(--main-color);
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .ir_table_wrap .ir_title {
    height: auto;
    font-size: 1em;
  }
  .ir_table_wrap .list-date {
    padding: 1em 1em 1em 1em;
  }
  .ir_table_wrap .list-title {
    padding: 1em 1em 1em 1em;
  }
  .ir_table_wrap .ir_body .ir_item .ir_content .ir_inner_wrap {
    padding: 20px;
    overflow-x: auto;
  }
}
/* 주식분할 기준일 공고 테이블 */
.ir_table {
  width: 100%;
}

.ir_table th,
.ir_table td {
  padding: 10px;
  border: 1px solid #eee;
}

.ir_table th {
  background-color: #f9f9f9;
}

.ir_table td.tar {
  text-align: right;
}

.ir_table td.tac {
  text-align: center;
}

/* // 주식분할 기준일 공고 테이블 */
/* 일반 게시판 목록 (보도자료) */
.board_list_wrap {
  color: #000;
}

.board_list_wrap .board_head,
.board_list_wrap .board_list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.board_list_wrap .board_head {
  background-color: #f9f9f9;
}

.board_list_wrap .board_list {
  background-color: #fff;
}

.board_list_wrap .board_list .item {
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.board_list_wrap .board_list .item:hover {
  background-color: #eee;
}

.board_list_wrap .list-date,
.board_list_wrap .list-title {
  padding: 2em 1em 2em 3em;
}

.board_list_wrap .list-date {
  width: 200px;
}

.board_list_wrap .list-title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.board_list_wrap .list-title a {
  color: #000;
  text-decoration: none;
}

.board_list_wrap .list-date span,
.board_list_wrap .list-title a {
  display: block;
  font-size: 1.125em;
}

@media screen and (max-width: 800px) {
  .board_list_wrap .list-date,
  .board_list_wrap .list-title {
    padding: 1.5em 1em 1.5em 2em;
  }
  .board_list_wrap .list-date {
    width: 170px;
  }
  .board_list_wrap .list-date span,
  .board_list_wrap .list-title a {
    font-size: 1em;
  }
}
@media screen and (max-width: 690px) {
  .board_list_wrap {
    border-top: 1px solid #e4e4e4;
  }
  .board_list_wrap .board_head {
    display: none;
  }
  .board_list_wrap .board_list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0.5em 1em;
  }
  .board_list_wrap .list-date,
  .board_list_wrap .list-title {
    padding: 0;
  }
  .board_list_wrap .list-date span,
  .board_list_wrap .list-title a {
    font-size: 0.875em;
  }
  .board_list_wrap .list-title a {
    padding: 1em 0;
  }
  .board_list_wrap .list-date span {
    padding-bottom: 0.5em;
    color: #999;
  }
}
/* board paging */
.board_pagination {
  padding: 3em 0 1em;
  font-size: 1.25em;
  line-height: 1.4em;
}

.board_pagination ul {
  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;
}

.board_pagination li {
  padding: 0 1px;
}

.board_pagination li a {
  display: inline-block;
  padding: 0.125em 0.5em;
  color: #000;
  line-height: 1em;
  text-decoration: none;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

.board_pagination li a:hover,
.board_pagination li.active a {
  color: var(--main-color);
}

@media screen and (max-width: 690px) {
  .board_pagination {
    font-size: 0.75em;
  }
  .board_pagination li a {
    padding: 0.25em 1em;
  }
}
/* 일반 게시판 보기 샘플 (보도자료) */
.board_view .board_head {
  padding: 1em 2em;
  border-top: 2px solid #000;
  border-bottom: 1px solid #f1f1f1;
}

.board_view .board_head .board_title {
  font-size: 1.25em;
  line-height: 1.5em;
  font-weight: bold;
  font-family: "Noto Sans KR";
}

.board_view .board_head .board_title p {
  font-family: "Noto Sans KR";
}

.board_view .board_head .board_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 0.5em;
}

.board_view .board_head dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #999;
  font-size: 0.8725em;
}

.board_view .board_head dl + dl {
  margin-left: 3em;
}

.board_view .board_head dl dd {
  padding-left: 0.5em;
}

@media screen and (max-width: 600px) {
  .board_view .board_head {
    padding: 1em;
  }
}
.board_footer {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.board_footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.board_footer div + div {
  border-top: 1px solid #ddd;
}

.board_footer div span {
  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;
  width: 140px;
  min-width: 140px;
  height: 80px;
  background-color: #f9f9f9;
  font-weight: 400;
  font-family: "Noto Sans KR";
  font-size: 1.125em;
}

.board_footer div p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding: 0 1.5em;
  font-family: "Noto Sans KR";
  overflow: hidden;
}

.board_footer div p a {
  display: block;
  color: #000;
  font-weight: 400;
  text-decoration: none;
  font-family: "Noto Sans KR";
  font-size: 1.125em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board_footer div p a:hover {
  text-decoration: underline;
}

/* 기사 목록 신규 */
.press_list_wrap {
  display: grid;
  grid-template-columns: auto auto auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 50px 30px;
}

.press_list_wrap div.item {
  font-weight: 500;
  font-family: "Noto Sans KR";
}

.press_list_wrap div.item a {
  display: block;
  text-decoration: none;
}

.press_list_wrap div.item div.thum {
  position: relative;
  width: 100%;
  height: 300px;
  width: 27.92427vw;
  height: 20.28397vw;
  max-width: 413px;
  max-height: 300px;
  overflow: hidden;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 1px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.press_list_wrap div.item div.thum img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.press_list_wrap div.item div.tit {
  margin-top: 1em;
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 500;
  text-decoration: none;
}

.press_list_wrap div.item span.date {
  display: block;
  margin-top: 1em;
  color: #999;
  font-size: 14px;
}

.press_list_wrap div.item a div.tit {
  color: #000;
}

.press_list_wrap div.item a span.date {
  color: #999;
}

/* 기사 목록 더보기 버튼 */
.btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

.btn_wrap button {
  width: 284px;
  height: 56px;
  background-color: var(--aton-color);
  border-radius: 2.5px;
}

.btn_wrap button span {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  font-family: "Noto Sans KR";
}

@media screen and (max-width: 900px) {
  .press_list_wrap {
    grid-template-columns: auto auto;
    gap: 40px 25px;
  }
  .press_list_wrap div.item div.thum {
    width: 45.888888vw;
    height: 33.33333vw;
  }
  .press_list_wrap div.item div.tit {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .press_list_wrap {
    display: grid;
    grid-template-columns: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50 0;
  }
  .press_list_wrap div.item div.thum {
    width: 94vw;
    max-width: 100%;
    height: 68.16666vw;
  }
  .press_list_wrap div.item div.tit {
    font-size: 16px;
  }
  .press_list_wrap div.item span.date {
    font-size: 12px;
  }
  .btn_wrap {
    margin-top: 40px;
  }
  .btn_wrap button {
    width: 200px;
    height: 40px;
  }
  .btn_wrap button span {
    font-size: 13px;
  }
}
/* 기사 컨텐츠용 */
.board_content .content-view {
  font-family: "Noto Sans KR";
  line-height: 2em;
}

.board_content .content-view h2 {
  text-align: center;
}

.board_content .content-view ul li {
  font-weight: bold;
  font-size: 1.125em;
}

.board_content .content-view div.img {
  text-align: center;
}

.board_content .content-view div.img img {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  border-radius: 1px;
}

.board_content .content-view div.img figcaption {
  color: #999;
  font-size: 13px;
}

/* Press Kit 테이블 */
table.tablepress {
  width: 100%;
}

table.tablepress tbody tr {
  border-bottom: 1px solid #ddd;
  font-size: 1.125em;
  line-height: 70px;
  text-align: left;
}

table.tablepress tbody tr th {
  width: 180px;
  padding: 0 2.5em;
  background-color: rgb(249, 249, 249);
}

table.tablepress tbody tr td {
  padding: 0 2em;
  word-break: keep-all;
}

@media screen and (max-width: 800px) {
  table.tablepress tbody tr {
    font-size: 0.875em;
  }
  table.tablepress tbody tr th {
    width: 100px;
    padding: 0 1.5em;
  }
  table.tablepress tbody tr td {
    padding: 0 1em;
  }
}
/* CI 다운받기 */
.ci_list div.item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1em 0;
}

.ci_list div.item + div.item {
  border-top: 1px solid #eee;
}

.ci_list div.item p {
  font-size: 1.125em;
  font-weight: 700;
}

/* 보도자료 게시글 보기 */
.press_doc {
  padding: 3em 2em;
  line-height: 1.875em;
}

.press_doc h1:first-of-type,
.press_doc h2:first-of-type,
.press_doc h3:first-of-type {
  font-size: 1.5em;
}

.press_doc img {
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 600px) {
  .press_doc {
    padding: 2em 1em;
    line-height: 1.875em;
  }
}
/* 크루 인터뷰 */
.crew_wrap {
  padding: 8vw 90px;
}

.crew_wrap ul {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.crew_wrap li {
  text-align: center;
  width: 33%;
  margin: 0 auto;
}

.crew_wrap li p {
  font-size: 1.125em;
  line-height: 2.0555555556em;
}

.crew_wrap li div.crew_info span {
  display: block;
}

.crew_wrap li div.crew_info span.crew-img {
  display: inline-block;
  width: 4.375em;
  height: 4.375em;
  margin-bottom: 1em;
  border-radius: 100%;
}

.crew_wrap li div.crew_info span.crew-name {
  font-size: 1em;
  line-height: 1.375em;
}

.crew_wrap li div.crew_info span.crew-part {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875em;
  line-height: 1.5714285714em;
}

@media screen and (max-width: 1000px) {
  .crew_wrap {
    padding: 8vw 1.25em;
  }
}
@media screen and (max-width: 600px) {
  .crew_wrap {
    padding: 14vw 1.25em;
  }
}
/* 채용공고 상세 */
.recruit_doc {
  padding: 3em 2em;
}

.recruit_doc .txt_group + .txt_group {
  margin-top: 5em;
}

.recruit_doc .txt_group h3 {
  font-size: 1.5em;
}

.recruit_doc .txt_group ul {
  margin-top: 2em;
}

.recruit_doc .txt_group ul li + li {
  margin-top: 1em;
}

.recruit_doc .txt_group ul li p {
  position: relative;
  padding-left: 0.75em;
  font-size: 1em;
  line-height: 1.375em;
}

.recruit_doc .txt_group ul li p::before {
  content: "·";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: bold;
}

.recruit_doc .txt_group img {
  width: auto;
  max-width: 100%;
}

/* 채용정보 디자인 변경 */
.benefit_new {
  margin: 0 auto;
  margin-top: 2em;
  max-width: 1600px;
}

.benefit_new > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.benefit_new > div + div {
  margin-top: 3.75em;
}

.benefit_new div.tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 435px;
}

.benefit_new div.tit span.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 130px;
  min-width: 130px;
}

.benefit_new div.tit img {
  display: inline-block;
  width: 130px;
  vertical-align: top;
}

.benefit_new div.tit dl dt {
  color: #399ddf;
  font-size: 2.5em;
  font-weight: bold;
  white-space: nowrap;
}

.benefit_new div.tit dl dd {
  color: #888888;
  font-size: 1.125em;
  line-height: 1.77777em;
  word-break: keep-all;
}

.benefit_new ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 40px;
  width: 100%;
}

.benefit_new ul li.item {
  width: 360px;
  height: 160px;
  padding: 0 1em 0 2em;
  background-color: #f2f2f2;
}

.benefit_new ul li.item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.benefit_new ul li.item div span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 82px;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.benefit_new ul li.item div span img {
  width: auto;
  height: 82px;
}

.benefit_new ul li.item div dl {
  padding-top: 2.25em;
}

.benefit_new ul li.item div dl dt {
  color: #222222;
  font-size: 1.25em;
  font-weight: bold;
}

.benefit_new ul li.item div dl dd {
  margin-top: 1em;
  color: #888888;
  font-size: 1em;
  line-height: 1.5em;
}

@media screen and (max-width: 1000px) {
  .benefit_new {
    text-align: center;
  }
  .benefit_new > div {
    display: block;
    text-align: center;
  }
  .benefit_new > div + div {
    margin-top: 3.75em;
  }
  .benefit_new ul {
    margin-top: 1em;
  }
}
@media screen and (max-width: 799px) {
  .benefit_new div.tit {
    width: auto;
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .benefit_new ul {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
/* 하단 바로가기 */
.service_info {
  padding: 3vw 5.625em;
  background-color: #222;
}

.service_info ul {
  max-width: 1300px;
  margin: 0 auto;
}

.service_info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 3px;
  color: #fff;
  font-size: 16px;
}

.service_info ul li + li {
  border-top: 1px solid #393939;
}

.service_info ul li div:first-of-type {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 1em;
}

.service_info ul li div:first-of-type p {
  font-weight: 500;
  font-size: 1.125em;
  word-break: keep-all;
}

.service_info ul li div:first-of-type span {
  display: block;
  margin-top: 1em;
  color: #888;
}

.service_info ul li div:last-of-type a {
  display: inline-block;
}

.service_info ul li a {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  -webkit-transition: 0.1s all ease;
  transition: 0.1s all ease;
}

.service_info ul li:hover a {
  background-color: #009ddf;
  border-color: #009ddf;
}

@media screen and (max-width: 1000px) {
  .service_info {
    padding: 10px 1.125em;
  }
  .service_info ul li {
    font-size: 14px;
  }
  .service_info ul li a {
    padding: 10px 20px;
  }
}
/* 개인정보 처리방침 */
pre.privacy {
  color: #333;
  white-space: normal;
  -webkit-transform: skewX(-0.03deg);
  transform: skewX(-0.03deg);
}

pre.privacy h2 {
  margin-bottom: 0.5em;
  font-size: 1.125em;
}

pre.privacy h3 {
  font-size: 1em;
}

pre.privacy p {
  font-size: 0.875em;
  line-height: 1.75em;
  word-break: keep-all;
  letter-spacing: 0;
}

pre.privacy table {
  width: 100%;
  font-size: 0.875em;
}

pre.privacy table th,
pre.privacy table td {
  padding: 1em;
  word-break: keep-all;
  border: 1px solid #ececec;
}

pre.privacy table th {
  background-color: #f4f4f4;
}

pre.privacy table tbody tr:nth-child(odd) {
  background-color: #fcfcfc;
}

pre.privacy strong {
  font-weight: bold;
}

pre.privacy .privacy_index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2em 3em;
  background-color: #f9f9f9;
  border: 1px solid #d8d8d8;
}

pre.privacy .privacy_index ul {
  width: 50%;
  padding: 1em;
}

pre.privacy .privacy_index ul li + li {
  margin-top: 1em;
}

pre.privacy .privacy_index ul li a {
  display: inline-block;
  color: var(--main-color);
  font-size: 0.875em;
  text-decoration: none;
  word-break: keep-all;
}

pre.privacy a.link_privacy_list {
  display: inline-block;
  position: relative;
  padding: 0.5em 2em 0.5em 1em;
  border-radius: 2px;
  background-color: #333;
  color: #fff;
  font-size: 0.75em;
  text-decoration: none;
  vertical-align: baseline;
}

pre.privacy a.link_privacy_list::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  border-width: 1.5px 1.5px 0 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

@media screen and (max-width: 800px) {
  pre.privacy .privacy_index {
    display: block;
  }
  pre.privacy .privacy_index ul {
    width: 100%;
    padding: 0;
  }
  pre.privacy .privacy_index ul + ul {
    margin-top: 1em;
  }
  pre.privacy a.link_privacy_list {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 690px) {
  pre.privacy .privacy_index {
    display: block;
    padding: 2em;
  }
  pre.privacy .privacy_index ul {
    width: 100%;
    padding: 0;
  }
  pre.privacy .privacy_index ul + ul {
    margin-top: 1em;
  }
}
/* 개인정보처리방침 버전 보기 */
.privacy_ver {
  margin-top: 1em;
  background-color: #fff;
}

.privacy_ver .select_item {
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.privacy_ver .select_item::before {
  content: "";
  position: absolute;
  top: 45%;
  right: 1em;
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  vertical-align: top;
}

.privacy_ver .select_item select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  height: 30px;
  padding: 0 2em 0 1em;
  background-color: transparent;
  border: 1px solid #ddd;
  color: #333;
  font-size: 0.875em;
}

.privacy_ver button {
  width: auto;
  height: 30px;
  padding: 0 1em;
  background-color: #333;
  border-radius: 1px;
  color: #fff;
  font-size: 0.875em;
}

/* 개인정보 처리 표시 라벨링 */
.privacy_label {
  margin-top: 1em;
  -webkit-transform: skewX(-0.03deg);
  transform: skewX(-0.03deg);
}

.privacy_label div.tit {
  text-align: center;
}

.privacy_label > strong {
  display: inline-block;
}

.privacy_label ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 40px 20px;
  gap: 40px 0;
  border: 1px solid #ddd;
}

.privacy_label ul li {
  width: 33.3%;
  text-align: center;
}

.privacy_label ul li a {
  display: inline-block;
  line-height: 1em;
  text-decoration: none;
}

.privacy_label ul li span.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 88px;
}

.privacy_label ul li span.icon img {
  max-height: 100%;
}

.privacy_label ul li span.txt {
  display: block;
  margin-top: 1em;
  color: #333;
  font-size: 0.875em;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .privacy_label ul {
    gap: 30px 0;
    padding: 20px;
  }
  .privacy_label ul li {
    width: 50%;
  }
}
/* // 개인정보 처리 표시 라벨링 */
/* 문의하기 팝업 */
.layer.customer {
  display: none;
}

.layer.customer .inner .content {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 2em;
  background-color: #fff;
  border-radius: 1em;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.layer.customer .inner .content div.btn button.btn_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  color: #fff;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
}

.layer.customer .inner .content div.btn button.btn_close::before,
.layer.customer .inner .content div.btn button.btn_close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 1.5px;
  background-color: #fff;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.layer.customer .inner .content div.btn button.btn_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.layer.customer .inner .content div.btn button.btn_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.layer.customer .inner .content div.btn button.btn_close span {
  color: transparent;
}

.layer.customer .ask {
  -webkit-transform: skewX(-0.03deg);
  transform: skewX(-0.03deg);
}

.layer.customer .ask .icon img {
  width: 75px;
}

.layer.customer .ask .title {
  margin-top: 1em;
}

.layer.customer .ask .title h2 {
  font-weight: bold;
  font-size: 1.5em;
}

.layer.customer .ask .title p {
  margin-top: 1em;
  line-height: 1.5em;
  word-break: keep-all;
}

.layer.customer .ask div.email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-top: 1em;
  padding: 1em;
  background-color: #f7f7f7;
  border-radius: 1em;
}

.layer.customer .ask div.email p {
  display: inline-block;
  line-height: 1.5em;
  text-align: left;
}

/* esg 사이버 신문고 */
.esgEmail {
  margin-top: 2em;
  text-align: center;
}

.esgEmail div {
  display: inline-block;
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.06);
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.06);
}

.esgEmail div span {
  display: inline-block;
  position: relative;
  color: #009ddf;
  font-weight: bold;
  line-height: 1.3;
}

.esgEmail div span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #009ddf;
}

.esgBox {
  margin-top: 60px;
  padding: 30px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 1px;
}

.esgBox strong {
  display: block;
}

.esgBox ul {
  margin-top: 1.5em;
}

.esgBox ul li {
  margin-top: 1em;
}

.esgBox ul li p {
  position: relative;
  padding-left: 0.75em;
}

.esgBox ul li p::before {
  content: "-";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* // esg 사이버 신문고 */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ani_new_dot {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ani_new_dot {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes ani_wiggle {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  50% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  75% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes ani_wiggle {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  50% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  75% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}