@charset "euc-kr";
@import url(./font.css);

body {font-family: 'Pretendard'; letter-spacing: 0; padding-top: 6.25rem; line-height: normal;}
/* .wrap {position:relative; width:100%; min-width:1200px;} */
.container,
.inner {
  position:relative;
  width: calc(100% - 32px);
  max-width: 1400px;
  margin: 0 auto;
}
.flex-box {
  display: flex;
  flex-flow: row wrap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pc {
  display: block;
}
.pc-flex {
  display: flex;
}
.mo,
.mo-flex {
  display: none;
}

.blind {
  font-size: 0;
  text-indent: -9999px;
  opacity: 0;
}

/* TOP 버튼 스타일 */
#top_btn {
  position: fixed;        /* 화면에 고정 */
  bottom: 30px;           /* 아래에서 30px 띔 */
  right: 30px;            /* 오른쪽에서 30px 띔 */
  z-index: 999;           /* 다른 요소보다 위에 표시 */
  
  width: 50px;
  height: 50px;
  background-color: #333333;
  color: #ffffff;
  
  display: flex;
  align-items: center;    /* 세로 중앙 정렬 */
  justify-content: center; /* 가로 중앙 정렬 */
  
  border-radius: 50%;     /* 동그라미 모양 (네모를 원하면 삭제) */
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* 마우스 호버 효과 */
#top_btn:hover {
  background-color: var(--mainColor); /* 마우스 올렸을 때 색상 변경 */
  transform: translateY(-3px); /* 살짝 위로 둥실 떠오르는 효과 */
}

@media (max-width:1400px) {}
@media (max-width:1280px) {
  html,body {font-size: 15px;}
}
@media (max-width:1024px) {
  html,body {font-size: 14px;}

  .mo {
    display: block;
  }
  .mo-flex {
    display: flex;
  }
  .pc,
  .pc-flex {
    display: none;
  }
}
@media (max-width:968px) {}
@media (max-width:768px) {
  html,body {font-size: 13px;}
}
@media (max-width:480px) {
}
@media (max-width:400px) {
  html,body {font-size: 12px;}
}
@media (max-width:320px) {}

:root {

  --m-color: #1F9AA0;
  --m-color-70: #1F9AA0;
  --m-color-strong: #1F9AA0;
  --h2-font-size: 28px;
  --h4-font-size: 18px;
  --p-font-size: 16px;
  --span1-font-size: 14px;
  --span2-font-size: 12px;
  --h-font-color: #151432;
  --p-font-color: #515061;
  --span-font-color: #9a9a9a;
  --box-shadow: 0 10px 30px rgba(0,0,0, 0.1);
  --box-shadow2: 0 10px 30px rgba(29, 44, 78, 0.4);
  --dim-box-shadow: 0 10px 10px rgba(0,0,0, 0.1);
  --gnb-box-shadow: 0 2px 10px rgba(0,0,0, 0.1);
  --gnb-font-size: 19px;
  --gnb-depth-font-size: 15px;
  --lnb-font-size: 18px;
  --border-color: #dde1e5;
  --dim-height: 300px;
  --lnb-height: 70px;
  --lnb-width: 110px;

  --m-error: #d43d60;
  --m-new: #fca604;
  --m-pop: #32c081;
  --m-rec: #fa647d;
  --m-sale:#ec3f3f;
  --m-ing: #00a4a2;
  --m-best: #00a4a2;
  --m-end: #8f8f99;
  --m-ready: #f58604;

  --white: #ffffff;
  --black: #000000;
  --mainColor: #1F9AA0;
  --m-color: #1F9AA0;
  --border-color: #ddd;

  --black01: #111;
  --black02: #222;
  --black03: #333;
  --black06: #666;
  --black09: #999;

  --gray01: #eee;
  --gray02: #67738e;
  --gray03: #373f57;
  --gray04: #999999;
  --gray05: #dddddd;
  --gray06: #bfbfc3;
  --gray07: #5c667b;
  --gray08: #404040;

  --blue01: #0066ff;
  --blue02: #00ffff;
  --blue03: #00ccff;
  --blue04: #2d65f2;

  --purple01: #562dff;
  --purple02: #f6f3ff;
  --purple03: #a2a0fd;

  --size11: 0.6875rem;
  --size12: 0.75rem;
  --size13: 0.8125rem;
  --size14: 0.875rem;
  --size15: 0.9375rem;
  --size16: 1rem;
  --size18: 1.125rem;
  --size19: 1.1875rem;
  --size20: 1.25rem;
  --size22: 1.375rem;
  --size24: 1.5rem;
  --size25: 1.5625rem;
  --size26: 1.625rem;
  --size28: 1.75rem;
  --size30: 1.875rem;
  --size34: 2.125rem;
  --size35: 2.1875rem;
  --size36: 2.25rem;
  --size40: 2.5rem;
  --size45: 2.8125rem;
  --size50: 3.125rem;
  --size60: 3.75rem;
}

/* SELECT */
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background:url(../images/ico/sel_arr.png) calc(100% - 16px) 50% no-repeat;}
select::-ms-expand {
   display: none;            
}

/* HEADER */
.header {
  position:fixed; 
  top: 0;
  left: 0;
  width:100%; 
  z-index:102; 
  background-color: var(--white);
  box-shadow:0 5px 10px -5px rgba(0,0,0,.15);
}
.header .inner {
  justify-content: space-between;
  align-items: center;
}
.header .gnb {
  padding-left: 5.5px;
}
.header .gnb > ul {

}
.header .gnb > ul > li {
  position: relative;
}
.header .gnb > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0 3.125rem;
  justify-content: center;
  height: 6.25rem;
  font-weight: 600;
  font-size: var(--size18);
  line-height: 1;
  color: var(--black01);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.header .gnb .depth2 {
  /* display: none; */
  position: absolute;
  background-color: #fff;
  width: calc(100% + 24px);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  opacity: 0;
  padding: 0 ;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  box-shadow: 0px 4px 10px 0px #00000026;

}
.header .gnb .depth2 li {
  padding: 0 1.875rem;
}
.header .gnb .depth2 li a {
  display: block;
  font-weight: 400;
  font-size: var(--size16);
  line-height: 1.25;
  padding: 10px 0;
  color: #000;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.header .gnb > ul > li:hover > .depth2 {
  border-top: 1px solid #ddd;
  opacity: 1;
  padding: 0.9375rem 0;
  visibility: visible;
  max-height: 500px;
}

.header .gnb > ul > li:hover > a,
.header .gnb .depth2 li a:hover {
  color: var(--m-best);
}
.header .gnb .depth2-box {
  position: absolute;
  background-color: #fff;
  top: 100%;
  width: 39.375rem;
  left: 0;
  padding: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s, background-color 0.3s;
  box-shadow: 0px 4px 10px 0px #00000026;
  padding: 0;
  /*padding: 2.1875rem 0;
  opacity: 1;
  max-height: 1000px;
  visibility: visible;
  */
  -webkit-transition: max-height 0.3s, padding 0.3s, background-color 0.3s;
  -moz-transition: max-height 0.3s, padding 0.3s, background-color 0.3s;
  -ms-transition: max-height 0.3s, padding 0.3s, background-color 0.3s;
  -o-transition: max-height 0.3s, padding 0.3s, background-color 0.3s;
}
.header .gnb .depth2-box .depth-col {
  flex: 1;
  padding: 0 2.1875rem;
  position: relative;
}
.header .gnb .depth2-box .depth-col.col2 {
  border: 1px solid #ddd;
  border-top: 0;
  border-bottom: 0;
}
.header .gnb .depth2-box .depth-col.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: start;
  justify-items: start;
}
.header .gnb .depth2-box .depth-col a {
  display: block;
  font-size: var(--size16);
  line-height: 1.5;  
  padding: 0.5rem 0;
  color: var(--black01);
}
.header .gnb .depth2-box .depth-col.col1 li a {
  font-weight: 600;
}
.header .gnb .depth2-box .depth-col > ul {
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.header .gnb > ul > li:hover > .depth2-box {
  padding: 2.1875rem 0;
  opacity: 1;
  max-height: 1000px;
  visibility: visible;
}
.header .gnb .depth2-box .depth-col li.on > a {
  color: var(--mainColor);
}
.header .gnb .depth2-box .depth-col > ul.on {
  opacity: 1;
  visibility: visible;
}
.header .gnb .depth2-box .depth-col.col3 > ul a:hover {
  color: var(--m-best);
}

.header .member-wrap ul {
  gap: 1.5625rem;
  align-items: center;
}

@media (max-width:1400px) {}
@media (max-width:1280px) {
  .header .logo img{
    max-width: 18.6875rem;
  }
  .header .gnb > ul > li > a {
    padding: 0 2.75rem;
  }
}
@media (max-width:1024px) {
  .header .gnb {
    display: none;
  }
  .header .inner {
    height: 6.25rem;
  }
  .header .member-wrap ul a {
    display: block;
  }
  .header .logo img {
    max-width: 16.6875rem;
}
}
@media (max-width:968px) {}
@media (max-width:768px) {}
@media (max-width:480px) {}
@media (max-width:400px) {
  .header .member-wrap ul {
    gap: 1rem;
  }
}
@media (max-width:320px) {}

.left-menu {
  max-width: 800px;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  position: fixed;
  top: 0;
  right: -100%;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.left-menu.active {
  right: 0;
}
.left-menu-top {
  /* width: calc(100% - 20px);  */
  padding: 1.5rem 10px;
  margin: 0 auto;
  position: relative;
}
.left-menu-top .inner {
  position: relative;
}
.left-menu-top ul {
  justify-content: flex-start;
  gap: 10px;
}
.left-menu-top ul li {
  width: 6.25rem;
  height: 2.5rem;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.left-menu-top ul li:nth-child(1) {
  background: #92BFF4;
}
.left-menu-top ul li:nth-child(2) {
  background: #517FA2;
}
.left-menu-top ul li:nth-child(3) {
  background: #57134B;
}
.left-menu-top ul li a {
  font-weight: 600;
  font-size: var(--size14);
  line-height: 1;
  color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-menu-middle {width: 100%; height: calc(100% - 100px); overflow-y: auto; padding: 0 20px 40px; box-sizing: border-box;}
.left-menu .user-menu {display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; align-content: flex-start;}
.left-menu .user-menu dd {flex: none; margin: 4px 0 0;}
.left-menu .user-menu dd + dd {margin: 4px 0 0 8px;}
.left-menu .user-menu dd a {font-size: 15px; display: block;}
.left-menu .user-menu dd.block {width: 100%; height: 0;}
.left-menu .user-menu dd.block + dd {margin: 4px 0 0 0;}
.left-menu .user-menu dd.member-btn a {border: 1px solid #515061; border-radius: 10px; padding: 4px 8px; box-sizing: border-box;
display: flex; flex-flow: row wrap; gap: 10px; align-items: center;}
.left-menu .user-menu dd.fc-btn a {background: var(--m-color); color: var(--m-color-strong); border-radius: 10px; padding: 4px 8px;}
.left-menu .user-menu dd.english {border: 1px solid var(--m-color); padding: 2px 8px; box-sizing: border-box; background: #fff; color: var(--m-color); border-radius: 8px;}
#nav {width: 100%;}

#nav > li > a {display: block; width: 100%; line-height: 42px; border-bottom: 1px solid #ddd; box-sizing: border-box; font-size: 17px; color: #222; font-weight: 500;     background: url(/img/comm/nav_arr.png) right 10px center no-repeat;}

#nav > li > .depth2 {width: 100%; box-sizing: border-box; max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;}

#nav > li.active > .depth2 {

  max-height: 500px;

}

#nav > li > .depth2 li a {font-size: 16px; line-height: 24px; padding: 8px 10px 7px; box-sizing: border-box; display: block; border-bottom: 1px solid #ddd;}



.all_menu-cls { width: 20px; height: 20px; background: url(/img/comm/close_b.png) 50% 50% no-repeat; background-size: 100% auto; display: block; position: absolute; top: 50%; right: 10px; transform:translateY(-50%) ; -webkit-transform:translateY(-50%) ; -moz-transform:translateY(-50%) ; -ms-transform:translateY(-50%) ; -o-transform:translateY(-50%) ; }

/* ALL MENU */
.gnb_area .all_cate {position:relative; float:left; width:230px; height:60px; margin-top:-1px;}
.all_cate .all_btn {display:block; width:100%; height:60px; line-height:58px; background:url(../images/ico/all_ico.png) 43px 50% no-repeat; border:1px solid #ef4023; padding:0 0 0 84px; font-family:'NotoSans',sans-serif; font-size:18px; font-weight:500; letter-spacing:-0.065rem; color:#ef4023; text-align:left; box-sizing:border-box;}
.all_cate .all_area {position:absolute; top:59px; left:0; width:100%; height:auto; padding:19px 0; background:#fff; border:1px solid #ef4023; box-sizing:border-box;}
.all_cate.sub .all_area {display:none;}
.all_cate .all_menu > li {padding:0 14px; margin-bottom:8px; box-sizing:border-box;}
.all_cate .all_menu > li > a {display:block; width:100%; height:41px; line-height:41px; font-weight:500; letter-spacing:-0.065rem; font-size:17px; color:#555; padding:0 16px; box-sizing:border-box;}
.all_cate .all_menu > li:hover > a {background:#ef4023; color:#fff;}
.all_cate .all_menu .depth_menu {display:none; position:absolute; top:-1px; left:100%; min-width:230px; height:calc(100% + 2px); background:#fff; border:1px solid #ef4023; box-sizing:border-box;}
.all_cate .all_menu .depth_ttl {display:block; width:100%; height:70px; line-height:70px; border-bottom:1px solid #ddd; padding:0 27px; font-size:20px; font-weight:700; letter-spacing:-0.065rem; color:#222; box-sizing:border-box;}
.all_cate .all_menu .depth_menu .dep {float:left; width:228px; padding:19px 14px; box-sizing:border-box;}
.all_cate .all_menu .depth_menu .dep a {display:block; font-size:16px; line-height:41px; font-weight:500; letter-spacing:-0.065rem; color:#555; padding:0 12px; box-sizing:border-box;}
.all_cate .all_menu .depth_menu .dep a:hover {color:#ef4023;}

/* FOOTER */
.footer {
  width:100%; 
  background:#4C4C4E;
}
.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 0 1.1875rem;
}
.footer-top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-top .foot-link {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 2.5rem;
}
.footer-top .foot-link li {
  position: relative;
}
.footer-top .foot-link li::after {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #d9d9d9;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -1.4375rem;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.footer-top .foot-link li:last-child::after {
  display: none;
}
.footer-top .foot-link a {
  font-weight: 500;
  font-size: var(--size16);
  line-height: 1.57143;
  color: rgba(255,255,255,0.8);
}
.footer-top .foot-link li:nth-child(2) a {
  color: #fff;
}
.footer-top .family-box {
  position: relative;
  z-index: 1;
}
.footer-top .family-box h4 {
  width: 15.625rem;
  height: 3.75rem;
  padding: 0 1.8125rem 0 2.125rem;
  border: 1px solid #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: var(--size18);
  line-height: 1.388889;
  color: #fff;
  cursor: pointer;
}
.footer-top .family-box ul {
  position: absolute;
  top: calc(100%);
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  border: 1px solid transparent;
  border-top: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s, border-color 0.3s;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s, border-color 0.3s;
  -moz-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s, border-color 0.3s;
  -ms-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s, border-color 0.3s;
  -o-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s, border-color 0.3s;
}
.footer-top .family-box ul li a {
  display: flex;
  font-weight: 600;
  font-size: var(--size18);
  line-height: 1.388889;
  color: #fff;
  padding: 1rem 1.8125rem 1rem 2.125rem;
}
.footer-top .family-box ul li:nth-child(n+2) {
  border-top: 1px solid #fff;
}
.footer-top .family-box:hover ul {
  visibility: visible; /* 마우스를 올리면 보이게 변경 */
  opacity: 1;          /* 투명도를 선명하게 1로 변경 */
  border-color: #fff; 
  max-height: 250px;   /* 실제 메뉴 높이에 맞게 조절 */
}
.footer-bottom {
  padding :3.125rem 0 5.875rem
}
.footer-bottom .inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer-bottom h2 {
  width: 100%;
}
.footer-bottom h4 {
  font-weight: 700;
  font-size: var(--size18);
  line-height: 1.388889;
  color: rgba(255,255,255,0.8);
}
.footer-bottom p {
  margin-top: 5px;
  font-weight: 400;
  font-size: var(--size16);
  line-height: 1.375;
  color: rgba(255,255,255,0.8);
}
.footer-bottom h3 {
  font-weight: 700;
  font-size: var(--size30);
  line-height: 1.4;
  color: var(--white);
  margin-top: 10px;
}
.footer-bottom .left p:nth-of-type(1) {
  margin-top: 0.9375rem;
}
.footer-bottom .left p:nth-of-type(2) span {
  padding-left: 1.25rem;
}
.footer-bottom .left h5 {
  font-weight: 400;
  font-size: var(--size16);
  line-height: 1.375;
  color: rgba(255,255,255,0.6);
  margin-top: 1.875rem;
}
.footer-bottom .right p {
  line-height: 1.625;
}

@media (max-width:1400px) {}
@media (max-width:1280px) {}
@media (max-width:1024px) {}
@media (max-width:968px) {}
@media (max-width:768px) {
  .footer-top .inner {
    flex-flow: row wrap;
    gap: 2rem;
  }
  .footer-top .foot-link {
    width: 100%;
  }
}
@media (max-width:480px) {}
@media (max-width:400px) {}
@media (max-width:320px) {}

/* QUICK */.quick_wrap {position:fixed; top:0; right:0; width:85px; height:100%; background:#fff; border-left:1px solid #ddd; box-sizing:border-box; z-index:200; transition:right 0.35s;}
.quick_wrap.close {right:-85px;}

.quick_wrap .quick_btn {position:absolute; top:300px; left:0; width:21px; height:40px; background:#fff url(../images/ico/close_ico.png) 50% 50% no-repeat; border-width:1px 0 1px 1px; border-style:solid; border-color:#eee #ddd #eee; margin-left:-21px; text-indent:-9999px; box-sizing:border-box; outline-color:#ef4023;}
.quick_wrap.close .quick_btn {background-image:url(../images/ico/open_ico.png);}

.quick_wrap .inner {padding:30px 10px 0; box-sizing:border-box;}
.quick_wrap .quick_lnk {margin-bottom:40px;}
.quick_wrap .quick_lnk li {margin-bottom:30px;}
.quick_wrap .quick_lnk a {position:relative; display:block; width:100%; padding:45px 0 0; text-align:center; background:url(../images/ico/top_ico1.png) 50% 0 no-repeat; font-size:13px; line-height:15px; letter-spacing:-0.085rem; color:#333; box-sizing:border-box;}
.quick_wrap .quick_lnk a:hover {color:#ef4023;}
.quick_wrap .quick_lnk li:nth-child(2) a {background:url(../images/ico/top_ico2.png) 50% 0 no-repeat;}
.quick_wrap .quick_lnk li:nth-child(3) a {background:url(../images/ico/top_ico3.png) 50% 0 no-repeat;}
.quick_wrap .quick_lnk li:nth-child(4) a {background:url(../images/ico/quick_ico4.png) 50% 0 no-repeat;}
.quick_wrap .quick_lnk .count {position:absolute; top:0; right:8px; width:20px; height:20px; line-height:20px; text-align:center; font-size:11px; font-weight:600; letter-spacing:0; color:#fff; background:#ef4023; border-radius:50%; margin:-7px 0 0; box-sizing:border-box;}

.quick_wrap .today {width:100%; border-top:1px solid #eee; padding-top:30px;}
.quick_wrap .today span {display:block; font-size:14px; line-height:20px; color:#555; text-align:center; margin-bottom:12px;}
.quick_wrap .today ul {width:61px; margin:0 auto;}
.quick_wrap .today li {width:61px; height:61px; margin-bottom:5px; box-sizing:border-box;}
.quick_wrap .today img, .quick_wrap .today li a {display:block; width:100%; height:100%;}
.quick_wrap .controls_btn {width:61px; margin:10px auto 0;}
.quick_wrap .controls_btn button {float:left; width:30px; height:25px; border:1px solid #ddd; background:url(../images/ico/prev_ico.png) 50% 50% no-repeat; text-indent:-9999px; box-sizing:border-box;}
.quick_wrap .controls_btn button.next {border-left:none; background-image:url(../images/ico/next_ico.png);}
