@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------
 * Name      :web_layout.css    
 * Desc      :page layout 
 * Created   :
 * Updated   :
 ------------------------------------------------------------ */
body.fixe {
  overflow: hidden;
}
.m_gnb .sub_menu {
  display: none !important;
}
.web_dis {
  display: block;
}
.m_br {
  display: none;
}
.search_btn {
  display: none;
  position: absolute;
  right: 65px;
  top: 26px;
}
img {
  max-width: 100%;
}
.pc_view {
  display: block;
}
.mb_view {
  display: none;
}
#navigation {
  display: none;
}

/* down */

.down .w_gnb .gnb > ul > li > a > span {
  color: #000000;
}
.down .w_gnb .gnb > ul > li:after {
  background: #000;
}
.down .menu_btn a span {
  background: #000000;
}
.down .menu_btn span,
.down .menu_btn span:before,
.down .menu_btn span:after {
  background: #000000;
}
.down .menu_btn a:after {
  background: #000000;
}
.down .menu_btn a:before {
  color: #000;
}

.down .top_menu > li a {
  color: #000;
}
.down .top_menu > li a img {
  opacity: 0;
}
.down .top_menu > li a img.pa {
  opacity: 1;
}
.down .top_menu > li a .lang {
  background: url(../img/common/ico_lang_on.png) no-repeat left center;
}
.down .top_menu > li a.on {
  color: #05295d;
}
.down .top_menu > li a.on:after {
  background: #000;
}

#header.down {
  padding-top: 0px;
}
#header.down:after {
  opacity: 1;
}
#header.down h1 a {
  background: none;
}
#header.down h1 img {
  -webkit-filter: none;
  filter: none;
}
/* header */
#header {
  /* padding-top: 20px; 상당메뉴 상단여백 */
  width: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9999;
  box-sizing: border-box;
  transition: all 0.2s 0s ease-in-out;
}

.in_header {
  max-width: 1720px;
  width: 100%;
  height: auto;
  min-height: 80px;
  box-sizing: border-box;
  background: rgba(
    255,
    255,
    255,
    0.8
  ); /* <-- 흰색(255,255,255)에 90% 불투명도 적용 */
  margin: 0 auto;
  position: relative;
  z-index: 9;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 10%);
}
#header h1 {
  position: absolute;
  left: 15px;
  transform: translateY(-50%);
  top: 50%;
  overflow: hidden;
  z-index: 10;
}

.lang {
  position: absolute;
  right: 179px;
  top: 50%;
  transform: translateY(-50%);
}
.lang > a {
  display: flex;
  align-items: center;
}
.lang > a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 3px solid #222;
  border-right: 3px solid #222;
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: -2px; /*transition:all 0.3s 0s ease-in-out;*/
}
.lang .navi {
  background: #fff;
  width: 90px;
  position: absolute;
  left: 50%;
  top: 53px;
  transform: translateX(-50%);
  box-shadow: 2px 4px 3px rgba(0, 0, 0, 20%);
}
.lang .navi > li {
  padding: 0px 0px;
}
.lang .navi > li:not(:first-child) {
  border-top: 1px solid #eee;
}
.lang .navi > li > a {
  display: flex;
  height: 38px;
  align-items: center;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400;
}
.lang .navi > li > a:hover {
  background: #eee;
  color: #000;
}

.top_bt {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.top_bt > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e60012;
  width: 142px;
  height: 46px;
  border-radius: 6px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}
.top_bt > a img {
  margin-right: 5px;
}

.top_menu_wrap {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  display: none !important;
}
.top_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top_menu > li {
  margin-left: 7px;
  padding-left: 7px;
  position: relative;
  line-height: 34px;
}
.top_menu > li:before {
  display: block;
  content: "";
  width: 1px;
  height: 10px;
  position: absolute;
  left: 0px;
  top: 9px;
  background: #cccccc;
}
.top_menu > li:first-child {
  margin-left: 0px;
  padding-left: 0px;
}
.top_menu > li:first-child:before {
  display: none;
}
.top_menu > li a {
  display: block;
  height: 26px;
  line-height: 26px;
  color: #999999;
  font-weight: 400;
  font-size: 14px;
  position: relative;
}
.top_menu > li a.on {
  color: #fff;
  font-weight: 600;
}
.top_menu > li a.on:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #fff;
  transition: all 0.2s 0s ease-in-out;
}
.top_menu > li a .lang {
  display: block;
  padding-left: 27px;
  background: url(../img/common/ico_lang.png) no-repeat left center;
}
.top_menu > li a img {
  transition: all 0.2s 0s ease-in-out;
}

.m_gnb_on {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  box-sizing: border-box;
  transform: translateY(-50%);
}
.m_gnb_on .menu_btn {
  margin: 0 auto;
}
.menu_btn {
  position: absolute;
  right: 0px;
  top: 50%;
  font-family: "Montserrat", sans-serif;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  box-sizing: border-box;
  display: none;
}

/*
.menu_btn a:before {display:block; content:"Menu"; position:absolute; right:100%; top:0px; line-height:20px; color:#fff; font-size:16px; padding-right:10px; font-weight:600;}

*/

/* wrap */
#wrap {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  transition: all 0.3s 0s ease-in-out;
}
#inner_wrap {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100px;
}

#inner_wrap.no_visual {
  padding-top: 70px;
}
#inner_wrap.bg_on {
  background: #f8f9fa;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
}

.bg_wrap {
  background: #f2f2f2;
}

.w_gnb {
  padding: 0px 280px;
}
.w_gnb .gnb {
  padding: 0px 0px 0px 0px;
}
.w_gnb .gnb > ul {
  max-width: 870px;
  margin: 0 auto;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.w_gnb .gnb > ul > li {
  position: relative;
}
.w_gnb .gnb > ul > li > a {
  padding-left: 22px;
  display: block;
}
.w_gnb .gnb > ul > li > a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 80px;
  color: #222222;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.2s 0s ease-in-out;
}
.w_gnb .gnb > ul > li > a > span:after {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 3px solid #222;
  border-right: 3px solid #222;
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
  margin-left: 14px;
  margin-top: -3px; /*transition:all 0.3s 0s ease-in-out;*/
}
.w_gnb .gnb > ul > li:hover > a > span {
  color: #e60012;
}
.w_gnb .gnb > ul > li:hover > a > span:after {
  transform: rotate(-135deg);
  margin-top: 3px;
  border-color: #e60012;
}

.w_gnb .sub_menu {
  position: absolute;
  left: 0%;
  width: 180px;
  box-sizing: border-box;
  overflow: hidden;
  top: 100%;
  display: none;
  padding: 0px 0px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 2px 4px 3px rgba(0, 0, 0, 20%);
  padding: 10px 0px;
  display: none;
  z-index: 10;
}
.w_gnb .sub_menu > li {
  padding: 3px 3px 3px 3px;
  letter-spacing: -0.5px;
}
.w_gnb .sub_menu > li > a {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #222;
  padding: 5px 0px;
  line-height: 1.4em;
  padding-left: 22px;
}
.w_gnb .sub_menu > li > a:hover {
  color: #e60012;
}
.w_gnb .three_depth {
  display: none;
}
.w_gnb .three_depth {
  display: none;
}

.gnb08 {
  display: none;
}
.gnb09 {
  display: none;
}

#gnb_bar {
  position: absolute;
  height: 240px;
  display: none;
  left: 0%;
  top: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 70%);
}

.m_gnbW {
  display: block;
}
.slide_menu_wrap {
  width: 310px;
  box-sizing: border-box;
  height: 100%;
  z-index: 998;
  position: fixed;
  right: -400px;
  top: 0px;
  bottom: 0px;
  box-shadow: -1px 0px 5px rgb(0, 0, 0, 0.25);
}
.slide_menu_wrap:after {
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background: #000;
  position: fixed;
  left: 0%;
  top: 0px;
  opacity: 0.5;
  transition: all 0.3s 0s ease-in-out;
}
.slide_menu_wrap.on:after {
  width: 100%;
}
.slide_menu_inner {
  height: 100%;
  background: #fff;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: inherit;
  -webkit-overflow-scrolling: touch;
  z-index: 2;
  position: relative;
}

.slide_menu_wrap .m_gnb_on {
  display: none !important;
}
.slide_menu_wrap .top_menu_wrap {
  text-align: center;
  position: relative;
  right: auto;
  top: auto;
  display: block;
  transform: none;
}
.slide_menu_wrap .top_menu_wrap > .top_menu > li svg .white {
  fill: #333;
}
.slide_menu_wrap .top_menu {
  padding: 0px;
  background: #333;
}
.slide_menu_wrap .top_menu > li a .lang {
  background: url(../img/common/ico_lang.png) no-repeat left center !important;
  background-size: 14px auto;
  color: #fff;
  font-weight: 600;
}
.slide_menu_wrap .top_menu > li:nth-child(2):before {
  display: block;
}
.slide_menu_wrap .top_menu > li:before {
  background: #fff !important;
}
.slide_menu_wrap .top_menu {
  transform: none;
  margin-bottom: 5px;
  right: auto;
  top: auto;
  position: relative;
  display: flex;
}
.slide_menu_wrap .top_menu > li {
  width: 50%;
  box-sizing: border-box;
  float: none;
  padding: 0px;
  text-align: center;
  margin: 0px;
}
.slide_menu_wrap .top_menu > li > a {
  background: none !important;
  color: #fff;
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  padding: 0px;
}
.slide_menu_wrap .top_menu > li > a img {
  opacity: 1 !important;
}
.slide_menu_wrap .top_menu > li > a img.pa {
  display: none;
}
.slide_menu_wrap .in_header {
  background: url(../img/common/logo.png) no-repeat 40% center;
  height: 95px;
  padding: 0px;
  background-size: 50% auto;
}

.slide_menu_wrap .gnb > ul {
  overflow: hidden;
}
.slide_menu_wrap .gnb > ul > li {
  border-bottom: 1px solid #e2e2e2;
  transform: translateX(30%);
  -webkit-transform: translateX(30%);
  transition: all 0.8s 0s ease-in-out;
  -webkit-transition: all 0.8s 0s ease-in-out;
}
.slide_menu_wrap .gnb > ul > li > a {
  display: block;
  line-height: 60px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding-left: 40px;
  background: #fff;
  position: relative;
}
.slide_menu_wrap .gnb > ul > li > a:after {
  display: block;
  content: "＋";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
}
.slide_menu_wrap .gnb > ul > li > a.on:after {
  content: "－";
}
.slide_menu_wrap .gnb > ul > li:hover > a {
  background: #e60012;
  color: #fff;
}
.slide_menu_wrap .gnb > ul > li > a.on {
  background: #e60012;
  color: #fff;
}
.slide_menu_wrap .gnb .sub_menu {
  background: #fff;
  display: none;
  padding: 10px 0px;
}
.slide_menu_wrap .gnb .sub_menu > li {
  border-top: 1px solid #eee;
}
.slide_menu_wrap .gnb .sub_menu > li:first-child {
  border-top: none;
}
.slide_menu_wrap .gnb .sub_menu > li > a {
  display: block;
  line-height: 23px;
  padding: 10px 0px 10px 50px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s 0s ease-in-out;
  -webkit-transition: all 0.3s 0s ease-in-out;
  font-weight: 500;
}
.slide_menu_wrap .gnb .sub_menu > li > a:hover {
  padding-left: 55px;
}

.slide_menu_wrap .gnb .three_depth > li {
  padding: 0px 0px 0px 55px;
}
.slide_menu_wrap .gnb .three_depth > li > a {
  display: block;
  line-height: 130%;
  padding: 5px 0px 5px 10px;
  font-size: 14px;
  color: #0d437b;
  transition: all 0.3s 0s ease-in-out;
  -webkit-transition: all 0.3s 0s ease-in-out;
  position: relative;
}
.slide_menu_wrap .gnb .three_depth > li > a:before {
  display: block;
  content: "";
  width: 5px;
  height: 1px;
  background: #0d437b;
  position: absolute;
  left: 0px;
  top: 50%;
}
.slide_menu_wrap .gnb .three_depth > li > a:hover {
  margin-left: 5px;
}

.slide_menu_wrap.on .gnb > ul > li {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transition: all 0.8s 0s ease-in-out;
  -webkit-transition: all 0.8s 0s ease-in-out;
}
.slide_menu_wrap .top_menu > li > a {
  color: #fff !important;
}
.slide_menu_wrap .top_menu > li a.on:after {
  display: none !important;
}

/* visual */
#section1 {
  padding: 0px;
}

.main_visual {
  height: 919px;
  position: relative;
}
.main_visual .bxslider > li {
  background-size: cover !important;
}
.main_visual .bxslider > li .bg_img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1920px;
  height: 980px;
  overflow: hidden;
}
.main_visual .bxslider > li .bg_img img {
  transform: scale(1.05);
  transform-origin: 50% 50%;
  transition: all 3s 0s ease-in-out;
}
.main_visual .bxslider > li.active .bg_img img {
  transform: scale(1);
}
.main_visual .bxslider > li.active .visual_txt {
  opacity: 1;
  transform: translateY(0);
}
.main_visual .bxslider > li .visual_txt {
  opacity: 0;
  color: #fff;
  transform: translateY(50%);
  transition: all 0.9s 0s ease-in-out;
}
.main_visual .bxslider > li .visual_txt .txt_a {
  font-size: 78px;
  font-weight: 600;
  line-height: 1.3em;
}
.main_visual .bxslider > li .visual_txt .txt_b {
  font-size: 23px;
  line-height: 1.4em;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 10px;
}

.main_visual {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.main_visual .bxslider > li {
  background-size: cover !important;
}
.main_visual .v_frame {
  width: 100%;
  max-width: 1400px;
  height: 890px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.main_visual .v_bt {
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  z-index: 99;
}
.main_visual .v_bt > a {
  display: block;
  color: #000;
  font-weight: 100;
  text-align: center;
  padding: 13px;
  line-height: 14px;
  box-sizing: border-box;
  position: relative;
  font-size: 1px;
  text-indent: -999999em;
}
.main_visual .v_bt > a:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  transform: rotate(45deg);
  left: 50%;
  top: 50%;
}
.main_visual .stop {
  margin-left: 10px;
}
.main_visual .stop a {
  display: block;
  color: #000;
  line-height: 100%;
  font-size: 0px;
  text-align: center;
  width: 38px;
  height: 38px;
}
.main_visual .stop .bx-stop {
  background: url(../img/main/stop.png) no-repeat center center;
}
.main_visual .stop .bx-start {
  background: url(../img/main/play.png) no-repeat center center;
}

.main_visual #board_l1 {
  margin-right: 15px;
}
.main_visual #board_r1 {
  margin-left: 0px;
}
.main_visual #board_l1 a:after {
  margin: -7px 0px -7px 0px;
  transform: rotate(225deg);
}
.main_visual #board_r1 a:after {
  margin: -7px 0px 0px -7px;
}

.visual_counter_wrap {
  width: 100%;
  max-width: 1400px;
  position: absolute;
  left: 50%;
  bottom: 25%;
  z-index: 98;
  transform: translateX(-50%);
}
.visual_counter_wrap .visual_counter {
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
  padding: 0px 0px;
  box-sizing: border-box;
}
.main_visual #visual_counter {
  z-index: 98;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  line-height: 1.4em;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 10px;
}
.main_visual #visual_counter > span {
  font-weight: 700;
}

.main_visual .bx-controls {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30%;
  width: 100%;
  max-width: 1500px;
  box-sizing: border-box;
  z-index: 99;
}
.main_visual .bx-wrapper .bx-pager {
  position: relative;
  width: auto !important;
  left: auto;
  bottom: auto;
  display: inline-block;
  vertical-align: top;
  padding: 7px 10px 0px 0px;
  z-index: 99;
}

.main_visual .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item {
  vertical-align: top;
}
.main_visual .bx-wrapper .bx-pager.bx-default-pager a {
  width: 14px;
  height: 14px;
  margin: 0 4px;
  background: #fff;
  border: none;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  box-sizing: border-box;
  position: relative;
  opacity: 0.5;
}

.main_visual .bx-wrapper .bx-pager.bx-default-pager a:hover {
  opacity: 0.5;
  background: #fff;
}
.main_visual .bx-wrapper .bx-pager.bx-default-pager a.active {
  opacity: 1;
  background: #fff;
}
.main_visual .bx-wrapper .bx-controls-auto .active {
  display: none;
}

.visual-pager {
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  padding-right: 10px;
}
.visual-pager > li {
  padding: 0px 3px;
}
.visual-pager > li > a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.visual-pager > li > a:after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #fff;
  opacity: 0.5;
}
.visual-pager > li > a.active {
  opacity: 1;
  background: rgba(255, 255, 255, 50%);
}
.visual-pager > li > a.active:after {
  opacity: 1;
}

.main_visual .scroll_ico {
  position: absolute;
  width: 100px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  left: 50%;
  bottom: 5%;
  z-index: 97;
  display: none;
}
.main_visual .scroll_ico > a {
  cursor: default;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  padding: 50px 0px 35px 0px;
  background: url(../img/main/ico_scroll.png) no-repeat center top;
  position: relative;
}
.main_visual .scroll_ico .arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(136deg) translateX(-50%);
  opacity: 0.8;
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: rotate(136deg) translateX(-50%);
  transform-origin: 0px;
}
.main_visual .scroll_ico .arrow2 {
  bottom: 0px;
}
.main_visual .scroll_ico .arrow1 {
  animation: mv1 0.7s ease-in-out 0.7s infinite;
}

@keyframes mv1 {
  0% {
    opacity: 1;
    bottom: 0px;
  }
  40% {
    opacity: 1;
    bottom: -8px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
.m_tit_wrap {
  padding-bottom: 50px;
}
.m_tit_wrap .eng {
  font-size: 18px;
  color: #222222;
  font-weight: 500;
  padding-bottom: 10px;
  line-height: 1.4em;
}
.m_tit_wrap > h3 {
  font-size: 45px;
  color: #333333;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 130%;
}

.m_tit_wrap .txt {
  font-size: 20px;
  color: #222222;
  font-weight: 400;
  padding-top: 30px;
  line-height: 1.4em;
}

.main_quick {
  display: flex;
  flex-wrap: wrap;
  margin: -13px;
}
.main_quick > li {
  width: 25%;
  padding: 13px;
}
.main_quick > li > a {
  display: block;
}
.main_quick dl {
  display: block;
  max-width: 95%;
  position: relative;
  padding: 1.5em 5px 10px 0px;
  background: #fff;
  margin-top: -3em;
}
.main_quick dl dt {
  font-size: 1.5em;
  line-height: 1.4em;
  font-weight: 700;
  color: #000;
  padding-bottom: 10px;
}
.main_quick dl .arrow {
  font-size: 0.9em;
  color: #e60012;
  padding-top: 10px;
  font-weight: 500;
}

#section2 {
  background: #f5f5f5;
}
.main_product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main_product > li {
  width: calc(23% - 10px);
  margin-left: 10px;
  transition: all 0.3s 0s ease-in-out;
  position: relative;
  overflow: hidden;
}
.main_product > li > img {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  max-width: none;
  z-index: -1;
}
.main_product > li:first-child {
  margin-left: 0px;
}
.main_product > li.on {
  width: calc(54% - 10px);
}
.main_product > li.on > img {
  transform: translateX(0);
}
.main_product > li.on .box .txt {
  transform: scale(1);
  height: 4em;
}
/*
.main_product > li.on .box .mont {transform:scale(1);}
.main_product > li.on .box .bt {padding-top:50px; transform:scale(1);}
.main_product > li.on .box > h4 {font-size:64px; font-weight:800; line-height:1.3em;}
*/

.main_product > li .box {
  height: 530px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding-left: 40px;
}
.main_product > li .box .txt {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 400;
  transition: all 0.3s 0s ease-in-out;
  transform: scale(0);
  height: 3em;
}
.main_product > li .box > h4 {
  font-size: 28px;
  line-height: 1.3em;
  font-weight: 700;
  padding-bottom: 10px;
  transition: all 0.3s 0s ease-in-out;
}

.main_product > li .box .bt {
  transition: all 0.3s 0s ease-in-out;
  transform: scale(0);
}
a.main_bt {
  display: inline-flex;
  min-width: 185px;
  height: 50px;
  background: #0083cb;
  padding: 15px 0px;
  box-sizing: border-box;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}

a.main_bt .txt {
  flex: 1;
  color: #fff;
  text-align: center;
  z-index: 2;
  transition: all 0.3s 0s ease-in-out;
}
a.main_bt .plus {
  width: 50px;
  border-left: 1px solid #4da8db;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #80c1e5;
  font-weight: 800;
  z-index: 2;
}

a.over:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  z-index: 1;
  width: 120%;
  height: 100%;
  border-radius: 6px;
  background: #e60012;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
a.over:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
a.over:hover .txt {
  opacity: 0.7;
}

a.line_bt {
  display: inline-flex;
  min-width: 185px;
  color: #fff;
  height: 60px;
  border: 1px solid #fff;
  padding: 15px 40px;
  box-sizing: border-box;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  transition: all 0.3s 0s ease-in-out;
}
a.line_bt > span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
a.line_bt > span img {
  margin-left: 20px;
  transition: all 0.2s 0s ease-in-out;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

a.line_bt:hover {
  border-color: rgba(255, 255, 255, 50%);
}

a.line_bt.over:after {
  top: 0;
  left: -20px;
  z-index: -1;
  border-radius: 6px;
  background: #b1e14b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 0.7;
}
a.over:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.news_area {
  position: relative;
}
.news_area .more {
  position: absolute;
  right: 0px;
  top: -80px;
}
.news_area > ul > li {
  padding: 33px 0px;
  border-bottom: 1px solid #dddddd;
}
.news_area > ul > li:first-child {
  border-top: 1px solid #ccc;
}
.news_area > ul > li:first-child {
  border-top: 1px solid #ccc;
}
.news_area > ul > li > a {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  color: #222222;
  font-size: 16px;
  line-height: 1.4em;
}
.news_area > ul > li > a .date {
  font-size: 16px;
  color: #999999;
  font-weight: 500;
}
.news_area > ul > li > a .con {
  flex: 1;
  padding: 0px 100px 0px 4%;
  position: relative;
}
.news_area > ul > li > a .con .type {
  display: block;
  color: #037400;
  font-size: 1.1em;
  font-weight: 600;
  padding-bottom: 5px;
}
.news_area > ul > li > a .con .title {
  font-size: 1.52em;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}
.news_area > ul > li > a .con .txt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 300;
  line-height: 1.4em;
  height: 2.8em;
  margin-top: 15px;
}
.news_area > ul > li > a .con:after {
  display: block;
  content: "";
  width: 26px;
  height: 20px;
  background: url(../img/main/arrow.png) no-repeat right center/contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.news_area > ul > li > a:hover .title {
  color: #e60012;
}

.detail_view:after {
  display: block;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  background: rgba(0, 131, 203, 90%);
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s 0s ease-in-out;
}
.detail_view:before {
  display: block;
  content: "Detail View";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s 0s ease-in-out;
  padding-top: 35px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background: url(../img/main/ico_view.png) no-repeat center top;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%);
  color: #fff;
  box-sizing: border-box;
  min-height: 64px;
}

.arrow_group .slick-arrow {
  display: inline-flex;
  width: 95px;
  height: 95px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  background: #1b1b1b;
  vertical-align: top;
  position: relative;
  border-radius: 100%;
  cursor: pointer;
  border: none;
  cursor: pointer;
}
.arrow_group .nextArrow {
  margin-left: 30px;
}
.arrow_group .prevArrow:before {
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  transform: rotate(-45deg);
  margin-right: -6px;
}
.arrow_group .nextArrow:after {
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  transform: rotate(-225deg);
  margin-left: -6px;
}

.arrow_group .slick-arrow {
  display: inline-flex;
  width: 95px;
  height: 95px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  background: #1b1b1b;
  vertical-align: top;
  position: relative;
  border-radius: 100%;
  cursor: pointer;
  border: none;
  cursor: pointer;
}
.arrow_group .nextArrow {
  margin-left: 30px;
}
.arrow_group .prevArrow:before {
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  transform: rotate(-45deg);
  margin-right: -6px;
}
.arrow_group .nextArrow:after {
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  transform: rotate(-225deg);
  margin-left: -6px;
}

.video_wrap {
  position: relative;
  padding-bottom: 56.19%;
}
.video_wrap iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  left: 0px;
  top: 0px;
}

.youtube_wrap_max {
  max-width: 960px;
  margin: 0 auto;
}
.youtube_wrap {
  position: relative;
  padding-bottom: 56.19%;
}
.youtube_wrap iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  left: 0px;
  top: 0px;
}

#section4 {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: url(../img/main/bg_section4.jpg) no-repeat center top;
  background-size: cover;
}
#section4:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0px;
  top: 0px;
}
#section4 .inner {
  position: relative;
  height: 740px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  flex-direction: column;
  align-content: center;
}
#section4.on:after {
  width: 0%;
  transition: all 1s 0s ease-in-out;
}
#section4:before {
  display: block;
  content: "";
  z-index: 3;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0px;
  top: 0px;
}
#section4.on:before {
  width: 0px;
  transition: all 1s 0s ease-in-out;
}

.main_services {
  margin-top: 20px;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 70%);
  padding: 20px 10px;
}
.main_services > li {
  width: 20%;
  box-sizing: border-box;
}
.main_services > li:not(:first-child) > a {
  border-left: 1px solid #ccd2d3;
  padding: 0px 10px;
  position: relative;
}
.main_services > li:not(:first-child) > a:after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #e60012;
  position: absolute;
  left: 0px;
  top: 50%;
  margin: -3px 0px 0px -3px;
}
.main_services > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 255px;
}
.main_services > li > a .txt_t {
  color: #222222;
  font-size: 1.35em;
  font-weight: 600;
  padding: 10px 0px;
}
.main_services > li > a .arrow {
  color: #333333;
  font-weight: 400;
  border: 1px solid #000;
  width: 137px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
  margin-top: 10px;
  transition: all 0.3s 0s ease-in-out;
  transform: scale(0);
  height: 0px;
}
.main_services > li > a:hover .arrow {
  transform: scale(1);
  height: 38px;
}

/* section */
.section {
  padding: 100px 0px;
  font-size: 17px;
  line-height: 140%;
  word-break: keep-all;
  color: #333333;
  font-weight: 400;
}

@media (hover: none) {
  .hover:hover .ico_circle {
    background: #007dc6;
  }
}
.more {
}
.more > a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.more > a .plus {
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 50%);
  box-sizing: border-box;
  margin-left: 10px;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
}

/* footer */
#footerW {
  background: #fff;
  border-top: 1px solid #eeeeee;
  box-sizing: border-box;
  position: relative;
}
#footerW.z_over {
  z-index: 101;
  position: relative;
}

.f_navi {
}

.f_navi > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.f_navi li {
  position: relative;
  vertical-align: top;
  padding-left: 16px;
  margin-left: 15px;
}
.f_navi li:first-child {
  padding-left: 0px;
  margin-left: 0px;
}
.f_navi li:after {
  display: block;
  content: "";
  width: 1px;
  height: 12px;
  background: #999999;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -6px;
}
.f_navi li:first-child:after {
  display: none;
}
.f_navi li a {
  display: block;
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  line-height: 1.4em;
}

#footer {
  margin: 0 auto;
  padding: 0px 10px;
  position: relative;
}
#footer .f_logo img {
  max-width: 40vw;
}

#footer .addressW {
  padding: 40px 0px 45px 0px;
  position: relative;
  font-size: 16px;
  color: #333333;
  line-height: 130%;
  font-weight: 400;
  max-width: 1400px;
  margin: 0 auto;
}
#footer .addressW .copy {
  padding-top: 0px;
  color: #333333;
  opacity: 0.8;
}
#footer .addressW a {
  color: #333333;
}
#footer .addressW address {
  margin-left: -10px;
  line-height: 150%;
  margin-top: 30px;
}
#footer .addressW address .ib {
  vertical-align: top;
}
#footer .addressW address span {
  display: inline-block;
  vertical-align: middle;
  padding: 2px 12px;
}

#footer .addressW address .line {
  width: 1px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  padding: 0px;
}
#footer .go_top {
  position: absolute;
  right: 0px;
  top: -100px;
  z-index: 99;
}
#footer .go_top > a {
  display: flex;
  width: 67px;
  height: 67px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  background: #e60012;
}

#footer .sns_ico {
  position: absolute;
  right: 0px;
  top: 130px;
  display: flex;
}
#footer .sns_ico > li {
  padding-left: 14px;
}

#footer .bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 30px;
}
#footer .bottom:after {
  display: block;
  content: "";
  width: 100vw;
  height: 1px;
  background: #eee;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
}

#content {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 30px 0px;
}
#content:after {
  clear: both;
  content: "";
  display: block;
}

.sub_visual {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  overflow: hidden;
}

.sub_visual .sub_txt {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  align-content: center;
  height: 520px; /* 페이지 상단이미지 높이영역 */
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 130%;
  padding-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
}
.sub_visual .sub_txt > h2 {
  width: 100%;
  padding-top: 0px;
}
.sub_visual .sub_txt .txt1 {
  font-size: 26px;
  line-height: 140%;
  font-weight: 400;
  padding-bottom: 5px;
}
.sub_visual .sub_txt .txt1 {
  font-size: 26px;
  line-height: 140%;
  font-weight: 400;
  padding-bottom: 5px;
}
.sub_visual .sub_txt .date {
  font-size: 32px;
  line-height: 37px;
  font-weight: 400;
  padding-bottom: 5px;
}
.sub_visual .sub_txt .txt_s {
  max-width: 1500px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 140%;
  font-weight: 300;
  font-family: "locus_sangsang";
}

.sub_wrap_1 .sub_visual {
  background: url(../img/introduce/sub_visual.jpg) no-repeat center top;
}
.sub_wrap_2 .sub_visual {
  background: url(../img/business/sub_visual.jpg) no-repeat center top;
}
.sub_wrap_3 .sub_visual {
  background: url(../img/overseas/sub_visual.jpg) no-repeat center top;
}
.sub_wrap_6 .sub_visual {
  background: url(../img/estimate/sub_visual.jpg) no-repeat center top;
}
.sub_wrap_5 .sub_visual {
  background: url(../img/community/sub_visual.jpg) no-repeat center top;
}
.sub_wrap_7 .sub_visual {
  background: url(../img/nation/sub_visual.jpg) no-repeat center top;
}
.sub_wrap {
  opacity: 0;
}

/* ----- 상단 메뉴 사라짐 기능 (주석 처리) ----- */
/* .sub_wrap #header.down {
  top: -95px;
  transition: all 0.5s;
}
.sub_wrap.up #header {
  top: 0px;
  transition: all 0.5s;
}
 */

#sub_tit {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 800;
}
#sub_tit .txt_s {
  font-size: 36px;
  display: inline-block;
}

#m_lnb {
  display: none;
}
#lnb_wrap {
  position: absolute;
  z-index: 99;
  word-break: keep-all;
  box-shadow: none;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
}

#lnb_wrap .lnbs1 {
}

#lnb_wrap .lnb {
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
  box-shadow: 0 6px 10px rgb(0 0 0 / 9%);
  display: flex;
  background: #fff;
}
#lnb_wrap .lnb:after {
  clear: both;
  content: "";
  display: block;
}
#lnb_wrap .lnb .lnbs {
  width: 30%;
  max-width: 360px;
  box-sizing: border-box;
  border-right: 1px solid #e2e2e2;
  position: relative;
}
#lnb_wrap .lnb .lnbs .copy_menu {
  position: absolute;
  left: -1px;
  top: calc(100% + 0px);
  top: -webkit-calc(100% + 0px);
  width: 100%;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  display: none;
  background: #fff;
}
#lnb_wrap .lnb .lnbs .sub_menu {
  display: none !important;
}

#lnb_wrap .ico_home {
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
}
#lnb_wrap .ico_home a {
  display: block;
  width: 60px;
  height: 60px;
  text-indent: -1000px;
  font-size: 0px;
  background: url(../img/common/ico_home.png) no-repeat center center #333;
}
.lnb ul li {
  color: #666666;
  display: block;
  padding: 0px;
  margin-top: 0px;
}
.lnb .three_depth {
  padding: 10px;
}
.lnb ul li a {
  color: #666;
  font-size: 16px;
  display: block;
  line-height: 130%;
  min-height: 30px;
  height: auto;
  padding: 15px 0px 15px 25px;
  border-bottom: 1px solid #e2e2e2;
  box-sizing: border-box;
  text-align: left;
  border-top: none;
  font-weight: 500;
}
.lnb ul li a:hover {
  color: #000;
  background: #eee;
}
.lnb .three_depth {
  border: none;
}
.lnb ul li .three_depth a {
  padding: 6px 15px;
  border: none;
  font-size: 13px;
}

.lnbs2 ul li.on a {
  border-radius: 0px;
}

#lnb_wrap .lnb .lnbs2 {
  display: none;
}
#lnb_wrap .lnbs3 {
  flex: 1;
  padding-left: 30px;
}
#lnb_wrap .lnbs3 > ul {
  display: flex;
  flex-wrap: wrap;
}
#lnb_wrap .lnbs3 > ul > li {
  flex: 1;
  box-sizing: border-box;
  position: relative;
  padding: 0px 10px;
  max-width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lnb_wrap .lnbs3 > ul > li > a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  padding: 0px;
  font-size: 17px;
  border: none;
  position: relative;
  color: #333333;
  background: #fff;
}
#lnb_wrap .lnbs3 > ul > li.on > a {
  font-weight: 600;
  color: #e60012;
  border-bottom: 2px solid #e60012;
}

#lnb_wrap.fixed {
  transform: none;
}
#lnb_wrap.fixed .lnb {
  position: fixed;
  top: 0px;
  width: 100%;
  max-width: 1400px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

.up #lnb_wrap.fixed .lnb {
  top: 80px;
}

.drop.on .four_depth {
  display: block;
}
.four_depth {
  background: #ececec;
  border-bottom: 1px solid #e2e2e2;
  display: none;
}
.lnb .four_depth li a {
  color: #333 !important;
  font-size: 12px;
  line-height: 18px;
  min-height: 18px;
  height: auto;
  padding: 10px 0px 10px 30px;
  background: #f4f4f4 !important;
  border: none !important;
  position: relative;
}
.lnb .four_depth li a:before {
  display: block;
  content: "";
  width: 5px;
  height: 1px;
  background: #333;
  position: absolute;
  left: 20px;
  top: 50%;
}
.lnb .four_depth li.on a {
  color: #55b664 !important;
}
.lnb .four_depth li.on a:before {
  background: #55b664;
}
.lnbs3 ul li.drop > a {
  position: relative;
}
.drop > a:before {
  display: block;
  content: "";
  width: 11px;
  height: 1px;
  background: #999;
  position: absolute;
  right: 0%;
  top: 50%;
  margin: 0px 10px 0px 0px;
}
.drop > a:after {
  display: block;
  content: "";
  width: 1px;
  height: 11px;
  background: #999;
  position: absolute;
  right: 0%;
  top: 50%;
  margin: -5px 15px 0px 0px;
}
.drop.on > a:before {
  background: #fff;
}
.drop.on > a:after {
  background: #fff;
}

.drop > a.on:after {
  display: none;
}

.lnb_tit,
a.lnb_tit {
  font-size: 23px;
  display: block;
  box-sizing: border-box;
  padding-left: 30px;
  color: #333;
  line-height: 80px;
  height: 80px;
  cursor: pointer;
  padding-right: 20px;
  font-weight: 500;
  color: #fff;
  background: #e60012;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.lnb_tit:after {
  display: block;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  display: inline-block;
  transform: rotate(45deg);
  margin-top: -10px;
  transition: all 0.2s 0s ease-in-out;
}
.lnb_tit.on:after {
  transform: rotate(-135deg);
  margin-top: -5px;
}

#lnb_menu .three_depth {
  display: none;
}

.title_bar {
  max-width: 1500px;
  margin: 0px auto;
  margin-bottom: 70px;
  padding-top: 50px;
  position: relative;
  text-align: center;
}
.title_bar h2 {
  font-size: 48px;
  font-weight: 800;
  color: #333333;
  line-height: 120%;
  transition: all 0.2s 0s ease-in-out;
}

.title_bar .s_txt {
  font-size: 18px;
  text-align: center;
  color: #999999;
  line-height: 140%;
  font-weight: 400;
}
.title_bar .marcellus {
  font-size: 24px;
  text-align: center;
  color: #fa6f8c;
  padding-bottom: 15px;
  line-height: 140%;
  font-weight: 400;
}
.big_tit {
  font-size: 46px;
  color: #000000;
  line-height: 100%;
  transition: all 0.2s 0s ease-in-out;
  font-weight: 700;
  padding: 40px 0px 30px 0px;
}

.location_wrap {
  width: 100%;
  padding-top: 10px;
}
.location {
  position: relative;
  line-height: 33px;
  height: 33px;
  font-size: 16px;
}
.location > span {
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding-left: 15px;
  margin-left: 7px;
  position: relative;
  font-weight: 400;
}
.location > span:before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  transform: rotate(45deg);
  left: 0px;
  top: 50%;
  margin-top: -2px;
}

.location > span.home {
}
.location > span.home:before {
  display: none;
}
.location span:first-child {
  padding-left: 0px;
  margin-left: 0px;
}
.location #location_2 {
  font-weight: 500;
}
.location #location_3 {
  font-weight: 500;
}
.location img {
  vertical-align: middle;
  margin-top: -4px;
}

.sub_con_wrap {
  padding: 60px 10px;
  margin: 60px -10px;
  background: #eeeff4;
}
.sub_con {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 500;
  line-height: 150%;
  word-break: keep-all;
}
.sub_con > .s_tit:first-child {
  margin-top: 0px;
}
.sub_con img {
  max-width: 100%;
}

.s_tit {
  font-size: 34px;
  position: relative;
  color: #000;
  line-height: 140%;
  padding: 0px 0px 20px 0px;
  margin-top: 60px;
  font-weight: 700;
}

.s_tit_txt {
  font-size: 1.2em;
  line-height: 1.5em;
  padding: 0px 0px 20px 0px;
  font-weight: 500;
}
.ss_tit {
  font-size: 23px;
  color: #000;
  line-height: 130%;
  margin-bottom: 15px;
  position: relative;
  margin-top: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
/*.ss_tit:before {display:inline-block; margin-right:5px; content:""; width:6px; height:22px; background:linear-gradient( to top, #004a87 50%, #94d60a 50% );}*/
.ss_tit > span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.ss_tit.br_no {
  margin-bottom: 0px;
}
.ss_tit.pl0:before {
  display: none;
}

.ss_tit.tc {
  text-align: center;
  background: none !important;
  padding-left: 0px;
}
.ss_tit.tc:after {
  display: none;
}
.ss_tit.tc:before {
  display: none;
}

.fnt_sm {
  font-weight: 600;
  font-size: 1em;
}
/*.ss_tit:before {display:block; content:""; width:7px; height:24px; background:#0f7bc6; position:absolute; left:0px; top:4px;}
.ss_tit > span{font-weight:300;}*/
.s_titW {
  max-width: 1500px;
  margin: 0 auto;
  padding: 50px 0px 5px 0px;
}

.sss_tit {
  font-size: 21px;
  color: #15a0ff;
  padding: 0px 0px 0px 0px;
  margin: 40px 0px 10px 0px;
  line-height: 140%;
  position: relative;
}
.sss_tit .box {
  display: inline-flex;
  min-height: 28px;
  font-size: 14px;
  color: #cc1427;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  box-sizing: border-box;
  padding: 0px 20px;
  background: #f4dcc4;
  font-weight: 600;
}

.b_txt {
  font-size: 22px;
  color: #333333;
  font-weight: 400;
  padding: 40px 0px 10px 0px;
  line-height: 150%;
}
.s_txt_r {
  text-align: right;
  margin-top: -35px;
  height: 20px;
  padding-bottom: 15px;
}
.s_txt_r2 {
  height: 40px;
  margin-top: -55px;
}
.imgW img {
  max-width: 100%;
}
.txt_in {
  padding-left: 20px;
}

.div_line {
  border-top: 1px solid #aab7cc;
  margin-top: 50px;
  padding: 50px 0px;
  display: block;
}

.box_txt {
  border: 1px solid #d0d0d0;
  text-align: center;
  background: #f4f6f7;
  font-size: 22px;
  line-height: 140%;
  color: #004497;
  padding: 30px 0px;
}
.first_txt {
  font-size: 36px !important;
  line-height: 140%;
  color: #000;
  font-weight: 300;
  line-height: 1.3em;
}

#add_date {
  position: relative;
  padding-right: 115px;
}
#add_date .bt {
  position: absolute;
  right: 0px;
  top: 0px;
}

.tooltip {
  color: #ff751a;
  border: 1px solid #ff751a;
  border-radius: 6px;
  text-align: center;
  line-height: 38px;
  width: 38px;
  height: 40px;
  box-sizing: border-box;
  font-size: 1.5em;
  vertical-align: middle;
}
.br_box {
  border: 1px solid #dce1eb;
  padding: 20px 20px 20px 20px;
}
.t_box {
  background: #757a85;
  color: #fff;
  padding: 5px 5%;
  display: inline-block;
}
td .br_box {
  padding: 5px;
}
td .gray_box {
  padding: 5px;
}

.radio_group_row > li {
  padding-top: 8px;
}
.radio_group_row > li:first-child {
  padding-top: 0px;
}
.radio_group_row > li.disabled {
  opacity: 0.4;
}

.radio_group {
  padding: 7px 0px 0px 0px;
  margin: -7px 0px 0px -15px;
}
.radio_group > li {
  display: inline-block;
  padding: 7px 0px 0px 15px;
}
.radio_group > li.etc_li {
  width: 100%;
  max-width: 560px;
  box-sizing: border-box;
}
.radio_group > li.etc_li .input {
  width: calc(100% - 70px) !important;
  width: -webkit-calc(100% - 70px) !important;
}

.radio_group .input {
  width: auto !important;
}

.input_group {
  padding: 5px 0px 0px 0px;
  margin: -5px 0px 0px -15px;
}
.input_group > li {
  display: inline-block;
  padding: 5px 0px 0px 15px;
}
.input_group .input {
  width: auto !important;
}

.input_etc {
  position: relative;
  padding-left: 62px;
  box-sizing: border-box;
}
.input_etc .pa {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 14px;
  line-height: 40px;
}

.btn-tc {
  text-align: center;
  padding: 50px 0px;
  border-top: 4px solid #000;
  margin-top: 40px;
}
.btn-tc > a {
  margin: 0px 5px;
}
.btn-tl {
  text-align: left;
  padding: 50px 0px;
  border-top: 4px solid #000;
  margin-top: 40px;
  overflow: hidden;
}
.btn-tl > a {
  margin: 0px 5px;
}
.btn-tr {
  text-align: right;
  padding: 50px 0px;
  border-top: 4px solid #000;
  margin-top: 40px;
  overflow: hidden;
}
.btn-tr > a {
  margin: 0px 5px;
}

.bt_close {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/common/close_bt.gif) no-repeat center center;
  background-size: cover;
  text-indent: -9999px;
  background-size: 10px auto;
}

/*atab*/
.atab_wrap {
  padding-top: 90px;
}
.atab {
  margin: 0 auto;
  margin-bottom: 40px;
  margin-left: -8px;
  margin-right: -8px;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.atab:after {
  clear: both;
  display: block;
  content: "";
}
.atab li {
  flex: 1;
  padding: 0px 8px;
}
.atab li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  background: #fff;
  line-height: 130%;
  padding: 0px 0px;
  text-align: center;
  color: #666666;
  box-sizing: border-box;
  border: 1px solid #cccccc;
  font-size: 18px;
  font-weight: 400;
}
.atab li.on a {
  font-weight: 500;
  border: 1px solid #15a0ff !important;
  background: #15a0ff;
  color: #fff;
}

.btab {
  display: flex;
  flex-wrap: wrap;
  margin: 5px auto;
  justify-content: center;
}
.btab > li {
  padding: 5px 10px;
  flex: 1;
}
.btab > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 60px;
  color: #666666;
  font-size: 1.05em;
  line-height: 140%;
  position: relative;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  font-weight: 300;
}
.btab > li.on > a {
  color: #15a0ff;
  background: #fff;
  border-color: #15a0ff;
  font-weight: 400;
}

.of_hi .fl50 {
  float: left;
  width: 49%;
}
.of_hi .fr50 {
  float: right;
  width: 49%;
}
.graybox {
  background: #cccccc;
  padding: 10px;
}
.no_flash {
  display: none;
}

/* 레이어팝 */
.layerPop {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 50%);
  zoom: 1;
}
.layerPop_inner {
  width: 100%;
  min-height: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.layerPop_inner .popContent {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  position: relative;
}
.layerPop .x_btn {
  margin-left: auto;
  position: relative;
  display: block;
  cursor: pointer;
  background: none;
  width: 30px;
  height: 30px;
  font-size: 0px;
  z-index: 2;
}
.layerPop .x_btn:after {
  display: block;
  content: "";
  width: 20px;
  height: 3px;
  background: #fff;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}
.layerPop .x_btn:before {
  display: block;
  content: "";
  width: 20px;
  height: 3px;
  background: #fff;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(135deg);
  position: absolute;
  top: 50%;
  left: 50%;
}
.layerPop .x_btn.black:after {
  background: #000;
}
.layerPop .x_btn.black:before {
  background: #000;
}
.layerPop .pop_head {
  position: relative;
}
.layerPop .pop_head .x_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.layerPop .pop_head .title {
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 10px;
  color: #000;
  padding: 10px;
  text-align: center;
  font-weight: 600;
}

/* 팝업 */

.layers_wrap {
  background: #fff;
  position: relative;
  min-width: 300px;
  font-weight: 300;
}
.layers_wrap .layers_tit {
  width: 100%;
  padding: 15px 0px;
  line-height: 150%;
  background: #333;
  text-align: center;
  font-size: 1.8em;
  color: #fff;
  position: relative;
}
.layers_wrap .layers_tit .logo {
  padding-left: 25px;
  padding-top: 20px;
}
.layers_wrap .close_pop {
  position: absolute;
  right: 25px;
  top: 17px;
}
.layers_wrap .layers {
  padding: 20px;
  font-size: 14px;
  position: relative; /*min-height:100px; max-height:760px; overflow-x:hidden; overflow-y:auto; -webkit-print-color-adjust:exact;*/
}

.layers_wrap .close {
  height: 30px;
  border-top: none;
  text-align: right;
  background: #e2e2e2;
  line-height: 30px;
}
.layers_wrap .close a {
  display: inline-block;
  zoom: 1;
  *display: inline;
  font-family: Noto Sans;
  color: #2d2d2d;
  padding-right: 20px;
  background: url(http://pic.neungyule.com/newnetimes/img/btn/pop_close_s.gif)
    no-repeat right center;
  margin-right: 10px;
}
.layers_wrap .pop_tit {
  padding-left: 5px;
  border-bottom: 1px solid #afafaf;
  min-height: 41px;
  padding-bottom: 3px;
  font-family: Noto Sans;
  color: #444444;
  font-size: 22px;
  line-height: 41px;
}
.layers_wrap .pop_tit.ico_check2 {
  font-size: 13px;
  min-height: 20px;
  padding: 10px 10px 10px 50px;
  background: url(../img/common/ico_check2.gif) no-repeat 10px 10px #f9f9f9;
  line-height: 150%;
  border-bottom: none;
}
.layers_wrap .pop_tit_no {
  min-height: 38px;
  font-family: Noto Sans;
  color: #444444;
  font-size: 22px;
  line-height: 38px;
}

/* 팝업 */

.main_layer_pop {
  position: absolute;
  left: 5%;
  top: 100px;
  z-index: 9999;
}
.main_pop_bottom {
  background: #fff;
  font-weight: 300;
  color: #000;
  padding: 10px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
.main_pop_bottom .close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding-right: 30px;
  background: url(../popup/images/pop_close.gif) no-repeat right center;
}
.main_layer_pop_inner {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
}
.main_layer_pop_inner .cell {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.main_layer_pop .bx-wrapper .bx-controls-direction a {
  margin-top: -22px;
  width: 44px;
  height: 44px;
}
.main_layer_pop .bx-wrapper .bx-prev {
  left: 0px;
  background: url(../img/main/pop_l.png) no-repeat 0 0;
}
.main_layer_pop .bx-wrapper .bx-next {
  right: 0px;
  background: url(../img/main/pop_r.png) no-repeat 0 0;
}
.main_layer_pop .pop_wrap_in {
  margin: 0 auto;
}
.main_layer_pop .pop_wrap_in {
  max-height: 500px;
  overflow-y: auto;
}
.main_pop_content > img {
  max-width: 100%;
}
.pop_bottom_bt {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #333;
  border-top: 2px solid #fff;
}
.pop_bottom_bt > a {
  display: block;
  width: 50%;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  height: 50px;
  line-height: 48px;
  font-size: 16px;
  font-weight: 400;
  border-left: 1px solid #fff;
}
.pop_bottom_bt > a:first-child {
  border: none;
}

.bt_include {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.bt_include > div {
  flex: 1;
}
.bt_include .add_bt {
  width: 120px;
  margin-left: 5px;
}

.bt_include select {
  width: 100%;
  max-width: 100%;
  flex: 1;
}
.bt_include .input {
  flex: 1;
}
.bt_include2 {
  padding-right: 65px;
  margin: 0 auto;
}

.check_boxW {
  background: #fff;
  border: 1px solid #dadada;
  padding: 15px 5px;
}

.map_wrap {
  border-bottom: 1px solid #ccc;
  height: 580px;
  overflow: hidden;
  box-sizing: border-box;
}
.map_wrap > div {
  height: 100% !important;
  width: 100% !important;
}
.map_wrap > div .wrap_map {
  height: 100% !important;
  width: 100% !important;
}

.map_info {
  display: flex;
  justify-content: space-between;
  max-width: 975px;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
  z-index: 9;
}
.map_info .info {
  width: 33.333%;
  box-sizing: border-box;
  padding: 20px 10px;
  max-width: 300px;
  border: 1px solid #dddddd;
  background: #fff;
  min-height: 282px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0px 10px;
}
.map_info .info .ico {
  padding-bottom: 15px;
}
.map_info .info.on {
  background: #e60012;
  color: #fff;
  border-color: #e60012;
  box-shadow: 4px 5px 8px rgba(0, 0, 0, 20%);
}
.map_info .info > h3 {
  font-size: 1.35em;
  font-weight: 600;
}
.map_info .info .txt {
  padding-top: 10px;
  line-height: 1.4em;
}

.sub_bg {
  position: relative;
  padding: 50px 0px;
}
.sub_bg:before {
  display: block;
  content: "";
  height: 100%;
  width: 3000px;
  background: #f3f4f8;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  z-index: -1;
}

.prd_pop {
  text-align: center;
}
.prd_pop .info {
  text-align: left;
  padding-top: 20px;
  font-size: 20px;
  line-height: 1.3em;
}
.prd_pop .info > li {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.prd_pop .info > li .subject {
  padding: 0px;
  width: 100px;
  font-weight: 300;
}
.prd_pop .info > li .con {
  font-weight: 800;
  flex: 1;
}

.pop_head .print {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  padding-left: 30px;
  background: url(../img/common/ico_print.png) no-repeat left center;
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  outline: none;
}

@media print {
  .layerPop {
    background: none;
  }
}

.introduce {
  display: flex;
  flex-wrap: wrap;
}
.introduce .img {
  width: 50%;
  box-sizing: border-box;
  padding-right: 20px;
}
.introduce .txt {
  flex: 1;
  color: #000;
  font-size: 1.06em;
  font-weight: 300;
  line-height: 160%;
}
.introduce .txt .first {
  font-size: 1.8em;
  line-height: 140%;
}
.introduce .txt .first > strong {
  font-weight: 600;
}
.introduce .txt .sign {
  font-size: 1.3em;
  line-height: 1.4em;
  color: #999999;
}
.introduce .txt .sign > strong {
  display: block;
  color: #000;
}

.top_txt {
  font-size: 1.88em;
  font-weight: 300;
  line-height: 1.4em;
  padding-bottom: 10px;
}
.top_txt > strong {
  font-weight: 700;
}

.sub_section {
  background: #f5f5f5;
  padding: 60px 10px;
  margin: 50px -10px;
}
.sub_section .sub_con .ss_tit:first-child {
  margin-top: 0px;
}

.main_business {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -10px;
  justify-content: space-between;
}
.main_business > li {
  width: 50%;
  padding: 20px 10px;
  max-width: 690px;
}
.main_business .txt {
  padding: 20px;
  padding-bottom: 0px;
}
.main_business .txt h4 {
  color: #037400;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.4em;
  padding-bottom: 10px;
}

.img_half_wrap:nth-child(odd) .img {
  order: 2;
}
.img_half_wrap:nth-child(odd) .info {
  order: 1;
}
.img_half_wrap:nth-child(even) {
  padding: 60px 0px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.img_half_wrap:nth-child(even):before {
  display: block;
  content: "";
  width: 3600px;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  z-index: 1;
}
.sub_con .img_half_wrap:last-child {
  margin-bottom: 0px !important;
}
.img_half_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0px -10px;
  position: relative;
}
.img_half_wrap > div {
  width: 50%;
  padding: 10px;
  position: relative;
  z-index: 2;
}
.img_half_wrap .img {
  max-width: 700px;
  text-align: center;
}
.img_half_wrap .img img {
  border: 1px solid #ccc;
  padding: 20px;
  background: #fff;
}
.img_half_wrap .info {
  max-width: 620px;
  font-size: 1.05em;
}
.img_half_wrap .info .head {
  display: flex;
  align-items: flex-end;
}
.img_half_wrap .info .head h3 {
  font-size: 1.777em;
  line-height: 1.3em;
  font-weight: 700;
  margin-right: 10px;
}
.img_half_wrap .info .head .num {
  color: #004a87;
  font-weight: 700;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}
.img_half_wrap .info .head .num:before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 1px;
  background: #004a87;
}
.img_half_wrap .info .txt:before {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background: #004a87;
  margin: 25px 0px;
}

.line_bul li.line {
  padding: 25px 0px;
}
.line_bul .bul01 > li.line:after {
  width: 100%;
  height: 1px;
  background: #ccc;
  position: relative;
  left: auto;
  top: auto;
  border-radius: 0px;
}

.imgWrap {
  padding-top: 30px;
}
.imgWrap > li {
  display: flex;
  align-items: center;
  padding: 60px 0px;
  position: relative;
}
.imgWrap > li .img {
  width: 40%;
  max-width: fit-content;
}
.imgWrap > li .info {
  flex: 1;
  padding-left: 5%;
}
.imgWrap > li .info .txt_t {
  font-size: 1.35em;
  font-weight: 700;
}
.imgWrap > li .info .txt_t:after {
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background: #e60012;
  margin: 15px 0px;
}
.imgWrap > li .info .txt {
  color: #666666;
}

.imgWrap .step > li:not(:last-child):after {
  text-align: center;
  display: block;
  content: "↓";
  color: #e60012;
  font-size: 1.6em;
  line-height: 1.3em;
  font-weight: 700;
  padding: 3px 0px;
}
.imgWrap .step > li {
  position: relative;
}
.imgWrap .step .box {
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 1em;
  text-align: center;
}

.imgWrap > li.bg:after {
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background: #fbfbfb;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  z-index: -1;
}
.imgWrap > li:nth-child(even) .img {
  order: 2;
}
.imgWrap > li:nth-child(even) .info {
  order: 1;
  padding-left: 0px;
  padding-right: 5%;
}

.sub_con > .imgWrap:first-child {
  padding-top: 0px;
}
.sub_con > .imgWrap:first-child > li:first-child {
  padding-top: 0px;
}

.m_document {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
  justify-content: space-between;
}
.m_document > li {
  padding: 20px;
  width: 50%;
  position: relative;
}
.m_document > li:not(:first-child):after {
  display: block;
  content: "";
  width: 1px;
  height: 50px;
  background: #cccccc;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.m_document > li > dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.05em;
  align-items: flex-start;
}
.m_document > li > dl dt {
  padding-left: 25px;
  font-size: 1.16em;
  font-weight: 600;
}
.m_document > li > dl dd {
  flex: 1;
  padding-left: 10px;
}
.m_document > li > dl dd .bul02 li:first-child {
  margin-top: 0px;
}
.m_document > li:nth-child(1) > dl dt {
  background: url(../img/member/02_icon01.png) no-repeat left center;
}
.m_document > li:nth-child(2) > dl dt {
  background: url(../img/member/02_icon02.png) no-repeat left center;
}

.step_ico {
  margin-top: 30px;
  background: #f7f9fc;
  border-radius: 5%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 227px;
}
.step_ico > ul {
  width: 100%;
  display: flex;
}
.step_ico > ul > li {
  text-align: center;
  width: 16.666%;
  padding: 0px 10px;
  box-sizing: border-box;
  position: relative;
}
.step_ico > ul > li:not(:first-child):after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  left: -16px;
  top: 50%;
}
.step_ico > ul > li .ico {
  display: block;
  padding-bottom: 10px;
}
.step_ico > ul > li .txt {
  line-height: 1.4em;
}
.step_ico > ul > li .txt .red {
  display: block;
  color: #e60012;
}

.step_img {
  margin-top: 20px;
}
.step_img > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px;
}
.step_img > ul > li {
  width: 33.33333%;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative;
}
.step_img > ul > li .red {
  font-size: 1.35em;
  font-weight: 700;
  padding-bottom: 10px;
}
.step_img > ul > li:nth-child(2),
.step_img > ul > li:nth-child(5) {
  margin-top: 6%;
}
.step_img > ul dl {
  padding-top: 20px;
}
.step_img > ul dl dt {
  font-size: 1.35em;
  font-weight: 700;
  padding: ;
}
.step_img > ul dl dt:after {
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background: #e60012;
  margin: 15px 0px;
}
.step_img > ul dl dd {
  color: #666666;
  line-height: 1.3em;
}

.packaging {
  display: flex;
  flex-wrap: wrap;
}
.packaging > li {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}
.packaging .box {
  display: flex;
  min-height: 190px;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 20px;
  align-items: center;
}
.packaging .box .ico {
  width: 98px;
  min-width: 98px;
  text-align: center;
}
.packaging .box .info {
  flex: 1;
  padding-left: 5px;
}
.packaging .box .txt_t {
  font-size: 1.05em;
}
.packaging .box .bul02 {
  color: #666666;
  padding-top: 10px;
  font-size: 0.95em;
}

/* packaging_goods 기본 3열 카드 */
.packaging_goods {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  padding: 0;
}

.packaging_goods > li {
  width: 33.3333%;
  padding: 10px;
  box-sizing: border-box;
}

.packaging_goods .box {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  padding: 0 0 18px;
  text-align: center;
  height: 100%;
}

.packaging_goods .box .ico img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.packaging_goods .box .info {
  padding: 15px;
}

.packaging_goods .box .txt_t {
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 8px;
}

.prohibited_items {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.prohibited_items > li {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}
.prohibited_items .box {
  display: flex;
  min-height: 248px;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.prohibited_items .box .txt {
  min-height: 2.8em;
  margin-top: 1em;
  line-height: 1.4em;
  text-align: center;
}
.prohibited_items > li:nth-last-child(-n + 4) {
  margin-bottom: 20px; /* 마지막 줄만 하단 여백 */
}

/* ------------------------------------------------------------
 * Name      :mobile_layout.css    
 * Desc      :page layout 
 * Created   :
 * Updated   :
 ------------------------------------------------------------ */
.mobile_on .m_gnb .gnb > ul {
  overflow-y: auto;
  overflow-x: hidden;
}
.m_gnb {
  position: absolute;
  left: 0px;
  top: 81px;
  width: 100%;
}
.m_gnb .gnb > ul {
  width: 100%;
  background: rgba(18, 18, 18, 0.97);
  position: relative;
  overflow-x: hidden;
}
.m_gnb .gnb > ul:after {
  content: "";
  display: block;
  clear: both;
}
.m_gnb .gnb > ul > li > a {
  display: block;
  font-size: 14px;
  color: #ffffff;
  padding: 15px 0px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}
/*.m_gnb .gnb > ul > li:hover > a {background:#000;}*/

.m_gnb .sub_menu {
  width: 100%;
  line-height: 20px;
  background: #4a4a4a;
  display: none;
}
.m_gnb .sub_menu > li > a {
  display: block;
  color: #fff;
  font-size: 12px;
  padding: 5px 0px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}
.m_gnb .sub_menu > li > a:hover {
  background: #009091;
}
.m_gnb .gnb .alarm {
  background-size: 20px;
}
.m_gnb .gnb .name {
  max-width: 200px;
}
.mobile_on input,
.mobile_on select,
.mobile_on textarea {
  -webkit-appearance: none;
}
.mobile_on select {
  height: 31px;
  padding: 0px 2em 0px 8px !important;
}
.mobile_on .sel_arrow {
  position: relative;
}

.down_file {
  display: inline-block;
  vertical-align: middle;
  color: #0c91dd;
  margin-left: 10px;
}
.down_file > span {
  display: block;
  padding-left: 23px;
  background: url(../img/common/ico_file.png) no-repeat left center;
}
.down_file:first-child {
  margin-left: 0px;
}

/* 1280px 이상 */
@media screen and (min-width: 1280px) {
  .m_gnb {
    display: none !important;
  }
}

/* 1280px 이하 */
@media screen and (max-width: 1279px) {
  .quick_wrap {
    transform: translate(200px, -50%);
  }

  .up #lnb_wrap.fixed .lnb {
    top: 80px;
  }
  #header h1 {
    margin-top: 0px;
  }
  .top_menu {
    padding-top: 8px;
  }
  .top_menu_wrap {
    display: none;
  }
  .top_search {
    margin-top: 0px;
  }
  .menu_btn {
    margin-top: 0px;
  }
  .lang {
    right: 70px;
  }
  .menu_btn a span {
    background: #000;
  }
  .menu_btn span,
  .menu_btn span:before,
  .menu_btn span:after {
    background: #000;
  }
  .m_gnbW,
  .menu_btn {
    display: block;
  }
  .top_bt {
    display: none;
  }
  .slide_menu_wrap .top_bt {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    border-bottom: 1px solid #fff;
  }
  .slide_menu_wrap .top_bt a {
    width: 100%;
    border-radius: 0px;
    height: 60px;
  }

  .m_gnb_on {
    display: block;
    margin: 0px;
  }
  .w_gnb {
    display: none;
  }

  .w_gnb {
    display: none;
  }
  #gnb_bar {
    display: none !important;
  }

  .w_gnb .gnb > ul > li > a > span {
    font-size: 16px;
  }
  .w_gnb .sub_menu > li > a {
    font-size: 13px;
  }
  .w_gnb .sub_menu {
    width: 130px;
  }

  .main_visual #visual_l1 {
    left: 10px;
  }
  .main_visual #visual_r1 {
    right: 10px;
  }

  .sub_visual .sub_txt {
    height: 420px;
    padding-bottom: 0px;
  }

  #lnb_wrap {
    margin: 0px;
  }

  #lnb_wrap {
    padding: 0px;
    margin: 0px;
    left: 0px;
    top: 0px;
    transform: none;
    height: auto;
    display: block !important;
  }

  #lnb_wrap.fixed .lnb {
  }
  #inner_wrap {
  }
  #inner_wrap {
    padding: 0px 10px 80px 10px;
  }
  #inner_wrap.no_visual {
    padding-top: 70px;
  }
}
/* 1029px 이하 */
@media screen and (max-width: 1028px) {
  .main_visual .bxslider > li .bg_img {
    width: 1254px;
    height: 600px;
  }
  .main_visual .v_frame {
    height: 600px;
    justify-content: center;
  }
  .main_visual {
    height: 600px;
  }
  .main_visual .scroll_ico {
    display: none;
  }
  .main_visual .bx-controls {
    bottom: 20px;
  }
  .main_visual .bxslider > li .visual_txt {
    text-align: center;
  }
  .main_visual .bxslider > li .visual_txt .txt_t {
    font-size: 5vw;
  }
  .main_visual .bxslider > li .visual_txt .ico img {
    max-width: 50vw;
  }
  .visual_counter_wrap {
    bottom: 20px;
  }
  .visual_counter_wrap .visual_counter {
    text-align: center;
    justify-content: center;
  }

  .main_banner .box > dl {
    font-size: 19px;
  }

  .t_br {
    display: none;
  }

  .section {
    font-size: 15px;
    padding: 80px 0px;
  }

  .inner {
    padding: 0px 10px;
  }

  .sub_con {
    font-size: 16px;
  }

  .sub_visual {
    border-radius: 0px;
  }

  .title_bar:before {
    display: none;
  }
}

/* 768 이하 */
@media screen and (max-width: 767px) {
  .pc_view {
    display: none;
  }
  .mb_view {
    display: block;
  }
  .up #lnb_wrap.fixed .lnb {
    top: 70px;
  }
  .lang .navi {
    top: 48px;
  }

  #header h1 img {
    height: 50px;
  }
  .in_header {
    height: 70px;
  }

  .slide_menu_inner .in_header {
    height: 75px;
  }
  .main_visual .v_frame:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0.2;
  }
  .main_visual .bxslider > li .visual_txt {
    z-index: 9;
  }
  .main_visual .bxslider > li .visual_txt .txt_a {
    font-size: 42px;
  }
  .main_visual .bxslider > li .visual_txt .txt_b {
    font-size: 16px;
  }

  .m_tit_wrap .eng {
    font-size: 16px;
  }
  .m_tit_wrap > h3 {
    font-size: 30px;
  }
  .m_tit_wrap .txt {
    font-size: 18px;
  }

  .main_product > li {
    width: 100% !important;
    margin: 10px 0px 0px 0px;
  }
  .main_product > li .box {
    height: auto;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
  }
  .main_product > li .box .mont {
    font-size: 18px;
    transform: scale(1);
  }

  .main_product > li .box .bt {
    padding-top: 30px !important;
    transform: scale(1);
  }
  .main_product > li > img {
    height: auto;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    transform: translateX(0);
  }
  .main_product > li .box .txt {
    transform: scale(1);
    height: 4em;
  }
  .news_area > ul > li > a {
    flex-wrap: wrap;
    font-size: 15px;
  }

  .news_area > ul > li > a .con {
    padding-left: 0px;
  }

  .main_product > li .box > h4 {
    font-size: 22px;
  }
  .main_product > li .box .txt {
    font-size: 17px;
  }
  .main_services > li > a .arrow {
    display: none !important;
  }
  .main_services > li > a {
    height: 115px;
    min-height: inherit;
  }
  #section4 .inner {
    height: 540px;
  }

  #sub_tit {
    font-size: 52px;
  }

  .section {
    font-size: 14px;
    padding: 50px 0px;
  }
  .more > a {
    font-size: 15px;
    background-size: auto 20px;
  }
  .tab_top {
    margin-top: 0px;
  }

  .web_dis {
    display: none;
  }
  #footerW {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  #footer .addressW {
    padding: 10px;
    padding-top: 0px;
    text-align: center;
  }
  #footerW .familySite {
    display: none;
  }
  #footer .addressW .copy {
    padding-top: 10px;
  }
  #footer .go_top {
    top: 20px;
  }
  #footer .go_top > a {
    padding: 7px;
  }
  #footer_navi {
    padding-bottom: 0px;
  }
  #footer_navi > ul {
    text-align: center;
    padding: 15px 0px;
  }
  #footer_navi > ul li {
    padding: 0px 13px;
  }
  #footer_navi > ul li a {
    font-size: 13px;
  }

  #footer .addressW {
    font-size: 14px;
    padding: 15px 10px;
    background: none !important;
  }
  #footer .go_sns {
    display: none;
  }
  #footer .go_sns > li > a {
    padding: 7px;
  }
  #footer .go_sns > li > a img {
    height: 25px;
  }
  #footer .bottom {
    margin-top: 20px;
    flex-wrap: wrap;
  }
  #footer .bottom .copy {
    order: 2;
    width: 100%;
  }
  .f_navi {
    width: 100%;
    padding-bottom: 10px;
  }
  .f_navi li a {
    font-size: 14px;
  }
  .f_navi > ul {
    justify-content: center;
  }
  #footer .sns_ico {
    padding-top: 20px;
    position: relative;
    right: auto;
    top: auto;
    justify-content: center;
  }
  #footer .sns_ico > li {
    padding: 0px 10px;
  }

  #footerW .copy > p {
    font-size: 12px;
  }

  .lnb_position {
    margin-top: 0px;
    height: 60px;
  }
  #lnb_wrap {
    padding: 0px;
    margin: 0px;
    height: auto;
  }

  #lnb_wrap .lnb .lnbs {
    max-width: none;
    width: 50%;
  }
  #lnb_wrap .lnbs1 {
    display: block;
  }
  #lnb_wrap .lnb .lnbs2 {
    display: block;
    border-right: none;
  }
  #lnb_wrap .lnbs3 {
    display: none;
  }
  #lnb_wrap .ico_home {
    display: block;
  }
  #lnb_wrap .lnb {
    padding-left: 61px;
  }
  #lnb_wrap .ico_home a {
    width: 60px;
    height: 60px;
  }
  .lnb_tit {
    font-size: 15px;
    line-height: 50px;
    height: 50px;
  }

  .lnb ul li a {
    font-size: 14px;
  }
  .lnb_tit,
  a.lnb_tit {
    font-size: 16px;
    padding-left: 20px;
    line-height: 60px;
    height: 60px;
  }

  .sub_con {
    font-size: 15px;
  }

  .sub_visual .sub_txt {
    height: 320px;
    padding-bottom: 0px;
  }
  .sub_visual .sub_txt .txt_s {
    font-size: 17px;
  }
  .sub_visual .sub_txt .txt_s > img {
    height: 21px;
  }
  .sub_visual .sub_txt .txt1 {
    font-size: 20px;
  }

  .location,
  .location_wrap {
    display: none;
  }

  .title_bar {
    padding-top: 90px;
  }

  .title_bar h2 {
    font-size: 40px;
  }
  .title_bar .s_txt {
    font-size: 17px;
  }
  .title_bar .marcellus {
    font-size: 20px;
  }

  .b_txt {
    font-size: 20px;
    padding: 30px 0px 15px 0px;
  }
  .sub_title {
    font-size: 14px;
  }
  .of_hi .fl50 {
    float: none;
    width: 100%;
  }
  .of_hi .fr50 {
    float: none;
    width: 100%;
    margin-top: 15px;
  }

  .s_tit {
    font-size: 28px;
    margin-top: 40px;
  }
  .s_tit_txt {
    font-size: 18px;
  }

  .ss_tit {
    font-size: 20px;
  }

  .big_tit {
    font-size: 40px;
  }

  .ico_note {
    padding-left: 20px;
    background-size: 15px auto;
    background-position: left 4px;
  }
  .first_txt {
    font-size: 29px !important;
  }

  /*atab*/
  .atab_wrap {
    padding-top: 50px;
  }
  .atab {
    margin-left: -4px;
    margin-right: -4px;
  }
  .atab li {
    padding: 0px 4px;
  }
  .atab li a {
    height: 54px;
    font-size: 15px;
  }
  .atab li.on {
    margin-top: 0px;
  }
  .atab li.on a:after {
    width: 16px;
    height: 16px;
    bottom: -18px;
  }

  .ico_note:after {
    width: 17px;
    height: 17px;
    font-size: 14px;
    line-height: 16px;
  }
  .ico_note:before {
    width: 17px;
    height: 17px;
  }

  .m_th_b {
    width: 135px !important;
  }
  .m_th {
    width: 115px !important;
  }
  .m_th_s {
    width: 95px !important;
  }
  .m_th_ss {
    width: 75px !important;
  }

  .ico_note {
    padding-left: 20px;
    background-size: 15px auto;
  }

  .main_layer_pop {
    -webkit-overflow-scrolling: touch;
    position: fixed;
    overflow-y: auto;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    -webkit-transform: none !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0;
    z-index: 99999;
    background: url(../img/common/png_70.png) repeat left top;
    zoom: 1;
  }
  .main_pop_bottom {
    padding: 10px;
    font-size: 14px;
  }
  .main_pop_bottom .close {
    right: 10px;
    top: 10px;
  }
  .main_layer_pop .pop_wrap_in {
    float: none !important;
  }

  .sub_section {
    padding: 50px 10px;
    margin: 50px -10px;
  }

  .over_layerW {
    position: relative;
  }
  .over_layer {
    overflow: auto;
  }

  .over_layer::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #aaa;
  }
  .over_layer::-webkit-scrollbar-thumb {
    background: #000;
  }

  .over_layerW:after {
    display: block;
    content: "";
    width: 10px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0%),
      rgba(0, 0, 0, 15%)
    );
  }
  .over_layer > div {
    min-width: 800px;
  }

  .t_br {
    display: none;
  }

  .introduce .img {
    width: 100%;
    text-align: center;
    padding: 0px 0px 20px 0px;
  }

  .img_half_wrap > div {
    width: 100%;
  }
  .img_half_wrap .img {
    order: 1 !important;
  }
  .img_half_wrap .info {
    order: 2 !important;
  }

  .m_document > li {
    width: 100%;
  }
  .m_document > li:not(:first-child):after {
    display: none;
  }

  .step_ico > ul {
    flex-wrap: wrap;
  }
  .step_img > ul > li {
    width: 50%;
    margin: 0px !important;
  }
  .step_ico > ul > li {
    width: 33.3333%;
    padding: 10px;
  }
  .step_ico > ul > li:nth-child(4):after {
    display: none;
  }

  .imgWrap > li {
    flex-wrap: wrap;
  }
  .imgWrap > li .img {
    width: 100%;
    order: 1 !important;
  }
  .imgWrap > li .info {
    order: 2 !important;
    flex: initial;
    width: 100%;
    padding: 15px 0px 0px 0px !important;
  }

  .packaging > li {
    width: 100%;
  }

  .prohibited_items > li {
    width: 33.3333%;
  }

  .packaging_goods > li {
  width: 50%;
}

}
/* 600 이하 */
@media screen and (max-width: 599px) {
  .main_visual {
    min-height: auto;
    height: auto;
  }

  #footer_navi > ul li {
    font-size: 13px;
  }
  #footer .addressW {
    text-align: center;
    font-size: 12px;
  }

  .pop_wrap .pop_head .title {
    font-size: 20px;
    padding: 20px 55px 18px 15px !important;
  }
  .pop_wrap .pop_body {
    padding: 10px;
  }

  #w_lnb {
    display: none;
  }
  #m_lnb {
    display: block;
  }

  .table_line {
    width: 100%;
    overflow: auto;
  }

  .bt_include .add_bt {
    width: 70px;
  }
  .bt_include .add_bt > a > span {
    font-size: 12px;
  }

  #add_date {
    padding-right: 0px;
    padding-bottom: 45px;
  }
  #add_date .bt {
    left: 0px;
    bottom: 0px;
    top: auto;
    padding-right: 40px;
  }
  #add_date .bt a {
    display: block;
  }
  #add_date .bt .tooltip {
    right: 0px;
    top: 0px;
    position: absolute;
  }
  #empty a {
    display: block;
  }
  .br_box {
    padding: 15px;
  }

  .m_box {
    padding: 20px;
  }
  .more {
    right: 0px;
    top: 0px;
  }
  .more a {
    font-size: 0px;
  }

  #footer_navi > ul {
    text-align: center;
  }
  #footerW .familySite {
    display: none;
  }
  #footer .addressW address .line {
    height: 10px;
  }
}

/* 480px 이하 */
@media screen and (max-width: 479px) {
  .up #lnb_wrap.fixed .lnb {
    top: 60px;
  }
  .lang .navi {
    top: 40px;
  }
  #header h1 {
    left: 10px;
  }
  #header h1 img {
    height: 46px;
  }
  .in_header {
    height: 60px;
  }
  .menu_btn {
    right: 10px;
  }
  .menu_btn a:before {
    display: none;
  }
  .top_search {
    right: 50px;
  }
  .lang > a img {
    width: 20px;
  }

  .slide_menu_inner .in_header {
    height: 65px;
    background-size: auto 60%;
  }
  .slide_menu_wrap .gnb > ul > li > a {
    padding-left: 30px;
    line-height: 50px;
  }
  .slide_menu_wrap .gnb .sub_menu > li > a {
    padding-left: 30px;
  }

  .main_visual .bxslider > li .visual_txt .txt_a {
    font-size: 32px;
  }
  .main_visual .bxslider > li .visual_txt .txt_b {
    font-size: 14px;
  }

  .main_visual .v_frame {
    height: 510px;
  }
  .main_visual .bxslider > li .bg_img {
    width: 1070px;
    height: 510px;
  }
  .visual_counter_wrap {
    bottom: 20px;
  }
  .main_visual .bxslider > li .visual_txt {
    padding-top: 20px;
  }

  .main_quick > li {
    width: 50%;
  }

  .arrow_group .slick-arrow {
    width: 65px;
    height: 65px;
    font-size: 13px;
  }
  .arrow_group .nextArrow:after {
    width: 15px;
    height: 15px;
    margin-left: -3px;
  }
  .arrow_group .prevArrow:before {
    width: 15px;
    height: 15px;
    margin-right: -3px;
  }

  .section {
    padding: 30px 0px;
  }

  .radio_group.m_host {
    margin-left: -5px;
  }

  .section {
    font-size: 13px;
  }

  .m_tit_wrap {
    padding-bottom: 25px;
  }
  .m_tit_wrap > h3 {
    font-size: 24px;
  }
  .m_tit_wrap .eng {
    font-size: 14px;
  }
  .m_tit_wrap .txt {
    font-size: 14px;
    padding-top: 20px;
  }

  .main_product > li .box {
    padding-left: 20px;
  }
  .main_product > li .box .txt {
    font-size: 14px;
  }

  a.main_bt {
    min-width: 165px;
    height: 46px;
    font-size: 14px;
  }
  a.line_bt {
    min-width: 165px;
    height: 46px;
    font-size: 14px;
  }
  #section4 .inner {
    height: 450px;
  }
  #section4 .inner {
    flex-direction: row;
  }
  .main_services {
    padding: 10px 0px;
    flex-wrap: wrap;
  }

  .main_services > li > a .txt_t {
    font-size: 12px;
  }
  .main_services > li > a img {
    width: 10vw;
  }

  .news_area > ul > li > a {
    font-size: 13px;
  }
  .news_area > ul > li > a .con {
    padding-right: 40px;
  }
  .news_area > ul > li > a .con:after {
    width: 16px;
    right: 10px;
  }
  .news_area > ul > li > a .con .title {
    font-size: 1.3em;
  }
  .news_area > ul > li {
    padding: 10px 0px;
  }
  .news_area > ul > li > a .date {
    font-size: 13px;
  }

  .main_banner .box {
    min-height: 170px;
  }
  .main_banner .box > dl {
    font-size: 14px;
  }
  .main_banner .box > dl:after {
    width: 35px;
    height: 35px;
    margin-top: 20px;
    background-size: 100% auto;
  }
  .main_banner .box .ico img {
    width: 40px;
  }

  #footer .addressW address {
    margin-top: 20px;
  }
  #footer .addressW address strong {
    display: block;
  }
  #footer .addressW address span {
    padding: 2px 5px;
  }
  #footer_navi > ul {
    padding: 10px 0px;
  }
  #footer_navi > ul li a {
    font-size: 12px;
  }
  #footer_navi > ul li {
    margin-left: 0px;
    padding: 0px 5px;
  }
  #footer .go_sns > li > a img {
    height: 20px;
  }
  #footer .go_top {
    top: -60px;
    right: 0px;
  }
  #footer .go_top > a {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
  #footer .go_top > a img {
    width: 17px;
  }
  .f_navi li a {
    font-size: 13px;
  }

  .pop_wrap .pop_head .title {
    text-align: left !important;
    padding: 15px 45px 15px 15px;
  }
  .pop_wrap .pop_head .title br {
    display: none;
  }
  .pop_wrap .x_btn {
    right: 0px;
  }

  .pop_body .btn-tc {
    padding: 20px 0px;
  }

  .mb_dis {
    display: block;
  }
  #add_date .bt .tooltip {
    height: 36px;
    line-height: 34px;
  }

  .sub_visual .sub_txt .txt1 {
    font-size: 15px;
  }

  .sub_visual .sub_txt {
    height: 220px;
  }
  #sub_tit {
    font-size: 32px;
  }
  #sub_tit:after {
    margin: 5px 0px 0px 5px;
    width: 16px;
    height: 16px;
  }

  #lnb_wrap .lnb {
    padding-left: 0px;
  }
  #lnb_wrap .ico_home {
    display: none;
  }
  .lnb_tit {
    padding-left: 15px;
    font-size: 13px;
  }
  .lnb ul li a {
    padding: 10px 0px 10px 15px;
    font-size: 13px;
  }
  .lnb_tit,
  a.lnb_tit {
    font-size: 14px;
    padding-left: 15px;
    line-height: 50px;
    height: 50px;
  }
  .lnb_tit:after {
    right: 10px;
    width: 6px;
    height: 6px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    margin-top: -5px;
  }

  .ico_note {
    padding-left: 15px;
    background-size: 13px auto;
  }

  .btn-tc > a {
    margin: 5px;
  }
  .btn-tl > a {
    margin: 5px;
  }
  .subject {
    padding-left: 10px;
  }
  .bbs_search {
    margin-bottom: 10px;
  }
  .bbs_search_in {
    padding: 0px;
  }
  .bbs_search_in .select {
    position: relative;
    margin-bottom: 5px;
    width: 100%;
  }
  .bbs_search_in .btn_search {
    position: relative;
    display: block;
    margin: 5px 0px 0px 0px;
    width: 100%;
  }

  .block_m {
    display: block;
  }
  .block_m.fl {
    float: none;
  }
  .list_btn .block_m {
    margin: 2px 0px;
  }
  .board-view td.view_td {
    padding: 20px 10px;
  }
  .list_btnW a {
    display: block;
  }

  .sub_con > .s_tit:first-child {
    margin-top: 0px;
  }
  .ss_tit {
    font-size: 1.35em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .ss_tit:before {
    width: 4px;
    height: 15px;
    top: 3px;
  }

  .s_tit {
    padding: 0px 0px 10px 0px;
    font-size: 22px;
  }
  .s_tit_txt {
    font-size: 15px;
    margin-top: 0px;
    padding-bottom: 10px;
  }

  .big_tit {
    font-size: 34px;
    padding-bottom: 20px;
  }

  .b_txt {
    font-size: 17px;
  }
  .txt_in {
    padding-left: 10px;
  }
  #inner_wrap {
    padding-bottom: 50px;
  }
  #inner_wrap.no_visual {
    padding-top: 30px;
  }

  .sub_visual .sub_txt .cell .sub_tit_s {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .sub_con {
    font-size: 13px;
  }
  .layerPop {
    font-size: 0.95em;
  }
  .title_bar {
    padding: 40px 0px 0px 0px;
    margin-bottom: 30px;
    background-size: auto 60px;
  }
  .title_bar h2 {
    font-size: 28px;
  }
  .title_bar h2:before {
    width: 12px;
    height: 12px;
    margin-bottom: 5px;
  }
  .title_bar .s_txt {
    font-size: 14px;
  }
  .title_bar .s_txt br {
    display: none;
  }
  .title_bar .s_txt2 {
    font-size: 1.25em;
    padding-top: 0px;
    margin-bottom: 15px;
  }
  .title_bar .marcellus {
    font-size: 16px;
    padding-bottom: 8px;
  }
  .view_tit {
    padding: 10px;
  }
  .m_th_b {
    width: 105px !important;
  }
  .m_th {
    width: 85px !important;
  }
  .m_th_s {
    width: 65px !important;
  }
  .m_th_ss {
    width: 45px !important;
  }

  .w_name {
    width: 70px;
  }
  .w_date {
    width: 80px;
  }
  .m_block {
    display: block !important;
    margin-bottom: 3px !important;
    float: none !important;
  }
  .scrollbox {
    height: 120px;
  }
  .atab {
    margin-bottom: 20px;
  }

  .radio_group > li {
    font-size: 13px;
  }

  .input_etc .pa {
    font-size: 13px;
    line-height: 36px;
  }

  .textarea {
    padding: 5px 5px;
    font-size: 13px;
  }
  .b_table .btnNormalB span {
    padding: 0px 18px;
    height: 36px;
    line-height: 34px;
    font-size: 13px;
  }
  .security_code .code .num {
    height: 34px;
    line-height: 32px;
    font-size: 14px;
  }

  .radio_group {
    margin-top: -5px;
  }

  .print_bt {
    display: none !important;
  }
  .gray_box {
    padding: 5px;
  }

  .down_file > span {
    background-size: 11px auto;
    padding-left: 16px;
  }
  .br_box {
    padding: 10px;
  }

  .tit_ico {
    height: 19px;
    line-height: 18px;
  }

  .btn-tc {
    padding: 20px 0px;
    margin-top: 20px;
  }
  .btn-tl {
    padding: 20px 0px;
    margin-top: 20px;
  }
  .btn-tr {
    padding: 20px 0px;
    margin-top: 20px;
  }

  .point_box {
    padding: 10px;
  }

  .bul_list {
    padding-left: 57px !important;
  }
  .bul_list .txt_t {
    line-height: 20px;
    font-size: 13px;
    padding: 0px 5px;
    min-width: 50px;
  }

  .b_check_box {
    padding: 10px;
  }
  #inner_wrap .b_check_box .board-write th {
    font-size: 1.05em !important;
  }

  .result {
    float: none;
    width: 100%;
  }

  .line_bg {
    background-size: auto 10px;
    padding-bottom: 20px;
  }

  .gray_wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .ico_txt {
    background-size: auto 12px;
    background-position: 0px 4px;
    padding-left: 17px;
  }

  .ico_note {
    padding-left: 18px;
    background-size: 13px auto;
  }
  .ico_note:before {
    width: 14px;
    height: 14px;
    top: 1px;
  }
  .ico_note:after {
    width: 14px;
    height: 14px;
    font-size: 12px;
    line-height: 14px;
    top: 1px;
  }

  .list_more > a > span {
    font-size: 16px;
    padding: 15px 20px 15px 0px;
  }

  .atab.rnd_tab li a {
    font-size: 13px;
  }
  .atab_wrap {
    padding-top: 10px;
  }
  .atab {
    margin-left: -1px;
    margin-right: -1px;
  }
  .atab li {
    padding: 0px 1px;
  }
  .atab li a {
    font-size: 12px;
    height: 50px;
  }

  .map_wrap {
    height: 300px;
  }
  .map_info {
    flex-wrap: wrap;
    width: 100%;
    margin: 0px;
  }
  .map_info .info {
    width: 100%;
    margin: 5px 0px;
    max-width: 100%;
    min-height: inherit;
  }

  .list_more {
    padding-top: 30px;
  }

  .main_business > li {
    width: 100%;
  }
  .main_business .txt {
    padding: 10px;
  }

  .top_txt {
    font-size: 1.6em;
  }

  .img_half_wrap:nth-child(even) {
    padding: 30px 0px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .img_half_wrap .info .head h3 {
    font-size: 1.5em;
  }
  .img_half_wrap .info .txt:before {
    margin: 15px 0px;
  }
  .img_half_wrap .img img {
    padding: 5px;
  }

  .line_bul li.line {
    padding: 10px 0px;
  }
  .imgWrap {
    margin: -30px 0px;
  }
  .imgWrap > li {
    padding: 30px 0px;
  }

  .step_ico {
    padding: 10px 0px;
  }
  .step_ico > ul > li .ico img {
    max-width: 15vw;
  }
  .step_ico > ul > li:not(:first-child):after {
    width: 12px;
    height: 12px;
  }
  .step_img > ul {
    margin: 0px -10px;
  }
  .step_img > ul > li {
    padding: 20px 10px;
  }

  .packaging .box {
    min-height: inherit;
  }
  .packaging .box .ico {
    width: 50px;
    min-width: 50px;
    text-align: left;
  }
  .packaging .box .ico img {
    width: 36px;
  }

    .packaging_goods {
    margin: 0;
  }

    .packaging_goods > li {
    padding: 5px;
    width: 100%;
}

  .prohibited_items {
    margin: 0;
  }
  .prohibited_items > li {
    padding: 5px;
    width: 50%;
  }
  .prohibited_items .box {
    min-height: 155px;
  }
  .prohibited_items .box .ico img {
    max-width: 20vw;
  }
}

/* 320px 이하 */
@media screen and (max-width: 320px) {
  .main_company h3 {
    font-size: 24px;
  }
  .atab li a {
    font-size: 12px;
  }
  .title_bar .s_txt {
    padding-left: 10px;
  }
  .bt_application a {
    padding: 0px 18px;
  }
  .bt_application a span {
    text-align: center;
  }

  .btns > li {
    width: 100%;
    float: none;
    padding: 2px 0px;
  }
  .btn-tc {
    padding: 20px 0px;
  }
}

/* 데스크톱: 우측 중앙 배너 */
.floating-call {
  position: fixed;
  z-index: 9999;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.floating-call__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000; /* 검은색 배경 */
  color: #fff !important; /* 글씨 흰색 강제 */
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  font-size: 16px;
  font-weight: 700;
}

.floating-call__btn .ico path {
  fill: #fff !important; /* 아이콘 흰색 강제 */
}
.floating-call__btn .txt {
  line-height: 1;
  color: #fff !important; /* 텍스트도 흰색 고정 */
}

/* 모바일: 오른쪽 하단 원형 FAB */
@media (max-width: 767px) {
  .floating-call {
    right: max(16px, env(safe-area-inset-right));
    left: auto;
    top: auto;
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: none;
  }
  .floating-call__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
  .floating-call__btn .txt {
    display: none;
  } /* 모바일은 아이콘만 */
}

/* 카카오채널 플로팅 버튼 */
.floating-kakao {
  position: fixed;
  z-index: 9998;
  right: 24px;
  top: calc(50% + 40px); /* 전화 버튼보다 약간 아래 */
}
.floating-kakao__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fee500; /* 카카오 노랑 */
  color: #000;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  font-size: 16px;
  font-weight: 700;
}
.floating-kakao__btn .ico {
  display: block;
}
.floating-kakao__btn .txt {
  line-height: 1;
}

/* 모바일: 카카오채널 버튼 (전화 위쪽에 표시) */
@media (max-width: 767px) {
  .floating-kakao {
    right: max(16px, env(safe-area-inset-right));
    left: auto;
    top: auto;
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 72px); /* 전화 버튼보다 72px 위 */
    transform: none;
  }

  .floating-kakao__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
    background: #fee500;
  }

  .floating-kakao__btn .txt {
    display: none;
  }
}

/* ===== [시작] 국가별 정보 페이지 상세 디자인 ===== */

/* 섹션 제목 ('굵게' 적용) 굵은 글씨 */
.sub_con .content_area h3,
.sub_con .content_area p > strong:only-child,
.sub_con .content_area p > b:only-child {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 0px;
  line-height: 1.4;
}

/* 섹션 제목 ('밑줄' 적용) 글 하단 구분선 생김 */
.sub_con .content_area p > u:only-child {
  display: block;
  font-size: 32px;
  font-weight: 800; /* 굵은 글씨 적용 */
  color: #333;
  text-decoration: none; /* 원래의 파란 밑줄은 제거 */
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e4eb; /* 새로운 구분선 생성 */
  line-height: 1.4;
}

/* 페이지의 첫 번째 제목은 위쪽 여백을 없애 깔끔하게 시작 */
.sub_con .content_area > h3:first-child,
.sub_con .content_area > p:first-child > strong:only-child,
.sub_con .content_area > div:first-child > p:first-child > strong:only-child {
  margin-top: 0;
}

/* 일반 단락 (p 태그) 스타일: 들여쓰기 없음 */
.sub_con .content_area p {
  padding-left: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-top: 0;
  margin-bottom: 20px;
}

/* 번호/글머리 기호 목록: 윗글과의 불필요한 간격 제거 및 스타일 적용 */
.sub_con .content_area ol,
.sub_con .content_area ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 30px;
}
.sub_con .content_area ol > li,
.sub_con .content_area ul > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
.sub_con .content_area ol {
  counter-reset: custom-counter;
}
.sub_con .content_area ol > li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #e60012;
}
/* 글머리기호 선택 시 체크표시 */
.sub_con .content_area ul > li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 16px;
  color: #e60012; /* 빨간색 체크 */
}

/* 4. [새로 추가] '들여쓰기 된 글머리 기호' (빨간 네모) */
/* ul 안의 ul, 즉 '상자 속 상자'에만 이 규칙을 적용합니다. */
.sub_con .content_area ul ul > li::before {
  content: "■"; /* 네모 기호 */
  position: absolute;
  left: 0;
  top: 4px; /* 위치 미세 조정 */
  font-weight: 700;
  font-size: 10px;
  color: #e60012; /* 티리로케이션 레드 */
}

/* ===== [수정] 표(Table) 디자인 (강제 적용) ===== */
.sub_con .content_area table {
  max-width: 100% !important;
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 40px auto !important;
  /* 인라인 스타일의 테두리 초기화 */
  border: none !important;
  border-top: 2px solid #333 !important;
  border-bottom: 1px solid #ddd !important;
}

.sub_con .content_area th,
.sub_con .content_area td {
  padding: 16px 12px !important;
  text-align: center !important;
  vertical-align: middle !important; /* 세로 중앙 정렬 적용 */
  font-size: 15px !important;
  /* 인라인 스타일의 테두리 및 배경 초기화 */
  border: none !important;
  background-color: transparent !important;
  border-bottom: 1px solid #ddd !important;
}

.sub_con .content_area th {
  font-weight: 600 !important;
  color: #333 !important;
}

/* 마지막 줄의 하단 선은 테이블 전체의 border-bottom으로 처리되므로 제거 */
.sub_con .content_area tr:last-child th,
.sub_con .content_area tr:last-child td {
  border-bottom: none !important;
}

/* ===== [추가] 테이블 내 p 태그 여백 제거 및 정렬 ===== */
.sub_con .content_area td p {
  margin: 0 !important;
  padding: 0 !important;
}

/* 이미지/동영상 기본 스타일 */
.sub_con .content_area img,
.sub_con .content_area iframe {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* ===== [끝] 국가별 정보 페이지 디자인 최종 수정 ===== */
