/*basic-set*/
input[type=text],
input[type=password],
textarea
{
    -webkit-box-sizing :border-box;‌​
    -moz-box-sizing :border-box;
    box-sizing :border-box;
}
* { position:relative; /*transition:all ease-in-out 0.5s; -webkit-transition:all ease-in-out 0.5s;*/ word-break:keep-all;}


.top_phone{display: inline-block; position:absolute; width:188px; line-height: 105px; right: 50px;}
.top_phone span {font-size:30px;color:#f05032; font-weight: 700;}
.drm-num  span {color:#fff; font-weight: 700;}
.top_phone span:before{content: ""; display: inline-block; width: 24px; height: 24px; background: url(../images/call.png) no-repeat; margin-right: 5px;}
.drm-num {display: inline; position:absolute; width:468px; line-height: 105px; right: 50px;}
.drm-num > .top_phone{display: inline;position:relative;right:0;margin-left:10px;}
.drm-num > span.part {font-size:16px;}
.drm-num > span.name {font-size:24px;letter-spacing:-2px;font-weight:500;}


#gnb { position:fixed; top:0; left:0; width:100%; height: 102px; z-index:999; transition:all ease-in-out 0.3s; -webkit-transition:all ease-in-out 0.3s;}
#gnb.scroll{background: #D54433;  }
#gnb.scroll h1>a{background: url(../images/logo_on.png)no-repeat;}
#gnb.scroll ul>li>a{color: #fff;}
#gnb.scroll .top_phone span{color:#fff;}
#gnb.scroll .top_phone span:before{background: url(../images/call_on.png)no-repeat;}
#gnb.scroll .header_line{border: 1px solid rgb(230, 225, 220);}

#gnb.scroll span.part {color:#fff;}
#gnb.scroll span.name {color:#fff;}
#gnb:hover span.part {color:#fff;}
#gnb:hover span.name {color:#fff;}

#gnb:hover { background : #D54433; padding-bottom: 230px;}
#gnb:hover .header_line{border: 1px solid rgb(200, 200, 200);}
#gnb h1 { position:absolute; top:28px; left: 50px; z-index: 1;}
#gnb h1 a { display:block; width: 280px;; height:40px; text-indent:-9999px; background: url(../images/logo.png) no-repeat;}
#gnb:hover>h1>a {background-image: url(../images/logo_on.png);
  background-repeat: no-repeat;}
#gnb>ul {text-align:center;}
#gnb>ul>li { display:inline-block; margin:0 10px; width:170px; border-bottom:2px solid rgba(255, 255, 255, 0); transition:all ease-in-out 0.3s;}
#gnb>ul>li>a { display:block; font-size:19px; line-height:102px; color:#000000; font-weight: 500; transition:all ease-in-out 0.3s;}
#gnb:hover>ul>li>a { color:#fff; }
#gnb:hover>ul>li:hover{border-bottom: #fff 2px solid;}
#gnb:hover>ul>li:hover>a { color:#fff;}
#gnb:hover .top_phone span{color:#fff;}
#gnb:hover .top_phone span:before{background: url(../images/call_on.png)no-repeat;}
#gnb li a:hover { text-decoration:none; }
#gnb>ul>li>ul { position:absolute; min-width:110px; margin-left: 25px; overflow: hidden; height:0; transition:all ease-in-out 0.3s; -webkit-transition:all ease-in-out 0.3s;}
#gnb:hover>ul>li>ul { height: 230px;}
#gnb>ul>li>ul>li { line-height:35px; text-align:center; top:20px; font-weight: 500;}
#gnb>ul>li>ul>li>a { font-size:16px; color:#fff;  position: relative; display: inline-block;transition: color 0.3s ease;text-decoration: none; /* 기본 밑줄 제거 */}
#gnb > ul > li > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px; /* 텍스트와의 거리 (조정 가능) */
  width: 0;
  height: 1.5px;
  background: #fff; /* 밑줄 색상 */
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0.8;
}
#gnb > ul > li > ul > li > a:hover::after {
  width: 95%; /* 밑줄 길이 (원하는 비율로 조정 가능) */
}
#gnb > ul > li:nth-child(4) > ul { margin-left: -3px; /* 왼쪽으로 20px 이동 (원하는 값 조정) */}
#gnb>ul>li>ul>li:hover a { color:#D54433; }
#gnb:hover > ul > li > ul > li > a {color: #fff;}
.header_line {position:absolute; top:101px;left:0;width:100%;border-bottom:1px solid rgb(230, 225, 220);filter:alpha(opacity=30);opacity:0.3;}

@media (max-width: 1400px) {
    /* **1. #gnb를 Flex 컨테이너로 만듭니다.** */
    #gnb {
        display: flex; /* 자식 요소들을 가로로 배치 */
        align-items: center; /* 수직 중앙 정렬 */
        justify-content: space-between; /* 로고/메뉴/전화번호를 양쪽 끝으로 밀어냅니다. */
        height: 102px; /* 높이는 유지 */
        padding: 0 10px; /* 좌우 여백을 약간 추가하여 끝에 붙지 않게 함 */
    }
    
    /* **2. 모든 absolute 포지션을 제거하고, 요소들을 플로우에 포함시킵니다.** */
    
    /* 로고 (h1) 스타일 조정 */
    #gnb h1 {
        position: relative; /* absolute 해제 */
        top: 0;
        left: 0;
        order: 1; /* 로고를 첫 번째 순서로 지정 */
        margin-right: 10px; /* 메뉴와의 간격 */
    }
    /* 로고 이미지 크기 축소 (공간 확보) */
    #gnb h1 a {
        width: 250px; /* 기존 280px에서 크게 축소 */
    }
    
    /* 메뉴 (ul) 스타일 조정 */
    #gnb > ul {
        /* text-align: center; /* Flexbox에서는 필요 없음 */
        flex-grow: 1; /* 남은 공간을 메뉴가 채우도록 하여 중앙에 배치되도록 함 */
        order: 2; /* 메뉴를 두 번째 순서로 지정 */
        margin: 0;
        padding: 0;
    }
    
    /* 메뉴 항목 간의 간격 축소 */
    #gnb > ul > li {
        width: auto; /* width: 120px 대신 auto로 유연하게 설정 */
        margin: 0 5px; /* 항목별 좌우 마진을 5px로 줄여 최대한 붙입니다. */
    }
    #gnb > ul > li > a {
        font-size: 15px; /* 폰트 크기를 더 줄여 겹침 방지 */
        padding: 0 5px; /* 항목 내부 패딩도 줄입니다 */
    }
    
    /* 전화번호 스타일 조정 */
    .top_phone, .drm-num {
        position: relative; /* absolute 해제 */
        right: 0;
        order: 3; /* 전화번호를 마지막 순서로 지정 */
        line-height: normal; /* 수직 정렬은 flex-align-items가 처리 */
        white-space: nowrap; /* 전화번호가 줄바꿈되지 않도록 함 */
        width: auto; /* 고정 너비 해제 */
        margin-left: 10px; /* 메뉴와의 간격 */
    }
    .top_phone span {
        font-size: 20px; /* 전화번호 폰트를 더 축소 (24px -> 20px) */
    }
    
    /* 추가: hover 시 확장되는 서브 메뉴 높이 제거 (겹침 방지) */
    #gnb:hover {
        padding-bottom: 0;
    }
    #gnb:hover > ul > li > ul {
        height: 0 !important;
    }
}


#footer{position: relative; width:100%; height: 470px; background-color: #3A2F33; color: #b7b7b7; font-size: 15px; line-height: 20px; overflow: hidden;}
#footer>div>b{font-weight: 400;}
#footer .footer_t{width:1300px; margin: 0 auto; top:40px; font-weight: 400;}
#footer #bt_top { position:absolute; top:0; right:0; width:60px; height:60px;  text-align:center;z-index:20; margin-top:15px; background-color:#fff;}
#footer #bt_top span {top:20px; font-size:14px; color:#0f191e; font-weight: 800;}
#footer .copyright{margin-top:15px;}
#footer .footercopytxt a {color:#e6e1dc;font-weight:700;display:inline-block;padding-bottom:2px;}
#footer .yourbiz{margin-top: 30px; line-height: 22px;}

#footer .info{position:relative; background:#3A2F33;height:88px;overflow:hidden; color: #b7b7b7; margin-top: 50px;}
#footer .info ul {width:1300px;margin:0 auto;}
#footer .info ul:after {clear: both; display:block; content:""}
#footer .info ul li {display:inline-block;font-size:20px;font-weight:400;line-height:88px;letter-spacing:-1px;}
#footer .info ul li span {display:inline-block;line-height:88px;padding-right:20px;font-size:18px;font-weight:300; color: #c8b9af;}
#footer .info ul li + li {padding-left:200px;}
#footer .info ul li img {vertical-align:middle;}

#main_bt{position: fixed; bottom:0; right:0; z-index: 999; animation-delay: 1s; opacity: 0;}
#main_bt .main_bt1 img{border-top-left-radius: 20px;}


#lnb{position: relative; top:-60px; width:100%; min-width: 1300px;  box-sizing: border-box; z-index: 100;}
#lnb .lnb_area{position: relative; overflow: hidden; }
#lnb .lnb_area .inner{position: relative; margin: 0 auto; width:100%; text-align: center; font-size: 0;}
#lnb .lnb_area .inner>ul>li{position: relative; display:inline-block; border-right: 1px solid #ddd; background-color: rgb(247, 247, 247); line-height: 60px; font-size: 18px; width: 350px; }
#lnb .lnb_area .inner>ul>li:first-child{border-top-left-radius: 20px;}
#lnb .lnb_area .inner>ul>li:last-child{border-right: 0; border-top-right-radius: 20px;}
#lnb .lnb_area .inner>ul>li>a{display:inline-block;  min-width: 240px; color: #000; width: 100%;}
#lnb .lnb_area .inner>ul>li.active {background:#D54433;}/*상단 메뉴 버튼 배경*/
#lnb .lnb_area .inner>ul>li.active a{color:#fff; font-weight: 700;}





#cont{width:100%; background-color: #fff;}
.txt_01{width:100%; text-align: center; margin-top:100px; opacity: 0; }
.txt_01>b{margin-top: 250px;font-size: 42px; color: rgb(31, 31, 31);}
.txt_01>p{font-size: 35px; color: #D54433; font-weight: 500; letter-spacing: -3; line-height: 42px;margin-top: 50px; animation-delay:0.5s;}
.txt_01>p>span {color: #000;}

/* 섹션 전체에 배경 */
#cont_01 {
  position: relative;
  width: 100%;
  min-width: 1300px;
  margin-top: 20px;
  /* 고정 height 제거 */
  aspect-ratio: 2000 / 967;      /* 원본(2000x967) 비율 유지 */
  background: url(../images/main2_1.jpg) no-repeat center / contain;  /* 전체 보이게 */
  overflow: hidden;
}


/*#cont_01 .cont_01_line{height:0; width: 2px; margin: 0 auto; border-left: rgb(203, 203, 203) 1px solid; margin-bottom: 30px; display: block; overflow: hidden;}*/
.cline{animation: cline 1s both;}
@keyframes cline{
  0%{height: 0;}
  100%{height: 100px;}
}

.cont_01_img{width:100%; height:1070px; background:url(../images/brand.png) no-repeat; background-size: cover; background-position: center; opacity: 1; animation:none; margin-top: -60px;}
.cont_01_1{position:relative; width:1300px; margin: 0 auto; opacity: 0; animation-delay: .5s; text-align: center;}
.cont_01_1 p{color: #2b2b2b; font-size: 16x;  line-height: 22px; letter-spacing: -0.05em; text-transform: uppercase; font-weight: 500;}
.cont_01_1 p span{color: #000000; font-size: 24px; font-weight: 600; line-height: 28px;}
.cont_01_1 p b{color: #D54433; font-size: 28px; line-height: 40px;}

page-brand #cont_01 .cont_01_1 {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 150px 100px;           /* 여백 크게 — 배경이 넓게 보이도록 */
  text-align: center;
  border-radius: 40px;
  overflow: hidden;               /* 배경 넘침 방지 */
  background: rgba(255,255,255,0.85); /* 글자 가독성을 위한 반투명 흰 배경 */
}

/* 배경 일러스트 전체 덮기 */


/* 텍스트 스타일은 그대로 */
.page-brand #cont_01 .cont_01_1 p {
  position: relative;
  z-index: 1;
  color: #2b2b2b;
  font-size: 18px;
  line-height: 33px;
}
.page-brand #cont_01 .cont_01_1 p span {
  display: block;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}
.page-brand #cont_01{
  height: auto;
  overflow: visible;
}



/* 배경 위 텍스트 */
#cont_01 .cont_01_1 {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0px;
  text-align: center;

}

/* .cont_01_1 .cont_01_1_line{height:230px; width: 300px; border-left: rgb(121, 121, 121) 1px solid; top:20px;}
.cont_01_1 p{font-size: 28px; color: rgb(19, 19, 19);}
.cont_01_1 b{font-size: 45px; color: #a3131b; line-height: 47px; font-weight: 800; top:10px; text-transform: uppercase; letter-spacing: -1px; word-spacing: -3px;}
.cont_01_1 span{top:40px; font-size: 18px; color: #555; line-height: 22px;}

.cont_01_2{width:900px; height:500px; top:80px; display: inline-block;}
.cont_01_2 > div{display: inline-block; text-align: right; width: 200px; overflow: hidden; opacity: 0; margin-left: 80px;}
.cont_01_2 > div:nth-child(n+1):nth-child(-n+3){animation-delay: .5s;}
.cont_01_2 > div:nth-child(n+4):nth-child(-n+6){animation-delay: 1s; margin-top:70px;}
.cont_01_2 > div > p{font-size: 20px; font-weight: 600; line-height: 24px; margin-top: 20px; margin-bottom: 10px; color: rgb(19, 19, 19);}
.cont_01_2 > div > span{font-size: 16px; color: #7e7e7e; line-height: 16px;} */


#cont_02{width:80%; margin: 50px auto 150px;  /* 화면 가운데 정렬 */  margin-top:100px; overflow: hidden;display: flex ; flex-direction: column;align-items: center; justify-content: center; gap: 60px;}
.cont_02_img{width:100%; height:1090px; background:url(../images/cont_02_img.jpg) no-repeat; background-size: contain; background-position: center center; display: block; background-size: cover; ;opacity: 0; animation-delay: .2s;}
.cont_02_1{position:relative; width:560px; text-align:left;overflow:hidden; display: inline-block; opacity: 0; animation-delay: .2s;}
.cont_02_1 b{color: #D54433; font-size: 15px;}
.cont_02_1>p{padding-bottom: 150px;}
.cont_02_1 table {border-spacing:0;width:100%;overflow:hidden; margin-top: 12px;}
.cont_02_1 table th,
.cont_02_1 table td {padding:15px;font-size:17px; color: #7c7c7c; line-height:1.7; border-bottom:1px solid #dfdfdf;letter-spacing:-0.05em;}
.cont_02_1 table td{left:20px;}
.cont_02_1 table th {width:80px; color:#2b2b2b;text-align:center;font-weight:400; border-bottom: #D54433 2px solid;}
.cont_02_1 table tr:last-child th ,
.cont_02_1 table tr:last-child td {border:0;}


/* 브랜드 소개*/

/* 배경 컨테이너는 기존 그대로 사용 */
.cont_01_img{
  position: relative;
  width: 100%;
 /* height: 720px;  필요 시 높이 조정 */
  background: url('../images/brand_bg.png') no-repeat center/cover; /* 사용 중인 배경 유지 */
  overflow: hidden;
}

/* 오버레이 래퍼 */
.brand-overlay{
  position: absolute;
  inset: 0;
  max-width: 980px;              /* 본문 폭 */

  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* 가운데 정렬 */
  top: 50%;
  transform: translateY(-50%);
  left: 0; right: 0;
  color: #1b1b1b;                /* 기본 텍스트 색 */
}


/* 타이틀 */
.brand-title{
  font-size:  42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: -130px;
  margin-bottom: 18px;
}

/* 인용문 */
.brand-quote{
  font-size: 25px;
  color: #3A2F33;
  margin-top: 100px;
  font-weight: 500px;
}

/* 로고 */
.brand-logo-wrap{ margin-top: 70px; }
.brand-logo{
  width: min(210px, 30vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.08));
}

/* 한글 브랜드명 */
.brand-kor{
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: #6e6a62;               /* 이미지와 비슷한 톤의 중간 그레이 */
  margin-bottom: 22px;
}

/* 본문 */
.brand-body{
  font-size: 25px;
  line-height: 1.7;
  color: #2b2b2b;
  margin-top: 90px;
}
.brand-body strong{ font-weight: 600; }

.accent{ color:#D54433; }       /* 브랜드 포인트 컬러 */

.brand-footnote{
  font-size: 18px;
  line-height:1.7;
  margin-top: 25px;
}

/* 페이드업 + 지연 (요소별 --delay로 제어) */
.fade-up{
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp .7s ease forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes fadeUp{
  to{ opacity:1; transform: translateY(0); }
}

/* 반응형 여백/높이 미세 조정 */
@media (max-width: 1024px){
  .cont_01_img{ height: 640px; }
  .brand-overlay{ padding-top: 64px; }
}
@media (max-width: 640px){
  .cont_01_img{ height: 560px; }
  .brand-overlay{ padding: 48px 20px; }
  .brand-footnote{ line-height: 1.6; }
}
#cont_03{width:100%; height:680px; margin-top:150px;}
.cont_03_map{width:1400px; margin: 0 auto; opacity: 0;}
.cont_03_map_1{width:520px; display: inline-block;padding: 0 70px;}
.cont_03_map_1 .map_1{width:500px; height:400px; border: 1px rgb(223, 223, 223) solid;}
.cont_03_map_1 .tx{text-align: left; display: inline-block; top:30px;}
.cont_03_map_1 .tx b{color: #D54433; font-size: 22px; letter-spacing:-0.05em; display: block; line-height: 10px;}
.cont_03_map_1 .tx p{color: #7a7a7a; font-size: 17px; letter-spacing:-0.05em;}
.cont_03_map_1 .tx > div:nth-child(2){width:60px;height:2px; border-bottom: #D54433 2px solid; display: inline-block; }
.cont_03_map_1 .tx > div:nth-child(3){width:260px;height:2px; border-bottom: #a3a3a3 1px solid; display: inline-block; left:-2px;}
.cont_03_map_1 .btn{width:150px; display: inline-block; top:10px; left:60px;}
.cont_03_map_1 .btn img{margin-top:10px}



#cont_04{width:100%; min-width: 1300px; margin-top:50px; text-align: center; overflow: hidden; opacity: 0;}
#cont_04 img{width:70%; margin-top: 50px; margin-bottom: 250px;}



.premium_top{width: 100%; height: 500px; background: url(../images/premium_top.jpg) no-repeat; background-size: cover; margin-top:100px; opacity: 0;}
#cont_05{width:100%; text-align: center; overflow: hidden; background-color: #FFF;}
#cont_05 .premium_tx{width:100%; margin: 0 auto; overflow: hidden;}
#cont_05 .premium_tx p{color: #D54433;}
#cont_05 .premium_title{text-align: left; width: 580px; height: 200px; top: -35px; display: inline-block; overflow: hidden; margin-bottom: 0;}
#cont_05 .premium_title b{left: 43px; font-weight: 400; font-size: 38px; color: #5e5e5e; letter-spacing: -2px; word-spacing:-5px ;}
#cont_05 .premium_title p{left: 38px; font-size: 64px; line-height: 59px; letter-spacing: -5px; word-spacing: -6px; font-weight: 600; line-height: 40px;}
#cont_05 .premium_title span{position: absolute; right: 40px; top:-23px; font-size: 126px; color: #D54433; font-weight: 600;}

.txt_01 .title img {
  display: block;     /* 인라인 기본값이라 블록화 */
  margin: 0 auto;
}

.region {
  color :#000;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.01em;
  line-height: 50px;
}

#cont_05 ul li{opacity: 0;}
#cont_05 ul li div{width:680px; height: 500px; display: inline-block; text-align: left; margin-bottom: 70px;}
#cont_05 ul li div p{ font-size: 40px; color: #a59487; border-right: #D54433 1px solid; width: 70px; height:140px; font-weight: 600; display: inline-block; letter-spacing:-0.05em; vertical-align: middle;}
#cont_05 ul li div>span{display: inline-block; vertical-align: middle; font-size: 17px; line-height: 25px; color: #2b2b2b; letter-spacing: -1px;font-weight: 400;}
#cont_05 ul li div b{font-weight: 600; font-size: 32px; color:#D54433;}
#cont_05 ul li div img{margin-bottom: 15px;}
#cont_05>ul>li:nth-child(1) div{margin-left:60px; margin-top: 80px;}
#cont_05>ul>li:nth-child(n+2) div:nth-child(1){margin-right: 60px;}
#cont_05>ul>li:nth-child(4){margin-bottom: 150px;}

#cont_05>ul>li:nth-child(2)>div:first-child>img{margin-bottom: 27px;}

/* 모든 행(li)을 2열 그리드로 → 같은 행 두 카드 높이 자동 동일 */
#cont_05 .premium_tx > li{
  display: grid;
  grid-template-columns: repeat(2, 580px); /* 카드 폭 유지 */
  justify-content: center;                 /* 가운데 정렬 */
  column-gap: 250px;                       /* 카드 간 간격 */
  align-items: stretch;                    /* 같은 행의 두 카드 높이를 동일화 */
  margin-bottom: 100px;
  margin-right: 60px;
}

/* 카드(div) 내부 레이아웃: img는 상단 전체, 번호(p)|본문(span)은 같은 행 */
#cont_05 ul li div{
  /* 기존 height:500px 제거(덮어쓰기) */
  height: auto !important;
  margin: 0 !important;                    /* li별 임의 margin 방지 */
  display: grid;
  grid-template-columns: 70px 1fr;         /* 왼쪽 번호 70px | 오른쪽 본문 */
  grid-auto-rows: auto;
  row-gap: 14px;
  text-align: left;
  box-sizing: border-box;
  align-self: stretch;                      /* 카드 자체도 행 높이에 맞춤 */
}

/* 이미지: 상단에서 두 칸 모두 차지 */
#cont_05 ul li div > img{
  grid-column: 1 / -1;
  margin: 0 0 15px;
  display: block;
}

/* 번호(p): 세로선이 본문 높이에 딱 맞게 늘어남 */
#cont_05 ul li div > p{
  grid-column: 1;
  margin: 0;
  width: 70px;                              /* 그리드 첫 칸과 동일 */
  border-right: #D54433 1px solid;
  font-size: 40px;
  color: #a59487;
  letter-spacing: -0.05em;

  align-self: stretch;                      /* 행 높이만큼 세로로 늘림 */
  display: flex;                            /* 숫자 정렬 제어 */
  align-items: flex-start;                  /* 숫자 위 정렬(원하면 center) */
  justify-content: center;                  /* 가로 중앙 */
}

/* 본문(span): 오른쪽 칸에서 전체 높이 채움 */
#cont_05 ul li div > span{
  grid-column: 2;
  align-self: stretch;                      /* p와 같은 높이로 */
  display: block;
  margin-left: 19px;                        /* 기존 여백 유지 */
  font-size: 17px;
  line-height: 25px;
  color: #2b2b2b;
  letter-spacing: -0;
  font-weight: 400;
}

/* 기존에 행/열을 흔들던 개별 margin 규칙 무효화 */
#cont_05>ul>li:nth-child(1) div,
#cont_05>ul>li:nth-child(n+2) div:nth-child(1){
  margin: 0 !important;
}
/* 필요하면 이 규칙도 해제하거나 값 조정
#cont_05>ul>li:nth-child(4){ margin-bottom: 150px; }
*/

/* 제목/강조 스타일은 그대로 */
.region{ color:#000; font-weight:700; font-size:25px; letter-spacing:-0.01em; line-height:50px; }
#cont_05 ul li div b{ font-weight:600; font-size:32px; color:#D54433; }



#cont_06{width:100%; min-width: 1300px; margin-top:50px; overflow: hidden;}
.cont_06_img{display:inline-block; width: 50%; height:450px; margin-top: 100px; left:0;}
.cont_06_tx{display: inline-block; width: 45%; margin-left: 50px; top:-10px;}
.cont_06_tx b{color: #D54433; font-size: 25px; text-transform: uppercase;}
.cont_06_tx p{color: #000; font-size: 40px; letter-spacing:-0.05em;}
.cont_06_tx p img{margin-left: -10px; margin-bottom: 5px;}
.cont_06_tx>span{display: block; color: #000; font-size: 18px; letter-spacing:-0.02em; line-height: 20px; margin-top: 40px;}
.cont_06_tx .cont_06_line{width:20px; border-top: #D54433 2px solid;margin-top: 5px;}
.cont_06_tx>p>span{font-size: 14px; font-weight: 300; opacity: .7;}

.cont_06_img2{position: absolute; display: inline-block; width: 50%; height:450px; margin-top: 100px; right: 0;}
.cont_06_tx2{display: inline-block; width: 47%;  text-align: right; margin-top: 300px;}
.cont_06_tx2 b{color: #D54433; font-size:25px; text-transform: uppercase;}
.cont_06_tx2 p{color: #000; font-size: 40px; letter-spacing:-0.05em;}
.cont_06_tx2 span{display: block; color: #000; font-size: 18px; letter-spacing:-0.02em; line-height: 20px; margin-top: 40px;}
.cont_06_tx2 .cont_06_line{position: absolute; width:20px; border-top: #D54433 2px solid; right: 0; margin-top: 10px;}


#cont_06 ul li{opacity: 0;}
/*#cont_06 ul li:first-child img{position: absolute; top: 310px; margin-left: 40px; }
 #cont_06 ul li:last-child{margin-bottom: 150px;} 
#cont_06 ul li:nth-child(1) .cont_06_tx{background: url(../images/cont_06_bg1.png) no-repeat;}
#cont_06 ul li:nth-child(2) .cont_06_tx2{background: url(../images/cont_06_bg2.png) no-repeat; background-position:right top;}
#cont_06 ul li:nth-child(3) .cont_06_tx{background: url(../images/cont_06_bg3.png) no-repeat;}
#cont_06 ul li:nth-child(4) .cont_06_tx2{background: url(../images/cont_06_bg4.png) no-repeat; background-position:right top;}
#cont_06 ul li:nth-child(5) .cont_06_tx{background: url(../images/cont_06_bg5.png) no-repeat;}*/

#cont_06 ul li:nth-child(1) .cont_06_img{background: url(../images/cont_06_1.jpg) no-repeat; background-size: cover;}
#cont_06 ul li:nth-child(2) .cont_06_img2{background: url(../images/cont_06_2.jpg) no-repeat; background-size: cover;}
#cont_06 ul li:nth-child(3) .cont_06_img{background: url(../images/cont_06_3.jpg) no-repeat; background-size: cover;}
#cont_06 ul li:nth-child(4) .cont_06_img2{background: url(../images/cont_06_4.jpg) no-repeat; background-size: cover;}
#cont_06 ul li:nth-child(5) .cont_06_img{background: url(../images/cont_06_5.jpg) no-repeat; background-size: cover;}


.cont_06_img div{position: absolute; color:rgba(255, 255, 255, 0.8); font-size: 12px; bottom: 10px; right:10px;}
.cont_06_img2 div{position: absolute; color:rgba(255, 255, 255, 0.8); font-size: 12px; bottom: 10px; left:10px;}



#cont_07{width:100%; min-width: 1300px; overflow: hidden;}
#cont_07 ul li{opacity: 0;}
#cont_07 ul li:last-child{margin-bottom: 150px;}
/*#cont_07 ul li:nth-child(1) .cont_06_tx2{background: url(../images/cont_07_bg3.png) no-repeat; background-position:right top;}
#cont_07 ul li:nth-child(2) .cont_06_tx{background: url(../images/cont_07_bg1.png) no-repeat;}
#cont_07 ul li:nth-child(3) .cont_06_tx2{background: url(../images/cont_07_bg2.png) no-repeat; background-position:right top;}
#cont_07 ul li:nth-child(4) .cont_06_tx{background: url(../images/cont_07_bg4.png) no-repeat;}*/

#cont_07 ul li:nth-child(1) .cont_06_img2{background: url(../images/cont_07_1.jpg) no-repeat; background-size: cover;}
#cont_07 ul li:nth-child(2) .cont_06_img{background: url(../images/cont_07_1.jpg) no-repeat; background-size: cover;}
#cont_07 ul li:nth-child(3) .cont_06_img2{background: url(../images/cont_07_2.jpg) no-repeat; background-size: cover;}
#cont_07 ul li:nth-child(4) .cont_06_img{background: url(../images/cont_07_4.jpg) no-repeat; background-size: cover;}



#cont_08{width:100%;  overflow: hidden;}
#cont_08 .unit{width: 1300px; margin: 100px auto 100px auto; color: #fff;}
#cont_08 .unit>div{display: inline-block; margin-right: 12px; width: 314px; height: 500px; overflow: hidden; text-align: center; opacity: 0;}
#cont_08 .unit>div:first-child{border-top-left-radius: 30px;}
#cont_08 .unit>div:last-child{margin-right: 0; border-bottom-right-radius: 30px;}
#cont_08 .unit b{display: block; width: 45px; height: 38px; background-color: #ececec; border-radius: 100px; font-size: 25px; font-weight: 600; margin: 20px auto; padding-top: 7px; }
#cont_08 .unit p{font-size: 22px; font-weight: 700;}
#cont_08 .unit span{font-size: 15px; font-weight: 300; line-height: 18px; top: 10px;}
#cont_08 .unit01{background: url(../images/unit_d1.jpg) no-repeat;}
#cont_08 .unit02{background: url(../images/unit_d2.jpg) no-repeat; animation-delay: .1s;}
#cont_08 .unit03{background: url(../images/unit_d3.jpg) no-repeat; animation-delay: .2s;}
#cont_08 .unit04{background: url(../images/unit_d4.jpg) no-repeat; animation-delay: .3s;}
#cont_08 .unit_line{width:1px; height: 300px; border-right: rgba(255, 255, 255, .3) 1px solid; margin: 0 auto;}


#cont_08 .cont_dep{opacity: 0; min-width: 1300px; margin-top: 100px;}
#cont_08 .tab-unit {position:relative;text-align:center;font-size:0;text-align:left; width:1300px; margin: 0 auto; display: flex;}
#cont_08 .tab-unit:after {clear: both; display:block; content:""}
#cont_08 .tab-unit li {width:100%;text-align:center; border-bottom:1px solid #cccccc; border-top:1px solid #cccccc;/*margin-left:-1px;*/}
     
#cont_08 .tab-unit li a {display:block;width:100%;line-height:60px;font-size:18px;color:#000;font-weight:600;}
#cont_08 .tab-unit li.active {background-color: #D54433;}
#cont_08 .tab-unit li.active a {color:#FFF;font-weight:800;font-size:19px;}
#cont_08 .tab-unit li a span{font-size: 14px; font-weight: 300;}
     
#cont_08 .tab-view {position:relative;/*overflow:hidden;*/ text-align: center;}
#cont_08 .tab-view .unit-img {max-width:1300px;overflow:hidden;margin: 0 auto;  background-color: #fafafa;}
#cont_08 .tab-view .unit-img img{opacity: 0;} 
#cont_08 .guide_txt{width:1300px; font-size: 12px; line-height: 15px; color: #878787; margin: 40px auto 80px; left: 35px;}

#cont_08 .tab-view .unit-img>p{ position: absolute; z-index: 99; width: 360px; height: 35px; border-radius: 5px; border: 1px solid #bfbfbf; color: #fff; font-size: 20px; text-align: center;
  padding-top: 8px; transform: rotate(-20deg); background: rgba(0, 0, 0, 0.4); top: 250px; left: 25px; cursor: default;}

#cont_08 .unit-tx{text-align: left; font-size: 35px; color: rgb(15, 25, 30); letter-spacing: 1px; display: inline-block; margin-top: 80px; margin-left: 75px; opacity: 0;}

#cont_08 .unit-tx b{font-size: 60px; font-weight: 800;color: #D54433;}
#cont_08 .unit-tx span{font-size: 25px; color:#D54433; font-weight: 600; margin-left: 20px;}
#cont_08 table {border-spacing:0;;overflow:hidden; margin-right: 25px; text-align: center; margin-top: 10px;}
#cont_08 table th,
#cont_08 table td {padding:15px;font-size:17px; color: #000; line-height:1.3; border-bottom:1px solid #dfdfdf;letter-spacing:0.01em;}
#cont_08 table td{width: 100px;}
#cont_08 table th {width:80px; color:#2b2b2b;text-align:center;font-weight:700; border-bottom: #D54433 2px solid;}








#cont_09{width:100%; overflow: hidden; text-align: center; }
#cont_09>img {margin-top: 100px; margin-bottom: 50px; 
  opacity: 0;                  /* 시작: 안 보이게 */
  transform: translateY(14px); /* 시작: 아래에 위치 */
  animation: fadeUp 1.2s ease-in-out both;
  animation-delay: .2s;
}

#cont_09>p {margin-bottom: 150px;}
#cont_09 .guide_txt{width:1300px; font-size: 12px; line-height: 15px; color: #878787; margin: 40px auto 80px; left: 35px;}
.txt_01 p.answer{font-weight: 200px; font-size: 25px; letter-spacing: 0; line-height: 33px;}


#cont_10{width:100%; overflow: hidden; text-align: center;}
#cont_10 div{width: 1300px;  margin:70px auto; opacity: 0;}


#cont_11{width:100%; overflow: hidden; text-align: center;}
#cont_12{width:1300px; overflow: hidden; margin: 0 auto;}
/* 관심고객등록 */
.agree-txt {position:relative; margin: 80px 0 30px;}
.agree-txt h2, .per-info h2  {display:block;position:relative;line-height:37px;font-weight:500;padding-bottom:10px;letter-spacing:-2px;font-size:28px;color:#000;}
.agree-txt .txt_area {position:relative;display:block;border:1px solid rgb(201, 201, 201);font-size:16px;color:#666;padding:20px 10px;}
.agree-txt .txt_area .tbox {position:relative;height:176px;overflow-y:auto;letter-spacing:-0.5px;padding:0 10px;}
.agree-txt .txt_area h1 {display:none;}
.agree-txt .txt_area dl dt {display:block;text-align:left;font-size:20px;letter-spacing:-1px;font-weight:300;color:#333;padding:20px 0 10px;font-weight:400;}
.agree-txt .txt_area dd ul {padding-top:10px;}
.agree-txt .txt_area dd ul li {display:block;position:relative;line-height:1.3;padding:5px 0 5px 20px;}
.agree-txt .txt_area dd ul li:before {content:'-';display:block;position:absolute;left:0;top:5px;}
.agree-txt .txt_area dd p {font-weight:500;padding:10px 0 5px;}
.agree-txt .agree-box {position:relative;padding:20px 0;text-align:center;}
.agree-txt .agree-box span {display:inline-block;position:relative;padding-right:30px;}
.agree-txt .agree-box input[type="radio"] {display:none;}
.agree-txt .agree-box input[type="radio"] + label {position:relative;padding-left:32px;font-size:18px;letter-spacing:-1px;}
.agree-txt .agree-box input[type="radio"] + label:before {content:' '; display:block; width:22px; height:22px; position:absolute;left:0;top:-4px;border:2px solid #ddd;border-radius:50%; }
.agree-txt .agree-box input[type="radio"]:checked + label:before {border:2px solid #D54433;z-index:1;}
.agree-txt .agree-box input[type="radio"]:checked + label:after {content:' '; display:block;left: 8px;top: 4px;background:#D54433;width:10px;height:10px;border-radius:50%; position: absolute;}
.agree-txt .agree-box .bt-agree-info {display:block;position:absolute;left:504px;top:13px;border-bottom:1px solid #a59487;padding-bottom:10px;}
.agree-txt .agree-box .bt-agree-info span {color:#a59487;font-size:18px;letter-spacing:-1px;}
.per-info  {margin-top: 80px; opacity: 0;}
.per-info > p {display:block;position:absolute;right:0;top:20px;font-size:14px;}
.per-info > p > span {color:#a3131b;font-weight:700;}
.per-info table {border-top:2px solid #D54433;;width:100%;border-collapse:collapse;border-spacing:0; }
.per-info table th, 
.per-info table td {border-bottom:1px solid #ddd;font-size:18px;color:#000;letter-spacing:-1px;font-weight:300;padding:20px;}
.per-info table tr:last-child th, 
.per-info table tr:last-child td {border-bottom:1px solid #a59487;}
.per-info table tr:last-child th {padding-left:40px;}`
.per-info table th {background:#f5f5f5;font-weight:400;text-align:left;}
.per-info table th span {display:inline-block;color:#a3131b;font-weight:500;padding-right:7px;padding-left:10px;}
/*.per-info table tr:last-child th {padding-left:37px;}*/
.per-info table td span {display:inline-block;font-size:14px; font-weight:400;padding-left:5px;}
.per-info input[type="text"] {display:inline-block;line-height:44px;padding:0 10px;width:275px;border:1px solid #ccc;vertical-align:middle;outline: none;box-sizing:border-box;}
.per-info input[type="text"]:focus{ border:1px solid #ae746e;}
.per-info .tx {position:relative;padding-top:10px;}
.per-info .tx ul li {display:block;position:relative;padding-left:20px;font-size:14px;color:#D54433;}
.per-info .tx ul li:before {content:'※';position:absolute;left:0;top:0;}
.per-info .bt-send {display:block;margin:60px auto 100px;width:400px;height:66px;line-height:66px;color:#fff;text-align:center;background:#D54433;;font-size:22px;font-weight:700;}

/* 홍보센터 : news */

/*cont */
.cont {position:relative;padding:80px 0;line-height:1;overflow:hidden;}
.cont .inner {position:relative;width:1300px;margin:0 auto;text-align:center;}
.cont  .tit-box {position:relative;text-align:center;margin-bottom:40px;letter-spacing:-1px;overflow:hidden;}
.cont  .tit-box h2 {font-weight:700;font-size:45px;letter-spacing:-2px;opacity:0;}
.cont  .tit-box p {padding-top:20px;font-size:22px;line-height:1.3;opacity:0;}


.news-box {position:relative;overflow:hidden;}
.news-box .posts {position:relative;line-height:2;color:#a0a0a0;font-size:20px;text-align:left;}
.news-box .posts span {color:#222;font-weight:500;}
.news-box ul {position:relative;border-top:2px solid #333;}
.news-box ul li {position:relative;display:block;border-bottom:1px solid #e5e5e5;}
.news-box ul li a {position:relative;display:block;}
.news-box ul li a .num {display:block;position:absolute;left:0;top:0;width:100px;text-align:center;line-height:130px;font-size:30px;color:#a0a0a0;font-weight:500;}
.news-box ul li a .category {display:block;position:absolute;left:100px;top:27px;background: #D54433;color:#fff;width:160px;line-height:74px;font-size:20px;font-weight:400;}
.news-box ul li a .tit {display:block;margin-left:300px;width:830px;font-weight:500;color:#333;font-size:24px;line-height:130px;letter-spacing:-1px;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.news-box ul li a .date {display:block;position:absolute;right:0;top:0;width:150px;line-height:130px;font-size:20px;color:#a0a0a0;}


/* 페이징 */
.paginate {margin-top:40px;font-size:0;text-align:center;}
.paginate a {display:inline-block;position:relative;width: 32px;height: 32px;box-sizing:border-box;font-size:16px;line-height: 32px;text-align:center;vertical-align:top;transition:all 0.4s;}
.paginate a.on {background:#D54433;width:32px;height:32px;color:#fff;font-weight:700;border-radius:50%;}
.paginate a.next {width: 35px;height: 35px;margin-left:15px;background:url(../images/icon_next.png) center no-repeat;background-size: 15px 15px;overflow:hidden;text-indent:-999999px;}
.paginate a.pre {width: 35px;height: 35px;margin-right:15px;background:url(../images/icon_prev.png) center no-repeat;background-size: 15px 15px;overflow:hidden;text-indent:-999999px;}


/* 하단 관심등록*/
.registration  {position:relative;text-align:left;height:147px;overflow:hidden; box-sizing:border-box;background:#fff;border-top:1px solid #dfdfdf;z-index:8;}
.registration .inner {position:relative;width:1300px;margin: 40px auto 0;}
.registration h4 {display:block;position:absolute;left:0;top:6px;color:#a59487;font-size:24px;font-weight:500;line-height:60px;letter-spacing:-2px; padding-left: 35px;}
.registration h4:before {content:'';position:absolute;top:17px;left:0px;width:30px;height:29px;background-image:url(/images/regist.png);background-size:100%;}
.registration ul {position:relative;margin-left:180px;text-align:left;letter-spacing:-0.05em;}
.registration ul:after {clear: both; display:block; content:""}
.registration ul li {position:relative;vertical-align:middle; display:inline-block; padding-right: 30px; font-size:18px;line-height:60px;}
.registration ul li label {display:inline-block;font-size:18px;font-weight:400;padding-right:10px;line-height:60px;}
.registration ul li input[type="text"] {background:#eee;border:none;font-size:20px; }
.registration ul li:nth-child(1) input[type="text"] {width:220px; height: 50px;}
.registration ul li:nth-child(2) input[type="text"] {width:230px; height: 50px;}
.registration ul li input[type="checkbox"] {display:none;}
.registration ul li input[type="checkbox"] + label {padding-left:26px;text-indent:-999999px;font-size:0;}
.registration ul li input[type="checkbox"] + label:before { content:' '; display:block; width:20px; height:20px; position:absolute;left:10px;top:17px;background:url(/images/rgs-check.png); }
.registration ul li input[type="checkbox"]:checked + label:before {background:url(/images/rgs-check-on.png) no-repeat 0 0px;z-index:1;}
.registration ul li .privacy {display:inlin-block;padding:5px 0;border-bottom:1px solid #a59487;color:#a59487;font-weight:400;}
.registration ul li.bts-r  {position:absolute;right:0;padding:0;}
.registration ul li .bt-submit {display:block;padding:0 50px;background:#a59487; }
.registration ul li .bt-submit span {position:relative;color:#fff;font-weight:500; font-size:22px; text-align: center;}


/*********************************** popup ***************************************/

html.on { height:100%; overflow:hidden;}
.pu_bg { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,.8); z-index:1000; display:none;}

/*개인정보약관*/
.pop-privacy {position:fixed;left:50%;top:50%;transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); width:1000px;height:100%; background:#fff; box-sizing:border-box;z-index:1001;padding:20px;display:none; }

.pop-privacy .bt_close { position:absolute; display:block;top:0px;left:50%; margin-left:510px;width:52px; height:53px; background:url(../images/bt_close.png) no-repeat 0 0;background-size:100%; text-indent:-9999px; }

.pop-privacy  .pu_txt_area {overflow-y:auto;height:100%;padding:20px;font-size:16px;letter-spacing:-0.5px;}

.pop-privacy .pu_txt_area h1 {display:block;text-align:center;font-size:40px;letter-spacing:-3px;font-weight:500;line-height:2;}
.pop-privacy .pu_txt_area dl dt {display:block;text-align:left;font-size:20px;letter-spacing:-1px;font-weight:300;color:#753232;padding:20px 0 10px;font-weight:400;}
.pop-privacy .pu_txt_area dd ul {padding-top:10px;}
.pop-privacy .pu_txt_area dd ul li {display:block;position:relative;line-height:1.3;padding:5px 0 5px 20px;}
.pop-privacy .pu_txt_area dd ul li:before {content:'-';display:block;position:absolute;left:0;top:5px;}
.pop-privacy .pu_txt_area dd p {font-weight:500;padding:10px 0 5px;}


/* popup start */

/* PC – 팝업 2개 가로 배치 */
.popup_wrap{
    position:absolute;
    top: 250px;
    left: 5%;
    display:flex;
    gap: 0px;
    z-index: 99;
    font-size: 0;
}

.popup_wrap .divpop_yb:nth-child(2) {
    margin-left: -70px;
}

.popup_wrap .divpop_yb{
    width: 450px;
    opacity: 0;
    animation: fadeInD2 1s ease-in-out both;
}

.popup_wrap .divpop_yb img{
  width: 100%;
  height: auto;
  display:block;
}

/*.divpop_yb{position:absolute; top: 250px; left: 5%; width: 450px; opacity: 0; animation: fadeInD2 1s ease-in-out both; z-index: 99; font-size: 0;}*/
@keyframes fadeInD2 {
  from {opacity: 0; margin-top: -60px;}
  to {opacity: 1; margin-top: 0;}
} 
.divpop_yb img {
  width: 100%;
  height: auto;
  display: block;
}

.close_yb{position: absolute; display: block; width: 50px; height: 50px; top:0; right:90px; background:#000000c7; cursor: pointer;}
.close_yb span{position: absolute; width: 40px; height:2px; background: #fff; display: block; left: 50%; top: 50%;}
.close_yb span:nth-of-type(1){transform: translate(-50%, -50%) rotate(135deg);}
.close_yb span:nth-of-type(2){transform: translate(-50%, -50%) rotate(-135deg);}

.popup_btn{position: absolute; width: 100%; height: 22%; bottom: 20%; left:40%; cursor: pointer;}

  
#sub_top{overflow: hidden;}
#sub_top .sub_top_tx{overflow: hidden; top: 50%; width: 0; animation: sub_top_tx 2.5s .5s ease; animation-fill-mode:both; left: 42.5%;}
#sub_top .sub_top_tx p{color: rgb(243, 240, 238); font-size: 18px; font-weight: 700; letter-spacing: 9px;  min-width: 275px;}
@keyframes sub_top_tx {
  0%{ width: 0;}
  100%{width: 265px;}
}

#sub_top .sub_top01_bg{
    width: 100%;
    height:600px;
    background: url(../images/sub_top01.jpg);
    /* background-attachment: fixed; */
    background-size: cover;
    background-position: center;
    animation:sub_top01 1s ease-in-out;
    animation-fill-mode:both;

  }

  #sub_top .sub_top02_bg{
    width: 100%;
    height:600px;
    background: url(../images/sub_top02.jpg);
    background-size: cover;
    background-position: center;
    animation:sub_top01 1s ease-in-out;
    animation-fill-mode:both;

  }

  #sub_top .sub_top03_bg{
    width: 100%;
    height:600px;
    background: url(../images/sub_top03.jpg);
    background-size: cover;
    background-position: center;
    animation:sub_top01 1s ease-in-out;
    animation-fill-mode:both;

  }

  #sub_top .sub_top04_bg{
    width: 100%;
    height:600px;
    background: url(../images/sub_top04.jpg);
    background-size: cover;
    background-position: center;
    animation:sub_top01 1s ease-in-out;
    animation-fill-mode:both;

  }

  #sub_top .sub_top05_bg{
    width: 100%;
    height:600px;
    background: url(../images/sub_top05.jpg);
    background-size: cover;
    background-position: center;
    animation:sub_top01 1s ease-in-out;
    animation-fill-mode:both;

  }

  #sub_top .sub_top06_bg{
    width: 100%;
    height:600px;
    background: url(../images/sub_top06.jpg);
    background-size: cover;
    background-position: center;
    animation:sub_top01 1s ease-in-out;
    animation-fill-mode:both;

  }


  @keyframes sub_top01 {
    0%{ opacity: 0;}
    100%{opacity: 1;}
  }


 .hm200 {min-height:200px;}

 body {
  margin: 0;
  font-family: 'Wanted sans', sans-serif;
  background-color: #ffffff;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

.image-section {
  flex: 1;
  max-width: 50%;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
}

.text-section {
  flex: 1;
  padding: 40px;
  text-align: left;
  max-width: 50%;
}

.text-section h1 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 10px;
}

.sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #a29b91;
}

.main-title {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 300;
  margin: 30px 0;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 2px;
  transition: background 0.3s;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.btn.brown {
  background-color: #85714e;
}

.btn.brown:hover {
  background-color: #6c5b3d;
}

.btn.black {
  background-color: #2e2822;
}

.btn.black:hover {
  background-color: #1c1c1c;
}

/* 📱 모바일 반응형 처리 */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .image-section,
  .text-section {
    max-width: 100%;
    flex: none;
    padding: 0;
  }

  .text-section {
    padding: 30px 20px;
    text-align: center;
  }

  .text-section h1 {
    font-size: 28px;
  }

  .main-title {
    font-size: 20px;
  }

  .btn {
    width: 100%;
    margin: 0 auto;
  }
}

/*팝업*/
.popup-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box-wrapper {
  position: relative; /* 버튼 위치 기준 */
  display: inline-block;
}

.popup-box {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  max-width: 400px;
}

/* 닫기 버튼 스타일 */
.popup-close-outside {
  position: absolute;
  top: 1px;
  right: -31px;
  background: #ddd9d9;
  color: #333333;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}







 /* 슬라이드 팝업 */

.slide-popup {
  position: fixed;
  bottom: -200px;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: bottom 0.4s ease;
  z-index: 9998;
}

.slide-popup.show {
  bottom: 20px;
}

.slide-popup img {
  width: 100%;
  display: block;
}

#slideClose {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 16px;
  cursor: pointer;
}


 /* 장기일반민간임대주택이란? */

.benefits {
  background: #fff;
  padding: 40px 0 150px 0;
  font-family: 'Noto Sans KR', sans-serif;
}

.benefits_wrap {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit {
  background: #f3f3f3;
  text-align: center;
  padding: 40px 20px 30px;
  border-radius: 10px;
  box-sizing: border-box;
}

.benefit .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit .icon img {
  width: 70px;
  height: 70px;

}

.benefit h3 {
  font-size: 22px;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit h3 span {
  color: #e84c3d;
  font-weight: 800;
  margin-left: 5px;
}

.benefit p {
  font-size: 16px;
  color: #222;
  line-height: 1.4;
  letter-spacing: -0.5px;

}

/* ===== HUG 보증 섹션 ===== */
.hug-sec { background:#f6f6f6; padding:80px 20px; }
.hug-sec__inner { max-width:1100px; margin:0 auto; }

.hug-hero {
  display: flex;
  flex-direction: column; /* 세로 배치 */
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px; /* 로고와 텍스트 간격 */
  margin-bottom: 40px;
}

.hug-hero-title {
  font-size: 35px;
  font-weight: 600; 
  color: #000;
  letter-spacing: -0.5px;
  animation-delay: 0.5s;
}

.hug-hero-title span {color: #D54433;}

.hug-emblem{
  display:inline-flex; align-items:center; justify-content:center;
  width:150px; height:150px; border-radius:50%;
  background: url(../images/hug_mark.png) no-repeat;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  /* 실제 로고 이미지가 있을 경우 아래 주석 해제하고 텍스트 숨김
     background:#0aa3a3 url('/images/hug_logo.png') no-repeat center / 70%;
     text-indent:-9999px; overflow:hidden; */
}

.hug-card{
  background:#fff; padding:36px 28px; text-align:center;
  box-shadow:0 8px 26px rgba(0,0,0,0.06);
}
.hug-title{ font-size:28px; font-weight:800; margin:0 0 10px; color:#222; }
.hug-subtitle{ font-size:24px; font-weight:800; margin:0 0 10px; color:#222; }
.hug-subtitle span {font-weight: 400;}
.hug-desc{font-size: 20px; line-height:1.4; color:#000; margin:0; }

.hug-sep{
  border:none; border-top:1px solid rgba(0,0,0,0.12);
  margin:36px auto; width:100%;
}

.hug-flow{ margin-top:36px; }
.hug-flow__title{
  font-size:25px; font-weight:700; color:#000; letter-spacing:0.02em; margin-bottom:16px; margin-left: 30px;
}

.hug-flow__title span{margin-left: 30px; font-size: 22px; font-weight: 400;}

.hug-flow__line{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  background:#f6f6f6; padding:28px 24px; color:#e9e9e9;
}

.hug-node{ display:flex; flex-direction:column; align-items:center; gap:10px; min-width:140px; }
.hug-node__label{ font-size:20px; color:#3A2F33; font-weight: 600;}
.hug-emph{ color:#D54433; font-weight:700; }

.hug-icon{
  width:84px; height:84px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#D54433; color:#fff; font-size:32px; font-weight:800;
}
.hug-icon--tenant{ background:#3A2F33; }
.hug-icon--lessee{ background:#3A2F33; }
.hug-icon--hug{ background:#D54433; font-size:20px; }
.hug-icon--accent{ background:#D54433; }

.hug-arrow{
  flex:1; display:flex; align-items:center; justify-content:center; gap:12px;
  position:relative; min-height:40px; text-align:center;
  color:#bdbdbd; font-size:15px;
}
.hug-arrow::before{
  content:""; height:2px; background:#3A2F33; flex:1;
}
.hug-arrow span{ padding:0 10px; white-space:nowrap; font-size: 20px; font-weight: 600;color:#3A2F33;}

.hug-arrow::after {
  content: "";
  position: absolute;
  right: -8px;               /* 세모 위치 조정 */
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #333;      /* 선과 같은 색상 */
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* 텍스트는 선 위 중앙 정렬 */
.hug-arrow > span {
  position: absolute;
  top: 30px;                /* 선 위에 위치 */
  left: 50%;
  transform: translateX(-50%);
  padding: 0 6px;
  color: #3A2F33;
  font-size: 20px;
  white-space: nowrap;
}

/* 반응형 */
@media (max-width: 960px){
  .hug-flow__line{ flex-direction:column; gap:16px; text-align:center; }
  .hug-arrow{ width:100%; }
  .hug-arrow::before, .hug-arrow::after{ display:none; }
  .hug-node{ min-width:unset; }
}

/* 예시 경로는 환경에 맞게 수정하세요 */
.hug-icon--lessee { background:#3A2F33 url('/images/icon_lessor.png') no-repeat center / 100%; }
.hug-icon--tenant { background:#3A2F33 url('/images/icon_tenant.png') no-repeat center / 100%; }
.hug-icon--tenant-2 { background:#3A2F33 url('/images/icon_tenant_2.png') no-repeat center / 100%; }
.hug-icon--hug    { background:#D54433 url('/images/hug_mark..png') no-repeat center / 100%; }



/* 입지환경 */

.ev {
  --wrap-width: 1200px;
  --panel-bg: #eee;       /* 카드 바탕 */
  --accent: #e84c3d;      /* 빨간 포인트(헤드라인) */
  --cat: #4d4643;         /* 상단 카테고리 텍스트 */
  --body: #fff;           /* 본문 */
  --card-radius: 10px;
  --pad-x: 52px;          /* 원본 느낌의 좌우 여백 */
  --pad-y: 46px;          /* 상하 여백 */
  font-family: "Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, "Apple SD Gothic Neo", sans-serif;
  color: var(--body);
  background: #fff;
  padding: 40px 0 10px 0;
  padding-bottom: 150px;
  
}
.ev__img{width:70%; height: 900px; margin:100px auto 0; background:url(../images/ev__img.png)no-repeat center center; background-size: contain; display:block; animation-delay: .2s; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges;}
.ev__grid{
  width: var(--wrap-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* PC 2열 고정 */
  gap: 15px;
}

/* 카드 */
.ev__card{
  position: relative;
  background: var(--panel-bg);
  overflow: hidden;
  min-height: 240px; /* 필요 시 조정 */
  box-sizing: border-box;
}

/* 배경 곡선 무늬: 이미지가 있으면 교체 */
.ev__card::before{
  content:"";
  position:absolute; inset:0;
  background:
  url("/images/ev_s_bg.jpg") no-repeat right bottom / cover;
    
  opacity:.9;
  pointer-events:none;
}
.ev__card.has-bg::before{
  /* 실제 파일 쓰실 때 이 클래스 추가하고 아래 경로만 교체 */
  background: url("/images/panel_wave.png") no-repeat right bottom / cover;
  opacity: .8;
}

/* 상단 카테고리 (아이콘 + 영문) */
.ev__cat{
  display:flex; align-items:center; gap:10px;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .5px;
  color: var(--cat);
  margin-bottom: 18px;

}

.ev__cat span {
  font-weight: 500;
  letter-spacing: -1;
}


.ev__icon{
  width: 30px; height: 30px; object-fit: contain;
  filter: saturate(.1) brightness(.3); /* 단색 느낌 */
}

/* 빨간 헤드라인 */
.ev__headline{
  font-size: 30px;
  line-height: 1.15;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

/* 설명문 */
.ev__desc{
  font-size: 16px;
  line-height: 1.4;
  color: #222;
  letter-spacing: -0.1px;
}

/* 가운데 검정 구분선 */
.ev__divider{
  grid-column: 1 / -1;
  height: 1px;
  background:#fff;
  border-radius: 2px;
}

/* 카드 상단 이미지 (히어로 .ev__img 과 별개) */
.ev__photo{ /* 그대로 */
  width:100%; height:500px;
  background-size:cover; background-position:center;
}
/* 예: 섹션별 새 이미지 */
.ev__photo--traffic{  background-image:url("../images/traffic_top.jpg"); }
.ev__photo--edu{      background-image:url("../images/education_top.jpg"); }
.ev__photo--life{     background-image:url("../images/life_top.jpg"); }
.ev__photo--infra{    background-image:url("../images/infra_top.jpg"); }
/* 카드 내용 박스 */
.ev__content{
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  box-sizing: border-box;


}

/* 둥둥 */
.quick{position: fixed; right: 20px; top: 52%; z-index: 999; cursor: pointer; transition: top 1s;}
.quick.on{top: 70%;}
.quick.main{top: 25%;}
.quick .quick-pc:nth-of-type(1){top: 105%; position: absolute; }
.quick ul li a{position: absolute; width: 100%; height: 100%; left: 0; top: 0;}
.quick-pc div{position:absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; font-size: 18px; font-weight: 400; color: #FFF;}
.quick-pc div p{font-weight: 600; }
.quick-pc img{animation: quick-rotate 5s linear infinite;}
@keyframes quick-rotate{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}