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

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

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

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

a[href^="mailto"] {
    color: inherit;
    text-decoration: underline;
}

p {
    line-height: 1.5em;
}

.btn.btn-primary {
    background-color: #f5c01f;
    border-color: #f5c01f;
    color:#222;
    font-weight:500;

}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #1c1c1c;
    border-color: #1c1c1c;
    color:#fff;
}


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

/* 상단 메뉴 */
.navbar-inverse{background:#fff;position:static;margin-bottom:0;border-bottom:1px solid #ddd;}
.navbar-brand{
  margin-left:0 !important;
  padding:0;
  margin-top: 20px;
}
.navbar-inverse .navbar-brand img{
  width: 140px;
}

.navbar-inverse .navbar-nav > li > a{
  font-size: 18px;
  font-weight: 500;
  color: #222;
  position: relative;
}
.navbar-inverse .navbar-nav > li > a::after{
  content:"";
  width:0;
  height:4px;
  position:absolute;
  background-color:#efae0e;
  left:50%;
  bottom:-1px;
  transform:translateX(-50%);
  transition:all 0.35s;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus{
    color:#efae0e;
    background: rgba(0,0,0,0);
}
.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{
    color:#efae0e;
    background: rgba(0,0,0,0);
}
.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{
  width:100%;
}
@media (max-width: 767px) {
 /*.navbar-inverse .navbar-toggle{border:1px solid #666;}*/
 .navbar-inverse .navbar-toggle{border:0;padding:9px 0;}
 .navbar-inverse .navbar-toggle .icon-bar{background-color:#333;transition:ease-in-out .15s all;opacity:1;position:relative;}
 .navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background:none;border-color:#efae0e;}
 .navbar-inverse .navbar-toggle:hover .icon-bar,.navbar-inverse .navbar-toggle:focus .icon-bar{background-color:#efae0e;}
 .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;
    padding: 15px 0;
    text-align: center;
    transform: translate(-50%,0);
    border: none;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0px 4px 8px rgba(0,0,0,.125);
    -webkit-box-shadow: 0px 4px 8px rgba(0,0,0,.125);
 }
 .navbar-inverse .navbar-nav .dropdown-menu>li>a{
    padding: 8px 20px;
    font-weight: 500;
    color:#333;
    font-size:16px;
    letter-spacing:-0.02em;
 }
 .navbar-inverse .navbar-nav .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .dropdown-menu>li>a:focus{
     color: #efae0e;
     background: none;
 }
}

@media (min-width: 992px) {
 .navbar-inverse .navbar-right{margin-right:-30px;}
 .navbar-inverse .navbar-nav > li > a{padding: 33px 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{
  bottom: 35px;
}
.carousel-indicators li{width: 15px;height:15px;background-color:#fff;border:1px solid #fff;margin:0 4px;border-radius:10px;transition:ease-in-out .15s all;opacity:0.45;}
.carousel-indicators li.active{width: 15px;height: 15px;background-color:#fff;margin:0 4px;box-shadow:0px 2px 6px rgba(0, 0, 0, .125);opacity:1;}

.carousel-caption {text-shadow:none;padding: 0 0 25px;}
.carousel-caption h1 {
    margin: 0 0 28px;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -0.015em;
}
.carousel-caption p {
    font-size: 22px;
    letter-spacing: -0.055em;
    line-height: 1.55;
    font-weight: 400;
}
.carousel-caption p > .btn {
    display: inline-block;
    margin-top: 60px;
    padding: 18px 60px 17px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    background: #f5c01f;
    color: #222;
}
.carousel-caption p > .btn:hover {
    color: #fff;
    background-color: #1c1c1c;
}

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

/* 푸터 */
#site footer{margin-top:0px;background-color: #191919;color: #999;}
#site footer .footer-info{padding:40px 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 ul li.copy {color: #999;}
#site footer .footer-info img {
    margin-top: 5px;
    height: 30px;
    opacity: 0.45;
}

/* 메인 페이지 */
#mainCarousel .carousel-inner .item{height: calc(100vh - 87px);}
@media (max-width: 767px) {
 #mainCarousel .carousel-inner .item{height:250px}
 #mainCarousel .carousel-caption h1{font-size:24px}
 #mainCarousel .carousel-caption p{font-size:12px;}
}

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

.root_daum_roughmap .map_border {
  display: none !important;
}

.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;
}

/********** 서브 시작 **********/
/* 공통 */
.navbar-inverse + .container {
    width: 100%;
    padding: 0;
}
.sub-contents > .page-top {
    height: 300px;
    color: #fff;
    background: #333 url('/public/img/sub/back-page-top.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}
.sub-contents > .page-top > .container {
    position: relative;
    height: 100%;
}
.sub-contents > .page-top .wrap-title {
    padding: 108px 0 0;
    text-align: center;
}
.sub-contents > .page-top .wrap-title > h2 {
    margin: 0;
    font-size: 47px;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.sub-contents > .page-top .wrap-title > .sm {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 300;
    font-style: inherit;
    letter-spacing: 0;
}

/* Breadcrumb */
.sub-contents > .page-top .breadcrumb {
  padding:0;
  right: 15px;
  top: 18px;
  position: absolute;
  margin: 0;
  font-size: 12px;
  color: #ddd;
  letter-spacing: -0.02em;
  background-color: transparent;
}
.breadcrumb>li+li:before{
  content:"\f054";
  font-family:"Font Awesome 5 Free";
  font-weight:600;
  font-size:10px;
  padding:0 10px;
  color: #ddd;
}

.sub-contents .contents > section {
    padding: 100px 0 110px;
}

.space-bottom {
    margin-bottom: 80px;
}

.title-lv-1 {
    margin: 0 0 80px;
    font-size: 34px;
    color: #333;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.034em;
}
.title-lv-3 {
    position: relative;
    margin: 0 0 25px;
    padding-left: 28px;
    font-size: 26px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.06em;
}
.title-lv-3::before {
    content: '';
    top: 3px;
    left: 0;
    position: absolute;
    border: 4px solid #efae0e;
    border-radius: 23px;
    width: 20px;
    height: 20px;
}

.list-default {
    padding-left: 0;
    list-style-type: none;
}
.list-default > li {
    position: relative;
    margin-bottom: 5px;
}
.list-style-1 > li {
    padding-left: 12px;
}
.list-style-1 > li::before {
    content: '';
    top: 7px;
    left: 0;
    width: 3px;
    height: 3px;
    position: absolute;
    background-color: #777;
    border-radius: 10px;
}

.tb-default > thead > tr > th,
.tb-default > thead > tr > td,
.tb-default > tbody > tr > th,
.tb-default > tbody > tr > td {
    padding: 14px;
    font-size: 16px;
    vertical-align: middle;
    border-color: #e3e3e3;
}
/*
.tb-style-1 {
    border-top: 1px solid #333;
    border-bottom: 1px solid #ddd;
}
.tb-style-1 > thead > tr > th,
.tb-style-1 > tbody > tr > th {
    font-weight: 600;
    text-align: center;
    background-color: #f6f6f6;
}
.tb-style-1 > thead > tr > th,
.tb-style-1 > tbody > tr > th,
.tb-style-1 > tbody > tr > td {
    border-right: 1px solid #ddd;
}
.tb-style-1 > thead > tr > th:last-child, 
.tb-style-1 > tbody > tr > td:last-child {
    border-right: none;
}
.tb-style-1 > thead > tr > th {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    background-color: #f0f0f0;
    border-bottom: 1px solid #bbb;
}
.tb-style-1 > tbody > tr > td {
    padding: 18px;
    word-break: keep-all;
}
*/

/* 연혁 (페이지) */
.tb-info {
    border-top: 2px solid #333;
    border-bottom: 1px solid #ddd;
}
.tb-info > tbody > tr > th,
.tb-info > tbody > tr > td {
    font-size: 15px;
    border-right: 1px solid #e3e3e3;
}
.tb-info > tbody > tr > th {
    width: 120px;
    font-weight: 600;
    text-align: center;
    background-color: #f6f6f6;
}
.tb-info > tbody > tr > td {
    padding: 20px;
    word-break: keep-all;
}
.tb-info > tbody > tr > td:last-child {
    border-right: none;
}
.tb-info > tbody > tr > td ul {
    margin-bottom: 0;
}
.tb-info > tbody > tr > td ul > li {
    display: inline-block;
    margin: 0 10px 0 0;
}
.wrap-history {
    position: relative;
}
.wrap-history::before {
    content: '';
    top: 20px;
    left: 25%;
    height: 98.8%;
    position: absolute;
    border-left: 10px solid #f6f6f6;
    margin-left: -10px;
}
.history-block {
    margin-bottom: 45px;
}
.history-block:last-child {
    margin-bottom: 0;
}
.history-block > .year {
    float: left;
    width: 25%;
    position: relative;
    margin: 0;
    font-size: 30px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0;
}
.history-block > .year::before,
.history-block > .year::after {
    content: '';
    position: absolute;
}
.history-block > .year::before {
    top: 13px;
    right: 0;
    width: 65px;
    border-top: 1px solid #ddd;
}
.history-block > .year::after {
    top: 6px;
    right: -2px;
    width: 15px;
    height: 15px;
    background: #efaf11;
    border: 3px solid #fff;
    border-radius: 20px;
}
.history-block > .detail {
    width: 75%;
    display: inline-block;
    padding: 5px 0 0 40px;
}
.history-block ul > li {
    margin-bottom: 8px;
    color: #505050;
    padding-left: 14px;
    position: relative;
    font-size:15px;
}
.history-block ul > li::before{
  content:"";
  width:3px;
  height:3px;
  background-color:#777;
  position:absolute;
  left:0;
  top: 9px;
}
/* 오시는길 (페이지) */
#location .contact{
    margin-top: -6px;
    background: #35373c;
    padding: 45px 60px;
    color: #fff;
}
#location .contact::after{
  content:"";
  display:block;
  clear:both;
}
#location .left h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}
#location .left h4 i {
    margin-right: 6px;
    color: #f5c01f;
}
#location .left h4 span{
    font-weight: 600;
    letter-spacing: 0;
    display: block;
    margin-bottom: 10px;
    color: #ccc;
}
#location .right ul{
    margin: 0;
    float: right;
}
#location .right ul > li {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.02em;
    font-weight: 300;
    padding-left: 42px;
}
#location .right ul > li + li{
  margin-top:4px;
}
#location .right ul > li strong {
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    color: #ccc;
    letter-spacing: 0;
}

/* 사업분야 (페이지) */
.txt-box {
    padding: 35px 45px 25px;
    word-break: keep-all;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f9f9f9;
}
.txt-box > p {
    font-size: 16px;
    line-height: 1.75;
}
#business .txt-box {
  background: none;
  padding: 0;
  max-width: 950px;
  text-align: center;
  margin: 0px auto 60px;
  border:none;
  background: none;
}
#business .txt-box p {
  font-size: 18px;
  line-height:1.85;
  letter-spacing:-0.045em;
}
#business .biz-box {
    margin-top: 20px;
    padding: 0 18px;
}
#business .biz-box > h4 {
    margin: 0 auto 50px;
    padding: 0;
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    background: #777982 ;
    width: 220px;
    height: 220px;
    line-height: 220px;
    border-radius: 50%;
    letter-spacing: -0.08em;
}
#business .biz-box#biz2 > h4 {
    background-color: #e8a700;
}
#business .biz-box#biz3 > h4 {
    background-color: #35373c;
}
#business .biz-box#biz4 > h4 {
    background-color: #d22c2c;
}
#business .biz-box > .detail {
    font-size: 16px;
    padding: 30px 0px 0;
    position: relative;
    border-top: 1px solid #aaa;
}
#business .biz-box > .detail::before{
  content:"";
  width:1px;
  height: 50px;
  position:absolute;
  left:50%;
  top: -50px;
  background-color: #d8d8d8;
}
#business .biz-box > .detail::after{
  content:"";
  width: 13px;
  height: 13px;
  border: 1px solid #777982;
  background-color:#fff;
  position:absolute;
  left:50%;
  margin-left: -6px;
  top: -57px;
  border-radius:50px;
}
#business .biz-box#biz2 .detail::after {
    border-color: #efac09;
}
#business .biz-box#biz3 .detail::after {
    border-color: #3a3a3a;
}
#business .biz-box#biz4 .detail::after {
    border-color: #d22c2c;
}
#business .biz-box > .detail li{
  margin-bottom: 18px;
  line-height: 1.3;
  color: #333;
  letter-spacing: -0.045em;
  font-weight: 400;
}
/*
#business .biz-box {
    margin-top: 40px;
    padding: 13px;
    background: #fff;
    border-radius: 5px;
    border: 10px solid #eff3f8;
}
#business .biz-box .wrap-biz {
    width: 49%;
    position: relative;
    display: inline-block;
}
#business .biz-box .wrap-biz#biz1,
#business .biz-box .wrap-biz#biz2 {
    height: 260px;
    padding: 15px 25px 40px;
}
#business .biz-box .wrap-biz#biz1 {
    float: left;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
#business .biz-box .wrap-biz#biz3,
#business .biz-box .wrap-biz#biz4 {
    height: 220px;
    padding: 100px 25px 15px;
}
#business .biz-box .wrap-biz#biz3 {
    float: left;
    border-right: 1px solid #ddd;
}
#business .biz-box .wrap-biz#biz4 {
    border-top: 1px solid #ddd;
}
#business .biz-box .wrap-biz#biz2,
#business .biz-box .wrap-biz#biz4 {
    text-align: right;
}
#business .biz-box .wrap-biz h4 {
    width: 340px;
    position: absolute;
    margin: 0;
    padding: 18px 20px;
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}
#business .biz-box .wrap-biz#biz1 h4 {
    right: 0;
    bottom: 0;
    background-color: #1e71ad;
}
#business .biz-box .wrap-biz#biz2 h4 {
    left: -1px;
    bottom: 1px;
    background-color:#f8c62f;
}
#business .biz-box .wrap-biz#biz3 h4 {
    top: -1px;
    right: 0;
    background-color: #999;
}
#business .biz-box .wrap-biz#biz4 h4 {
    top: -2px;
    left: -1px;
    background-color: #be0000;
}
#business .biz-box .wrap-biz .detail ul {
    display: inline-block;
    text-align: left;
}
*/

/* 유지보수 (페이지) */
#maintenance #row1 {
    margin-bottom: 60px;
}

/* 게시판, 주문폼 공통 스타일 */
.board_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}
.search_wrap {
    margin-bottom: 0;
}
.table.table_default tr th, 
.table.table_default tr td {
    font-size: 16px;
    letter-spacing: -0.034em;
    padding: 20px 15px;
    border-color: #e3e3e3;
}
.table.table_default tbody .subject a:hover{
  text-decoration:underline;
}
.table.table_default tbody .subject .badge {
    padding: 6px 7px 5px;
    margin-right: 8px;
    font-weight: 500;
    color: #fff;
    background: #de3c3c;
    border-radius: 2px;
}
.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    background: #f6f6f6;
    padding: 40px 0;
}
.board_data_view .header_wrap .title{
    font-size:26px;
}
.board_data_view .header_wrap .info {
    margin-top: 12px;
}

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