/* =========================
   main sticky header
========================= */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: all 0.3s;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
}
.header:hover {
  background: #fff;
}

.header.hd_sub {
  background: rgba(255, 255, 255, 0.8);
}

.sticky .header {
  background: #fff;
  transition: all 0.3s;
}

.header h1 {
  padding: 20px;
}
.header h1 img {
  width: 80px;
}

.header .inner .menu_pc .gnb li a {
  /*text-shadow: 0px 0px 3px rgb(255, 255, 255);*/
  transition: all 0.3s;
}
.sticky .header .inner .menu_pc .gnb li a {
  text-shadow: none;
  transition: all 0.3s;
}


/* =========================
   container padding
========================= */
#contaniner {
  padding-top: 0;
}
@media screen and (max-width: 1110px) {
  #contaniner {
    padding-top: 0;
  }
}

/* =========================
   header variables / common
========================= */
:root {
  --menuLeftPos: -15px;
  --menuArrowPos: 55px;
  --tabLeftPos: 0;
  --tabLeftPos2: 0;
  --tabLeftPos3: 0;
  --mainColor: #2a3f5f;
  --storeLi: 0;
}
.fixed {
  overflow: hidden !important;
}

/* =========================
   partner top links
========================= */
.header .partner ul {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: end;
}
.header .partner ul li a {
  display: flex;
  position: relative;
  padding: 0 14px;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}
.header .partner ul li a:hover {
  text-decoration: underline;
}
.header .partner ul li a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 10px;
}
.header .partner ul li:last-child a {
  padding-right: 0;
}
.header .partner ul li:last-child a:before {
  display: none;
}

.header:hover .partner ul li a {
  color: #333;
}
.header:hover .partner ul li a::before {
  background: rgba(0, 0, 0, 0.3);
}
.header.is-scrolled .partner ul li a {
  color: #333;
}
.header.is-scrolled .partner ul li a::before {
  background: rgba(0, 0, 0, 0.3);
}
.header.hd_sub .partner ul li a {
  color: #333;
}
.header.hd_sub .partner ul li a::before {
  background: rgba(0, 0, 0, 0.3);
}

/* =========================
   header inner layout
========================= */
.header .inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .inner .menu_pc {
  position: relative;
}
.header .inner .menu_pc .gnb {
  display: flex;
}

/* =========================
   gnb (promo main)
========================= */
.header .inner .menu_pc .gnb li.depth1.promain a {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: -4px;
}

.header .inner .menu_pc .gnb li.depth1.promain span:last-child {
  position: relative;
  display: inline-block;
  padding: 4px 5px 5px;
  background: linear-gradient(88.89deg, #2BF2FF 0.48%, #2F76FF 42.46%, #2BF2FF 84.45%);
  background-size: 200% auto;
  border-radius: 14px;
  color: #fff;
  font-size: 12px;
  overflow: hidden;
  animation: textclip 2.5s linear infinite;
  letter-spacing: 0;
  margin-top: 2px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.header .inner h1 img.pc_ver {
  transform: translateY(-3px);
}

/* =========================
   gnb sub
========================= */
.header .inner .menu_pc .gnb_sub {
  position: absolute;
  top: calc(100% - 24px);
  left: var(--menuLeftPos);
  z-index: 10;
  border-radius: 20px;
  filter: drop-shadow(-2px 0px 10px rgba(0, 0, 0, 0.1));
  background: #fff;
  transition: all 0.5s;
  display: none;
}

.header .inner .menu_pc .gnb_sub.on {
  display: flex;
}

.header .inner .menu_pc .gnb_sub .depth2 {
  display: flex;
  padding: 45px;
}

.header .inner .menu_pc .gnb_sub li.depth1 {
  position: relative;
}

.header .inner .menu_pc .gnb_sub .depth1 > a {
  display: none;
}

.header .inner .menu_pc .gnb_sub .depth2 {
  width: auto;
  height: auto;
  position: relative;
  display: none;
}

.header .inner .menu_pc .gnb_sub li.on .depth2 {
  display: flex;
}

.header .inner .menu_pc .gnb_sub li.on .depth2::before {
  content: "";
  width: 23px;
  height: 23px;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 0;
  left: var(--menuArrowPos, 37px);
  background: #fff;
  z-index: -1;
}

.header .inner .menu_pc .gnb_sub li .depth2 > li + li {
  margin-left: 55px;
}

.header .inner .menu_pc .gnb_sub li .depth2 ul {
  margin-top: 10px;
}

/* =========================
   sub menu items
========================= */
.header .inner .menu_pc .depth2 .sub_menu > a {
  color: #000;
  white-space: nowrap;
}

.header .inner .menu_pc .gnb li.depth1.on a,
.header .inner .menu_pc .depth2 .sub_menu > a:hover {
  color: var(--mainColor);
}

.header .inner .menu_pc .depth2 .sub_menu ul li {
  margin-bottom: 11px;
}

.header .inner .menu_pc .depth2 .sub_menu ul li a {
  opacity: 0.7;
  transition: all 0.3s;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.7);
}

.header .inner span.pro {
  color: #fff;
  font-weight: 500;
  background: #227aff;
  padding: 1px 5px 2px;
  border-radius: 11px;
  font-size: 11px;
  display: inline-block;
  margin-left: 2px;
  letter-spacing: 0;
}

.header .inner .menu_pc .gnb li a:hover,
.header .inner .menu_pc .depth2 .sub_menu ul li a:hover,
.footer .inner .menu_pc_f .service_desc li a:hover,
.footer .inner .family_site .select_box ul li a:hover {
  color: var(--mainColor);
  opacity: 1;
  font-weight: 500;
}

/* =========================
   gnb spacing rules
========================= */
.header .inner .menu_pc .gnb li.promo a {
  padding-left: 47px;
}

.header .inner .menu_pc .gnb li.store a {
  margin-right: 22px;
}

.header .inner .menu_pc .gnb li.line a {
  position: relative;
  padding: 40px 47px 40px 25px;
}
.header .inner .menu_pc .gnb li.line a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  width: 1px;
  height: 10px;
}

.header .inner .menu_pc .gnb li a {
  color: #fff;
  padding: 40px 15px;
  display: block;
  line-height: 1;
}

.header:hover .inner .menu_pc .gnb li a {
  color: #333;
}
 .header.is-scrolled .inner .menu_pc .gnb li a {
  color: #333;
 }
 .header.hd_sub .inner .menu_pc .gnb li a {
  color: #333;
 }

/* =========================
   search / auth buttons
========================= */
.header .inner .search_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .inner .search_b .login_btn,
.header .inner .search_b .mypage_btn,
.header .inner .search_b .manager_btn {
  width: 80px;
  height: 40px;
  line-height: 40px;
  border-radius: 8px;
  background: #2a3f5f;
  border: 1px solid #2a3f5f;
  display: block;
  text-align: center;
  color: #fff;
  margin-right: 10px;
  transition: background .3s;
}

.header .inner .search_b .login_btn:hover {
  background: rgb(78, 100, 138);
}

.header .inner .search_b .mypage_btn {
  width: 150px;
}

.header .inner .search_b .manager_btn {
  background: none;
  color: #fff;
  border: 1px solid #fff;
}

.header:hover .inner .search_b .manager_btn {
  background: #fff;
  border: 1px solid #2a3f5f;
  color: #2a3f5f;
}
.header.is-scrolled .inner .search_b .manager_btn {
  border: 1px solid #2a3f5f;
  color: #2a3f5f;
}
.header.hd_sub .inner .search_b .manager_btn {
  background: #fff;
  border: 1px solid #2a3f5f;
  color: #2a3f5f;
}

.header .inner .search_b .login_btn {
  background: none;
  color: #fff;
  border: 1px solid #fff;
}
.header:hover .inner .search_b .login_btn {
  background: #2a3f5f;
  border: 1px solid #2a3f5f;
  color: #fff;
}
.header.is-scrolled .inner .search_b .login_btn {
  background: #2a3f5f;
  border: 1px solid #2a3f5f;
  color: #fff;
}
.header.hd_sub .inner .search_b .login_btn {
  background: #2a3f5f;
  border: 1px solid #2a3f5f;
  color: #fff;
}

.header .inner .search_b .search_btn {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e7f0ff;
  position: relative;
}

/* =========================
   header button box (hidden)
========================= */
#header .btn_box {
  display: flex;
  align-items: center;
  display: none;
}

#header .btn_box button img {
  width: 215px;
}

#header .btn_box a img {
  width: 235px;
}

#header .btn_box .call_btn {
  z-index: 99;
}

#header .btn_box .menu_btn {
  display: none;
}
#header .btn_box .menu_btn.on {
  display: block;
}

#header .btn_box .close_btn {
  display: none;
  z-index: 99;
}
#header .btn_box .close_btn.on {
  display: block;
}

#header .btn_box .close_btn img {
  width: 20px;
}

/* =========================
   responsive visibility classes
========================= */
.tab_ver {
  display: none !important;
}
.tab_min_ver {
  display: none !important;
}
.mo_ver {
  display: none !important;
}
.mo_ver_360 {
  display: none !important;
}
.pc_min_ver {
  display: none !important;
}
.pc_ver {
  display: block !important;
}

/* =========================
   230510 [수정표시] start
========================= */
.btn_call {
  display: none;
  position: relative;
  z-index: 99;
  background: url(../../images/common/menu_white.png) no-repeat center/cover;
  width: 30px;
  height: 30px;
}

.header:hover .btn_call {
  width: 30px;
  height: 30px;
  background: url(../../images/common/menu.png) no-repeat center/cover;
}
.header.is-scrolled .btn_call {
  width: 30px;
  height: 30px;
  background: url(../../images/common/menu.png) no-repeat center/cover;
}
.header.hd_sub .btn_call {
  width: 30px;
  height: 30px;
  background: url(../../images/common/menu.png) no-repeat center/cover;
}

.btn_call::before {
  content: "";
  display: block;
}

.btn_call::after {
  content: "";
  display: block;
}

.btn_call span {
  display: block;
  width: 100%;
}

.btn_call.on {
  background: none;
  display: block;
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 100;
}
.header:hover .btn_call.on {
  background: none;
}

.btn_call.on::before {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  top: calc(50% - 1px);
}

.btn_call.on::after {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-45deg);
  bottom: calc(50% - 1px);
}

.btn_call.on span {
  transform: translateX(100%);
  opacity: 0;
}

/* =========================
   mobile menu
========================= */
.menu_mo {
  position: fixed;
  top: 0;
  right: -200%;
  width: 500px;
  height: 100%;
  z-index: 10;
  transition: all 0.5s;
  background: #fff;
  display: none;
  padding: 122px 20px 0 20px;
}

.menu_mo_search {
  padding: 10px 0px;
}

.menu_mo_search_form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
}

.menu_mo_search_input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 14px;
  background: transparent;
  color: #222;
}

.menu_mo_search_input::placeholder {
  color: #888;
}

.menu_mo_search_btn {
  border: 0;
  background: #f0f0f0;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 3px;
}

.menu_mo .gnb > .depth1 > a {
  height: 30px;
  line-height: 30px;
}

.menu_mo .gnb .depth1 > a {
  height: 40px;
  line-height: 40px;
}

.menu_mo .depth2 {
  overflow: hidden;
  background: #f4f6f8;
  border-radius: 12.5px;
  padding: 0 30px;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.menu_mo .depth1.on .depth2 {
  margin: 0 0 20px;
}

.acc_b {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.menu_mo .depth2.on {
  opacity: 1;
  padding: 15px 30px 14px 30px;
  height: auto;
  position: relative;
  margin: 5px 0 23px;
}

.menu_mo .gnb .depth1 .sub_menu a {
  display: block;
  font-size: 14px;
}
.menu_mo .gnb .depth1 .sub_menu a span.event {
  color: #fff;
  font-weight: 500;
  background: #227aff;
  padding: 1px 5px 2px;
  border-radius: 11px;
  font-size: 11px;
  display: inline-block;
  margin-left: 2px;
  letter-spacing: 0;
}

.menu_mo .gnb .depth1 .sub_menu ul {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 5px;
  margin-bottom: 17px;
  margin-top: 10px;
}

.menu_mo .gnb .depth1 .sub_menu ul li {
  margin-bottom: 4px;
}

.menu_mo .gnb .depth1 .sub_menu:last-child ul {
  margin-bottom: 0;
}

.menu_mo .gnb .depth1 .sub_menu ul li:nth-of-type(1) {
  padding-top: 4px;
}

.menu_mo .gnb .depth1.on a.on {
  color: var(--mainColor);
}

.menu_mo .gnb .depth1.on > a {
  color: var(--mainColor);
}

.menu_mo .gnb .depth1 .depth2 > .sub_menu > a {
  padding-bottom: 0;
}

.menu_mo .depth2 .sub_menu ul li a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.menu_mo .depth2 .sub_menu {
  margin-top: 5px;
}
.menu_mo .depth2 .sub_menu:first-child {
  margin-top: 20px
}
.menu_mo .depth2 .sub_menu:last-child {
  margin-bottom: 14px
}

.menu_mo .gnb .depth1 a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding-left: 10px;
}

.menu_mo .gnb > .depth1 > a:after {
  content: "";
  background: url(../../images/common/icon_drop.png) no-repeat center/cover;
  width: 4px;
  height: 3.4px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.menu_mo .gnb > .depth1.on > a:after {
    background: url(../../images/common/icon_up.png) no-repeat center/cover;
}

.menu_mo .gnb > .depth1.story > a:after {
  display: none;
}
.menu_mo .gnb > .depth1.promo > a:after {
  display: none;
}


.menu_mo .depth1.promo {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 13px;
  padding-top: 13px;
}

.menu_mo .depth1.store {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 13px;
  padding-bottom: 13px;
}

.login_btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  background: var(--mainColor);
  box-shadow: 0px 4px 9.6px 0.4px rgba(0, 0, 0, 0.05),
    0px 4px 9.6px 0.4px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  text-align: center;
  
}

.login_btn a {
  color: #fff;
  display: block;
  margin: 0 auto 10px;
  font-size: 13px;
}

.menu_mo .login_btn:first-child {
  margin-top: 25px;
}

.menu_mo.on {
  right: 0%;
}

/* =========================
   fonts (Pretendard)
========================= */
@font-face {
  font-family: 'Pretendard';
  font-weight: 300;
  font-display: swap;
  src: local('Pretendard Light'),
    url('../../../font/Pretendard-Light.subset.woff2') format('woff2'),
    url('../../../font/Pretendard-Light.subset.woff') format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-display: swap;
  src: local('Pretendard Regular'),
    url('../../font/Pretendard-Regular.subset.woff2') format('woff2'),
    url('../../font/Pretendard-Regular.subset.woff') format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  font-display: swap;
  src: local('Pretendard Medium'),
    url('../../font/Pretendard-Medium.subset.woff2') format('woff2'),
    url('../../font/Pretendard-Medium.subset.woff') format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  font-display: swap;
  src: local('Pretendard SemiBold'),
    url('../../font/Pretendard-SemiBold.subset.woff2') format('woff2'),
    url('../../font/Pretendard-SemiBold.subset.woff') format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  font-display: swap;
  src: local('Pretendard Bold'),
    url('../../font/Pretendard-Bold.subset.woff2') format('woff2'),
    url('../../font/Pretendard-Bold.subset.woff') format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 800;
  font-display: swap;
  src: local('Pretendard ExtraBold'),
    url('../../font/Pretendard-ExtraBold.woff2') format('woff2'),
    url('../../font/Pretendard-ExtraBold.woff') format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 900;
  font-display: swap;
  src: local('Pretendard Black'),
    url('../../font/Pretendard-Black.woff2') format('woff2'),
    url('../../font/Pretendard-Black.woff') format('woff');
}

/* =========================
   top-line banner
========================= */
.header .top-line-banner {
  width: 100%;
  height: 42px;
}
.header .top-line-banner li {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  font-family: "Pretendard";
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .top-line-banner li a {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  font-family: "Pretendard";
}
.header .top-line-banner li strong {
  font-weight: 700;
  font-family: "Pretendard";
}
.header .top-line-banner li .bn-icon {
  margin-right: 10px
}
.header .top-line-banner li.bn-sld01 {
  background: #D4E3FF;
  color: #0F172A
}
.header .top-line-banner li.bn-sld02 {
  background: #227AFF;
  color: #fff
}
.header .top-line-banner li.bn-sld03 {
  background: #2E3644;
  color: #fff
}
.header .top-line-banner li.bn-sld04 {
  background: #227AFF;
  color: #fff
}
.header .top-line-banner li.bn-sld01 a {
  color: #0F172A
}
.header .top-line-banner li.bn-sld02 a {
  color: #fff
}
.header .top-line-banner li.bn-sld03 a {
  color: #fff
}
.header .top-line-banner li.bn-sld04 a {
  color: #fff
}
.header .top-line-banner li span {
  width: 24px;
  height: 24px;
  display: flex;
  cursor: pointer;
  position: absolute;
  justify-content: center;
  align-items: center;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.header.top-line-bn-hide {
  transform: translateY(-42px);
}
.header.top-line-bn-dn {
  transform: translateY(0);
  transition: none;
}
.header.top-line-bn-dn .top-line-banner {
  display: none;
}

/* =========================
   keyword search box (fixed)
========================= */
.keyword_info_box {
  position: fixed;
  top: 111px;
  width: 100%;
  /* height: 55.6rem; */
  height: 0;
  background: #fff;
  z-index: 20;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: height 0.3s;
  /* height: 55.6rem; */
}

.keyword_info_box.on {
  height: 556px;
  border-top: 1px solid #ebebeb;
}

.keyword_info_box .inner {
  width: 1050px;
  height: auto;
  margin: 0 auto;
}

.keyword_search_bg {
  width: 100%;
  height: 130px;
  background: #ebebeb;
  border-radius: 20px;
  margin-top: 100px;
}

.keyword_search_bg form {
  height: 100%;
}

.keyword_info_box .keyword_search,
.search_common .keyword_search {
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.keyword_info_box .keyword_search input {
  width: 80%;
  height: 50px;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.15);
}

.keyword_info_box .keyword_search button {
  background: #fff;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.15);
}

/* =========================
   top searched list
========================= */
.top_searched_box {
  width: 576px;
  margin: 0 auto;
  margin-top: 50px;
}

.top_searched_box h3.tit {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -1.3px;
  text-align: center;
  margin-bottom: 16px;
}

.top_searched_box .keyword_box ul li {
  font-size: 15px;
  color: #666;
  letter-spacing: -1px;
  border-bottom: 1px solid #ebebeb;
  position: relative;
  font-weight: normal;
  height: 38px !important;
  line-height: 39px;
  display: flex;
  align-items: center;
}

.top_searched_box .keyword_box ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}

.top_searched_box .keyword_box.list ul li {
  height: 40px;
  line-height: 40px;
}

.top_searched_box .keyword_box ul li{
  width: 48%;

}

.top_searched_box .keyword_box ul li a {
  display: block;
  color: #666;
  font-weight: normal;
  width: 100%;
  height: 100%;
  line-height: 40px;
}

.top_searched_box .keyword_box ul li .num,
p.keyword_box .num {
  width: 20px;
  height: 20px;
  line-height: 21px;
  border-radius: 5px;
  background: #f4f6f8;
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 12px;
  margin-right: 12px;
}

.top_searched_box .keyword_box .top_keyword .num,
p.keyword_box .num {
  background: var(--mainColor);
  color: #fff;
}

.keyword_box_all {
  display: flex;
}

.keyword_box_all .keyword_box {
  width: 100%;
}

/* .keyword_box_all .keyword_box:first-child {
  margin-right: 25px;
} */


.top_searched_box .keyword_box .up,
.top_searched_box .keyword_box .down,
.top_searched_box .keyword_box .same {
  position: relative;
  float: right;
  margin-right: 15px;
  font-size: 14px;
  margin-left: auto;
}

.top_searched_box .keyword_box .up {
  color: var(--mainColor);
}
.top_searched_box .keyword_box .down {
  color: #fe287e;
}

.top_searched_box .keyword_box .up:after {
  content: '';
  background: url(../../../img/sub/search/icon_up.png) no-repeat;
  width: 6px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  background-size: 100%;
}

.top_searched_box .keyword_box .down:after {
  content: '';
  background: url(../../../img/sub/search/icon_down.png) no-repeat;
  width: 6px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  background-size: 100%;
}

/* =========================
   search common
========================= */
.search_common .keyword_search_bg {
  margin: 0;
}
.search_common .search_keyword {
  margin-bottom: 84px;
}
.search_common .search_keyword .inner {
  margin: 0;
}

.search_common .tab .tab_effect {
  background: var(--mainColor);
  width: calc(100% / 50 - 10px);
  height: 38px;
  border-radius: 1px;
  margin: 0 5px;
}

.search_common .tab .tab_ul .tab_li {
  width: calc(100% / 5);
}

.search_common .result_info_box .txt_box p {
  font-size: 15px;
  font-weight: normal;
  color: #909090;
}

.search_common .keyword_box.box_common {
  display: none;
  position: absolute;
  top: 40px;
  z-index: 999;
  background: #fff;
  right: 0;
  height: auto;
  padding: 0 10px;
}

.search_common .keyword_box.active {
  display: block;
  height: 40px;
  overflow: hidden;
  position: inherit;
}

.result_info_box .keyword_box {
  font-size: 15px;
  font-weight: normal;
  color: #666;
  width: 209px;
  border-radius: 10px;
  border: solid 1px #ebebeb;
  padding: 8px 10px;
  cursor: pointer;
}

.result_info_box .keyword_box.on .keyword_box.list {
  display: block;
}

.result_info_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.result_info_box .top_searched_box {
  width: auto;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.result_info_box .top_searched_box h3.tit {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  margin-right: 10px;
}

.result_info_box .top_searched_box .keyword_box ul li {
  border-bottom: 1px solid #fafafa;
}

.keyword_info_bg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 99999;
}

.keyword_info_bg.on {
  display: block;
}

.search_common .keyword_box.active:hover .keyword_box.list {
  display: block;
}

.keyword_box .fake_box {
  width: 100%;
  height: 5px;
}

.keyword_box.list ul {
  border: solid 1px #ebebeb;
  padding: 0 10px;
  border-radius: 10px;
}

.search_common .keyword_box.box_common.list {
  border: none;
  padding: 0;
}


@media screen and (max-width: 1280px) {
  .header .partner,
  .header .inner .menu_pc,
  .header .inner .search_b_all {
    display: none;
  }

  .pc_ver { display: none !important; }
  .mo_ver {
    display: block !important;
    width: 40px !important;
}
  .header .btn_box {
    display: block;
    align-items: center;
    gap: 10px;
  }
  .header .menu_mo {
    padding-top: 122px;
    display: block !important;
    z-index: 99;
  }
  .btn_box {
    padding-right: 20px;
  }
  .btn_call {
    display: block;
  }

}



@media screen and (max-width: 1110px) {
    .keyword_info_box {
        top: 66px;
    }
    .keyword_search_bg {
        height: 120px;
    }
}

@media screen and (max-width: 989px) {
    .keyword_info_box {
        padding: 0 50px;
    }
    .keyword_info_box .inner {
        width: auto;
    }
    .search_common .keyword_box.active:hover .keyword_box.list {
        display: none;
    }
    .result_info_box .keyword_box.on .keyword_box.list {
        display: block !important;
    }
}

@media screen and (max-width: 768px) {
    .keyword_info_box .keyword_search,
    .search_common .keyword_search {
        width: 500px;
    }
    .keyword_box_all .keyword_box:first-child {
        margin-right: 20px;
    }
    .keyword_search_bg {
        margin-top: 50px;
    }
    .top_searched_box {
        width: 530px;
    }
    .search_common .tab .tab_ul {
        max-width: 900px;
        flex-wrap: wrap;
        margin: 0 auto;
        background: #fff;
        border-radius: 150px;
        padding: 10px 0;
    }
    .search_common .search_keyword {
        margin-bottom: 70px;
    }
    .result_info_box {
        margin-bottom: 50px;
    }
    .search_common .tab .tab_ul .tab_li {
        width: calc((100% / 3) - 10px);
        padding: 0 20px;
        height: 40px;
        line-height: 40px;
    }
    .tab_container {
        height: 100%;
    }
}

@media screen and (max-width: 600px) {
    .keyword_info_box .keyword_search,
    .search_common .keyword_search {
        width: 450px;
    }
    .result_info_box {
        flex-direction: column;
        align-items: normal;
    }
    .result_info_box .txt_box {
        margin-bottom: 20px;
    }
    .search_common .search_keyword {
        margin-bottom: 50px;
    }
    .search_common .keyword_box.list {
        left: 58px;
    }
    .search_common .tab .tab_ul .tab_li {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 500px) {

  .menu_mo {width: 400px;}

  .menu_mo .depth1.on .depth2 {
    padding: 0 20px;
  }
    .keyword_info_box {
        top: 50px;
        padding: 0 30px;
    }
    .keyword_info_box.on {
        height: 40px;
    }
    .keyword_search_bg {
        margin-top: 30px;
        border-radius: 10px;
        height: 80px;
    }
    .keyword_info_box .keyword_search,
    .search_common .keyword_search {
        width: 100% !important;
        padding: 0 20px;
        transition: none;
    }
    .top_searched_box {
        width: 100%;
        margin-top: 250px;
    }
    .top_searched_box h3.tit {
        font-size: 150px;
    }
    .top_searched_box .keyword_box ul li,
    .top_searched_box .keyword_box ul li a {
        font-size: 12px;
    }
    .top_searched_box .keyword_box .up,
    .top_searched_box .keyword_box .down,
    .top_searched_box .keyword_box .same {
        font-size: 12px;
    }
    .top_searched_box .keyword_box ul li .num,
    p.keyword_box .num {
        margin-right: 8px;
    }
    .search_common .result_info_box .txt_box p {
        font-size: 12px;
    }
    .search_common .search_keyword {
        margin-bottom: 30px;
    }
    .result_info_box .top_searched_box h3.tit {
        font-size: 13px;
    }
    .result_info_box .keyword_box {
        font-size: 12px;
    }
    .search_common .keyword_box.list {
        left: 63px;
    }

    .result_info_box .txt_box {
        margin-bottom: 10px;
    }
    .result_info_box {
        margin-bottom: 30px;
    }
    .search_common .tab .tab_ul .tab_li.on:after {
        bottom: -8px;
        right: -10px;
        background-size: 15px;
    }
    .drop_box_all {
        width: 100%;
    }
    .result_info_box .keyword_box {
        width: 100%;
    }
    .search_common .keyword_box.list {
        width: calc(100% - 63px);
    }
    .search_common .tab .tab_ul .tab_li {
        height: 38px;
        line-height: 38px;
    }
}

@media screen and (max-width: 400px) {
  .menu_mo {width: 320px;}
  /* .menu_mo .gnb > .depth1 > a:after {
    left: 120px;
  } */


}


@media screen and (max-width: 350px) {
    .search_common .keyword_box.list {
        left: 59px;
    }
    .search_common .keyword_box.list {
        width: calc(100% - 59px);
    }
}


/* 푸터 영역 */
#footer {
  background: #1f2630; /* 딥 네이비 그레이 */
  color: #f5f5f5;
  padding: 50px 0px 40px;
  font-size: 14px;
}

.footer_inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* 공통 타이틀 */
#footer h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  padding-left: 14px;
}

#footer h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4b6c2, #ffd6a5); /* 꽃톤 포인트 */
}

/* 고객센터 */
.footer_cs {
  flex: 1;
  min-width: 220px;
}

.footer_cs .cs_tel {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 6px;
  
}

.footer_cs .cs_time {
  font-size: 13px;
  color: #c9ced8;
}

/* 계좌 안내 */
.footer_bank {
  flex: 1;
  min-width: 260px;
}

.footer_bank ul {
  list-style: none;
}

.footer_bank li {
  margin-bottom: 6px;
}

.footer_bank .bank {
  display: inline-block;
  min-width: 70px;
  font-weight: 600;
  font-size: 18px;
  
}

.footer_bank .bank_owner {
  margin-top: 8px;
  font-size: 13px;
  color: #d0d5df;
  font-weight: 600;
}

/* 메뉴 & 패밀리 */
.footer_menu_wrap {
  flex: 1.2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.footer_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

.footer_menu li a {
  font-size: 13px;
  color: #d9dde7;
  position: relative;
}

.footer_menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #f4b6c2, #ffd6a5);
  transition: width .25s;
}

.footer_menu li a:hover::after {
  width: 100%;
}

.footer_family {
  margin-top: 4px;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.select_custom {
  position: relative;
  width: 190px;
}

/* 버튼(기존 select 스타일 대체) */
.dropdown_btn {
  width: 100%;
  padding: 9px 35px 9px 12px;
  border-radius: 999px;
  border: 1px solid #3a4354;
  background: #252c38;
  color: #f5f5f5;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  position: relative;
}

/* 화살표 */
.select_custom::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 20px;
  pointer-events: none;
}

/* 메뉴 */
.dropdown_menu {
  display: none;
  position: absolute;
  left: 0;
  top: 38px;
  width: 100%;
  background: #252c38;
  border: 1px solid #3a4354;
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
}

.dropdown_menu li a {
  display: block;
  padding: 10px 12px;
  color: #f5f5f5;
  font-size: 13px;
}

.dropdown_menu li a:hover {
  background: #3a4354;
}

/* 열렸을 때 */
.dropdown.open .dropdown_menu {
  display: block;
}

/* 회사 정보 */
.footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.footer_info {
  font-size: 12px;
  color: #bcc2ce;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer_copy {
  font-size: 12px;
  color: #80879a;
}

/* 반응형 */
@media (max-width: 1024px) {
  .footer_menu_wrap {
    align-items: flex-start;
  }
  .footer_menu {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer_top {
    flex-direction: column;
    gap: 24px;
  }

  .footer_menu_wrap {
    align-items: flex-start;
  }

  .footer_cs .cs_tel {
    font-size: 22px;
  }

  .footer_info {
    font-size: 11px;
  }
}
@media (max-width: 500px) {
    .footer_top {
        gap: 15px;
    }
    .footer_inner {
        gap: 20px;
    }
}
