@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800&display=swap'); */

/* 주요색상 */
:root {
  --page-point-color:#e60012;
  --page-secondary-color:#005d68;
  --page-dark-color: #555;
}

#site {
  padding-top: 0;
  font-size: 16px;
  font-family: 'Roboto','notokr', sans-serif;
}

a, button {
  transition: all ease .15s;
  -webkit-transition: all ease .15s;
  -moz-transition: all ease .15s;
  -ms-transition: all ease .15s;
  -o-transition: all ease .15s;
}

a,
a:hover,
a:focus {
  color: inherit;
}

a[href^="mailto"] {
  color: inherit;
}

p {
  line-height: 1.5em;
}

.btn.btn-primary {
  background-color: var(--page-point-color);
  border-color: var(--page-point-color);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  color: var(--page-point-color);
  background-color: transparent;
}

h1, h2, h3, h4, h5, h6, p, li, td, dt, dd, figcaption {
  word-break: keep-all;
}

/* 페이지 준비중입니다 */
.wrap-prepare-page {
  width: 100%;
  display: inline-block;
  padding: 15px;
  background-color: #f7f7f7;
}
.prepare-page {
  padding: 70px;
  text-align: center;
}
.prepare-page > .exclamation {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto;
  padding: 33px;
  line-height: 1em;
  background: #999;
  border-radius: 100%;
}
.prepare-page > .exclamation::before {
  content: '\f12a';
  top: 0;
  font-size: 32px;
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  color: #fff;
}
.prepare-page > h4 {
  margin: 20px 0 22px;
  font-size: 28px;
  color: #444;
}
.prepare-page > h4 strong {
  font-weight: 700;
}
.prepare-page > p {
  margin: 0;
  line-height: 1.4em;
  color: #666;
}

/* 불필요 항목 삭제 */
.navbar .caret{display:none;}

/* 상단 메뉴 */
.navbar-inverse{background:#fff;position:static;margin-bottom:0;border:0}

.navbar-inverse .navbar-brand img{height: 42px;margin-top: 9px;}

.navbar-inverse .navbar-nav > li > a{font-size: 16px;font-weight: 600;color: #333;}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus{color:var(--page-point-color);}

.navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle{background:none;color:var(--page-point-color);}

@media (max-width: 767px) {
 .navbar-inverse .navbar-toggle{border:0;padding:18px 0;}
 .navbar-inverse .navbar-toggle .icon-bar{background-color:#222;transition:ease-in-out .15s all;opacity:1;position:relative;}
 .navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background:none;border-color:var(--page-point-color);}
 .navbar-inverse .navbar-toggle:hover .icon-bar,.navbar-inverse .navbar-toggle:focus .icon-bar{background-color:var(--page-point-color);}
 .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{border-color:transparent;}

 .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(1){transform:rotate(45deg);top:6px;}
 .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(2){opacity:0;}
 .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(3){transform:rotate(-45deg);top:-6px;}
}

@media (min-width: 768px) {
 .navbar-inverse .navbar-nav .dropdown-menu{
  left:50%;
  right:auto;
  transform:translate(-50%,0);
  border-radius:0;
  border:none;
  padding:0;
  background: rgb(32 32 32 / 90%);
  -webkit-box-shadow:0px 4px 8px rgba(0,0,0,.125);
  box-shadow:0px 4px 8px rgba(0,0,0,.125);
  animation-fill-mode: both;
  animation-duration: .4s;
  animation-name: fadeIn;
  }
 .navbar-inverse .navbar-nav .dropdown-menu>li>a{padding:12px 15px;color:#fff;text-align:center;}
 .navbar-inverse .navbar-nav .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .dropdown-menu>li>a:focus{background:var(--page-point-color);}

  .navbar-inverse .navbar-nav > li > a::before,
  .navbar-inverse .navbar-nav > li > a::after {
    content: '';
    left: 50%;
    position: absolute;
    opacity: 0;
    transition: all ease .25s;
  }
  .navbar-inverse .navbar-nav > li > a::before {
    bottom: 0;
    width: 160px;
    border-top: 3px solid var(--page-point-color);
    transform: translateX(-50%);
  }
  .navbar-inverse .navbar-nav > li > a::after {
    bottom: -2px;
    border-left: 9px solid var(--page-point-color);
    border-bottom: 9px solid transparent;
    transform: translateX(-50%) rotate(45deg);
  }
 
 .navbar-inverse .navbar-nav>li>a:hover::before,
 .navbar-inverse .navbar-nav>li>a:focus::before,
 .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle::before,
 .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle::before,
 .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle::before,
 .navbar-inverse .navbar-nav>li>a:hover::after,
 .navbar-inverse .navbar-nav>li>a:focus::after,
 .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle::after,
 .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle::after,
 .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle::after {
  opacity: 1;
 }
}

@media (min-width: 992px) {
 .navbar-inverse .navbar-right{margin-right:-30px;}
 .navbar-inverse .navbar-nav > li > a{padding: 35px 30px;}
}

/* 슬라이드 공통 */
.carousel-control{text-shadow:0px 2px 6px rgba(0, 0, 0, .125);transition:ease-in-out .15s all;display:none}
.carousel-control.left .glyphicon::before{content:'\f053';font-family:'Font Awesome 5 Free';font-weight:900;}
.carousel-control.right .glyphicon::before{content:'\f054';font-family:'Font Awesome 5 Free';font-weight:900;}
.carousel-indicators li{width: 12px;height: 12px;background-color: rgba(255,255,255,0);border:1px solid #fff;margin: 0 5px;border-radius:0;transition:ease-in-out .15s all;}
.carousel-indicators li.active{width: 12px;height: 12px;background-color:#fff;margin: 0 5px;box-shadow:0px 2px 6px rgba(0, 0, 0, .125); transform:rotate(45deg);}

.carousel-indicators {
    bottom: 25px;
}

.carousel-caption {text-shadow: 0 0 20px rgba(0,0,0,0.3);}

@media (max-width: 767px) {
 .carousel-control{font-size:14px;}
 .carousel-indicators{bottom:10px;}
 .carousel-indicators li, .carousel-indicators li.active{width:8px;height:8px;}
}

/* 푸터 */
#site footer{margin-top:0px;background-color:#333;color: #aaa;}
#site footer .footer-info{padding:45px 0}
#site footer .footer-info ul{position:relative;margin:0;padding:0;font-size:0}
#site footer .footer-info ul li{list-style:none;display:inline-block;font-size:13px;margin-right:15px;line-height:22px}
#site footer .footer-info .logo img {
  margin-top: 10px;
}
#site footer .footer-info .info {
  padding-left: 45px;
}
#site footer .footer-info ul li.copy {
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 0.8px;
}

/* 메인 페이지 */
#mainCarousel .carousel-inner .item {
  height: 650px;
  height: 720px;
}
#mainCarousel .carousel-caption h1 {
  margin: 0px 0 20px;
  font-size: 90px;
  font-weight: 800;
}
#mainCarousel .carousel-caption p {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  #mainCarousel .carousel-inner .item {
    height: 250px;
    background-position: 15% 50%;
}
#mainCarousel .carousel-caption {
  top: 45%;
  right: 5%;
  left: 5%;
}
 #mainCarousel .carousel-caption h1{font-size:42px}
 #mainCarousel .carousel-caption p{font-size:17px;}
}

#section_a684ec {
  padding: 20px 0;
}

#section_b53b3a {
  min-height: 400px;
}

#section_b53b3a .container {
  width: 100%;
  padding: 0;
}

.root_daum_roughmap {
  width: 100% !important;
  padding: 0 !important;
}

.root_daum_roughmap .map_border {
  display: none !important;
}
 
@media (min-width: 767px) {
  #section_a684ec div[class^="board_box_"] {
  width: 50%;
  }
}

.board_box_blog2 .row {
  margin-left: -5px;
  margin-right: -5px;
}

.board_box_blog2 .row > div[class^="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.board_box_blog2 .inner {
  margin-top: 0;
  margin-bottom: 0;
}

.board_box_blog2 .inner .bottom {
  padding: 12px 10px;
}
  
.board_box_blog2 .inner .bottom .title {
  margin-bottom: 0;
}

.board_box_blog2 .inner .bottom .title a {
  font-size: 14px;
}
  
.board_box_blog2 .inner .bottom .info {
  display: none;
}
  
.board_box_blog2 .inner .top a .thumb {
  height: 100px;
}

/* 메인 추가 스타일 */
.mainPage > section {
  padding: 110px 0;
}
.mainPage h2 {
  margin: 0 0 70px;
  font-size: 44px;
  font-weight: 800;
  color: #222;
  line-height: 1;
  text-align: center;
  font-style: italic;
}
/* .mainPage h2::after{
 content: '';
 width: 60px;
 height: 5px;
 background: var(--page-point-color);
 display:block;
 margin: 17px auto 0;
 transform: skew(-30deg)
} */

/* PRODUCTS */
.mainPage .box-prod {
  margin: 0 -12px;
}
.mainPage .box-prod > .item {
  padding: 0 12px;
}
.mainPage .box-prod > .item:nth-child(n+5) {
  margin-top: 38px;
}
.mainPage .box-prod > .item a {
  text-align: center;
  text-decoration: none;
}

.mainPage .box-prod > .item a .inner {
    position: relative;
}

.mainPage .box-prod > .item a .inner::before {
    content: '\e147';
    font-family: 'Material Symbols Outlined';
    transition: .35s;
    font-weight: 200;
    font-size: 80px;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    line-height: 0;
    opacity: 0;
    z-index: 1;
}

.mainPage .box-prod > .item a:hover .inner::before {
    opacity: 1;
}
.mainPage .box-prod > .item a:hover .tit,
.mainPage .box-prod > .item a:focus .tit {
  color: var(--page-point-color);
}
.mainPage .box-prod > .item .w_img {
  position: relative;
  border: 1px solid #e8e8e8;
  /* box-shadow: 2px 7px 9px 0px rgb(0 0 0 / 13%); */
  overflow: hidden;
  background: #000;
}
.mainPage .box-prod > .item .w_img img {
  transform: scale(1);
  transition: all cubic-bezier(0.27, 0.51, 0.38, 1.01) 0.35s;
}
.mainPage .box-prod > .item .tit {
  margin: 18px 0 0;
  font-size: 18px;
  FONT-WEIGHT: 500;
}
.mainPage .box-prod > .item a:hover .w_img img {
  transform: scale(1.15);
  /* opacity: 0.8; */
}
/* 하단 */
.mainPage > #section02 {
  background: linear-gradient(165deg, #f7f7f7, #d3cfcf);
}
.mainPage > #section02 .row {
  display: flex;
  align-items: center;
}
.mainPage > #section02 .left {
  padding-right: 20px;
}
div[class^="board_box_"] {
  margin-bottom: 0 !important;
}
div[class^="board_box_"] .page-header {
  margin: 2px 0 28px;
  padding-bottom: 15px;
  border-bottom: 1px solid #999;
}

div[class^="board_box_"] .page-header .pull-right {
    /* border: 1px solid #ccc; */
    /* width: 40px; */
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-top: 9px;
    font-size: 20px;
}
div[class^="board_box_"] .page-header h4 {
  margin: 0;
  font-size: 36px;
  color: #333;
  font-weight: 500;
}
:where(.board_box_list, .board_box_status, .board_box_map) ul li {
  padding: 8px 0;
}

.type_list span.subject {
    flex: 1;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
:where(.board_box_list, .board_box_status, .board_box_map) ul li a {
}
:where(.board_box_list, .board_box_status, .board_box_map) ul li a:hover {
}
div[class^='board_'] .info span.writer,
div[class^='board_'] .info span.hits {
  display: none;
}
.box-link {
  display: flex;
  gap: 10px;
}

#section02 .right {
    padding-left: 30px;
}
.box-link > .item {
  flex-basis: 50%;
  position: relative;
  background: #000 url(/public/img/main/bg_link01.jpg) no-repeat center / cover;
}
.box-link > .item2 {
  background: #000 url(/public/img/main/bg_link02.jpg) no-repeat center / cover;
}
.box-link > .item::before {
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #ba130b;
  opacity: 0.8;
  transition: all 0.25s;
}

.box-link > .item:hover::before {background: #a70800;}

.box-link > .item2::before {
    background: #202020;
    opacity: 0.7;
}

.box-link > .item2:hover::before {
    background: #0f0f0f;
}
.box-link > .item a {
  width: 100%;
  height: 290px;
  position: relative;
  padding: 30px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.box-link > .item .tit {
  font-size: 24px;
  letter-spacing: 0;
  margin: 0 0 20px;
  font-weight: 700;
}
.box-link > .item .material-symbols-outlined {
    width: 90px;
    height: 90px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    font-size: 48px;
    font-variation-settings: 'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 48;
    line-height: 90px;
    transition: all 0.2s;
}
.box-link > .item:hover .material-symbols-outlined, .box-link > .item:focus .material-symbols-outlined {
    background: rgba(20,20,20,0.7);
}
.box-link > .item a:hover .more {
  padding-right: 27px;
  text-decoration: underline;
}

/*************** 서브 시작 ***************/
/* 공통 스타일 */
#site > .container {
  width: 100%;
  padding: 0;
}
.subPage > .pageTop {
  height: 230px;
  position: relative;
  color: #fff;
  background: #333 url(/public/img/sub/bg_sub_top.jpg) no-repeat center / cover;
}
.subPage > .pageTop::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background: #000;
  opacity: 0.5;
}
.subPage > .pageTop h2 {
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: 0;
  padding-top: 21px;
  font-style: italic;
}

/* Link */
.subPage .link {
  /* margin-top: 45px; */
  background: #242021;
  /* box-shadow: 0 4px 11px rgb(0 0 0 / 10%); */
}
.subPage .link ul {
  display: flex;
  /* background: #fff; */
  /* border: 1px solid #ddd; */
  /* background: #e9e9e9; */
}
.subPage .link ul > li {
  flex: 1 1 0%;
  text-align: center;
}
.subPage .link ul > li > a {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  transition: none;
  border-left: 1px solid #000000;
  color: #ccc;
  transition: all 0.15s;
}

.subPage .link ul > li:first-child a {
    border-left: 0;
}
.subPage .link ul > li.active > a {
  font-weight: 500;
  color: #222;
  background: #aaa;
  /* border-color: #aaa; */
  /* background: #555; */
  /* border-color: #555; */
  background: #fff;
}

.subPage .link ul > li.active > a::after {
    content: '';
    width: 100%;
    height: 3px;
    /* background: var(--page-point-color); */
    position: absolute;
    left: 0;
    top: 0;
}
.subPage .link ul > li:not(.active) > a:hover,
.subPage .link ul > li:not(.active) > a:focus {
  background: #555;
  border-color: #555;
  color: #fff;
}

.subPage > .contents {
  padding: 100px 0 150px;
}
.subPage > .contents .row:not(.page-title)+.row {
  margin-top: 100px;
}

.title-lv-1 {
  margin: 0 0 85px;
  font-size: 40px;
  font-weight: 700;
  color: #222;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-align: center;
}
.title-lv-2 {
  margin: 0 0 35px;
  font-size: 25px;
  font-weight: 700;
  color: var(--page-point-color);
  line-height: 1em;
  letter-spacing: -0.02em;
}

.list-default {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}
.list-default > li {
  position: relative;
}
.list-dash > li {
  padding-left: 12px;
}
.list-dash > li + li {
  margin-top: 1px;
}
.list-dash > li::before {
  content: '-';
  top: -1px;
  left: 0;
  position: absolute;
}
.list-style-1 {
  padding-left: 3px;
}
.list-style-1 > li {
  padding-left: 15px;
}
.list-style-1 > li::before {
  content: '';
  top: 9px;
  left: 1px;
  width: 5px;
  height: 5px;
  position: absolute;
  background: #1375cd;
  border-radius: 30px;
}

table.tb-default {
  margin-bottom: 0;
}
table.tb-default > thead > tr > th,
table.tb-default > tbody > tr > th,
table.tb-default > tbody > tr > td {
  padding: 16px;
  border-bottom: 1px solid #e3e3e3;
  vertical-align: middle;
}
table.tb-style-1 {
  border-top: 2px solid var(--page-point-color);
}
table.tb-style-1 > thead > tr > th,
table.tb-style-1 > tbody > tr > th {
  text-align: center;
}
table.tb-style-1 > thead > tr > th,
table.tb-style-1 > tbody > tr > th,
table.tb-style-1 > tbody > tr > td {
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
}
table.tb-style-1 > thead > tr > th {
  padding: 12px;
  font-size: 15px;
  background: #f3f5f8;
}
table.tb-style-1 > tbody > tr > th {
  background: #f5f6f7;
}

/* Greetings from CEO (페이지) */
.warp-greet p {
  font-size: 16px;
  color: #555;
}

.warp-greet p + p {
    margin-top: 30px;
}
.warp-greet > .top .w_img {
  float: right;
  margin: 70px 0 25px 50px;
}
.warp-greet > .top .w_text h3 {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3em;
}
.warp-greet > .top .w_text ul {
  margin: 25px 0;
  font-size: 18px;
  color: #dd4343;
}
.warp-greet > .bottom {
  margin-top: 80px;
}
.warp-greet .box-circle {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 80px;
}
.warp-greet .box-circle .item {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 16px solid #dd4343;
  border-radius: 100%;
}
.warp-greet .box-circle .item:nth-child(2) {
  border-color: #7e635c;
}
.warp-greet .box-circle .item:nth-child(3) {
  border-color: #315b95;
}
.warp-greet .box-circle .item+.item::before {
  content: '';
  top: 50%;
  left: -100%;
  width: 100%;
  position: absolute;
  border-top: 1px dashed #999;
  z-index: -1;
}
.warp-greet .box-circle .item p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #dd4343;
  line-height: 1.2em;
}
.warp-greet .box-circle .item:nth-child(2) p {
  color: #7e635c;
}
.warp-greet .box-circle .item:nth-child(3) p {
  color: #315b95;
}
.warp-greet > .bottom ul {
  margin-bottom: 25px;
  background: linear-gradient(135deg, #f3f3f3, #e7d9d6);
  padding: 25px 50px;
}

.warp-greet > .bottom ul li {
    margin: 8px 0;
    font-size: 16px;
}
.warp-greet .from {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 50px;
  font-size: 18px;
}

/* Vision 2030 (페이지) */
.warp-vision > .top .w_img {
  float: right;
  margin: 0 0 0 50px;
}
.warp-vision > .top .w_text h3 {
  margin: 0 0 40px;
  font-size: 28px;
  font-weight: 600;
  /* color: #444; */
  line-height: 1.3em;
}
.warp-vision > .top .w_text h3::after {
  content: '';
  width: 100px;
  height: 1px;
  display: block;
  margin-top: 14px;
  background: #555;
}
.warp-vision > .top .w_text p {
  font-size: 17px;
}
.warp-vision > .bottom hr {
  margin: 50px 0 0;
  padding-top: 60px;
  border-top: 1px solid #ddd;
}
.warp-vision .box-circle {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.warp-vision .box-circle .item {
  width: 200px;
  height: 200px;
  position: relative;
  padding: 15px;
  background-color: #315b95;
  background-image: url(/public/img/sub/pattern-slash-white-opacity.png);
  border-radius: 100%;
}
.warp-vision .box-circle .item:nth-child(2) {
  background-color: #307d97;
}
.warp-vision .box-circle .item:nth-child(3) {
  background-color: #7e635c;
}
.warp-vision .box-circle .item:nth-child(4) {
  background-color: #dd4343;
}
.warp-vision .box-circle .item+.item::before {
  content: '\e145';
  top: 50%;
  left: -30px;
  width: 100%;
  position: absolute;
  font-size: 30px;
  font-weight: 700;
  font-family: 'Material Symbols Outlined';
  transform: translateY(-50%);
}
.warp-vision .box-circle .item .inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 100%;
}
.warp-vision .box-circle .item p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: #315b95;
  line-height: 1.2em;
}
.warp-vision .box-circle .item:nth-child(2) p {
  color: #307d97;
}
.warp-vision .box-circle .item:nth-child(3) p {
  color: #7e635c;
}
.warp-vision .box-circle .item:nth-child(4) p {
  color: #dd4343;
}
.warp-vision > .bottom .box-text {
  padding: 45px;
  font-size: 17px;
  background: linear-gradient(135deg, #f3f3f3, #e7d9d6);
  text-align: center;
}
.warp-vision > .bottom .box-text p {
    margin: 0;
    line-height: 1.6;
}

/* Corporate Culture (페이지) */
.wrap-culture .box-bg {
  height: 200px;
  background: #000 url(/public/img/sub/culture_box_bg.jpg) no-repeat center / cover;
}
.wrap-culture .box-text {
  width: 86%;
  margin: 0 auto 80px;
  margin-top: -55px;
  padding: 55px 15px 0;
  text-align: center;
  background: #fff;
}
.wrap-culture .box-text::after {
  content: '';
  width: 100px;
  height: 1px;
  display: block;
  margin: 50px auto 0;
  background: #555;
}
.wrap-culture .box-text h3 {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 600;
}
.wrap-culture .box-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6em;
}
.wrap-culture .box-list {
  margin: 35px 0;
  max-width: 60%;
  border-left: 1px solid #ddd;
  padding-left: 30px;
  position: relative;
}
.wrap-culture .box-list::before {
  content: '';
  width: 3px;
  height: 20px;
  background: #e60012;
  position: absolute;
  left: -1px;
  top: 0;
}
.wrap-culture .box-list p {
  margin-bottom: 10px;
}
.wrap-culture .box-list ul {
  padding-left: 10px;
}
.wrap-culture .box-list strong {
  font-weight: 500;
}

/* History (페이지) */
.wrap-history {
  position: relative;
}
.wrap-history > ul > li {
  display: grid;
  justify-content: flex-end;
  grid-template-columns: 250px 70%;
}
.wrap-history > ul li:last-child :where(.year, .detail){
  padding-bottom: 0;
}
.wrap-history > ul > li .year {
  position: relative;
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  color: #555;
  line-height: 1;
  padding-right: 70px;
  letter-spacing: -0.03em;
  border-right: 10px solid #f5f5f5;
  font-style: italic;
}
.wrap-history > ul > li .year::before {
  content: '';
  top: 23.5px;
  right: 0;
  width: 95px;
  position: absolute;
  border-top: 1px solid #777;
}
.wrap-history > ul > li .year::after {
  content: '';
  top: 19px;
  right: -10px;
  width: 10px;
  height: 10px;
  position: absolute;
  background: var(--page-point-color);
  border-radius: 50px;
}
.wrap-history .detail {
  padding: 13px 0 55px 60px;
}
.wrap-history .detail ul > li {
  padding-left: 60px;
  line-height: 1.6;
  color: #666;
}
.wrap-history .detail ul > li+li {
  margin-top: 7px;
}
.wrap-history .detail .month {
  top: -1px;
  left: 0;
  position: absolute;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: #222;
}

/* Company Location	 (페이지) */
ul.list-contact {
  margin-top: 40px;
}
ul.list-contact > li {
  padding-left: 35px;
  display: flex;
}

ul.list-contact > li + li {
    margin-top: 15px;
}

ul.list-contact > li::before {
    content: '\e55e';
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 1,
  'wght' 600,
  'GRAD' 0,
  'opsz' 48;
    /*     background: #eee; */
    position: absolute;
    left: 0;
    top: -2px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    color: var(--page-point-color);
    font-size: 20px;
}

ul.list-contact > li.tel::before {
  content: '\e61d';
}
ul.list-contact > li.fax::before {
  content: '\ead8';
}
ul.list-contact > li.site::before {
  content: '\e894';
}
ul.list-contact > li:not(.addr) {
  display: flex;
  font-size: 16px;
}
ul.list-contact > li.addr {
  line-height: 1.66;
}
ul.list-contact > li .tit {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  width: 110px;
}

/* Certificates (페이지) */
.box-certi {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 70px 30px;
  background: #f5f5f5;
}
.box-certi > .item {
  flex-basis: 25%;
  margin-bottom: 50px;
  padding: 0 20px;
}
.box-certi figure img {
  padding: 10px;
  background: #fff;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.08);
}
.box-certi figure figcaption {
  margin-top: 17px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}
.box-certi > .item:nth-child(12) figure img {
  padding: 55px 13px;
}
.box-certi > .item:nth-child(16) figure img {
  padding: 69px 13px;
}

/* Sales Network (페이지) */
.box-network {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
  padding: 50px 40px;
  background: #f5f5f5;
}
.box-network .item {
  flex-basis: calc(20% - 40px);
  margin: 0 20px;
}
.box-network .name {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  border-top: 1px solid #555;
  padding-top: 10px;
}

h3.name {}
.box-network ul+.name {
  margin-top: 40px;
}
.box-network ul li {
  font-size: 13px;
  color: #555;
  font-weight: 400;
  padding-left: 14px;
}

.box-network ul li::before {
    left: 1px;
    color: #555;
    font-weight: 900;
}

.box-network ul li::before {}
.box-network ul li+li {
  margin-top: 4px;
}

/* 게시판, 주문폼 공통 스타일 */
.board_wrapper,
.calendar_wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
.search_wrap {
  margin-bottom: 0;
}
.board_wrapper .table.table_default {
  border-top: 1px solid #555;
}
.table.table_default tr th,
.table.table_default tr td {
  border-color: #e6e6e6;
}
.table.table_default tr td.writer, .table.table_default tr td.regdate,
.table.table_default tr td.hits {
  color: #999;
}
.table.table_default tr td.subject {
  position: relative;
}
.table.table_default thead th {
  font-weight: 600;
  color: #333;
  background: #fff;
  border-color: #ccc;
  padding: 20px 15px;
}
.table.table_default tbody .subject .badge {
  top: 15px;
  position: absolute;
  padding: 4px 6px 3px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3em;
  background: var(--page-secondary-color);
  border: none;
  border-radius: 0;
}
.table.table_default tbody .subject a {
  font-size: 16px;
}
.table.table_default tbody .subject a:hover {
  text-decoration: underline;
}
.table.table_default tbody .subject span>.badge+a {
  padding-left: 62px;
}

:where(.table_video, .table_blog2) .inner :where(.bottom .title a, .title a) {
    font-weight: 500;
    letter-spacing: -0.02em;
}

:where(.table_video, .table_blog2, .table_pd) .inner .bottom {
    padding: 20px 15px 20px;
}

:where(.table_video, .table_blog2) dd {
    margin-bottom: 55px;
}

:where(.table_video, .table_blog2, .table_pd) .inner .top a {
    background: #000;
}

.board_data_view {
  border-top: 1px solid #555;
  border-bottom: 1px solid #ccc;
}
.board_data_view .header_wrap {
  padding: 0;
  border-bottom: 1px solid #ccc;
}
.board_data_view .header_wrap .title {
  padding: 40px 5px 38px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3em;
  border-bottom: 1px solid #eee;
}
.board_data_view .header_wrap .info {
  margin: 0;
  padding: 11px 0 11px;
}
.board_data_view .header_wrap .info span {
  font-size: 13px;
  color: #909090;
}
.board_data_view p {
  font-size: 18px;
}
/* 카테고리 */
.category_wrap {
  margin-bottom: 65px;
}
.category_wrap ul {
  display: flex;
  justify-content: center;
}
.category_wrap li {
  flex: 1 1 0;
  max-width: 130px;
}
.category_wrap li+li {
  margin-left: 0;
}
.category_wrap li a {
  position: relative;
  padding: 15px 5px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  transition: none;
  border-color: #ccc;
  letter-spacing: .1px;
}
.category_wrap li a:hover,
.category_wrap li a:focus,
.category_wrap li.on a,
.category_wrap li.on a:hover,
.category_wrap li.on a:focus  {
  font-weight: 700;
  color: #333;
  background: transparent;
}
.category_wrap li.on a::before,
.category_wrap li.on a:hover::before,
.category_wrap li.on a:focus::before {
  content: '';
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  background: #333;
  opacity: 1;
}

.category_wrap li a::before {
    content: '';
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    position: absolute;
    background: #333;
    opacity: 0;
}

.category_wrap li a:hover::before, .category_wrap li a:focus::before {
    opacity: 1;
}

/* Pagenation */
.pagination_wrap ul li.active a,
.pagination_wrap ul li.active a:hover,
.pagination_wrap ul li.active a:focus {
  color: var(--page-point-color);
}
.pagination_wrap ul li.box a {
  border: none;
}
.pagination_wrap ul li.box:hover a,
.pagination_wrap ul li.box:focus a {
  color: var(--page-point-color);
}

.board_wrapper .text-center {
  margin-bottom: 0;
}

#reply_list span {
  font-size: 16px !important;
}

/* 게시글 작성 */
.board_wrapper .table.board_write_table tbody tr th,
.board_wrapper .table.board_write_table tbody tr td {
  font-size: 15px;
  border-color: #e6e6e6;
}
.board_wrapper .table.board_write_table {
  border-top: 2px solid #333;
}
.board_wrapper .table.board_write_table tbody tr th {
  width: 180px;
  font-weight: 700;
  color: #333;
  background: #fff;
  padding-left: 10px;
}
.board_wrapper .table.board_write_table tbody tr th>span.required_text {
  color: #ff0000;
}
.board_wrapper .table.board_write_table .files .fileInput .file_add {
  padding: 6px 8px;
}
.form-control {
  letter-spacing: -0.03em;
  font-size: 15px;
}

/* 주문폼 */
.board_wrapper .table.board_write_table tbody tr td .form-control {
  width: 350px;
}
.board_wrapper .table.board_write_table tbody tr td .text-muted {
  margin-top: 10px !important;
  font-size: 14px;
}
.board_wrapper .table.board_write_table .checkbox a {
  font-weight: 500;
  color: #e60012;
  text-decoration: underline;
}
.form-control:not([readonly]):focus {
  border-color: #555;
}

/* 상품 게시판 */
.table_pd {
  margin-bottom: 120px;
}
.table_video .inner:hover .top,
.table_blog2 .inner:hover .top,
.table_pd .inner:hover .top {
  border-color: #666;
}
.table_pd .inner .bottom .title a {
  text-decoration: none;
  transition: none;
  letter-spacing: 0;
  font-size: 24px;
  font-weight: 700;
}

.table_pd .inner .bottom .pd_preview {
  height: 45px;
  margin-top: 5px;
  color: #666;
  font-size: 15px;
}
.table_pd .inner .bottom .pd_preview ul {
  list-style: none;
  padding: 0;
}

.table_pd .inner .top {
  border-color: #ddd;
  transition: all 0.15s;
}

.table_pd .inner .bottom .title .badge {color: var(--page-point-color);background: transparent;padding: 0;font-size: 12.5px;font-weight: 700;letter-spacing: .1px;}

.table_pd .inner .bottom .title {
    gap: 6px 0;
}

.table_pd .inner .bottom {
    padding-top: 22px;
}
:where(.table_video, .table_blog2, .table_pd) .inner :where(.bottom .title a, .title a) :where(:hover, :focus) {
  /* color: var(--page-secondary-color); */
}

.board_pd_view .pd_img_main {
    border: 1px solid #ddd;
}

.board_pd_view .pd_title_wrap .badge {
    background: transparent;
    color: var(--page-point-color);
    padding: 0;
    font-size: 14px;
}

.board_pd_view .pd_title_wrap .badge+.title {
    letter-spacing: -0.02em;
    color: #222;
    font-size: 36px;
}

.board_pd_view .pd_title_wrap {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.board_pd_view .pd_title_wrap .title {
    font-weight: 700;
}

.board_pd_view .pd_preview_wrap #pd_preview_text {
  white-space: normal;
  line-height: 1.67;
}
.board_pd_view .pd_preview_wrap #pd_preview_text ul {
  line-height: 1.45em;
}
.board_pd_view .pd_preview_wrap #pd_preview_text ul li {
  position: relative;
  padding-left: 20px;
}
.board_pd_view .pd_preview_wrap #pd_preview_text ul li+li {
  margin-top: 12px;
}
.board_pd_view .pd_preview_wrap #pd_preview_text ul li::before {
  content: '';
  top: 10px;
  left: 3px;
  position: absolute;
  width: 7px;
  height: 3px;
  background: #666;
}

.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a {
  text-decoration: none;
  background-color: var(--page-dark-color);
  border: 1px solid var(--page-dark-color);
}
.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a:hover,
.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a:focus {
  color: var(--page-dark-color);
  background-color: transparent;
}

.board_pd_view ol.list-default {
  counter-reset: list-number;
}
.board_pd_view ol.list-default > li {
  counter-increment: list-number;
  padding-left: 21px !important;
}
.board_pd_view ol.list-default > li+li {
  margin-top: 2px;
}
.board_pd_view ol.list-default > li::before {
  content: "("counter(list-number)") ";
  top: 1px;
  left: 0;
  font-size: 92%;
  position: absolute;
}

/* 블로그B 게시판 */
.table_pd .inner .top a::after {
    content: '\e147';
    font-family: 'Material Symbols Outlined';
    transition: .35s;
    font-weight: 200;
    font-size: 80px;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    line-height: 0;
    opacity: 0;
}
.table_pd .inner:hover .top a::after {
    opacity: 1;
}
.table_blog2 .bottom .title a:hover,
.table_blog2 .bottom .title a:focus {
  text-decoration: none;
}
:where(.table_video, .table_blog2, .table_pd) .inner .top a .thumb {
  height: auto;
  padding-top: 70%;
  transition: all 0.35s;
}

:where(.table_video, .table_blog2, .table_pd) .inner .top a:hover .thumb {
    opacity: 0.65;
}
:where(.table_video, .table_blog2, .table_pd) .inner:hover {
  border-color: #888;
}

/* Inquiry (페이지 내 주문폼) */
#inquiry .board_wrapper .table.board_write_table {
  border-top: none;
}
#inquiry .board_wrapper .table.board_write_table tbody tr+tr {
  display: block;
  margin-top: 22px;
}
#inquiry .board_wrapper .table.board_write_table tbody tr th,
#inquiry .board_wrapper .table.board_write_table tbody tr td {
  width: 100%;
  display: block;
  padding: 0;
  border: none;
}
#inquiry .board_wrapper .table.board_write_table {
  border: none;
}
#inquiry .board_wrapper .table.board_write_table tbody tr:not(#item_0) th {
  padding: 0 10px 5px 0;
}
#inquiry .board_wrapper .table.board_write_table tbody tr th >span.required_text {
  position: static;
  padding-left: 10px;
}
#inquiry .board_wrapper .table.board_write_table tbody tr td .form-control {
  width: 100%;
}
/* 개별 스타일 */
#inquiry .desc {
    padding-left: 45px;
}

#inquiry .page-title + .row {
    margin: 0;
    border-top: 1px solid #333;
    padding: 50px 20px;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_0 th span {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 500;
  color: var(--page-point-color);
  line-height: 1em;
  letter-spacing: -0.005em;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_0 td,
#inquiry .board_wrapper .table.board_write_table tbody tr#item_5 td {
  display: flex !important;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_0 td .checkbox-inline,
#inquiry .board_wrapper .table.board_write_table tbody tr#item_5 td .checkbox-inline {
  flex-basis: 33.333% !important;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_0 td .checkbox-inline+.checkbox-inline,
#inquiry .board_wrapper .table.board_write_table tbody tr#item_5 td .checkbox-inline+.checkbox-inline {
  margin-left: 0;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_captcha,
#inquiry .board_wrapper .table.board_write_table tbody tr#item_agree {
  float: left;
  width: 50%;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_captcha td {
  display: flex !important;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_captcha td #captcha {
  height: 42px;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_captcha td #wr_captcha {
  width: 160px;
  margin-top: 0 !important;
  margin-left: 8px;
}
#inquiry .board_wrapper .table.board_write_table tbody tr#item_agree .checkbox {
  margin-top: 0;
}

/* PRODUCTS 공통 스타일 */
.subPage[id^='product'] .link ul {
  /* flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.subPage[id^='product'] .link ul::before,
.subPage[id^='product'] .link ul::after{content: none;}
.subPage[id^='product'] .link ul > li {
  flex-basis: 20%;
}
.subPage[id^='product'] .link ul > li:first-child a {
  border-left: 1px solid #000000;
}
.subPage[id^='product'] .link ul > li:nth-child(6n) a {
  border-right: 1px solid #000000;
}
.subPage[id^='product'] .link ul > li:nth-child(n+6) a {
  border-top: 1px solid #000000;
}

/**************** 서브 끝 ****************/

/*********** 모바일 최적화 시작 ***********/
@media (max-width: 767px) { /* Small devices (col-xs-*) 모바일 */
  #site{padding-top:67px;font-size:15px}
  p{line-height:1.4em}

  .navbar-inverse{position:fixed;border-bottom:1px solid #ddd}
  .navbar-inverse .navbar-brand img{height:34px;margin-top:2px}
  .navbar-inverse .navbar-nav{display:block;margin:0 -15px !important}
  .navbar-inverse .navbar-nav > .open{background-color:#f6f6f6}
  .navbar-inverse .navbar-nav > li{float:left;width:100%}
  .navbar-inverse .navbar-nav > li > a{padding:12px 15px;border-top:1px solid #eee;border-right:1px solid #eee}
  .navbar-inverse .navbar-nav > li > a:hover,
  .navbar-inverse .navbar-nav > li > a:focus{color:var(--page-point-color)}
  .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle,
  .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle,
  .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle{padding:15px;color:#fff !important;background:var(--page-point-color);border:var(--page-point-color)}
  .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle .caret,
  .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle .caret,
  .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle .caret{border-top-color:#fff}
  .navbar-inverse .navbar-nav > .open .dropdown-menu{padding:10px 0}
  .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a{padding:5px 25px;font-size:15px;color:#111}
  .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a:focus{font-weight:600;color:#111}
  .navbar .caret{display:block;border:none}
  .navbar .caret::after{content:'\e409';top:13px;right:15px;position:absolute;font-size:20px;font-weight:500;font-family:'Material Symbols Outlined';transition:transform ease 0.3s}
  .navbar-inverse .navbar-nav .dropdown.open .caret::after{font-weight:300;transform:rotate(90deg)}

  .mainPage > section{padding:60px 0}
  .mainPage h2{margin:0 0 41px;font-size:36px}
  .mainPage .box-prod{margin:0 -15px}
  .mainPage .box-prod > .item{padding:0 15px}
  .mainPage .box-prod > .item+.item{margin-top:20px !important}
  .mainPage > #section02 .row{flex-direction:column}
  .mainPage > #section02 .left{padding-right:15px}
  div[class^="board_box_"]{padding:0}
  div[class^="board_box_"] .page-header{margin:0 0 15px;padding-bottom:10px}
  div[class^="board_box_"] .page-header .pull-right{margin-top:2px;font-size:16px}
  div[class^="board_box_"] .page-header h4{font-size:28px}
  .type_list li{padding:3px 0}
  .type_list .info{font-size:12px}
  #section02 .right{margin-top:30px;padding-left:15px}
  .box-link > .item{width:calc(50% - 5px)}
  .box-link > .item a{height:190px}
  .box-link > .item .tit{font-size:21px;margin:0 0 15px}
  .box-link > .item .material-symbols-outlined{width:80px;height:80px;font-size:40px;line-height:80px}

  #site footer .footer-info{padding:25px 0}
  #site footer .footer-info .logo img{height:30px;margin:0 0 15px}
  #site footer .footer-info .info{padding-left:15px}
  #site footer .footer-info ul li{font-size:12px;line-height:18px}
  #site footer .footer-info ul li.copy{margin-top:5px;font-size:10px}

  .subPage > .pageTop{height:160px}
  .subPage > .pageTop h2{padding-top:0;font-size:40px}
  .subPage .link{margin-top:15px;background:transparent}
  .subPage .link ul{flex-wrap:wrap;margin:-2px}
  .subPage .link ul > li{flex:1 1 50% !important;padding:2px}
  .subPage .link ul > li > a{height:40px;padding:10px;font-size:14px;color:#242021;background:#fff;border:1px solid #ddd !important}
  .subPage .link ul > li.active > a{color:#fff;background:#242021;border-color:#242021}
  .subPage > .contents{padding:60px 0 80px}
  .title-lv-1{margin:0 0 50px;font-size:32px}
  .title-lv-2{margin:0 0 20px;font-size:22px}
  .subPage > .contents .row:not(.page-title)+.row{margin-top:60px}
  table.tb-style-1 > thead > tr > th,
  table.tb-style-1 > tbody > tr > th,
  table.tb-style-1 > tbody > tr > td{padding:12px;font-size:14px}

  .warp-greet > .top .w_text h3{margin:0 0 20px;font-size:22px;line-height:1.2em}
  .warp-greet p{font-size:15px}
  .warp-greet > .top .w_text ul{margin:20px 0;font-size:16px}
  .warp-greet > .bottom{margin-top:40px}
  .warp-greet .box-circle{margin-bottom:30px;flex-direction:column;gap:30px}
  .warp-greet .box-circle .item{width:100%;height:80px;border-width:8px;border-radius:8px}
  .warp-greet .box-circle .item+.item::before{top:-50px;left:50%;width:1px;height:100%;border-top:none;border-left:1px dashed #999;transform:translateX(-50%)}
  .warp-greet .box-circle .item p{font-size:17px}
  .warp-greet > .bottom ul{margin-bottom:20px;padding:20px 15px}
  .warp-greet p+p{margin-top:20px}
  .warp-greet .from{margin-top:30px;font-size:16px}
  .warp-vision > .top .w_img{float:unset;margin:0 auto}
  .warp-vision > .top .w_text{margin-top:15px}
  .warp-vision > .top .w_text h3{margin:0 0 30px;font-size:23px;line-height:1.2em}
  .warp-vision > .top .w_text h3::after{width:80px}
  .warp-vision > .top .w_text p{font-size:16px}
  .warp-vision > .bottom hr{margin:30px 0 0;padding-top:40px}
  .warp-vision .box-circle{margin-bottom:30px;flex-direction:column;gap:20px}
  .warp-vision .box-circle .item{width:100%;height:80px;padding:10px;border-radius:8px}
  .warp-vision .box-circle .item+.item::before{top:-25px;left:50%;width:auto;font-size:22px;transform:translateX(-50%)}
  .warp-vision .box-circle .item .inner{border-radius:8px}
  .warp-vision > .bottom .box-text{padding:20px 15px;font-size:16px}
  .warp-vision > .bottom .box-text p{line-height:1.5}
  .wrap-culture .box-bg{height:120px}
  .wrap-culture .box-text{width:90%;margin:-45px auto 40px;padding:20px 10px 0}
  .wrap-culture .box-text h3{margin:0 0 20px;font-size:21px}
  .wrap-culture .box-text p{font-size:16px;line-height:1.4em}
  .wrap-culture .box-text::after{width:70px;margin:25px auto 0}
  .wrap-culture .box-list{margin:20px 0;max-width:unset;padding-left:15px}
  .wrap-history::before{content:'';top:0;left:1px;height:100%;position:absolute;border:3px solid #f5f5f5}
  .wrap-history > ul > li{grid-template-columns:100%}
  .wrap-history > ul > li .year{margin:0 0 0 20px;font-size:32px;padding-right:0;border:none}
  .wrap-history > ul > li .year::before{top:16px;right:auto;left:-12px;width:12px}
  .wrap-history > ul > li .year::after{top:12px;right:auto;left:-20px;width:9px;height:9px}
  .wrap-history .detail{padding:10px 0 30px 15px}
  .wrap-history .detail ul > li{padding-left:42px}
  .wrap-history .detail .month{top:0;font-size:14px}
  #location iframe{height:300px}
  ul.list-contact{margin-top:20px}
  ul.list-contact > li{flex-direction:column;padding-left:25px}
  ul.list-contact > li:not(.addr){font-size:15px}
  ul.list-contact > li.addr{line-height:1.56}
  ul.list-contact > li .tit{width:auto;font-size:15px}
  .box-certi{padding:15px 7.5px}
  .box-certi > .item{flex-basis:50%;margin-bottom:20px;padding:0 7.5px}
  .box-certi figure figcaption{margin-top:12px;font-size:13px}
  .box-certi figure img{padding:6px}
  .box-certi > .item:nth-child(12) figure img{padding:43px 13px}
  .box-certi > .item:nth-child(16) figure img{padding:52px 13px}
  .box-network{margin-top:35px;padding:25px 5px}
  .box-network .item{flex-basis:100%;margin:0 15px}
  .box-network .item+.item{margin-top:20px}
  .box-network .name{margin:0 0 15px;font-size:17px}
  .box-network ul+.name{margin-top:20px}
  .box-network ul{display:flex;flex-wrap:wrap}
  .box-network ul li{margin-right:5px;font-size:12px}
  .box-network ul li+li{margin-top:0}

  .board_wrapper .table colgroup,
  .board_wrapper .table tr .num,
  .board_wrapper .table tr .hits{display:none}
  .board_wrapper .table .subject{width:55%}
  .board_wrapper .table .writer{width:20%}
  .board_wrapper .table .regdate{width:25%}
  .board_wrapper .table.table_default tr th,
  .board_wrapper .table.table_default tr td{padding:10px;font-size:12px}
  .table.table_default tbody .subject .badge{top:9px;font-size:10px}
  .table.table_default tr td.subject a{font-size:13px}
  .table.table_default tbody .subject span > .badge + a{padding-left:54px}
  .board_data_view .header_wrap{padding:0}
  .board_data_view .header_wrap .title{padding:25px 5px 23px;font-size:20px}
  .board_data_view .header_wrap .info{padding:8px 0}
  .board_data_view .header_wrap .info span{font-size:11px}
  .board_data_view .contents_wrap{padding:40px 15px}
  .board_wrapper .table.board_write_table tbody tr td .form-control,
  .board_wrapper .table.board_write_table .form-control.form-control-big,
  .member_wrapper #join_form .table .form-control,
  .member_wrapper #join_form .table .form-control.form-control-big{width:100%}
  .board_wrapper .table.board_write_table .files .fileInput input {width:100%;}
  .board_wrapper .table.board_write_table .files .fileInput .file_add{width:100%;margin:0 0 15px;padding:6px 12px}
  .member_wrapper .text-center .btn.btn-lg,
  .board_wrapper .text-center .btn.btn-lg{width:100%;margin:0;padding:9px}
  .board_wrapper .text-center .btn#write_btn,
  .member_wrapper .text-center .btn#join_btn,
  .board_wrapper .text-center .btn#list_btn{margin-top:20px}
  .member_wrapper{padding-top:60px;padding-bottom:100px}

  .category_wrap{margin-bottom:45px}
  .category_wrap li a{padding:12px 5px;font-size: 13px;}

  .board_data_view p{font-size:17px}

  :where(.table_video, .table_blog2) dd {
    width: 100% !important;
    margin-bottom: 30px;
  }
  :where(.table_video, .table_blog2) .inner .top a .thumb {
    min-height: 205px;
    padding-top: 60%;
  }
  :where(.table_video, .table_blog2) .inner .bottom {
    padding: 15px 12px;
  }
  :where(.table_video, .table_blog2) .inner .bottom .title a {
    font-size: 17px;
  }

  .table_pd{margin-bottom:60px}
  .table_pd > dd:nth-child(odd){padding-right:7.5px}
  .table_pd > dd:nth-child(even){padding-left:7.5px}
  .table_pd .inner .top a::after{font-size:60px}
  .table_pd .inner .bottom{padding-top:18px}
  .table_pd .inner .bottom .title .badge{font-size:12px}
  .table_pd dd .inner .bottom .title a{font-size:16px}
  .table_pd .inner .bottom .pd_preview{height:38px;margin-top:0;font-size:14px}

  #inquiry .page-title + .row{padding:25px 0 0}
  #inquiry .image{padding:0}
  #inquiry .desc{padding:30px 0 0}
  #inquiry .board_wrapper .table.board_write_table tbody tr th,
  #inquiry .board_wrapper .table.board_write_table tbody tr td{padding:0 !important}
  #inquiry .board_wrapper .table.board_write_table tbody tr#item_0 th span{margin-bottom:15px;font-size:20px}
  #inquiry .board_wrapper .table.board_write_table tbody tr#item_0 td .checkbox-inline,
  #inquiry .board_wrapper .table.board_write_table tbody tr#item_5 td .checkbox-inline{flex-basis:50% !important}
  #inquiry .board_wrapper .table.board_write_table tbody tr#item_captcha td #wr_captcha{width:220px;height:42px}
  #inquiry .board_wrapper .text-center .btn#write_btn{margin-top:50px}
}
@media (min-width: 768px) and (max-width: 1199px) { /* Medium·Large devices */
  .mainPage .box-prod > .item:nth-child(n + 3){margin-top:30px !important}
}
/************ 모바일 최적화 끝 ************/
@media (max-width:475px) {
    .main_popup_contents img{
        width: 100%;
        object-fit: contain;
        height: 100% !important;
    }
    .main_popup_contents{
        width: 300px;
    }
}