/*
@import url("//webfontworld.github.io/kopus/KoPubWorldBatang.css");
@import url("//webfontworld.github.io/kopus/KoPubWorldDotum.css");
*/
@font-face {
    font-family: 'KoPubWorldBatang';
    src: url('/font/KoPubWorld-Batang-Bold.woff') format('woff');
    font-weight: 700;
}
@font-face {
    font-family: 'KoPubWorldBatang';
    src: url('/font/KoPubWorld-Batang-Medium.woff') format('woff');
    font-weight: 400;
}
@font-face {
    font-family: 'KoPubWorldBatang';
    src: url('/font/KoPubWorld-Batang-Light.woff') format('woff');
    font-weight: 300;
}
@font-face {
    font-family: 'KoPubWorldDotum';
    src: url('/font/KoPubWorld-Dotum-Bold.woff') format('woff');
    font-weight: 700;
}
@font-face {
    font-family: 'KoPubWorldDotum';
    src: url('/font/KoPubWorld-Dotum-Medium.woff') format('woff');
    font-weight: 400;
}
@font-face {
    font-family: 'KoPubWorldDotum';
    src: url('/font/KoPubWorld-Dotum-Light.woff') format('woff');
    font-weight: 300;
}
/*@font-face {
    font-family: 'KoPubWorldBatang';
    src: url('/font/KoPubWorld-Batang-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'KoPubWorldDotum';
    src: url('/font/KoPubWorld-Dotum-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}*/

/*
font-family: 'KoPubWorldBatang';
font-family: 'KoPubWorldDotum';
*/
/*css 추가*/
.mo-header,
.mobileGnbWrap,
.btnAllmenu {
  display: none;
}
.mo-header {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  padding: 15px 30px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

.mo-logo {
  display: flex;
  align-items:center;
	gap:10px;
 /* width: 150px;*/
  height: 48px;
  /*
  background-image: url("/images/logo_top_color.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
 */
}

.mo-logo img {width:180px;}
.mo-logo img.social-logo {width:120px;}

/* 햄버거버튼 */
.btnAllmenu {
  position: relative;
  width: 32px;
  height: 32px;
  font-size: 0;
  background-color: transparent;
  cursor: pointer;
}
.btnAllmenu .bar_top,
.btnAllmenu .bar_mid,
.btnAllmenu .bar_bot {
  display: block;
  position: absolute;
  right: 0;
  width: 40px;
  height: 3px;
  background-color: #e8b147;
  transform-origin: top right;
  transition: all 0.3s ease-in-out;
}
.btnAllmenu .bar_top {
  top: 5px;
  width: 32px;
}
.btnAllmenu .bar_mid {
  top: 15px;
  display: block;
  width: 32px;
}
.btnAllmenu .bar_bot {
  bottom: 5px;
  display: block;
  width: 32px;
}
.mobileGnbWrap {
  width: 100%;
  height: auto;
}
.mobileGnbWrap .bBg {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 99;
}
.mobileGnbWrap .m-navbox {
  position: fixed;
  right: -100%;
  top: 0;
  width: 60%;
  height: 100vh;
  overflow-y: scroll;
  background-color: rgb(184, 157, 88);
  z-index: 9999;
  transition: all 0.5s;
}
.mobileGnbWrap .m-navbox.on {
  right: 0;
}
.mobileGnbWrap .m-navbox .mn-top {
  position: relative;
  height: 90px;
}
.mobileGnbWrap .m-navbox .mn-top .closeBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 30px;
  height: 30px;
}
.mobileGnbWrap .m-navbox .mn-top .closeBtn a {
  display: block;
  width: 100%;
  height: 100%;
}
.mobileGnbWrap .m-navbox .mn-top .closeBtn .lnr-cross {
  font-size: 35px;
  color: #fff;
}
.mobileGnbWrap .m-navbox .m-nav > li {
  position: relative;
}
.mobileGnbWrap .m-navbox .m-nav > li > a {
  display: block;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-family: "Pretendard Variable";
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-indent: 20px;
  /*font-size: 1rem;*/
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
}
.mobileGnbWrap .m-navbox .m-nav > li .lnr {
  display: none;
  position: absolute;
  top: 19px;
  right: 24px;
  font-size: 1rem;
  color: #fff;
}
.mobileGnbWrap .m-navbox .m-nav > li .lnr-chevron-down {
  display: block;
}
.mobileGnbWrap .m-navbox .m-nav > li.on .lnr-chevron-down {
  display: none;
}
.mobileGnbWrap .m-navbox .m-nav > li.on .lnr-chevron-up {
  display: block;
}

.mobileGnbWrap .m-navbox .m-nav .m-depth2 {
  display: none;
  padding: 0 0 0 24px;
}
.mobileGnbWrap .m-navbox .m-nav .m-depth2 > li {
  position: relative;
}
.mobileGnbWrap .m-navbox .m-nav .m-depth2 > li:before {
  content: "";
  display: block;
  width: 4px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
}
.mobileGnbWrap .m-navbox .m-nav .m-depth2 > li > a {
  display: block;
  height: 40px;
  line-height: 40px;
  /*font-size: 0.875rem;*/
  font-size: 1rem;
  text-indent: 20px;
  color: #fff;
  font-family: "Pretendard Variable";
  transform: skew(0.03deg);
  text-align: left;
}
.mo-member__wrap {
  display: flex;
  padding: 20px;
  justify-content: end;
}
.mo-member__wrap a {
  color: #fff;
  font-family: "Pretendard Variable";
  display: flex;
  align-items: center;
}
.mo-member__wrap a::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 100%;
  margin: 0 8px;
}
.mo-member__wrap a:first-child::before {
  display: none;
}
/* header */
.header {
  width: 100%;
  box-sizing: border-box;
  z-index: 99999;
  overflow: hidden;
  height: 100px;
  background-color: transparent;
  position: fixed;
  top: 0;
  background-color: transparent;
  transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out,
    margin 0.3s ease-in-out, top 1s ease-in-out;
}

.header-center {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
  justify-content: space-between;
}
.header .logo {
  display: block;
  /*width: 260px;*/
  width:220px;
  height: 64px;
  background-image: url("/images/logo_top_blk.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.3s ease-in-out;
}
.gnb {height:100%;}
.gnb .dep1 > li.logo_li {
  padding: 0;
  /*padding-top: 15px;*/
  /*margin-right: 100px;*/
  position:absolute;
  left:70px;
  display:flex;
  align-items:center;
  gap:10px;
}

.gnb .dep1 > li.logo_li .social-logo {/*width:180px;*/width:220px;}
.gnb_wrap {
  width: 100%;
  height: 100px;
  position: relative;
  text-align: center;
}
.gnb {
  font-weight: 600;
  width:1600px;
}
.header ul,
.header li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header a {
  color: #212121;
  text-decoration: none;
  font-family: "KoPubWorldDotum";
  transition: all 0.1s ease;
}
.gnb .dep1 {
  font-size: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height:100px;
}
.gnb .dep1 > li {
  display: inline-block;
  position: relative;
  /*height: 54px;*/
  /*padding: 35px 45px 0;*/
 /* padding:35px 40px 0;*/
 padding:0 30px 0;
  font-size: 1.25rem;
  width: auto;
}
.gnb .dep1 > a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 22px;
  color: #212121;
  transition: color 0.2s linear;
  font-weight: 500;
}
.gnb .dep2 {
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
  height: 100%;
  /*padding-top: 27px;*/
  opacity: 0;
  transition: opacity 0.5s;
  font-size: 0;
}
.gnb .dep2 li {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0px;
  color: #212121;
  font-family: "KoPubWorldDotum";
}
.header.over {
  background-color: #fff;
}
.header.over .header-center {
  border-bottom: 1px solid #ddd;
}
.header.over .logo,
.header.down .logo,
.header.sub .logo{
  background-image: url("/images/logo_top_color.png");
}
.header a {
  color: #212121;
}
.header.over:before {
  opacity: 1;
}
.header.over {
  height: 400px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.header.over .gnb .dep2 {
  opacity: 1;
}
.header.over .dep1_a {
  color: #212121;
}
.header.over .dep2 li a {
  color: #0f1015;
}
.header.over .dep2 li a:hover {
  color: #e8b147;
}
.gnb .dep1 .dep1_a:before {
  display: block;
  position: absolute;
  top: 65px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #e8b147;
  content: "";
  transform: translateX(-50%);
  transition: width 0.2s ease-in-out;
}
.header.over .gnb .dep1 li:hover .dep1_a:before {
  width: 100%;
}
.header.down{
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.header.sub {
 background-color: #fff;
 border-bottom: 1px solid rgba(0, 3, 51, 0.1);
}

/**************************************
                main
*************************************/
.main {
	overflow: hidden;
}
.main_inner {
  width: 100%;
  max-width: 1280px;
}
/**********상단 슬라이드***********/
.main_visual_sec {
  height: 100vh;
  position: relative;
}
/**********상단 게시판 슬라이드***********/
.main_vertical_slide_warp {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  background-color: #fff;
  display: flex;
  z-index: 99;
}
.main_vertical_slide_warp .left_slide,
.main_vertical_slide_warp .right_slide {
  width: 50%;
  padding: 40px;
}
.main_vertical_slide_warp .left_slide {
  display: flex;
  padding-right: 0;
}
.main_vertical_slide_warp .left_slide::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  margin-left: 100px;
}
.main_vertical_slide_warp .join_now,
.main_vertical_slide_warp .obituary_now {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 40px;
  gap: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main_vertical_slide_warp .slide_title {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #212121;
  font-family: "KoPubWorldBatang";
  font-size: 1.5rem;
  font-weight: 300;
  white-space: nowrap;
}
.join_now img,
.obituary_now img {
  width: 35px;
}
.main_vertical_slide_warp .board_ment,
.main_vertical_slide_warp .date {
  font-family: "KoPubWorldDotum";
  font-size: 1rem;
  color: #666666;
}
.main_vertical_slide_warp .board_ment {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.main_vertical_slide_warp .date {
  margin-left: auto;
  white-space: nowrap;
}
.join_now_slide,
.obituary_now_slide {
  overflow: hidden;
  height: 25px !important;
}
/**************텍스트**************/
.main_text_sec {
  margin: 0 auto;
  text-align: center;
  font-family: "KoPubWorldBatang";
  color: #212121;
  font-weight: 300;
  font-size: 2rem;
  margin-top: 120px;
}
.main_text_sec p span {
  color: #56453a;
  font-weight: 700;
}
/**********후불제상조 상품안내***********/
.main_product_introduce {
 /* margin: 40px auto;*/
 margin: 40px auto 100px;
 /*margin:40px auto 0;*/
}
.pro_intro_head {
  width: 100%;
  text-align: center;
}
.deco_star {
  width: 72px;
  margin-bottom: 30px;
}
.deco_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: "KoPubWorldDotum";
  color: #212121;
  font-weight: 700;
  gap: 20px;
}

.pro_intro_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.pro_intro_content .product_btn {
  width: calc(25% - 20px);
  border-radius: 8px;
  box-shadow: 0px 1px 20px #00000014;
}
.pro_intro_content .product_btn .btn_top {
  height: 210px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px 8px 0px 0px;
}
#btn_bg01 {
  background-image: url("/images/product_bnr01.jpg");
}
#btn_bg02 {
  background-image: url("/images/product_bnr02.jpg");
}
#btn_bg03 {
  background-image: url("/images/product_bnr03.jpg");
}
#btn_bg04 {
  background-image: url("/images/product_bnr04.jpg");
}
.btn_bottom {
  padding: 20px 20px 40px;
  box-sizing: border-box;
  font-family: "KoPubWorldDotum";
  color: #666;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 500;
}
.btn_bottom .pro_intro_tit {
  color: #5e6c39;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}
/********quiz layout************/
#quizDiv {height:1px;}

.quiz_section {
  width: 100%;
  background-color: #f8f8f8;
}
.quiz_inner {
  margin: 0 auto;
  display: flex;
  padding: 120px 0;
  box-sizing: border-box;
}
.quiz_letf,
.quiz_right {
  width: 50%;
}
.quiz_letf {
  overflow: hidden;

  font-family: "KoPubWorldBatang";
  color: #212121;
  font-size: 1.75rem;
}
.quiz_letf .bold {
  font-family: "KoPubWorldDotum";
  font-size: 3rem;
}
.ballon {
  position: relative;
  width: fit-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  background: #6d8241;
  color: #fff;
  border-radius: 24px;
  padding: 10px;
  font-family: "KoPubWorldDotum";
  font-size: 1.25rem;
  font-weight: 500;
  animation:bounce .5s infinite alternate;
}

.ballon:after {
  border-top: 10px solid #6d8241;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 0px solid transparent;
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
}
.quiz_right {
  display: flex;
  height: 100%;
  max-height: 450px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.quiz_slider {
  display: flex;
  height: 450px;
  align-items: center;
}
.quiz_slide {
  height: 450px !important;
}
.quiz_right select {
  width: 280px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  font-size: 1.125rem;
  font-family: "KoPubWorldDotum";
}
.quiz_btn_wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
}
.quiz_btn_wrap .btn_prev {
  display: inline-block;
  padding: 15px 30px;
  box-sizing: border-box;
  left: 0;
  border-radius: 8px;
  background-color: #c4c4c4;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "KoPubWorldDotum";
  color: #fff;
  z-index: 99;
  cursor: pointer;
}

.quiz_btn_wrap .btn_next {
  /* display: none; */
  padding: 15px 70px;
  box-sizing: border-box;
  border-radius: 8px;
  right: 0;
  background-color: #6d8241;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  font-family: "KoPubWorldDotum";
  z-index: 99;
  overflow: hidden;
  cursor: pointer;
}
.q_name {
  margin: 0 0 40px;
  word-break: keep-all !important;
  font-family: "KoPubWorldDotum";
  font-size: 1.875rem;
  font-weight: 700;
  color: #212121;
}
.slide_util {
  /* width: 600px; */
	width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  z-index: 99;
}
.swiper-pagination-progressbar {
  width: 100%;
  height: 8px;
  border-radius: 50px;
  opacity: 1;
  overflow: hidden;
}
.quiz_slide_dum {
  position: absolute;
  left: 0;
  visibility: hidden;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  border-radius: 50px;
  background: #6d8241 !important;
}
.swiper-pagination-fraction,
.swiper-pagination-progressbar {
  position: relative !important;
  bottom: 0px !important;
}
.swiper-pagination-fraction {
  width: 50px !important;
  top: -4px;
}
.pagenation_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.q_title {
  font-family: "KoPubWorldDotum";
  font-size: 1.5rem;
  font-weight: 700;
  color: #212121;
}
.slide_center {
  width: 100%;
  margin-top: 100px;
}
.slide_center label {
  font-size: 1.5rem;
  display: inline-block;
  line-height: 2.2;
  margin-right: 10px;
  cursor: pointer;
  font-family: "KoPubWorldDotum";
}
.swiper-pagination-current {
  font-size: 1.125rem;
  color: #6d8241;
}
.slide_center sup {
  font-size: /*0.75rem;*/1rem;
  font-weight: 400;
  color: #777;
  vertical-align:-webkit-baseline-middle;
}
.slide_center input[type="text"] {
  width: 50%;
  font-size: 1.125rem;
  line-height: 60px;
  height: 60px;
  padding: 5px 6px;
  border: 1px solid #d5d5d5;
  line-height: 1.5;
  font-family: "KoPubWorldDotum";
}
.btn_submit {
  display: none;
  padding: 15px 70px;
  box-sizing: border-box;
  border-radius: 8px;
  right: 0;
  background-color: #6d8241;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  z-index: 99;
	font-family: "KoPubWorldDotum";
	overflow: hidden;
}
.hvr-sweep-to-right:before {
  border-radius: 8px !important;
  background-color: #5e6c39;
}

/**************** 메인 - 소개 **************/
.main_introduce_sec {
  width: 100%;
  padding: 120px 0;
  background: url("/images/bnr_back.png") no-repeat center/ cover;
}
.intorduce_wrap {
  margin: 0 auto;
}
.intorduce_wrap > p {
  font-family: "KoPubWorldBatang";
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 300;
  color: #212121;
  text-align: center;
}
.intorduce_wrap > p > span {
  font-weight: bold;
  color: #56453a;
}

.introduce_btn_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.main_introduce_btn {
  width: calc(25% - 20px);
  border-radius: 8px;
  padding: 40px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0px 1px 20px #00000014;
}
.main_introduce_btn .icon {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
}
#intro_icon01 {
  background-image: url("/images/round_illust01.png");
}
#intro_icon02 {
  background-image: url("/images/round_illust02.png");
}
#intro_icon03 {
  background-image: url("/images/round_illust03.png");
}
#intro_icon04 {
  background-image: url("/images/round_illust04.png");
}
.main_introduce_btn .content {
  margin-top: 20px;
  text-align: center;
  font-family: "KoPubWorldDotum";
  font-size: 1.5rem;
  font-weight: 700;
  color: #212121;
}
.main_introduce_btn .content u {
  font-size: 1rem;
  font-weight: 300;
}
.main_introduce_btn .content u:hover {
  color: #6d8241;
}
/*************긴급출동*******************/
.main_map_sec {
  width: 100%;
  padding: 100px 0;
  background-color: #fffdf9;
}
.main_map_inner {
  width: 100%;
  display: flex;
  margin: 0 auto;
}
.main_map_sec .map_left,
.main_map_sec .map_right {
  width: 50%;
}
.text_top {
  display: flex;
  align-items: end;
  font-size: 3rem;
  font-weight: 700;
  font-family: "KoPubWorldDotum";
  color: #212121;
}
.emergency_text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.emergency_text img {
  animation:bounce .5s infinite alternate;
}
.map_left .text {
  font-family: "KoPubWorldBatang";
  line-height: 1.5;
  font-size: 1.75rem;
  color: #212121;
  margin: 20px 0 30px;
}
.tel_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #5e6c39;
  font-family: "KoPubWorldDotum";
  font-weight: 700;
  font-size: 3.875rem;
}
.go_kakao {
  width: fit-content;
  padding: 20px 40px;
  background-color: #ffe354;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #212121;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 30px;
  font-family: "KoPubWorldDotum";
}
.map_right {
  background: url("/images/map.png") no-repeat center / contain;
}

/***********회사소개 바로가기***************/
.main_banner_sec {
  width: 100%;
  height: 570px;
  background: url("/images/bottom_bg.jpg") no-repeat center / cover;
}
.main_banner_sec .main_inner {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_banner_sec .main_inner .text_wrap {
  text-align: center;
  font-family: "KoPubWorldDotum";
  color: #212121;
}
.main_banner_sec .main_inner .text_wrap .text01 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  font-family: "KoPubWorldBatang";
}
.main_banner_sec .main_inner .text_wrap .bold {
  /*font-size: 3rem;*/
  font-size:2.750rem;
}
.go_sub_btn {
  width: fit-content;
  margin: 40px auto 0;
  padding: 20px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "KoPubWorldDotum";
  font-size: 1rem;
  color: #fff;
  background-color: #6d8241;
  border-radius: 8px;
  overflow: hidden;
}
/*********************
    footer
***********************/
.footer {
  width: 100%;
  border-top:1px solid rgba(0, 3, 51, 0.1);
}
.footer.sub {
  border-top: 1px solid rgba(0, 3, 51, 0.1);
  margin-top: 100px;
}
.footer__inner {
/*
  width: 100%;
  max-width: 1820px;*/
  width:85%;
  margin: 85px auto 0;
}
.foot__logo {
  width: 50%;
  max-width: 240px;
  display:flex;
  align-items:center;
  gap:10px;
}
.foot__logo img {
  width: 100%;
}
.family__wrap {
  width: 200px;
}
.footer__top {
  width: 100%;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 3, 51, 0.1);
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.address__wrap {
  font-family: "KoPubWorldDotum";
  font-size: 0.938rem;
  line-height: 24px;
  color: #333;
}
.address__wrap .address__title {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
.address__wrap ul,
.address__wrap ul li {
  display: flex;
}
.address__wrap ul li {
  gap: 5px;
}
.address__wrap ul li::after {
  content: "/";
  margin: 0 5px;
}
.address__wrap ul li:last-child:after {
  content: "";
}
.family_btn {
  padding: 10px 15px;
  position: relative;
  border: 1px solid #4e4e4e;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

.family__wrap .arrow {
  width: 12px;
  height: 10px;
  position: absolute;
  right: 10px;
  padding: 0px 15px;
}

.family__wrap .flist {
  width: 200px;
  height: auto;
  background: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
  text-align: left;
  color: #666;
  padding: 10px 15px;
  margin-top: -2px;
  border: 1px solid #666;
  box-sizing: border-box;
  border-top: none;
  display: none;
  position: absolute;
}
.family__wrap .flist a {
  display: block;
}
.family__wrap .flist li {
  padding: 10px 0;
}
.family_btn a:after {
  content: "";
  width: 14px;
  height: 10px;
  position: absolute;
  right: 15px;
  background: url("/images/bottom_arr.svg") no-repeat center;
  background-size: cover;
  top: 15px;
}
.footer__bottom {
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
.copyright {
  padding: 15px 0;
  text-align: center;
  background-color: #f8f8f8;
  color: #878787;
}

.turms {
  display: flex;
  gap: 50px;
  font-family: "KoPubWorldDotum";
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.turms a:last-child {
  font-weight: 400;
  color: #848484;
}
/**************************
      빠른상담 배너
**************************/
.quick_form {
	display: none;
  position: fixed;
  top: 50%;
  left: -260px;
  transform: translateY(-50%);
  z-index: 999;
  transition: left 0.4s ease;
}
.quick_form.open {
  left: 0px;
}
.quick_wrap {
  display: flex;
  align-items: center;
}
.quick_form_inner {
  width: 260px;
  padding: 40px 24px;
  box-sizing: border-box;
  background-color: #212121;
}
.quick_form_inner p.text01 {
  font-family: "KoPubWorldDotum";
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 10px;
}
.quick_form_inner p.text02 {
  font-family: "KoPubWorldDotum";
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #ffd73a;
}
.quick_input_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.quick_input_wrap input {
  padding: 15px;
  box-sizing: border-box;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 0.875rem;
  font-family: "KoPubWorldDotum";
}
.quick_input_wrap input::placeholder {
  color: #878787;
  font-family: "KoPubWorldDotum";
}
.quick_check {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quick_check .radio {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  outline: none;
  border: 0;
  appearance: none;
  border-radius: 100%;
  position: relative !important;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  background-color: #fff;
}
.quick_check .radio + label {
  /* margin-left: 12px; */
  cursor: pointer;
  color: #fff;
  font-size: 0.75rem;
  font-family: "KoPubWorldDotum";
  font-weight: 300;
}
.quick_check .radio:disabled + label {
  color: #e97158;
}

.quick_check .radio:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.2s border-color ease;
  transition: 0.2s border-color ease;
}
.quick_check .radio:checked:before {
  border-color: #222;
  -webkit-transition: 0.5s border-color ease;
  transition: 0.5s border-color ease;
}

.quick_check .radio:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background-color: #e97158;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}
.quick_check .radio:before,
.radio:after {
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
}
.quick_check .radio:after {
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}
.quick_check .radio:checked:after {
  -webkit-animation: toggleOnRadio 0.2s ease forwards;
  animation: toggleOnRadio 0.2s ease forwards;
}
.main__form .left .row input[id="check01"]:checked + label::after {
  display: none;
}
@-webkit-keyframes toggleOnRadio {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes toggleOnRadio {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
.btn_quick_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  background-color: #6d8241;
  color: #fff;
  font-family: "KoPubWorldDotum";
  font-size: 1rem;
  font-weight: 300;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 20px;
}
.quick_form_banner {
  /*padding: 20px;*/
  padding:20px 12px;
  box-sizing: border-box;
  background-color: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  writing-mode: vertical-lr;
  color: #fff;
  font-family: "KoPubWorldDotum";
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0px;
  border-left: 1px solid #383838;
  cursor: pointer;
}
.select_box  {
     width: 100%;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    font-size: 0.875rem;
    font-family: "KoPubWorldDotum";
		background-color: #fff;
}
/**************************
      오른쪽 배너
**************************/
.right_quick {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
}
.right_quick_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width:100px;
}
.right_quick_inner .quick_top {
  border-radius: 13px 0 0 0;
  overflow: hidden;
}
.right_quick_inner .quick_bottom {
  border-radius: 0 0 0 13px;
  overflow: hidden;
}
/***********top buttton********/
.top_button {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #6d8241;
  display: none;
  text-align: center;
  color: #fff;
  font-family: "KoPubWorldDotum";
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: -0.33px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 999;
}

/*modal popup*/
.modal_popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
  z-index: 9999;
  display: none;
}
.modal_popup .popup_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.popup_content2 {
  width: 740px;
  height: 623px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 40px;
  box-sizing: border-box;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 1px 20px #00000014;
  border-radius: 8px;
}
.popup_content2 .popup_head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.popup_title {
  font-family: "KoPubWorldDotum";
  font-size: 1.75rem;
  font-weight: 700;
  color: #212121;
}
.btn_close_popup {
  width: 25px;
  cursor: pointer;
}
.popup_bottom {
  width: 100%;
  height: 100%;
}
.calc_top {
  width: 100%;
}
.calc_top .calc_title {
  font-family: "KoPubWorldDotum";
  font-size: 1rem;
  font-weight: 700;
  color: #212121;
}
.calc_input_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 20px;
}
.calc_input_wrap input[type="text"],.calc_input_wrap select {
  width: calc(33.33% - 10px);
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
.btn_calc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "KoPubWorldDotum";
  font-size: 1rem;
  font-weight: 500;
  background-color: #6d8241;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-top: 20px;
}
.calc_bottom {
  margin-top: 40px;
  width: 100%;
  height: 100%;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup_bottom.calc_49 {
  display: flex;
  flex-direction: column;
}


/*모바일pdf다운로드 추가0710*/
.mo_pdfcl{
	color: #fff;
	display: flex;
	align-items: center;
	border: 1px solid #fff;
	border-radius: 50px;
	margin: 0% 7% 3%;
	line-height: 30px;
	font-size: 1.1rem;
	padding: 0 15px;
	justify-content: space-between;
}
.pc_pdfcl{
	color: #0B3678 !important;
	box-shadow: 0 0 0 2px #CED5DF inset;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	position:relative;
	letter-spacing:-1px;
	padding:2px 0;
}
.pc_pdfcl > span{position:absolute; right:12px;}


