@charset "UTF-8";

/* ---------------------------------------------------- */
/* layout */
/* 헤더, 푸터, 탑배너, 플로팅메뉴 */
/* ---------------------------------------------------- */

/* 사이드바 있는 레이아웃 */
.layout_side .sidebar {
  width: 200px;
  float: left;
  margin-bottom: 60px;
}
.layout_side .sidebar + .content {
  width: 1200px;
  float: right;
}
.layout_side .sidebar + .content #mypage_withdraw, .layout_side .sidebar + .content #mypage_info {
  margin-bottom: 30px;
}
/* 반응형 처리 */
@media screen and (max-width: 1520px) {
  .layout_side .sidebar + .content {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 912px) {
  .layout_side .sidebar {
  	float: none;
  	width: 100%;
  	margin-bottom: 10px;
  }
  .layout_side .sidebar + .content {
    width: 100%;
    float: none;
    padding-top: 0;
  }
  /* 대타이틀 숨기고 메뉴 정렬 */
  .layout_side .sidebar .sidebar_container .sub_menu .menu_container > .sub_menu_tit {
  	display:none;
  }
  .layout_side .sidebar .sidebar_container .sub_menu .menu_container > .menu {
  	-webkit-box-orient: horizontal;
  	-moz-flex-direction: row;
  	-ms-flex-direction: row;
  	flex-direction: row;
  	-webkit-box-lines: multiple;
  	-moz-flex-wrap: wrap;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  	width: 100%;
  }
  .layout_side .sidebar .sidebar_container .sub_menu .menu_container > .menu > li > a {
  	display: block;
  }
  .layout_side .sidebar .sidebar_container .sub_menu .menu_container > .menu > li > a.active {
  	font-family: var(--font-bold2);
  }
}

/* ----- 로고 ----- */
.logo {
  margin: 0;
}
.logo a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding-top: 2px;
}
.logo img {
  vertical-align: top;
}

/* ----- 탑배너 ----- */
.header_banner {
  position: fixed;
  pointer-events: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  overflow: hidden;
  text-align: center;
  line-height: 40px;
  transition: 0.15s ease-in-out;
  background: rgb(216, 39, 68);
  background: linear-gradient(90deg, rgb(216, 39, 68) 0%, rgb(226, 88, 81) 100%);
}
.header_banner .container-1480 {
  height: 100%;
}
.header_banner .swiper-container {
  height: 100%;
}
.header_banner ul {
  margin: 0;
  padding: 0;
}
.header_banner ul li {
	cursor: pointer;
}
.header_banner ul li a {
  position: relative;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 15px;
  color: #fff;
  font-size: 13.5px;
  transition: opacity 0.15s;
}
@media screen and (max-width: 912px) {
  .header_banner ul li a {
    display: block;
    text-align: center;
    width: 90%;
    font-size: 12px;
    line-height: 35px;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0;
  }
}
.header_banner ul li a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 6px;
  right: 0;
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translate(0);
  -webkit-transform: rotate(45deg) translate(0);
  width: 7px;
  height: 7px;
}
.header_banner ul li a::before {
  transition: right 0.15s ease;
}
@media screen and (max-width: 912px) {
  .header_banner ul li a::before {
    display: none;
  }
}
.header_banner ul li a:hover::before {
  right: -3px;
}
.header_banner .today_close_btn {
  position: absolute;
  z-index: 9998;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.header_banner .today_close_btn a {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  transition: opacity 0.15s;
}
.header_banner .today_close_btn a::before, .header_banner .today_close_btn a::after {
  width: 100%;
  height: var(--icon-width);
  background-color: #fff;
  content: "";
  position: absolute;
  display: inline-block;
  top: 9px;
  right: 0;
}
.header_banner .today_close_btn a::before {
  transform: rotate(45deg);
}
.header_banner .today_close_btn a::after {
  transform: rotate(-45deg);
}
.header_banner .today_close_btn a:hover {
  opacity: 0.8;
}
.header_banner_pagination {
  cursor: default;
}
.header_banner_pagination.swiper-pagination-fraction {
  display: table;
  width: 50px;
  position: absolute;
  right: 20px;
  left: inherit;
  top: 0;
  color: #fff;
  font-size: 10px;
  /* 줄 맞추기 */
  padding-top: 1px;
}
@media screen and (max-width: 540px) {
  .header_banner_pagination {
    display: none !important;
  }
}
/* 탑배너 오늘하루닫기 클릭시 높이조절 */
#header.today_close .header_banner {
	visibility: hidden;
	display: none;
	top: -45px;
}
#header.today_close .header_container {
  top: 0;
}
#header.today_close .header_container nav.menu_mo .menu_collapse .menu_wrap {
  height: calc(100vh - 65px);
  top: 65px;
}

/* ------ header ------ */
#header_wrap {
  display: inline-block;
  vertical-align: middle;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
}
#header .logo img {
  width: 120px;
}
@media screen and (max-width: 1124px) {
  #header .logo img {
    width: 90px;
  }
}

#header .header_container {
  position: fixed;
  pointer-events: auto;
  left: 0;
  top: 40px;
  width: 100%;
  height: 85px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  transition: 0.15s ease-in-out;
}
#header .header_container .menu_container .menu_item a {
  font-family: var(--font-bold);
}
#header .header_container .menu_container .menu_item a:hover {
  color: var(--color-point);
}
@media screen and (max-width: 1124px) {
  #header .header_container {
    height: 65px;
  }
  #header .header_container .menu_pc {
    display: none;
  }
  #header .header_container .menu_mo .hamburger_toggle {
    display: block;
  }
}
#header .header_container > .container-1480 {
  position: static;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .header_container .logo {
  position: relative;
  z-index: 9998;
  -webkit-box-pack: center;
  -moz-box-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#header .header_container .util {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 9;
  padding: 0;
  margin: 0;
}
#header .header_container .util_item {
  position: relative;
}
#header .header_container .util_item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-bold);
  transition: background-color 0.15s ease-in-out;
}
#header .header_container .util_item a i {
  margin-right: 3px;
}
#header .header_container .util_item:hover > a {
  color: var(--color-point);
}
@media screen and (max-width: 1124px) {
  #header .header_container .util.pc_util {
    display: none;
  }
}
#header .header_container .util.pc_util .util_item > a {
  border-radius: 8px;
  padding: 7px 10px 5px 10px;
}
#header .header_container .util.pc_util .util_item > a .ic_login_mini, #header .header_container .util.pc_util .util_item > a .ic_logout_mini {
  margin-bottom: 3px;
}
#header .header_container .util.pc_util .util_item > a .ic_user_mini {
	margin-bottom: 4px;
}
#header .header_container .util.pc_util .util_item > a.join {
  color: var(--color-point);
}
#header .header_container .util.pc_util .util_item > a.join > i {
  background-position: -45px -80px;
}
#header .header_container .util.pc_util .util_item > a:hover {
  color: var(--color-point);
  background-color: var(--color-pointLight);
}
#header .header_container .util.pc_util .util_item:not(:last-child) {
  margin-right: 4px;
}
#header .header_container .util.mo_util .util_item {
  width: 100%;
}
#header .header_container nav.menu_pc {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
}
#header .header_container nav.menu_pc .menu {
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header .header_container nav.menu_pc .menu_item {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#header .header_container nav.menu_pc .menu_item > a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 85px;
  padding: 0 20px;
  transition: opacity 0.15s ease;
}
#header .header_container nav.menu_pc .menu_item > a span {
  position: relative;
  display: inline-block;
  height: 100%;
  padding: 0 5px;
}
#header .header_container nav.menu_pc .menu_item > a span::before {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-point);
  width: 100%;
  height: 2px;
}
#header .header_container nav.menu_pc .menu_item > a.select,
#header .header_container nav.menu_pc .menu_item > a.active {
  opacity: 1;
  color: var(--color-point);
}
#header .header_container nav.menu_pc .menu_item > a.select span::before {
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
#header .header_container nav.menu_pc .menu_item > a.no_active {
  opacity: 0.45;
}
#header .header_container nav.menu_pc .menu .dropdown_v2_menu {
  width: 100%;
  position: absolute;
  left: 0;
  top: 85px;
  background: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid var(--color-lineGray);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  padding: 5px 0;
  visibility: hidden;
}
#header .header_container nav.menu_pc .menu .dropdown_v2_item a {
  display: block;
  padding: 15px 25px;
}
#header .header_container nav.menu_mo {
  position: relative;
  display: none;
}
@media screen and (max-width: 1124px) {
  #header .header_container nav.menu_mo {
    display: block;
  }
}
#header .header_container nav.menu_mo.open .menu_collapse {
  opacity: 1;
  pointer-events: auto;
}
#header .header_container nav.menu_mo.open .menu_collapse .menu_wrap {
  right: 0;
  opacity: 1;
}
#header .header_container nav.menu_mo .hamburger_toggle {
  position: relative;
  z-index: 9998;
  display: inline-block;
  width: 20px;
  height: 16px;
  border-radius: 100%;
  background-color: transparent;
  cursor: pointer;
  margin-top: 8px;
}
#header .header_container nav.menu_mo .hamburger_toggle i {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-def);
  transition: 0.15s ease-in-out;
  border-radius: 10px;
}
#header .header_container nav.menu_mo .hamburger_toggle i:nth-child(1) {
  top: 0;
}
#header .header_container nav.menu_mo .hamburger_toggle i:nth-child(2) {
  top: 7px;
}
#header .header_container nav.menu_mo .hamburger_toggle i:nth-child(3) {
  bottom: 0;
}
#header .header_container nav.menu_mo .hamburger_toggle.open i:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
#header .header_container nav.menu_mo .hamburger_toggle.open i:nth-child(2) {
  opacity: 0;
}
#header .header_container nav.menu_mo .hamburger_toggle.open i:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}
#header .header_container nav.menu_mo .menu_collapse {
  position: fixed;
  z-index: 9997;
  top: 105px;
  left: 0;
  width: 100%;
  height: calc(100vh - 105px);
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.15s;
  pointer-events: none;
}
#header .header_container nav.menu_mo .menu_collapse .menu_wrap {
  position: fixed;
  z-index: 9998;
  width: 520px;
  height: calc(100vh - 105px);
  border-top: 1px solid var(--color-lineGray);
  background: #fff;
  top: 105px;
  right: -100%;
  opacity: 0;
  overflow-y: scroll;
  transition: 0.3s;
  pointer-events: auto;
  padding: 15px 25px;
}
@media screen and (max-width: 540px) {
  #header .header_container nav.menu_mo .menu_collapse .menu_wrap {
    width: 100%;
    right: -100%;
  }
}
#header .header_container nav.menu_mo .menu_collapse .menu {
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -moz-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
#header .header_container nav.menu_mo .menu_collapse .menu {
  border-bottom: 1px solid var(--color-lineGray);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
#header .header_container nav.menu_mo .menu_collapse .menu_item {
  width: 100%;
  margin: 8px 0;
  cursor: pointer;
}
#header .header_container nav.menu_mo .menu_collapse .menu_item a {
  width: 100%;
}
#header .header_container nav.menu_mo .menu_collapse .menu_item span {
	font-family: var(--font-bold);
}
#header .header_container nav.menu_mo .menu_collapse .menu_item:hover > span, 
#header .header_container nav.menu_mo .menu_collapse .menu_item.active > span, 
#header .header_container nav.menu_mo .menu_collapse .menu_item:hover > a, 
#header .header_container nav.menu_mo .menu_collapse .menu_item.active > a {
  color: var(--color-point);
}
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2 {
  position: relative;
}
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2 > a {
  padding-right: 35px;
}
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2::before {
  transition: transform 0.15s;
  cursor: pointer;
  content: "";
  position: absolute;
  display: inline-block;
  top: 3px;
  right: -8px;
  content: "";
  position: absolute;
  border-top: var(--icon-width) solid var(--color-def);
  border-right: var(--icon-width) solid var(--color-def);
  transform: rotate(135deg) translate(0);
  -webkit-transform: rotate(135deg) translate(0);
  width: 10px;
  height: 10px;
}
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2.active::before {
  border-color: var(--color-point);
  transform: rotate(315deg) translate(0);
  -webkit-transform: rotate(315deg) translate(0);
  top: 6px;
}
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2.active ul {
  opacity: 1;
}
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2_menu {
  transition: opacity 0.15s;
  opacity: 0;
  padding: 12px 0 0px 10px;
}
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2_menu li:not(:last-child) {
  padding-bottom: 10px;
}
/* #header .header_container nav.menu_mo .menu_collapse .dropdown_v2_menu li a {
  padding: 4px 0;
} */
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2_menu li:hover a {
  color: var(--color-point);
}
#header .header_container nav.menu_mo .menu_collapse .dropdown_v2:hover::before {
  border-color: var(--color-point);
}
#header .header_container nav.menu_mo .menu_collapse .mo_util {
	width: 100%;
	padding-top: 5px;
}
#header .header_container nav.menu_mo .menu_collapse .mo_util .member_area, 
#header .header_container nav.menu_mo .menu_collapse .mo_util .no_member_area {
	width: 100%;
}

/* fixed */
#header.fixed {
  transition: all 0.15s ease-in-out;
}
#header.fixed .header_banner {
  top: -40px;
}
#header.fixed .header_container {
  height: 65px;
  top: 0;
}
#header.fixed .header_container nav.menu_pc .menu_item > a {
  line-height: 65px;
}
#header.fixed .header_container nav.menu_pc .dropdown_v2_menu {
  top: 65px;
}
#header.fixed .header_container nav.menu_mo .menu_collapse {
  top: 65px;
  height: calc(100vh - 65px);
}
#header.fixed .header_container nav.menu_mo .menu_collapse .menu_wrap {
  top: 65px;
  height: calc(100vh - 65px);
}

/* ------ footer ------ */
#footer {
  position: relative;
  padding: 35px 10px 35px 10px;
  background-color: #eeeeee;
}
#footer .footer_container {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 1520px) {
  #footer .footer_container {
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#footer ul:not(.floating_menu) {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer ul a:hover {
  color: var(--color-point);
}
#footer .ft_copyright {
  color: var(--color-midGray);
  margin: 0;
  font-size: 9px;
}
#footer .ft_box.ft_top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
  width: 100%;
  /* 추가 */
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 540px) {
  #footer .ft_box.ft_top {
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* logo */
#footer .ft_box.ft_top .ft_logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer .ft_box.ft_top .ft_logo > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer .ft_box.ft_top .ft_logo img {
  vertical-align: middle;
}
#footer .ft_box.ft_top .ft_logo > a:first-child img {
	width: 90px;
}
#footer .ft_box.ft_top .ft_logo > a:last-child {
	margin-bottom: 5px;
}
#footer .ft_box.ft_top .ft_logo > a:last-child img {
	width: 115px;
}
#footer .ft_box.ft_top .ft_logo > i.logo_x {
	position: relative;
	width: 11px;
	height: 11px;
	background-image: url('/cloud/resources/image/logo_X_black.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin: 0 16px 9px 16px;
}
/* sns */
#footer .ft_box.ft_top .ft_sns li:not(:last-child) {
  margin-right: 6px;
}
#footer .ft_box.ft_top .ft_sns li a {
  display: block;
  width: 100%;
  height: 30px;
}
@media screen and (max-width: 1520px) {
  #footer .ft_box.ft_top {
    order: 1;
  }
}
#footer .ft_box.ft_right {
  width: 440px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#footer .ft_box.ft_right .ft_customer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
#footer .ft_box.ft_right .ft_customer .cs {
  margin: 0;
  width: 100px;
  word-break: keep-all;
}
#footer .ft_box.ft_right .ft_customer p {
  color: var(--color-gray);
  margin: 0;
  font-size: 11.5px;
}
#footer .ft_box.ft_right .ft_customer a:hover {
	color: var(--color-point);
}
@media screen and (max-width: 912px) {
  #footer .ft_box.ft_right .ft_customer {
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 1520px) {
  #footer .ft_box.ft_right {
    width: 100%;
    order: 3;
    border-top: 1px solid var(--color-lineGray);
    padding-top: 35px;
    margin-top: 35px;
  }
}
#footer .ft_box.ft_left {
  width: 100%;
}
#footer .ft_box.ft_left ul li {
  position: relative;
  padding-right: 15px;
}
#footer .ft_box.ft_left .ft_company {
  padding-bottom: 15px;
}
#footer .ft_box.ft_left .ft_company > ul > li > a.focus {
  font-family: var(--font-bold);
}
#footer .ft_box.ft_left .ft_company ul li:not(:last-child)::before {
  display: none;
}
#footer .ft_box.ft_left .info_list {
  color: var(--color-gray);
}
#footer .ft_box.ft_left .info_list li:not(:last-child)::before {
  content: "";
  position: absolute;
  display: inline-block;
  right: 6px;
  top: 5px;
  width: 1px;
  height: 10px;
  background: var(--color-midGray);
  opacity: .5;
}
#footer .ft_box.ft_left .ft_info {
	padding-top: 15px;
}
@media screen and (max-width: 986px) {
  #footer .ft_box.ft_left .ft_info li {
    margin-bottom: 2px;
  }
  #footer .ft_box.ft_left .info_list li:not(:last-child)::before {
  	display: none;
  }
}
#footer .ft_box.ft_left .ft_info .link_list {
  font-family: var(--font-bold);
  font-size: 11.5px;
  padding-top: 35px;
  color: var(--color-gray);
}
@media screen and (max-width: 1520px) {
  #footer .ft_box.ft_left {
    order: 2;
    width: 100%;
  }
}

/* footer 추가내용 */
#footer .ft_cs .ft_cs_list {
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 15px;
}
#footer .ft_link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer .ft_link {
	padding-bottom: 5px;
}
#footer .ft_link > h3 {
	width: 80px;
}
#footer .ft_link > h3 > a:hover {
	color: var(--color-point);
}
#footer .ft_link .ft_link_list {
	position: relative;
}
#footer .ft_box.ft_left .ft_link .ft_link_list li {
	padding-right: 25px;
}
#footer .ft_link .ft_link_list li:not(:last-child)::before {
  content: "";
  position: absolute;
  display: inline-block;
  right: 13px;
  top: 4px;
  width: 1px;
  height: 13px;
  background: var(--color-midGray);
  opacity: .5;
}
#footer .ft_box.ft_right .ft_customer:not(:last-child) {
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid var(--color-lineGray);
}
#footer .ft_box.ft_right .ft_customer .ft_inner p {
	padding-top: 2px;
}
/* 일반상담영역 여백 및 라인 맞추기 */
#footer .ft_box.ft_right .ft_customer:first-child .ft_inner {
	margin-top: -3px;
}
#footer .ft_box.ft_right .ft_customer:first-child .ft_inner a {
	line-height: 1.5;
}
/* 반응형 */
@media screen and (max-width: 1520px) {
  #footer .ft_box.ft_right {
    width: 100%;
    order: 3;
    border-top: 1px solid var(--color-lineGray);
    padding-top: 35px;
    margin-top: 35px;
	-webkit-box-align: start;
	-moz-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
  }
  #footer .ft_box.ft_right .ft_customer:not(:last-child) {
  	border-bottom: 0;
  	margin-bottom: 0;
  }
  #footer .ft_box.ft_right .ft_customer {
  	width: auto;
  	-webkit-box-orient: vertical;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
  }
  #footer .ft_box.ft_right .ft_customer .cs {
  	width: auto;
  }
}
@media screen and (max-width: 986px) {
	#footer .ft_box.ft_right .ft_customer:first-child .ft_inner {
		margin-top: 0;
	}
	#footer .ft_link {
	  	-webkit-box-orient: vertical;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-moz-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding-bottom: 15px;
	}
	#footer .ft_box.ft_left .ft_info {
		padding-top: 0;
	}
	#footer .ft_link .ft_link_list {
	  	-webkit-box-orient: vertical;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	#footer .ft_link .ft_link_list li:not(:last-child)::before, #footer .ft_link > h3 {
		display: none;
	}
  #footer .ft_box.ft_left ul {
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  #footer .ft_box.ft_left ul li {
    margin-bottom: 2px;
    padding-right: 0;
  }
}
