@charset "UTF-8";
@import url("http://fonts.googleapis.com/earlyaccess/nanumgothic.css");
/* 공통 CSS */
html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  overflow-x: hidden;
}

p, pre, form, span, div, table, td, ul, ol, li, dl, dt, dd, input, textarea, label, button, select {
  font-family: "Nanum Gothic", Sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.2px;
  font-size: 12px;
  color: #333;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-text-size-adjust: none;
  text-decoration-skip-ink: none;
  font-variant-numeric: tabular-nums;
}

h1, h2, h3, h4, h5, h6, p, form, span {
  margin: 0;
  padding: 0;
  font-weight: 300;
}

div, table {
  margin: 0;
  padding: 0;
  border-spacing: 0;
  border-collapse: collapse;
  border: none;
  -webkit-overflow-scrolling: touch;
}

table caption {
  width: 0;
  height: 0;
  font-size: 0;
  visibility: hidden;
}

ul, ol, li, td, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

em, i {
  font-style: normal;
}

a, span {
  display: inline-block;
}

img {
  border: 0;
  max-width: 100%;
}

span, div, a, b, strong, label {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

b, strong {
  word-wrap: break-word;
  word-break: break-all;
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
}

a:link, a:visited {
  text-decoration: none;
  cursor: pointer;
}

a.link {
  text-decoration: underline !important;
}

@media (min-width: 1025px) {
  a.tel-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}
a:hover, a:active {
  text-decoration: none;
}

u {
  text-decoration: none;
}

* {
  font-size: inherit;
  text-decoration-skip-ink: none;
}

::selection, ::-moz-selection, ::-webkit-selection {
  background: #111;
  color: #fff;
  text-shadow: none;
}

label {
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

input, select, textarea {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

input {
  color: #666;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0px;
  -webkit-appearance: none;
}
input:focus[type=text], input:focus[type=password] {
  color: #333 !important;
}
input::-ms-clear {
  display: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}
input:-moz-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
  -moz-text-fill-color: #000 !important;
}
input::-webkit-input-placeholder {
  color: #CECEDB !important;
}
input:-ms-input-placeholder {
  color: #CECEDB !important;
}
input:-moz-placeholder {
  color: #CECEDB !important;
}

textarea {
  color: #666;
  background: #fff;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
}
textarea:focus {
  color: #333 !important;
}
textarea::-webkit-input-placeholder {
  color: #CECEDB !important;
}
textarea:-ms-input-placeholder {
  color: #CECEDB !important;
}
textarea:-moz-placeholder {
  color: #CECEDB !important;
}

select {
  color: #666;
  cursor: pointer;
  font-size: inherit !important;
  font-family: inherit !important;
  -webkit-user-select: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}

@media screen and (max-width: 1024px) {
  body.if_open_menu {
    height: 100%;
    overflow: hidden !important;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
}
header.fixed {
  position: fixed;
}
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleY(0.5);
  transform-origin: bottom;
}
header .layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1660px;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}
header .layout .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 100%;
  padding-left: 10px;
}
header .layout .logo img {
  width: 100%;
  max-height: 90px;
  height: auto;
}
header .layout .menus {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1;
}
header .layout .menus ul {
  display: flex;
  gap: 60px;
}
header .layout .menus ul li {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
header .layout .menus ul li.w30 {
  width: 45px;
}
header .layout .menus ul li.w60 {
  width: 80px;
}
header .layout .menus ul li.w90 {
  width: 105px;
}
header .layout .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 90px;
}
header .layout .btn .icon {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1024px) {
  header {
    height: 70px;
  }
  header .layout {
    padding: 10px 0;
  }
  header .layout .menus {
    display: none;
  }
  header .layout .logo {
    width: 150px;
  }
  header .layout .btn .icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 50px;
  }
  header .layout {
    padding: 10px 0;
  }
  header .layout .menus {
    display: none;
  }
  header .layout .logo {
    width: 100px;
  }
  header .layout .btn .icon {
    width: 30px;
    height: 30px;
  }
}
header .open_menu {
  position: absolute;
  left: 0;
  top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(0, 37, 90, 0.9);
  padding-bottom: 40px;
}
header .open_menu .layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1660px;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}
header .open_menu .layout .fake_logo {
  width: 180px;
}
header .open_menu .layout .fake_btn {
  width: 90px;
}
header .open_menu .layout .menu_list {
  display: flex;
  justify-content: center;
  align-items: start;
  height: 100%;
  flex: 1;
  gap: 10px;
}
header .open_menu .layout .menu_list ul.w30 {
  width: 95px;
}
header .open_menu .layout .menu_list ul.w60 {
  width: 130px;
}
header .open_menu .layout .menu_list ul.w90 {
  width: 155px;
}
header .open_menu .layout .menu_list ul li {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
header .open_menu .layout .menu_list ul li + li {
  margin-top: 7px;
}
header .if_close {
  display: inherit;
}
header .btn .if_close.icon.menu.dark {
  display: none;
}
header .if_open {
  display: none;
}
header.open {
  background-color: #fff !important;
}
header.open::after {
  display: none;
}
header.open .if_close {
  display: none;
}
header.open .if_open {
  display: inherit;
}
header.open .btn .if_close.icon.menu {
  display: none !important;
}
header.open .btn .if_close.icon.close {
  display: inherit !important;
}
header.open .layout .menus ul li {
  color: #333;
}
header.over {
  background-color: rgba(255, 255, 255, 0.8);
}
header.over::after {
  display: none;
}
header.over .logo .if_close {
  display: none;
}
header.over .logo .if_open {
  display: inherit;
}
header.over .btn .if_close.icon.menu.white {
  display: none;
}
header.over .btn .if_close.icon.menu.dark {
  display: inherit;
}
header.over .layout .menus ul li {
  color: #333;
}
header .slide_menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #efefef;
  padding-bottom: 70px;
  left: 0;
  top: 70px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  header .slide_menu {
    top: 50px;
    padding-bottom: 50px;
  }
}
header .slide_menu > ul {
  display: block;
  z-index: 2;
  width: 100%;
  background: #efefef;
  padding: 0;
}
header .slide_menu > ul > li {
  font-size: 15px;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid #ccc;
  background: #fff;
}
header .slide_menu > ul > li > .line {
  display: flex;
  flex-direction: row;
  padding-right: 20px;
}
header .slide_menu > ul > li > .line > a {
  flex: 1;
  line-height: 50px;
  padding: 0 20px;
  color: #333;
  box-sizing: border-box;
}
header .slide_menu > ul > li > .line > .icon {
  width: 20px;
  height: 20px;
  margin: 10px;
  box-sizing: border-box;
}
header .slide_menu > ul > li > .line > .icon.plus {
  display: inline-block;
}
header .slide_menu > ul > li > .line > .icon.minus {
  display: none;
}
header .slide_menu > ul > li.open > .line > .icon.plus {
  display: none;
}
header .slide_menu > ul > li.open > .line > .icon.minus {
  display: inline-block;
}
header .slide_menu > ul > li.open > ul {
  display: block;
}
header .slide_menu > ul > li > ul {
  display: none;
  padding-bottom: 10px;
  margin-top: -5px;
}
header .slide_menu > ul > li > ul > li {
  position: relative;
  display: flex;
  flex-direction: row;
  line-height: 40px;
}
header .slide_menu > ul > li > ul > li > a {
  flex: 1;
  padding: 0 20px 0 32px;
  color: #666;
  font-size: 15px;
  font-weight: 300;
  box-sizing: border-box;
}
header .slide_menu > ul > li > ul > li > .icon {
  width: 20px;
  height: 20px;
  margin: 5px 10px;
}
header .slide_menu > ul > li > ul > li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 19px;
  width: 6px;
  height: 2px;
  background: #ccc;
}
header .slide_menu .foot {
  background: #efefef;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 20px;
}
header .slide_menu .foot .title {
  margin-top: 60px;
  font-size: 17px;
  font-weight: 600;
}
header .slide_menu .foot .tel {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}
header .slide_menu .foot .term {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 300;
}
header .if_open_mo {
  display: none;
}
@media screen and (max-width: 1024px) {
  header.open .if_open_mo {
    display: inherit;
  }
  header.open .open_menu {
    display: none !important;
  }
}

section {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
section .layout {
  z-index: 2;
  display: block;
  max-width: 1440px;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  box-sizing: border-box;
}

footer {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #222;
}
footer .layout {
  display: flex;
  flex-direction: row;
  gap: 50px;
  max-width: 1440px;
  width: 100%;
  padding: 30px 20px 50px 20px;
}
@media screen and (max-width: 768px) {
  footer .layout {
    flex-direction: column;
    gap: 20px;
  }
}
footer .layout .logo {
  display: block;
  width: 120px;
  margin: 0;
  padding: 0;
}
footer .layout .logo img {
  width: 100%;
}
footer .layout .info {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
  padding: 0;
}
footer .layout .info .txt {
  width: 100%;
}
footer .layout .info .txt ul {
  padding-left: 20px;
  display: block;
}
footer .layout .info .txt ul li {
  margin-right: 20px;
  margin-bottom: 4px;
  display: inline-block;
  list-style: disc;
  color: #a6a6a6;
  font-size: 12px;
  font-weight: 300;
}
footer .layout .info .txt ul li.block {
  display: block;
}
footer .layout .info .copyright {
  display: block;
  width: 100%;
  margin-top: 40px;
  color: #a6a6a6;
  font-size: 12px;
  font-weight: 300;
  padding-left: 20px;
}

.bg {
  position: static;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  overflow: visible;
}
.bg::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 0;
}
.bg.dark::after {
  background-color: rgba(0, 0, 0, 0.3);
}

.btn_top {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 25px;
  box-sizing: border-box;
}
.btn_top.show {
  display: block;
}

.between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.between.middle {
  align-items: center;
}
.between.end {
  align-items: end;
}
@media screen and (max-width: 768px) {
  .between {
    flex-direction: column;
  }
  .between.middle {
    align-items: start;
  }
  .between.end {
    align-items: start;
  }
}

.flex {
  display: flex;
}

.top {
  justify-content: flex-start;
}

.start {
  align-items: start;
}

/* 패딩/마진 */
.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.px0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.py0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mx0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.my0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.round0 {
  border-radius: 0px !important;
}

.gap0 {
  border-radius: 0px !important;
}

.p1 {
  padding: 1px !important;
}

.pt1 {
  padding-top: 1px !important;
}

.pr1 {
  padding-right: 1px !important;
}

.pl1 {
  padding-left: 1px !important;
}

.pb1 {
  padding-bottom: 1px !important;
}

.px1 {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.py1 {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

.m1 {
  margin: 1px !important;
}

.mt1 {
  margin-top: 1px !important;
}

.mr1 {
  margin-right: 1px !important;
}

.ml1 {
  margin-left: 1px !important;
}

.mb1 {
  margin-bottom: 1px !important;
}

.mx1 {
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.my1 {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.round1 {
  border-radius: 1px !important;
}

.gap1 {
  border-radius: 1px !important;
}

.p3 {
  padding: 3px !important;
}

.pt3 {
  padding-top: 3px !important;
}

.pr3 {
  padding-right: 3px !important;
}

.pl3 {
  padding-left: 3px !important;
}

.pb3 {
  padding-bottom: 3px !important;
}

.px3 {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.py3 {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

.m3 {
  margin: 3px !important;
}

.mt3 {
  margin-top: 3px !important;
}

.mr3 {
  margin-right: 3px !important;
}

.ml3 {
  margin-left: 3px !important;
}

.mb3 {
  margin-bottom: 3px !important;
}

.mx3 {
  margin-left: 3px !important;
  margin-right: 3px !important;
}

.my3 {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
}

.round3 {
  border-radius: 3px !important;
}

.gap3 {
  border-radius: 3px !important;
}

.p5 {
  padding: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.px5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.py5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.m5 {
  margin: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mx5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.my5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.round5 {
  border-radius: 5px !important;
}

.gap5 {
  border-radius: 5px !important;
}

.p7 {
  padding: 7px !important;
}

.pt7 {
  padding-top: 7px !important;
}

.pr7 {
  padding-right: 7px !important;
}

.pl7 {
  padding-left: 7px !important;
}

.pb7 {
  padding-bottom: 7px !important;
}

.px7 {
  padding-left: 7px !important;
  padding-right: 7px !important;
}

.py7 {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.m7 {
  margin: 7px !important;
}

.mt7 {
  margin-top: 7px !important;
}

.mr7 {
  margin-right: 7px !important;
}

.ml7 {
  margin-left: 7px !important;
}

.mb7 {
  margin-bottom: 7px !important;
}

.mx7 {
  margin-left: 7px !important;
  margin-right: 7px !important;
}

.my7 {
  margin-top: 7px !important;
  margin-bottom: 7px !important;
}

.round7 {
  border-radius: 7px !important;
}

.gap7 {
  border-radius: 7px !important;
}

.p10 {
  padding: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.px10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.py10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mx10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.my10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.round10 {
  border-radius: 10px !important;
}

.gap10 {
  border-radius: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.px15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.py15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.m15 {
  margin: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mx15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.my15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.round15 {
  border-radius: 15px !important;
}

.gap15 {
  border-radius: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.px20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.py20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mx20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.my20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.round20 {
  border-radius: 20px !important;
}

.gap20 {
  border-radius: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.px25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.py25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.m25 {
  margin: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mx25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.my25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.round25 {
  border-radius: 25px !important;
}

.gap25 {
  border-radius: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.px30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.py30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mx30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.my30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.round30 {
  border-radius: 30px !important;
}

.gap30 {
  border-radius: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.px35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.py35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.m35 {
  margin: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mx35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}

.my35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.round35 {
  border-radius: 35px !important;
}

.gap35 {
  border-radius: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.px40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.py40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mx40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.my40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.round40 {
  border-radius: 40px !important;
}

.gap40 {
  border-radius: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.px45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.py45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.m45 {
  margin: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mx45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}

.my45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.round45 {
  border-radius: 45px !important;
}

.gap45 {
  border-radius: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.px50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.py50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.m50 {
  margin: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mx50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.my50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.round50 {
  border-radius: 50px !important;
}

.gap50 {
  border-radius: 50px !important;
}

.p60 {
  padding: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.px60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.py60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.m60 {
  margin: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mx60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.my60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.round60 {
  border-radius: 60px !important;
}

.gap60 {
  border-radius: 60px !important;
}

.p65 {
  padding: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.px65 {
  padding-left: 65px !important;
  padding-right: 65px !important;
}

.py65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

.m65 {
  margin: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mx65 {
  margin-left: 65px !important;
  margin-right: 65px !important;
}

.my65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}

.round65 {
  border-radius: 65px !important;
}

.gap65 {
  border-radius: 65px !important;
}

.p70 {
  padding: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.px70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.py70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.m70 {
  margin: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mx70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

.my70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.round70 {
  border-radius: 70px !important;
}

.gap70 {
  border-radius: 70px !important;
}

.w100 {
  max-width: 100px;
  width: 100%;
}

.h100 {
  max-height: 100px;
  height: 100%;
}

.w200 {
  max-width: 200px;
  width: 100%;
}

.h200 {
  max-height: 200px;
  height: 100%;
}

.w300 {
  max-width: 300px;
  width: 100%;
}

.h300 {
  max-height: 300px;
  height: 100%;
}

.w400 {
  max-width: 400px;
  width: 100%;
}

.h400 {
  max-height: 400px;
  height: 100%;
}

.w450 {
  max-width: 450px;
  width: 100%;
}

.h450 {
  max-height: 450px;
  height: 100%;
}

.border {
  border: 1px solid #333;
}
.border.white {
  border: 1px solid #fff;
}
.border.blue {
  border: 1px solid #00255A;
}
.border.light {
  border: 1px solid #a6a6a6;
}

.border-none {
  border: 0 !important;
}

.border-b-none {
  border-bottom: 0 !important;
}

.border-t-none {
  border-top: 0 !important;
}

/* 아이콘 */
.icon {
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
}
.icon.s16 {
  width: 16px;
  height: 16px;
  background-size: 16px;
}
.icon.s18 {
  width: 18px;
  height: 18px;
  background-size: 18px;
}
.icon.s20 {
  width: 20px;
  height: 20px;
  background-size: 20px;
}
.icon.s24 {
  width: 24px;
  height: 24px;
  background-size: 24px;
}
.icon.s36 {
  width: 36px;
  height: 36px;
  background-size: 36px;
}
.icon.s50 {
  width: 50px;
  height: 50px;
  background-size: 50px;
}
.icon.s100 {
  width: 100px;
  height: 100px;
  background-size: 100px;
}
.icon.menu.white {
  background-image: url("/assets/images/icons/ic_menu_white.svg");
}
.icon.menu.dark {
  background-image: url("/assets/images/icons/ic_menu.svg");
}
.icon.close.dark {
  background-image: url("/assets/images/icons/ic_close.svg");
}
.icon.smile {
  background-image: url("/assets/images/icons/ic_smile.svg");
}
.icon.smile.blue {
  background-image: url("/assets/images/icons/ic_smile_blue.svg");
}
.icon.safety {
  background-image: url("/assets/images/icons/ic_safety.svg");
}
.icon.safety.blue {
  background-image: url("/assets/images/icons/ic_safety_blue.svg");
}
.icon.innovation {
  background-image: url("/assets/images/icons/ic_innovation.svg");
}
.icon.innovation.blue {
  background-image: url("/assets/images/icons/ic_innovation_blue.svg");
}
.icon.flag {
  background-image: url("/assets/images/icons/ic_flag.svg");
}
.icon.users {
  background-image: url("/assets/images/icons/ic_users.svg");
}
.icon.tree {
  background-image: url("/assets/images/icons/ic_tree.svg");
}
.icon.page-setup {
  background-image: url("/assets/images/icons/ic_page-setup.svg");
}
.icon.phone {
  background-image: url("/assets/images/icons/ic_phone.svg");
}
.icon.email {
  background-image: url("/assets/images/icons/ic_mail.svg");
}
.icon.location {
  background-image: url("/assets/images/icons/ic_location.svg");
}
.icon.location.blue {
  background-image: url("/assets/images/icons/ic_location_blue.svg");
}
.icon.plus {
  background-image: url("/assets/images/icons/ic_plus_white.svg");
}
.icon.plus.gray {
  background-image: url("/assets/images/icons/ic_plus_gray.svg");
}
.icon.minus.gray {
  background-image: url("/assets/images/icons/ic_minus_gray.svg");
}
.icon.next.gray {
  background-image: url("/assets/images/icons/ic_next_gray.svg");
}
.icon.time {
  background-image: url("/assets/images/icons/ic_calendar_time.svg");
}
.icon.up {
  background-image: url("/assets/images/icons/ic_up_blue.svg");
}
.icon.down {
  background-image: url("/assets/images/icons/ic_down_blue.svg");
}
.icon.swipe_vertical {
  background-image: url("/assets/images/icons/ic_swipe_vertical.svg");
}
.icon.gotop {
  background-image: url("/assets/images/icons/ic_gotop.svg");
}

footer {
  margin-top: 200px;
}

.visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 400px;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 90px;
  margin-bottom: 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .visual {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .visual {
    margin-bottom: 20px;
  }
}
.visual .title {
  position: relative;
  z-index: 2;
  display: block;
  height: 60px;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-top: 0px;
}
.visual .menu {
  display: block;
  z-index: 2;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.visual .menu .current_menu {
  display: none;
  flex-direction: row;
  gap: 2px;
  justify-content: start;
  align-items: center;
  width: 100%;
  color: #00255A;
  background: #fff;
  padding: 20px 20px;
  font-size: 15px;
  font-weight: 300;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}
.visual .menu .current_menu .select_box {
  position: relative;
  border-top: 1px solid #ccc;
  min-width: 120px;
}
.visual .menu .current_menu .select_box a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 28px;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  font-size: 13px;
}
.visual .menu .current_menu .select_box ul {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
}
.visual .menu .current_menu .select_box.open ul {
  display: block;
}
.visual .menu .current_menu .select_box .icon {
  width: 15px;
  height: 15px;
}
.visual .menu .current_menu .select_box .icon.down {
  display: inline-block;
}
.visual .menu .current_menu .select_box .icon.up {
  display: none;
}
.visual .menu .current_menu .select_box.open .icon.down {
  display: none;
}
.visual .menu .current_menu .select_box.open .icon.up {
  display: inline-block;
}
.visual .menu .tabmenu {
  position: relative;
  z-index: 2;
  display: block;
  height: 60px;
  gap: 1px;
}
.visual .menu .tabmenu ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1px;
}
.visual .menu .tabmenu ul li {
  min-width: 150px;
  height: 60px;
  box-sizing: border-box;
  background: #00255A;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.visual .menu .tabmenu ul li a {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  line-height: 64px;
}
.visual .menu .tabmenu ul li.hit {
  background: #fff;
  color: #333;
  font-weight: 900;
}
.visual.company {
  background: url("/assets/images/site/sub/visual01.jpg") center center;
}
.visual.business {
  background: url("/assets/images/site/sub/visual02.jpg") center center;
}
.visual.products {
  background: url("/assets/images/site/sub/visual03.jpg") center center;
}
.visual.rnd {
  background: url("/assets/images/site/sub/visual04.jpg") center center;
}
.visual.esg {
  background: url("/assets/images/site/sub/visual05.jpg") center center;
}
.visual.customer {
  background: url("/assets/images/site/sub/visual06.jpg") center center;
}

section {
  display: block;
  max-width: 1480px;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 0 20px;
  }
}
section .line_text {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  section .line_text {
    font-size: 14px;
  }
}
section .greeting {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: end;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  section .greeting {
    flex-direction: column-reverse;
  }
}
section .greeting > * {
  flex: 1;
}
section .greeting .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section .greeting .info .title {
  font-size: 20px;
  font-weight: 600;
  color: #00255A;
  margin-bottom: 20px;
}
section .greeting .info .paragraphs {
  font-size: 16px;
  font-weight: 300;
  color: #333;
}
section .greeting .info .paragraphs strong {
  font-weight: 600;
  color: #00255A;
}
@media screen and (max-width: 1024px) {
  section .greeting .info {
    gap: 10px;
  }
  section .greeting .info .title {
    font-size: 15px;
  }
  section .greeting .info .paragraphs {
    font-size: 13px;
  }
}
section .data {
  display: flex;
  flex-direction: column;
}
section .data .title {
  font-size: 22px;
  font-weight: 900;
  color: #333;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  section .data .title {
    margin-bottom: 20px;
  }
}
section .data dl + dl, section .data dl + div, section .data div + dl {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  section .data dl + dl, section .data dl + div, section .data div + dl {
    margin-top: 20px;
  }
}
section .data dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  width: fit-content;
  margin-bottom: 5px;
  word-wrap: break-word;
  word-break: keep-all;
}
section .data dl dt.em {
  position: relative;
  padding-left: 10px;
}
section .data dl dt.em::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #00255A;
  border-radius: 2px;
}
section .data dl dd {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  margin-top: 5px;
  padding-left: 20px;
  width: fit-content;
  word-break: keep-all;
  word-wrap: break-word;
  margin-left: 8px;
}
section .data dl dd strong {
  font-weight: 600;
}
section .data dl dd.em {
  margin-top: 14px;
  margin-bottom: 14px;
  padding-left: 0;
  color: #00255A;
  font-size: 20px;
  font-weight: 600;
}
section .data dl dd.em::before {
  content: none;
}
section .data dl dd.em.highlight {
  font-size: 32px;
  text-decoration: underline;
  text-decoration-color: rgba(0, 37, 90, 0.2);
  text-decoration-thickness: 6px;
  text-underline-offset: -3px;
}
section .data dl dd.em.highlight::before {
  display: block;
  position: absolute;
  top: 25px;
  left: 0px;
  width: calc(100% - 20px);
  height: 7px;
  margin: 0 10px;
  box-sizing: border-box;
  background: rgba(0, 37, 90, 0.2);
}
section .data dl dd.subtit {
  padding-left: 0;
  margin-left: 0;
}
section .data dl dd.subtit::before {
  content: none;
}
section .data dl dd + .subtit {
  margin-top: 10px;
}
section .data dl dd::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  margin-left: 8px;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #666;
}
@media screen and (max-width: 768px) {
  section .data dl dt {
    font-size: 15px !important;
  }
  section .data dl dd {
    font-size: 13px !important;
  }
}
section .data .box {
  padding: 20px;
  border: 1px solid #00255A;
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  section .data .box {
    flex-direction: column;
  }
  section .data .box .group {
    margin-bottom: 10px;
  }
  section .data .box .separate {
    display: none;
  }
}
section .data .box .group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
section .data .box .group .tit {
  color: #00255A;
  font-size: 20px;
  font-weight: 600;
}
section .data .box .group .img {
  display: flex;
  flex-direction: row;
  gap: 8px;
  max-width: fit-content;
}
section .data .box .group .img img {
  height: 100%;
  width: auto;
}
section .data .box.clear {
  padding: 0px;
  border: 0;
}
section .data .box.clear .img img {
  height: 140px;
}
section .data .box .separate {
  position: relative;
  width: 1px;
  background: #00255A;
  margin-left: 20px;
  margin-right: 20px;
}
section .data .items {
  display: flex;
  flex-direction: row;
  height: fit-content;
  padding: 50px 0;
  box-sizing: border-box;
}
section .data .items .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  flex: 1;
  padding: 0 30px;
  gap: 10px;
}
section .data .items .item + .item.div {
  border-left: 1px solid #00255A;
}
section .data .items .item.start {
  align-items: start;
}
section .data .items .item .icon {
  width: 70px;
  height: 70px;
}
section .data .items .item .txt {
  text-align: center;
  color: #00255A;
  width: fit-content;
}
section .data .items .item .txt .name {
  font-size: 22px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  word-break: keep-all;
}
section .data .items .item .txt .desc {
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  width: 130px;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 1024px) {
  section .data .items {
    flex-direction: column;
    padding: 0;
  }
  section .data .items .item {
    flex-direction: row;
    justify-content: start;
    padding: 10px 30px;
  }
  section .data .items .item + .item.div {
    border-top: 1px solid #00255A;
    border-left: 0;
  }
  section .data .items .item + .item.div.if_mo {
    border-top: 0;
  }
  section .data .items .item.if_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  section .data .items {
    width: 100%;
  }
}
section .data.management .items {
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  section .data.management .items {
    border: 0;
    padding: 0 !important;
  }
  section .data.management .items .item {
    padding: 0 !important;
  }
  section .data.management .items .item + .item.div {
    border-top: 0;
  }
  section .data.management .items + .items {
    margin-top: 40px;
  }
}
section .overview {
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  border-top: 2px solid #2F5496;
}
section .overview dl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  box-sizing: border-box;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  section .overview dl {
    flex-wrap: wrap; /* 줄바꿈 허용 */
  }
}
section .overview dl dt {
  width: 200px;
  padding: 20px;
  text-align: center;
  background: #F1F5F7;
  font-size: 15px;
  font-weight: 800;
  color: #333;
  box-sizing: border-box;
  height: max-content;
  height: -webkit-fill-available;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  section .overview dl dt {
    width: 120px;
    font-size: 13px;
    line-height: 20px;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  section .overview dl dt {
    flex-basis: 120px; /* 강제 줄바꿈 */
  }
}
section .overview dl dd {
  flex: 1;
  padding: 20px;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  box-sizing: border-box;
  height: max-content;
  height: -webkit-fill-available;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  section .overview dl dd {
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  section .overview dl dd {
    flex-basis: calc(100% - 120px); /* 강제 줄바꿈 */
  }
}
section .history {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  section .history {
    margin-top: 80px;
  }
}
section .history .range {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  section .history .range {
    flex-direction: column;
    gap: 0px;
    margin-top: 0;
  }
}
section .history .range .term {
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  font-size: 28px;
  font-weight: 900;
  color: #00255A;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  section .history .range .term {
    position: absolute;
    font-size: 22px;
    top: -35px;
    left: 20px;
  }
}
section .history .range .contents {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
section .history .range .contents .group {
  position: relative;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: start;
  gap: 40px;
  padding-left: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  section .history .range .contents .group {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  section .history .range .contents .group {
    flex-direction: column;
    gap: 5px;
  }
}
section .history .range .contents .group .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section .history .range .contents .group .info .segment {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
  color: #333;
}
section .history .range .contents .group .info .segment .year {
  width: 100px;
  font-weight: 300;
}
section .history .range .contents .group .info .segment .txt {
  flex: 1;
  word-break: keep-all;
}
@media screen and (max-width: 1024px) {
  section .history .range .contents .group .info .segment {
    font-size: 15px;
  }
  section .history .range .contents .group .info .segment .year {
    width: 70px;
  }
}
section .history .range .contents .group .org {
  width: 280px;
  font-size: 15px;
  font-weight: 300;
  color: #00255A;
  padding-top: 2px;
  word-break: keep-all;
}
@media screen and (max-width: 1024px) {
  section .history .range .contents .group .org {
    font-size: 13px;
    margin-left: 75px;
  }
}
section .history .range .contents .group .img {
  padding-top: 10px;
  flex-basis: 100%; /* 강제 줄바꿈 */
  margin-top: -40px;
  margin-left: 110px;
}
@media screen and (max-width: 1024px) {
  section .history .range .contents .group .img {
    margin-top: -40px;
    margin-left: 75px;
  }
}
@media screen and (max-width: 768px) {
  section .history .range .contents .group .img {
    margin-top: -10px;
  }
}
section .history .range .contents .group .img img {
  border-radius: 20px;
  overflow: hidden;
}
section .history .range .contents .group.blank {
  padding: 80px;
}
section .history .range .contents .group::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #2F6997;
}
section .history .range .contents .group.first::before {
  top: 14px;
}
section .history .range .contents .group.last::before {
  height: 14px;
}
section .history .range .contents .group.blank::after {
  content: none;
}
section .history .range .contents .group::after {
  position: absolute;
  display: block;
  flex: none;
  left: -7px;
  top: 14px;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 14px;
  border: 1px solid #2F6997;
  background: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
section .history .range .contents .group:hover::after {
  background: #2F6997;
}
@media screen and (max-width: 1024px) {
  section .business.data .items .item {
    padding: 20px 0;
  }
}
section .business.data .items .item.start {
  justify-content: start;
}
@media screen and (max-width: 1024px) {
  section .business.data .items .item.start {
    flex-direction: column;
  }
}
section .contents dl dt {
  position: relative;
  padding-left: 10px;
}
section .contents dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #00255A;
  border-radius: 2px;
}
section .contents dl dd {
  margin-top: 10px;
}
section .contents dl.info dt {
  padding-left: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
section .contents dl.info dt::before {
  content: none;
}
section .contents dl.info dd {
  font-size: 14px;
  font-weight: 300;
  margin-top: 5px;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  section .contents dl.info dt {
    font-size: 15px;
  }
  section .contents dl.info dd {
    font-size: 13px;
  }
}
section .products {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
section .products .product {
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 20px;
  border: 4px solid #e2e2e2;
}
@media screen and (max-width: 1024px) {
  section .products .product {
    flex-direction: column;
    padding: 30px;
    gap: 40px;
  }
}
section .products .product .photo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 580px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  section .products .product .photo {
    flex-wrap: wrap;
    overflow: hidden; /* 줄바꿈된 이미지는 보이지 않음 */
    height: auto;
    width: 100%;
  }
}
section .products .product .info {
  flex: 1;
}
section .products .product .info .title {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}
section .products .product .info .title .ko {
  font-size: 32px;
  font-weight: 600;
  color: #00255A;
}
section .products .product .info .title .en {
  font-size: 16px;
  font-weight: 300;
  color: #00255A;
  margin-top: 5px;
  padding-left: 5px;
}
@media screen and (max-width: 1024px) {
  section .products .product .info .title {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  section .products .product .info .title .ko {
    font-size: 20px;
  }
  section .products .product .info .title .en {
    font-size: 13px;
  }
}
section .products .product .info .specs .spec {
  font-size: 16px;
  line-height: 26px;
  word-break: keep-all;
  word-wrap: break-word;
}
section .products .product .info .specs .spec .list {
  position: relative;
  display: block;
  padding-left: 60px;
}
section .products .product .info .specs .spec .list::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 45px;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #666;
}
section .products .product .info .specs .spec + .spec {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  section .products .product .info .specs .spec {
    font-size: 13px;
    line-height: 16px;
  }
  section .products .product .info .specs .spec .list {
    padding-left: 20px;
  }
  section .products .product .info .specs .spec .list::before {
    top: 7px;
    left: 13px;
    width: 2px;
    height: 2px;
  }
}
section .process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto 50px auto 50px auto;
  grid-template-columns: auto 50px auto 50px auto;
  gap: 0;
  margin-top: 20px !important;
}
section .process.if_mo {
  display: none;
}
@media screen and (max-width: 1024px) {
  section .process.if_pc {
    display: none;
  }
  section .process.if_mo {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
section .process .card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  align-items: center;
  background: #F2F2F2;
  border-radius: 20px;
}
section .process .card .info {
  margin: 0;
}
section .process .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #00255A;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  border-radius: 100px;
}
section .process .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
section .rnd {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}
section .rnd .caption {
  position: absolute;
  top: 494px;
  left: 50%;
  margin-left: -190px;
  margin-top: -190px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 380px;
  border-radius: 380px;
  background: #fff;
}
section .rnd .caption .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 360px;
  height: 360px;
  border-radius: 360px;
  background: #00255A;
}
section .rnd .caption {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
}
section .rnd .card {
  border: 1px solid #00255A;
  border-radius: 20px;
  padding: 35px;
}
section .rnd .card .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
section .rnd .card .title .icon {
  width: 80px;
  height: 80px;
}
section .rnd .card .title .name {
  color: #00255A;
  font-size: 32px;
  font-weight: 600;
}
section .rnd .card .img {
  margin-top: 20px;
  text-align: center;
}
section .rnd .rnd_title {
  display: none;
}
@media screen and (max-width: 1024px) {
  section .rnd {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  section .rnd .caption {
    display: none;
  }
  section .rnd .rnd_title {
    display: block;
    margin-top: 20px;
    background: #00255A;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
  }
  section .rnd .card {
    padding: 20px;
    border-radius: 0;
    border-top: 0;
  }
  section .rnd .card .title {
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin-bottom: 0px;
    gap: 3px;
  }
  section .rnd .card .title .name {
    font-size: 16px;
  }
  section .rnd .card .title .icon {
    width: 16px;
    height: 16px;
  }
  section .rnd .card dl {
    margin-top: 10px;
  }
  section .rnd .card dl .ml10, section .rnd .card dl .ml70 {
    margin-left: 0 !important;
  }
  section .rnd .card dl dd {
    margin-left: 0;
  }
  section .rnd .if_pc {
    display: none;
  }
}
section .esg {
  margin-top: 80px;
}
section .esg .title {
  text-align: center;
  font-size: 60px;
  font-weight: 900;
  color: #00255A;
}
@media screen and (max-width: 1024px) {
  section .esg {
    margin-top: 40px;
  }
  section .esg .title {
    font-size: 30px;
  }
}
section .esg .items {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
section .esg .items .item {
  flex: 1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
}
section .esg .items .item .name {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 40px 0 100px;
}
section .esg .items .item .img {
  position: relative;
  height: 90px;
}
section .esg .items .item .img .circle {
  position: absolute;
  top: -50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -65px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 100px;
  padding: 20px;
}
section .esg .items .item .data {
  padding: 20px;
}
section .esg .items .item .data dl dt {
  font-size: 18px;
}
section .esg .items .item .data dl dd {
  font-size: 16px;
  margin-left: 0;
  padding-left: 18px;
}
section .esg .items .item .data dl dd::before {
  margin-left: 4px;
}
section .esg .items .item.green {
  border: 1px solid #066E00;
}
section .esg .items .item.green .name {
  background: #066E00;
}
section .esg .items .item.green .img .circle {
  border: 2px solid #066E00;
}
section .esg .items .item.blue {
  border: 1px solid #00255A;
}
section .esg .items .item.blue .name {
  background: #00255A;
}
section .esg .items .item.blue .img .circle {
  border: 2px solid #00255A;
}
section .esg .items .item.dark {
  border: 1px solid #333;
}
section .esg .items .item.dark .name {
  background: #333;
}
section .esg .items .item.dark .img .circle {
  border: 2px solid #333;
}
@media screen and (max-width: 1024px) {
  section .esg .items {
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }
  section .esg .items .item .name {
    font-size: 20px;
    padding: 20px 0 40px;
  }
  section .esg .items .item .img {
    height: 50px;
  }
  section .esg .items .item .img .circle {
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: -37px;
    margin-left: -37px;
    padding: 10px;
  }
  section .esg .items .item .img .circle img {
    height: 50px;
  }
  section .esg .items .item .data {
    padding-top: 0;
  }
  section .esg .items .item .data dl + dl {
    margin-top: 20px;
  }
}
section .summery {
  margin-top: 40px;
  border: 1px solid #00255A;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  section .summery {
    margin-top: 20px;
  }
}
section .summery .line {
  display: flex;
  flex-direction: column;
  width: 50%;
}
section .summery .line .name {
  display: flex;
  height: 100px;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: #00255A;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
section .summery .line .data {
  display: block;
  padding: 20px;
  flex: 1;
}
section .summery .line .data dl dd {
  font-size: 16px;
  margin-left: 0;
  padding-left: 18px;
}
section .summery .line .data dl dd::before {
  margin-left: 4px;
}
section .summery .line:first-child .name {
  border-right: 1px solid #fff;
}
section .summery .line:first-child .data {
  border-right: 1px solid #00255A;
}
@media screen and (max-width: 1024px) {
  section .summery {
    flex-direction: column;
    border-radius: 0;
  }
  section .summery .line {
    flex-direction: column;
    width: 100%;
  }
  section .summery .line .name {
    height: auto;
    width: 100%;
    padding: 15px;
    border: 0 !important;
    box-sizing: border-box;
    font-size: 15px;
  }
  section .summery .line .data {
    border: 0 !important;
    font-size: 13px;
    padding: 15px;
  }
  section .summery .line .data dl dt, section .summery .line .data dl dd {
    font-size: 13px;
  }
}
section .service .items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
section .service .items .item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  gap: 15px;
  flex: 1;
  height: 200px;
  background-color: #2F6997;
}
section .service .items .item .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 15px;
}
section .service .items .item .txt .name {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  line-height: 22px;
}
section .service .items .item .txt .name .icon {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
section .service .items .item .txt .desc {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section .service .items {
    flex-direction: column;
    gap: 10px;
  }
  section .service .items .item {
    padding: 20px;
    border-radius: 10px;
    gap: 0;
  }
  section .service .items .item .txt {
    flex-direction: row;
    justify-content: start;
  }
  section .service .items .item .txt .name {
    justify-content: start;
    font-size: 15px;
    width: 90px;
  }
  section .service .items .item .txt .name .icon {
    width: 20px;
    height: 20px;
  }
  section .service .items .item .txt .desc {
    text-align: left;
    font-size: 13px;
    flex: 1;
    word-wrap: break-word;
    word-break: keep-all;
  }
}
section .service .data {
  margin-top: 60px;
}
section .service .map_area {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1440/620;
}
@media (max-width: 1024px) {
  section .service .map_area {
    aspect-ratio: 6/4; /* 모바일에서 정사각형으로 */
  }
}
@media (max-width: 768px) {
  section .service .map_area {
    aspect-ratio: 1/1; /* 모바일에서 정사각형으로 */
  }
}
section .service .map_area > div {
  width: 100% !important;
  height: 100% !important;
}
section .service .map_area .root_daum_roughmap {
  width: 100%;
}
section .service .map_area .root_daum_roughmap .wrap_map {
  width: 100% !important;
  height: 100% !important;
  height: calc(100% - 32px) !important;
}
section .service .map_area .root_daum_roughmap .cont {
  display: none;
}
section .service .map_area::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: calc(100% - 32px);
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  background-image: radial-gradient(#eee 1px, transparent 1px);
  background-size: 6px 6px;
}

@media screen and (max-width: 768px) {
  .visual {
    height: 300px;
  }
  .visual .title {
    height: 32px;
    font-size: 30px;
  }
  .visual .menu .current_menu {
    display: flex;
  }
  .visual .menu .tabmenu {
    display: none;
  }
}
/* 에디터 Override */
.editor {
  background: transparent;
  margin: 0;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.editor span, .editor b, .editor p, .editor em, .editor strong, .editor div {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.editor p {
  margin: 0;
  padding: 0;
  min-height: 20px;
}
.editor ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 1em;
  margin-left: 0;
}
.editor ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1em;
  margin: 0 1em;
}
.editor ol li {
  display: list-item;
}
.editor span {
  display: inline;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}
.editor em {
  font-style: italic;
}
.editor b {
  font-weight: 600;
  font-size: inherit;
  font-style: inherit;
}
.editor strong {
  font-weight: 600;
  font-size: inherit;
  font-style: inherit;
}
.editor img {
  max-width: 100% !important;
}
.editor table {
  margin: inherit;
  padding: inherit;
  border: inherit;
  border-collapse: collapse;
  border-spacing: inherit;
  background-image: inherit;
  border-color: inherit;
  width: 100%;
}
.editor div, .editor img {
  width: 100% !important;
  float: left;
  overflow: hidden;
}

.editor_content {
  background: transparent;
  min-height: 350px;
  padding: 10px;
  margin: 0;
  color: #666;
  word-wrap: break-word;
  word-break: break-all;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.editor_content span, .editor_content b, .editor_content p, .editor_content em, .editor_content strong, .editor_content div {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.editor_content p {
  margin: 0;
  padding: 0;
  font-family: inherit, sans-serif;
  font-weight: 400;
}
.editor_content ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 1em;
  margin-left: 0;
}
.editor_content ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1em;
  margin-left: 0;
}
.editor_content span {
  display: inline;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}
.editor_content em {
  font-style: italic;
}
.editor_content b {
  font-weight: 600;
  font-size: inherit;
  font-style: inherit;
}
.editor_content strong {
  font-weight: 600;
  font-size: inherit;
  font-style: inherit;
}
.editor_content img {
  max-width: 100% !important;
}
.editor_content table {
  margin: inherit;
  padding: inherit;
  border: inherit;
  border-collapse: collapse;
  border-spacing: inherit;
  background-image: inherit;
  border-color: inherit;
  width: 100%;
}
.editor_content div, .editor_content img {
  width: 100% !important;
  float: left;
  overflow: hidden;
}

/* 에디터 동영상 자동사이징 패치 : 2019-03-05 */
.iframe_wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}
.iframe_wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}
.iframe_wrap .iframe_wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box;
  padding-bottom: 0px;
}
