.topbtn {position: fixed; bottom: 25px; right: 25px; display: block; width: 50px; height:50px; background: #A72B2A; z-index: 999999999; text-align: center; display: none; border-radius: 50%;}
.topbtn:before {position: absolute; content: ''; width:12px; height: 12px; border-top: 3px solid #fff; border-right: 3px solid #fff; display: inline-block; transform: translate(-50%,-50%) rotate(-45deg); position: absolute; top: 50%; left: 50%; transition: .3s;}
.topbtn:hover:before {top: 50%;}
.topbtn a {display: block; height: 100%; position: relative;}


/* pop_bottom */
.popup_bottom input{vertical-align: middle; margin-bottom:5px; margin-right:5px!important;}







/*********header***********/
header{
  position: fixed;
  width:100%;
  height:100px;
  min-width:1300px;
  z-index: 9999;
  top:0;
  left:0;
  transition: all .3s ease-in-out;
  background-color:#fff;
  /* border-bottom:1px solid #ccc; */
}
/* header.on{
  position: fixed;
  width:100%;
  min-width:1440px;
  top:0;
  left:0;
  background-color: #fff;
  border-bottom:1px solid #ccc;
} */
header .logo h1{
  position: absolute;
  width:159px;
  height:39px;
  top:30px;
  left:0;
  transition:all .3s ease-in-out;
  background: url(../img/logo_new.png) 50% 50% no-repeat;
  background-size: 159px;
  z-index: 9999;
}
header .logo h1 a{
  display: block;
  width:159px;
  height:39px;
}

.pos{position: relative;}
.bar{
  width:0;
  height: 3px;
  background-color: #A72B2A;
  position: absolute;
  left: 0;
  bottom: 0;
}
nav{
    width:100%;
    max-width:1400px;
    min-width:1400px;
    margin:0 auto;
    z-index: 999;
    position: relative;
}
.gnb{
    display: flex;
    align-items: center;
    justify-content: end;
    gap:25px;
}
.gnb > li{
    transition: all .2s ease-in-out;
    text-align: center;
}
.gnb > li > .gnb_wrap > a.on{color:#333;}

.gnb > li > .gnb_wrap > a{
    color:#333;
    font-size:15px;
    font-weight: 600;
    height:100px;
    line-height: 100px;
    position: relative;
}
.gnb > li > .gnb_wrap > a::after{content:'';
    display:block;
    width:0;
    height:2px;
    position: absolute;
    bottom:-10px;
    left:50%;
    background-color: #A72B2A;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.menu_bg{
  position: absolute;
  left: 0;
  top: 99px;
  width: 100%;
  height: 50px;
  display: none;
  z-index: 9;
  background-color: #fff;
  border-top:1px solid #ccc;
  border-bottom:3px solid #A72B2A;
}

/* .gnb > li > .gnb_wrap{position: relative;} */
.sub_menu{
  font-size:0;
  display:none;
  position: absolute;
  z-index:99;
  left:50%;
  transform: translateX(-50%);
  width:100%;
}
.sub_menu ul{
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    text-align: center;
    height:50px;
}
.sub_menu li{transition: all .2s ease-in-out;}
.sub_menu a{
  font-size:15px;
  font-weight: 400;
  color: #464243 !important;
  line-height: 50px;
  padding:0 20px;
  display: block;
  position: relative;
  transition: all .2s ease-in-out;
  overflow: hidden;
}
.sub_menu a::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 200%;
  border-radius: 50%;
  transform: translate3d(-50%,-50%,0) scale3d(0,0,0);
  transition: opacity .4s cubic-bezier(.19,1,.22,1),transform .75s cubic-bezier(.19,1,.22,1);
  /* background-color: #bf0b2c; */
  background-color: #A72B2A;
  opacity: 0;
  z-index: -1;
  transition: all .2s ease-in-out;
}
.sub_menu a:hover::before{
  opacity: 1;
  transition-duration: .85s;
  transition: all .2s ease-in-out;
  transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}
.sub_menu a:hover{color: #fff !important; transition: all .2s ease-in-out;}

/* header menu active */
header.active1 .gnb > li:nth-child(1) .gnb_wrap > a,
header.active2 .gnb > li:nth-child(2) .gnb_wrap > a,
header.active3 .gnb > li:nth-child(3) .gnb_wrap > a,
header.active4 .gnb > li:nth-child(4) .gnb_wrap > a,
header.active5 .gnb > li:nth-child(5) .gnb_wrap > a,
header.active6 .gnb > li:nth-child(6) .gnb_wrap > a,
header.active7 .gnb > li:nth-child(7) .gnb_wrap > a,
header.active8 .gnb > li:nth-child(8) .gnb_wrap > a,
header.active9 .gnb > li:nth-child(9) .gnb_wrap > a,
header.active10 .gnb > li:nth-child(10) .gnb_wrap > a,
header.active11 .gnb > li:nth-child(11) .gnb_wrap > a{color: #A72B2A;}

header.active1 .gnb > li:nth-child(1) > .gnb_wrap a::after,
header.active2 .gnb > li:nth-child(2) > .gnb_wrap a::after,
header.active3 .gnb > li:nth-child(3) > .gnb_wrap a::after,
header.active4 .gnb > li:nth-child(4) > .gnb_wrap a::after,
header.active5 .gnb > li:nth-child(5) > .gnb_wrap a::after,
header.active6 .gnb > li:nth-child(6) > .gnb_wrap a::after,
header.active7 .gnb > li:nth-child(7) > .gnb_wrap a::after,
header.active8 .gnb > li:nth-child(8) > .gnb_wrap a::after,
header.active9 .gnb > li:nth-child(9) > .gnb_wrap a::after,
header.active10 .gnb > li:nth-child(10) > .gnb_wrap a::after,
header.active11 .gnb > li:nth-child(11) > .gnb_wrap a::after{width:100%;}





/* header end */


.topbtn {position: fixed; bottom: 25px; right: 25px; display: block; width: 50px; height:50px; background: #A72B2A; z-index: 999999999; text-align: center; display: none; border-radius: 50%; border: 3px solid  #fff;}
.topbtn:before {position: absolute; content: ''; width:12px; height: 12px; border-top: 3px solid #fff; border-right: 3px solid #fff; display: inline-block; transform: translate(-50%,-50%) rotate(-45deg); position: absolute; top: 50%; left: 50%; transition: .3s;}
.topbtn:hover:before {top: 50%;}
.topbtn a {display: block; height: 100%; position: relative;}
/*********header end***********/

/***************footer***************/
footer {background: #333;}
footer .wrap div {float: left; margin-right: 50px;}
footer .wrap .footer_logo img {width: 200px; padding-top: 30px;}
footer .wrap .footer_content {padding: 30px 50px 30px 50px;}
footer .wrap .footer_content h3 {font-size: 24px; margin-bottom: 15px; color: #A72B2A;}
footer .wrap .footer_content p {font-size: 14px; line-height: 2em; color: #fff; letter-spacing: 0;}
footer .wrap .footer_content p span {margin-right: 20px;}

.footer_consult {background: url(../img/main_pointbg.jpg) no-repeat center / cover; height: 100px; padding: 25px 0; position: fixed; left: 0; bottom: 0; z-index: 99999; width: 100%;}
.footer_consult .wrap ul .footer_consult_txt {float: left; color: #fff;}
.footer_consult .wrap ul .footer_consult_txt h2 {font-weight: 900; font-size: 28px;}
.footer_consult .wrap ul .footer_consult_txt h3 {font-size: 18px;}
.footer_consult .wrap ul .footer_consult_btn {float: right;}
.footer_consult .wrap ul .footer_consult_btn a { border-radius: 40px; color: #A72B2A; display: inline-block; padding: 15px 35px; background: #fff; font-weight: 700; border: 1px solid  #A72B2A; transition:.3s;}
.footer_consult .wrap ul .footer_consult_btn a:hover {border-color: #fff; background: #A72B2A; color: #fff;}
/***************footer end***************/

/************swiper*******************/
.swiper {overflow: hidden; position: relative;}



/************swiper end*******************/

/**********main section***********/
.more {display: inline-block; padding: 10px 25px; color: #333; border: 1px solid  #333; text-align: center; transition:.5s; border-radius: 30px; margin-top: 30px;}
.more:hover {background: #fff; color: #333; border-color: #fff;}
.maintitle {text-align: center; margin: 70px 0;}
.maintitle h2 {font-size: 50px; font-weight: 700; color: #A72B2A; font-family: 'Montserrat', sans-serif;}
.maintitle p {font-size: 18px; color: #666; margin-top: 30px; line-height: 2em;}
.maintitle i {color: #A72B2A; font-size: 50px;}

/* visual swiper start */
.main_visual{
    width:100%;
    min-width:1400px;
    height:949px;
    margin-top:100px;
}
.typo_wrap{
  width:1400px;
  margin:0 auto;
  position: absolute;
  z-index: 99;
  height:727px;
}
.typo{
    position: absolute;
    top:70%;
    left:0;
    text-align: left;
    width:100%;
    z-index: 99999;
}

.typo span{
    color:#fff;
    display:block;
    opacity:0;
    transform:translate(0,100%);
    transition:all 1s ease-in-out;
}

.typo span:first-child{
    font-size:60px;
    transition-delay:0s;
}
.typo span:first-child strong{
  font-size:60px;
  transition-delay:0s;
  color:#fe1313;
}
.typo span:nth-child(2){
    font-size:30px;
    transition-delay:0.5s;
}
/* .main_visual .swiper-slide > img{width:100%; transform:scale(1.1); transition:all 5s ease;}
.main_visual .swiper-slide.swiper-slide-active > img.zoom{transform:scale(1);}

.main_visual .swiper .swiper-wrapper .swiper-slide.swiper-slide-active span:first-child{animation:text 1s .2s both;}
.main_visual .swiper .swiper-wrapper .swiper-slide.swiper-slide-active span:nth-child(2){animation:text 1s .3s both;}
.main_visual .swiper .swiper-wrapper .swiper-slide.swiper-slide-active span:last-child{animation:text 1s .4s both;}

@keyframes text{
    0%{opacity: 0; transform:translateX(-1920px);}
    100%{opacity: 1; transform: translateX(0);}
} */

.main_visual .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.main_visual .swiper-slide {
  width:100%;
  height:100%;
  text-align: center;
  font-size: 18px;
  background: #fff;
  overflow: hidden;

  /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.main_visual .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_visual .swiper .swiper-pagination span{margin:0 3px;}

.main_visual .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border:1px solid #fff;
    background: none;
    border-radius: 100%;
}

.main_visual .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fe1313;
}
.main_visual .swiper .swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    left:40%;
    bottom:50px;
    transform: translate(-50%, 100%);
}
.main_visual .swiper-button-prev,
.main_visual .swiper-container-rtl .swiper-button-next {
    /* background-image: url("../img/swiper_prev.png"); */
    left: 10px;
    right: auto;
    width:20px;
    color:#fe1313
}
.main_visual .swiper-button-next,
.main_visual .swiper-container-rtl .swiper-button-prev {
    /* background-image: url("../img/swiper_next.png"); */
    right: 10px;
    left: auto;
    width:20px;
    color:#fe1313
}
.main_visual .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:44px;}
.main_visual .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:44px;}

.main_visual .swiper-button-next,
.main_visual .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 40px 60px;
    background-position: center;
    background-repeat: no-repeat
}
/* visual swiper end */

/* image_show_wrap 공통 */
.image_show_wrap,
.image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
.image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
.image_show_wrap2{animation-duration: 1.4s;}

.show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
.show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
.show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
.show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
.show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
.show_img06{animation-name: show_img06;}
@keyframes show_img06{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
/* image_show_wrap 공통 */

/* section1 */
.section1{
  position: relative;
  padding:60px 0;
}
.products h2{
  font-size:42px;
  color:#002e7b;
  text-align: center;
  position: relative;
  padding-top:20px;
}
.products h2::before{
  position: absolute;
  content: '';
  top:0;
  left:50%;
  transform: translateX(-50%);
  width:60px;
  height:2px;
  background-color: #002e7b;
}
.products > p{
  font-size:24px;
  color:#333;
  text-align: center;
}
.products_list{padding:60px 0;}
.products_list li{
  text-align: center;
  border-right:1px solid #ccc;
}
.products_list li:last-child{border-right:none;}
.products_img{padding:20px 0;}
.products_list h3{
  font-size:22px;
  color:#333;
  text-align: center;
}
.products_list p{
  font-size:18px;
  color:#333;
  text-align: center;
}
/* section1 */

/* section1_1 */
.importance{padding:30px 0; position: relative; text-align: center;}
.importance .image_show_wrap,
.importance .image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
.importance .image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
.importance .image_show_wrap2{animation-duration: 1.4s;}

.importance img{
  width:100%;
  height:450px;
  object-fit: cover;
}
.importance_text{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.importance_text h2{
  font-size:48px;
  color:#fff;
  text-align: center;
}
.importance_text p{
  font-size:18px;
  color:#fff;
  text-align: center;
  padding:30px 0 90px 0;
}
.importance_text a{
  color:#fff;
  border:1px solid #ccc;
  font-size:16px;
  padding:10px 60px 10px 20px;
  position: relative;
  transition: all .3s ease-in-out;
}
.importance_text a::before{
  position: absolute;
  content: '>';
  top:50%;
  transform: translateY(-50%);
  right:30px;
  font-size:18px;
  transition: all .3s ease-in-out;
  color:#fff;
}
.importance_text a:hover {background-color: #bf0b2c; color:#fff;}
.importance_text a:hover::before{right:20px;}
/* section1_1 */

/* section2 */
.section2{
  position: relative;
  padding:60px 0;
}
.certificate h2{
  font-size:42px;
  color:#002e7b;
  text-align: center;
  padding:20px 0;
  position: relative;
}
.certificate h2::before{
  position: absolute;
  content: '';
  top:0;
  left:50%;
  transform: translateX(-50%);
  width:50px;
  height:3px;
  background-color: #002e7b;
}
.certificate ul{
  margin-bottom:30px;
}
.certificate li img{width:100%; height:100%;}
/* section2 */

/* section3 */
.section3{
  position: relative;
  padding:60px 0;
}
.slide h2{
  font-size:42px;
  color:#002e7b;
  text-align: center;
  padding:20px 0;
  position: relative;
}
.slide h2::before{
  position: absolute;
  content: '';
  top:0;
  left:50%;
  transform: translateX(-50%);
  width:50px;
  height:3px;
  background-color: #002e7b;
}
.slide .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide .swiper-slide {
  width:100%;
  height:100%;
  text-align: center;
  font-size: 18px;
  background: #fff;
  overflow: hidden;

  /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* slide swiper end */
/* section3 */

/* section4 */
.section4{
  position: relative;
  padding:60px 0;
}
.section4 .banner h3{
  font-size:40px;
  color:#88746a;
  margin-bottom:-10px;
}
.section4 .banner span{
  display: block;
  font-size:34px;
  color:#88746a
}
.section4 .banner .col3 p{
  font-size:24px;
  color:#333;
  position: relative;
  margin-top:30px;
}
.section4 .banner .col3 p::before{
  position: absolute;
  content: '→';
  font-size:48px;
  font-weight: 200;
  color:#a72b2a;
  top:-15px;
  right:50px;
}
.section4 .banner li{position: relative;}
.section4 .line img{width:80px;}
.section4 .line{
  position: absolute;
  top:20px;
  right:40px;
}
.section4 .banner li:last-child{
  border:1px solid #a72b2a;
  padding:20px;
  display: flex;
}
.section4 .banner li:last-child h3{
  font-size:24px;
  color:#88746a;
  padding-left:30px;
  margin-bottom:5px;
}
.section4 .banner li:last-child p{
  font-size:18px;
  color:#88746a;
  padding-left:30px;
  margin-top:10px;
}
.section4 .banner li:last-child a{
  display: block;
  font-size:16px;
  color:#fff;
  background-color: #a72b2a;
  width:120px;
  margin-left:30px;
  margin-top:20px;
  padding:5px 40px 5px 20px;
  transition: all .3s ease-in-out;
  position: relative;
}
.section4 .banner li:last-child a::before{
  position: absolute;
  content: '>';
  top:50%;
  transform: translateY(-50%);
  right:20px;
  font-size:20px;
  color:#fff;
  transition: all .3s ease-in-out;
}
.section4 .banner li:last-child a:hover{color:#a72b2a; background-color: #fff;}
.section4 .banner li:last-child a:hover::before{color:#a72b2a; right:10px}
/* section4 */


/**********main section end***********/

/**************sub common******************/
.sub {background: url(../img/subbg.jpg) no-repeat center / cover;}
/* .sub > .wrap {padding-bottom: 100px;} */
/* .subtop {background-repeat: no-repeat; background-position: center; background-size: cover; height: 750px; text-align: center; color: #fff; position: relative; padding-top: 300px; } */
.subtop{
  margin-top:100px;
  padding:30px 0;
}
.subtop h3 {font-size: 42px; text-align: center;}
.sub01_01 .subtop h3 {color:#A72B2A;}
.sub02_01 .subtop h3 {color:#002e7b;}
.sub03_01 .subtop h3 {color:#A72B2A;}
.sub04_01 .subtop h3 {color:#002e7b;}
.sub05_01 .subtop h3 {color:#A72B2A;}
.sub06_01 .subtop h3 {color:#002e7b;}
.sub07_01 .subtop h3 {color:#A72B2A;}
.sub08_01 .subtop h3 {color:#002e7b;}
.sub09_01 .subtop h3 {color:#A72B2A;}
.sub10_01 .subtop h3 {color:#002e7b;}
.sub11_01 .subtop h3 {color:#A72B2A;}
.sub11_02 .subtop h3 {color:#A72B2A;}

/* .subtop h1 {font-size: 72px; margin-bottom: 15px; font-weight: 900;}
.subtop p {font-size: 22px; opacity: .7; letter-spacing: 0; line-height: 2em; font-weight: 300;}
.subtop01 {background-image: url(../img/subtop01.jpg);}
.subtop02 {background-image: url(../img/subtop02.jpg);}
.subtop03 {background-image: url(../img/subtop03.jpg);}
.subtop04 {background-image: url(../img/subtop04.jpg);}
.subtop05 {background-image: url(../img/subtop05.jpg);}
.subtop06 {background-image: url(../img/subtop06.jpg);} */

.sub_cate {width: 1400px; margin: 0 auto; display: flex; z-index: 99; overflow: hidden; border-bottom: 1px solid #ddd; margin-top:30px;}
.sub_cate a {display: block; text-align: center; padding: 10px 0; font-size: 20px; color: #333; flex:1; transition: .3s; }
.sub_cate a:hover {color:#fff; background-color: #A72B2A;}

/* 게시판 공통 메뉴 */
.board .category_pd{border-bottom:1px solid #ccc; margin-bottom:40px; height:43px;}
.board .category_pd .cat_bar{display: none;}

.board .category_pd a{text-align: center; font-size: 18px; color: #333; transition: .3s; letter-spacing: -1px; height:50px; line-height: 50px;}
.board .category_pd a b{display: block; font-weight: 400; font-size:18px; color:#fff; letter-spacing: -1px; height:50px; line-height: 50px;}

.sub01_01 .board .category_pd a b{color:#fff; background-color: #A72B2A;}
.sub01_01 .board .bbs_paging tr td b{background: #A72B2A;}
.sub01_01 .board .category_pd a:hover{background: #A72B2A; color:#fff;}

.sub02_01 .board .category_pd a b{color:#fff; background-color: #002e7b;}
.sub02_01 .board .bbs_paging tr td b{background: #002e7b;}
.sub02_01 .board .category_pd a:hover{background: #002e7b; color:#fff;}

.sub03_01 .board .category_pd a b{color:#fff; background-color: #A72B2A;}
.sub03_01 .board .bbs_paging tr td b{background: #A72B2A;}
.sub03_01 .board .category_pd a:hover{background: #A72B2A; color:#fff;}

.sub04_01 .board .category_pd a b{color:#fff; background-color: #002e7b;}
.sub04_01 .board .bbs_paging tr td b{background: #002e7b;}
.sub04_01 .board .category_pd a:hover{background: #002e7b; color:#fff;}

.sub05_01 .board .category_pd a b{color:#fff; background-color: #A72B2A;}
.sub05_01 .board .bbs_paging tr td b{background: #A72B2A;}
.sub05_01 .board .category_pd a:hover{background: #A72B2A; color:#fff;}

.sub06_01 .board .category_pd a b{color:#fff; background-color: #002e7b;}
.sub06_01 .board .bbs_paging tr td b{background: #002e7b;}
.sub06_01 .board .category_pd a:hover{background: #002e7b; color:#fff;}

.sub07_01 .board .category_pd a b{color:#fff; background-color: #A72B2A;}
.sub07_01 .board .bbs_paging tr td b{background: #A72B2A;}
.sub07_01 .board .category_pd a:hover{background: #A72B2A; color:#fff;}

.sub08_01 .board .category_pd a b{color:#fff; background-color: #002e7b;}
.sub08_01 .board .bbs_paging tr td b{background: #002e7b;}
.sub08_01 .board .category_pd a:hover{background: #002e7b; color:#fff;}

.sub09_01 .board .category_pd a b{color:#fff; background-color: #A72B2A;}
.sub09_01 .board .bbs_paging tr td b{background: #A72B2A;}
.sub09_01 .board .category_pd a:hover{background: #A72B2A; color:#fff;}

.sub10_01 .board .category_pd a b{color:#fff; background-color: #002e7b;}
.sub10_01 .board .bbs_paging tr td b{background: #002e7b;}
.sub10_01 .board .category_pd a:hover{background: #002e7b; color:#fff;}

.sub01_01 .board .category_pd a{width:16.666%}
.sub02_01 .board .category_pd a{width:16.666%}
.sub03_01 .board .category_pd a{width:16.666%}
.sub04_01 .board .category_pd a{width:20%}
.sub05_01 .board .category_pd a{width:25%}
.sub06_01 .board .category_pd a{width:50%}
.sub07_01 .board .category_pd a{width:14.285%}
.sub08_01 .board .category_pd a{width:50%}
.sub09_01 .board .category_pd a{width:50%}
.sub10_01 .board .category_pd a{width:100%}

.sub_tabmenu ul{font-size:0; border-bottom:1px solid #ccc;}
.sub_tabmenu li{display:inline-block;}
.sub_tabmenu li a{
  display: block;
  font-size:18px;
  text-align: center;
  color:#333;
  height:50px;
  line-height: 50px;
  transition: all .3s ease-in-out;
}
.tabmenu11 li{width:50%;}

.sub_tabmenu li a:hover{background-color: #A72B2A; color:#fff; transition: all .3s ease-in-out;}

.sub11_01 .sub_tabmenu li:nth-child(1) a{background-color: #A72B2A; color:#fff;}
.sub11_02 .sub_tabmenu li:nth-child(2) a{background-color: #A72B2A; color:#fff;}

.sub11_01  .board .category_pd{border-bottom:0;}
.sub11_02  .board .category_pd{border-bottom:0;}


.sub11_01 .board .category_pd a b{color:#fff; background-color: #A72B2A;}
.sub11_01 .board .bbs_paging tr td b{background: #A72B2A;}
.sub11_01 .board .category_pd a:hover{background: #A72B2A; color:#fff;}

.sub11_01 .board .AWbbs_input_table th input[type=checkbox] + label::before, .AWbbs_input_table td input[type=checkbox] + label::before{background-color: #A72B2A;}










/* 게시판 공통 메뉴 */

/* .sub1 .sub_cate a:nth-child(1) {border-bottom: 2px solid #A72B2A; color:#A72B2A; font-weight: 500;}
.sub2 .sub_cate a:nth-child(2) {border-bottom: 2px solid #A72B2A; color:#A72B2A; font-weight: 500;}
.sub3 .sub_cate a:nth-child(3) {border-bottom: 2px solid #A72B2A; color:#A72B2A; font-weight: 500;}
.sub4 .sub_cate a:nth-child(4) {border-bottom: 2px solid #A72B2A; color:#A72B2A; font-weight: 500;}
.sub5 .sub_cate a:nth-child(5) {border-bottom: 2px solid #A72B2A; color:#A72B2A; font-weight: 500;} */

.subtitle {position: relative; text-align: center; margin: 100px 0;}
.subtitle h2 {font-size: 60px; padding-bottom: 30px; color: #333; position: relative;}
.subtitle p { font-size: 16px; color: #666; margin-top: 15px; line-height: 2em;}
.subtitle p strong {color: #A72B2A; line-height: 2em; display: block; font-size: 16px;}
.subtitle:before {position: absolute; content: ''; width: 50px; height: 1px; background: #A72B2A; left: 50%; transform: translateX(-50%); bottom: 90px;}

.stable {width: 100%; border-color: #ddd; background: #fff;}
.stable th {background: #A72B2A; color: #fff;}
.stable th,
.stable td {padding: 10px 20px;}
.stable td a {color: #A72B2A; font-weight: 700; padding-left: 20px; display: inline-block; transition:.3s;}
.stable td a:hover {opacity: .8;}
/**************sub common end******************/

/* 공통 */
.sub_hello{padding:30px 0;}
.sub_hello .AW_bbs_table{border-top:none;}
/* 공통 */

/**************sub ******************/


/**************sub end******************/

