@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");
}

.layout_popup {
  position: relative;
  max-width: 1440px;
  display: block;
  margin: 0 auto;
}
.layout_popup .popup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  opacity: 1;
  scale: 1;
}
.layout_popup .popup.close {
  opacity: 0;
  scale: 0;
}
.layout_popup .popup .content {
  position: relative;
  max-width: 100%;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background: #fff;
  background-size: cover !important;
  overflow: auto;
  max-height: fit-content !important;
}
.layout_popup .popup .content .upper_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.layout_popup .popup .btns {
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 0;
  box-sizing: border-box;
}
.layout_popup .popup .btns > a {
  padding: 10px;
  font-size: 12px;
  color: #333;
  box-sizing: border-box;
}
.layout_popup .popup .btns > a.close {
  width: 50%;
  text-align: center;
}
.layout_popup .popup .btns > a.today {
  flex: 1;
  text-align: center;
  border-right: 1px solid #ddd;
}

section.main {
  min-height: 100%;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 90px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  section.main {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  section.main {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
section.main .layout {
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: space-around;
  box-sizing: border-box;
}
section.main .layout .title {
  display: block;
  width: 100%;
  height: fit-content;
  text-align: center;
}
section.main .layout .title .tit {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  word-break: keep-all;
  word-wrap: break-word;
}
section.main .layout .title .sub {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  word-break: keep-all;
  word-wrap: break-word;
}
@media screen and (max-width: 1024px) {
  section.main .layout .title .tit {
    font-size: 36px;
  }
  section.main .layout .title .sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  section.main .layout .title .tit {
    font-size: 24px;
  }
  section.main .layout .title .sub {
    font-size: 13px;
  }
}
section.main.visual {
  background: url("/assets/images/site/main/visual.jpg") center center;
  position: relative;
}
section.main.visual .txt {
  position: absolute;
  top: 22%;
  left: 360px;
  padding: 0 auto;
  display: flex;
  flex-direction: column;
  width: 640px;
}
@media screen and (max-width: 1440px) {
  section.main.visual .txt {
    top: 22%;
    left: 260px;
  }
}
@media screen and (max-width: 1024px) {
  section.main.visual .txt {
    top: 22%;
    left: 50%;
    margin-left: -320PX;
  }
}
@media screen and (max-width: 768px) {
  section.main.visual .txt {
    top: 120px;
    left: 50%;
    width: 330px;
    margin-left: -160PX;
  }
}
section.main.visual .txt .slogan {
  position: relative;
  overflow: hidden;
  display: inline-block;
  height: 50px;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  padding: 0;
  word-wrap: break-word;
  word-break: keep-all;
}
section.main.visual .txt .slogan > span {
  display: inline-flex;
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  margin-top: 60px;
  opacity: 0;
  vertical-align: top;
  float: left;
}
section.main.visual .txt .slogan > span.show {
  margin-top: 0px;
  opacity: 1;
}
section.main.visual .txt .slogan.open > span {
  height: auto;
}
@media screen and (max-width: 768px) {
  section.main.visual .txt .slogan {
    font-size: 20px;
    height: 23px;
  }
}
section.main.visual .txt .logo {
  margin-top: 10px;
}
section.main.visual .txt .logo img {
  height: 50px;
  position: relative;
  top: 0;
  left: -200%;
  opacity: 1;
  scale: 1;
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
}
section.main.visual .txt .logo img.show {
  top: 0;
  left: 0;
  opacity: 1;
  scale: 1;
}
section.main.visual .txt#id_main_visual_text_v2 {
  overflow: hidden;
  max-width: 840px;
  width: auto;
}
section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans {
  position: relative;
  width: fit-content;
  left: -1000px;
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  opacity: 1;
  scale: 1;
}
section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans.show {
  left: 0;
}
section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans.big {
  scale: 2;
  margin-top: 20px;
  margin-left: 78px;
  transition: all 800ms ease-out;
  -webkit-transition: all 800ms ease-out;
}
@media screen and (max-width: 768px) {
  section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans.big {
    margin-top: 10px;
    margin-left: 40px;
  }
}
section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans .slogan {
  opacity: 1;
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  float: left;
}
section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans .slogan > span {
  margin-top: 0px;
  opacity: 1;
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  font-weight: bolder;
}
section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans .slogan > span.ex {
  padding-top: 2px;
  padding-right: 2px;
}
section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans .slogan > span.ex img {
  height: 33px;
}
section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans .slogan > span.hide {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans .slogan {
    font-size: 20px;
  }
  section.main.visual .txt#id_main_visual_text_v2 .wrap_slogans .slogan > span.ex > img {
    height: 16px;
  }
}
section.main.vision {
  background: url("/assets/images/site/main/vision.jpg") center center;
}
section.main.vision .layout .title {
  margin-top: 0;
}
section.main.vision .layout .items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
}
section.main.vision .layout .items .item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 15px;
  flex: 1;
  height: 180px;
  background-color: rgba(0, 0, 0, 0.5);
}
section.main.vision .layout .items .item .icon {
  width: 100px;
  height: 100px;
}
section.main.vision .layout .items .item .txt {
  flex: 1;
}
section.main.vision .layout .items .item .txt .name {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
section.main.vision .layout .items .item .txt .desc {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-top: 5px;
  word-wrap: break-word;
  word-break: keep-all;
}
section.main.vision .layout .items .item .ov {
  display: none;
  flex: 1;
}
section.main.vision .layout .items .item .ov ul {
  padding-left: 20px;
}
section.main.vision .layout .items .item .ov ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding: 5px 0;
  list-style: disc;
}
section.main.vision .layout .items .item:hover {
  background-color: #2F6997;
}
section.main.vision .layout .items .item:hover .txt {
  display: none;
}
section.main.vision .layout .items .item:hover .ov {
  display: block;
}
@media screen and (max-width: 1024px) {
  section.main.vision .layout .items {
    flex-direction: column;
  }
  section.main.vision .layout .items .item {
    pointer-events: none;
  }
  section.main.vision .layout .items .item .icon {
    width: 70px;
    height: 70px;
  }
  section.main.vision .layout .items .item .txt .name {
    font-size: 20px;
  }
  section.main.vision .layout .items .item .txt .desc {
    font-size: 14px;
  }
}
section.main.company {
  background: url("/assets/images/site/main/company.jpg") center center;
}
section.main.company .contents {
  display: flex;
  flex-direction: row;
  gap: 120px;
  justify-content: center;
  align-items: center;
}
section.main.company .contents .img {
  display: block;
  background-color: #fff;
  border-radius: 400px;
  width: fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  section.main.company .contents .img {
    display: none;
  }
}
section.main.company .contents .desctipt {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 500px;
  padding: 40px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}
section.main.company .contents .desctipt ul {
  padding-left: 20px;
  box-sizing: border-box;
}
section.main.company .contents .desctipt ul li {
  list-style: disc;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
section.main.company .contents .desctipt ul li.title {
  list-style: none;
  text-align: left;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-left: -20px;
  margin-bottom: 5px;
}
section.main.company .contents .desctipt ul li.icon {
  display: none;
}
@media screen and (max-width: 1024px) {
  section.main.company .contents .desctipt {
    background-color: transparent;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  section.main.company .contents .desctipt {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1024px) {
  section.main.company .contents .desctipt ul {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    padding-left: 120px;
    width: 100%;
  }
  section.main.company .contents .desctipt ul li {
    font-size: 12px;
  }
  section.main.company .contents .desctipt ul li.title {
    font-size: 16px;
  }
  section.main.company .contents .desctipt ul li.icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 100%;
    background: #1c3355;
  }
  section.main.company .contents .desctipt ul li.icon.gray {
    background: #dedee0;
  }
  section.main.company .contents .desctipt ul li.icon img {
    width: auto;
    height: 50px;
  }
}
@media screen and (min-width: 1025px) and (max-height: 750px) {
  section.main.company .contents .img {
    display: none;
  }
  section.main.company .contents .desctipt {
    background-color: transparent;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2칸 */
    gap: 20px; /* 간격 선택 */
  }
  section.main.company .contents .desctipt ul {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    padding-left: 120px;
    width: 100%;
  }
  section.main.company .contents .desctipt ul:last-child:nth-child(odd) {
    grid-column: 1/span 2; /* 2칸 전체 차지 */
    justify-self: center; /* 수평 가운데 */
    width: 100%; /* 가운데에 자연스럽게 */
  }
  section.main.company .contents .desctipt ul li {
    font-size: 12px;
  }
  section.main.company .contents .desctipt ul li.title {
    font-size: 16px;
  }
  section.main.company .contents .desctipt ul li.icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 100%;
    background: #1c3355;
  }
  section.main.company .contents .desctipt ul li.icon.gray {
    background: #dedee0;
  }
  section.main.company .contents .desctipt ul li.icon img {
    width: auto;
    height: 50px;
  }
}
section.main.business {
  background: url("/assets/images/site/main/business.jpg") center center;
}
section.main.business .contents {
  display: flex;
  flex-direction: row;
  gap: 80px;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 1440px) {
  section.main.business .contents {
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  section.main.business .contents {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  section.main.business .contents {
    padding: 0;
  }
}
section.main.business .contents .img {
  display: block;
  width: 418px;
  height: fit-content;
}
@media screen and (max-width: 1440px) {
  section.main.business .contents .img {
    display: none;
  }
}
section.main.business .contents .desctipt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  section.main.business .contents .desctipt {
    width: 100%;
  }
}
section.main.business .contents .desctipt ul {
  position: relative;
  width: 370px;
  height: 180px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  padding-left: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  section.main.business .contents .desctipt ul {
    height: 160px;
    width: auto;
    padding-left: 100px;
  }
}
@media screen and (max-width: 1024px) {
  section.main.business .contents .desctipt ul {
    height: 140px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  section.main.business .contents .desctipt ul {
    height: auto;
  }
}
section.main.business .contents .desctipt ul li {
  list-style: disc;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
section.main.business .contents .desctipt ul li.title {
  list-style: none;
  text-align: left;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-left: -20px;
  margin-bottom: 10px;
}
section.main.business .contents .desctipt ul li.icon {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  align-items: center;
  justify-content: center;
}
section.main.business .contents .desctipt ul li.icon img {
  width: 45px;
}
section.main.business .contents .desctipt ul li.icon.bg01 {
  background: #263751;
}
section.main.business .contents .desctipt ul li.icon.bg02 {
  background: #384c65;
}
section.main.business .contents .desctipt ul li.icon.bg03 {
  background: #98a4b2;
}
section.main.business .contents .desctipt ul li.icon.bg04 {
  background: #43586d;
}
section.main.business .contents .desctipt ul li.icon.bg05 {
  background: #30445d;
}
@media screen and (max-width: 1440px) {
  section.main.business .contents .desctipt ul li.icon {
    display: flex;
  }
}
@media screen and (max-width: 1440px) {
  section.main.business .contents .desctipt ul li {
    font-size: 14px;
  }
  section.main.business .contents .desctipt ul li.title {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  section.main.business .contents .desctipt ul li {
    font-size: 12px;
  }
  section.main.business .contents .desctipt ul li br {
    display: none;
  }
  section.main.business .contents .desctipt ul li.title {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) and (max-height: 750px) {
  section.main.business .contents {
    flex-direction: column;
    gap: 20px;
  }
  section.main.business .contents .desctipt {
    width: 100%;
    flex-direction: row;
  }
  section.main.business .contents .desctipt ul {
    flex: 1;
    height: auto;
  }
}
section.main.product {
  background: url("/assets/images/site/main/product.jpg") center center;
}
section.main.product .items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
section.main.product .items .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  gap: 2px;
  flex: 1;
}
section.main.product .items .item .photo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
}
section.main.product .items .item .photo img {
  max-width: 200px;
  max-height: 270px;
}
section.main.product .items .item .name {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 160px;
  color: #00255A;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
  word-wrap: break-word;
  word-break: keep-all;
}
section.main.product .items .item .name .spec {
  display: none;
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  margin-top: 5px;
  word-wrap: break-word;
  word-break: keep-all;
}
@media screen and (min-width: 1025px) and (max-height: 750px) {
  section.main.product .items {
    margin: 0 80px;
  }
  section.main.product .items .item .photo img {
    max-width: 100px;
    max-height: 135px;
  }
  section.main.product .items .item .name {
    font-size: 15px;
    line-height: normal;
  }
}
@media screen and (max-width: 1024px) {
  section.main.product .items {
    flex-direction: column;
    margin-top: 80px;
  }
  section.main.product .items .item {
    flex-direction: row;
    height: auto;
    min-height: 120px;
    flex: auto;
  }
  section.main.product .items .item .photo {
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
  }
  section.main.product .items .item .photo img {
    width: 100%;
  }
  section.main.product .items .item .name {
    width: 100%;
    height: 100%;
    font-size: 14px;
    padding: 0 20px;
    text-align: left;
    flex-direction: column;
    align-items: start;
    line-height: normal;
  }
  section.main.product .items .item .name .spec {
    display: block;
  }
  section.main.product .items .item .name > br {
    display: none;
  }
}
section.main.rnd {
  background: url("/assets/images/site/main/rnd.jpg") center center;
}
@media screen and (min-width: 1025px) and (max-height: 750px) {
  section.main.rnd > .layout > .title {
    display: none;
  }
  section.main.rnd .contents {
    margin-top: 0 !important;
  }
}
section.main.rnd .contents {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 80px;
}
section.main.rnd .contents .items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}
section.main.rnd .contents .items + .items {
  margin-top: 20px;
}
section.main.rnd .contents .items .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 30px 60px;
  background-color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  gap: 10px;
  box-sizing: border-box;
}
section.main.rnd .contents .items .item .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
section.main.rnd .contents .items .item .title .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}
section.main.rnd .contents .items .item .title .name {
  width: 100%;
  color: #00255A;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  word-break: keep-all;
  word-wrap: break-word;
}
section.main.rnd .contents .items .item .title .name > span {
  display: inline-block;
}
section.main.rnd .contents .items .item .group {
  width: 100%;
  box-sizing: border-box;
}
section.main.rnd .contents .items .item .group ul {
  width: 100%;
  padding-left: 40px;
  box-sizing: border-box;
}
section.main.rnd .contents .items .item .group ul li {
  list-style: disc;
  color: #00255A;
  font-size: 16px;
  font-weight: 300;
  box-sizing: border-box;
}
@media screen and (max-width: 1440px) {
  section.main.rnd .contents .items .item .title .icon {
    width: 40px;
    height: 40px;
  }
  section.main.rnd .contents .items .item .title .name {
    font-size: 18px;
  }
  section.main.rnd .contents .items .item .group ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  section.main.rnd .contents .items .item .title .icon {
    width: 30px;
    height: 30px;
  }
  section.main.rnd .contents .items .item .title .name {
    font-size: 18px;
  }
  section.main.rnd .contents .items .item .group ul {
    padding-left: 30px;
  }
  section.main.rnd .contents .items .item .group ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  section.main.rnd .contents .items .item .group ul {
    padding-left: 20px;
  }
}
section.main.rnd .contents .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  background-color: #00255A;
  color: #fff;
  font-size: 46px;
  font-weight: 600;
  text-align: center;
  line-height: 56px;
}
@media screen and (max-width: 1024px) {
  section.main.rnd .contents .items {
    flex-direction: column;
  }
  section.main.rnd .contents .items .item {
    flex-direction: row;
    padding: 20px;
  }
  section.main.rnd .contents .items .item .title {
    max-width: 180px;
    min-width: 68px;
    width: 10%;
  }
  section.main.rnd .contents .items .item .title .name > span {
    display: block;
  }
  section.main.rnd .contents .circle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  section.main.rnd .contents .items .item {
    flex-direction: column;
  }
  section.main.rnd .contents .items .item .title {
    width: 100%;
  }
  section.main.rnd .contents .items .item .title .name > span {
    display: inline-block;
  }
}
section.main.service {
  background: url("/assets/images/site/main/service.jpg") center center;
}
section.main.service .items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
section.main.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: rgba(0, 0, 0, 0.5);
}
section.main.service .items .item .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 10px;
}
section.main.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.main.service .items .item .txt .name .icon {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
section.main.service .items .item .txt .desc {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}
section.main.service .items .item .txt .plus {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  section.main.service .items {
    flex-direction: column;
  }
  section.main.service .items .item {
    padding: 25px 0;
  }
  section.main.service .items .item .txt .name {
    font-size: 18px;
  }
  section.main.service .items .item .txt .name .icon {
    width: 20px;
    height: 20px;
  }
  section.main.service .items .item .txt .desc {
    font-size: 12px;
  }
  section.main.service .items .item .txt .plus {
    width: 30px;
    height: 30px;
  }
}

#menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 9;
  color: #fff;
  list-style: none;
  padding: 0;
  right: 20px;
  left: auto;
  top: 50%;
  margin-top: -52px;
  text-align: right;
  gap: 15px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  #menu {
    display: none;
  }
}
#menu li {
  /* justify-content: center; */
  /* display: flex;
  flex-direction: row-reverse;
  align-items: center; */
  display: flex;
  height: 20px;
  gap: 20px;
  justify-content: end;
}
#menu li a {
  display: flex !important;
  flex-direction: row-reverse;
  align-items: center;
  color: #ddd;
  font-size: 12px;
  text-decoration: none;
  /* width: 100px; */
  box-sizing: border-box;
  padding: 10px auto;
  gap: 10px;
}
#menu li a::before {
  content: "";
  display: flex;
  width: 10px;
  height: 1px;
  background: #ddd;
}
#menu .active a {
  /* display: flex;
  flex-direction: row-reverse; */
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
#menu .active a::before {
  height: 2px;
  background: #fff;
}

.section_footer {
  height: auto !important;
}

.fp-table {
  height: auto !important;
  display: block !important;
}
.fp-table .fp-tableCell {
  height: auto !important;
  display: block !important;
}

/* 에디터 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;
}
