@charset "UTF-8";
.square_wrap {
  position: relative;
  border: 1px solid #363a43;
}
.square_wrap.border_clear {
  border: none;
}
.square_wrap.fill_clear {
  background-color: none;
}
.square_wrap.rounded_2px {
  border-radius: 2px;
}
.square_wrap.rounded_3px {
  border-radius: 3px;
}
.square_wrap.rounded_4px {
  border-radius: 4px;
}
.square_wrap.border_color_red {
  border-color: #bd1c22;
}
.square_wrap.fill_color_red {
  background-color: #bd1c22;
}
.square_wrap.font_color_red {
  color: #bd1c22;
}
.square_wrap.border_color_brightRed {
  border-color: #f54336;
}
.square_wrap.fill_color_brightRed {
  background-color: #f54336;
}
.square_wrap.font_color_brightRed {
  color: #f54336;
}
.square_wrap.border_color_blue4D99FF {
  border-color: #4d99ff;
}
.square_wrap.fill_color_blue4D99FF {
  background-color: #4d99ff;
}
.square_wrap.font_color_blue4D99FF {
  color: #4d99ff;
}
.square_wrap.border_color_blue3C80DB {
  border-color: #3c80db;
}
.square_wrap.fill_color_blue3C80DB {
  background-color: #3c80db;
}
.square_wrap.font_color_blue3C80DB {
  color: #3c80db;
}
.square_wrap.border_color_Purple6343EB {
  border-color: #6343eb;
}
.square_wrap.fill_color_Purple6343EB {
  background-color: #6343eb;
}
.square_wrap.font_color_Purple6343EB {
  color: #6343eb;
}
.square_wrap.border_color_gray363a43 {
  border-color: #363a43;
}
.square_wrap.fill_color_gray363a43 {
  background-color: #363a43;
}
.square_wrap.font_color_gray363a43 {
  color: #363a43;
}

body {
  font-family: "roboto", "Pretendard-Regular", sans-serif;
  font-size: 1.6rem;
  line-height: 2.3rem;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=text],
input[type=password],
input[type=search] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  font-family: "Pretendard-Light";
  font-size: 16px;
  color: #000;
  outline-style: none;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder {
  font-family: "Pretendard-Light";
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-cancel-button {
  display: none;
}

button,
input[type=submit],
input[type=button] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  font-family: "Pretendard-Light";
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

textarea {
  resize: none;
  outline: none;
}

.flex_all_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

select {
  appearance: none;
  background: url(/images/user/common/select_arrow.svg) no-repeat right 20px center;
}
@media (max-width: 767px) {
  select {
    background-size: 12px 10px;
    background-position: right 10px center;
  }
}

/* 공통 - 찜하기 */
.heart {
  position: relative;
  width: 25px;
  height: 25px;
}
.heart > label {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.heart input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}
.heart input:checked + span::after {
  opacity: 1;
}
.heart span {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 0;
  display: block;
  background: url("/images/user/common/heart_empty.svg") no-repeat center;
  background-size: contain;
}
.heart span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/user/common/heart.svg") no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: all 0.3s;
}
.heart span img {
  width: 100%;
  height: 100%;
}

/* 공통 - 페이지네이션 */
.boardPaging {
  padding-top: 30px;
  padding-bottom: 50px;
}
.boardPaging ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
}
.boardPaging ul li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #dcdcdc;
  color: #000;
  width: 32px;
  height: 32px;
}
.boardPaging ul li.pagingPrev, .boardPaging ul li.pagingNext {
  border-width: 0;
}
.boardPaging ul li.active {
  border-radius: 3px;
  border: 1px solid #363a43;
  background-color: #363a43;
  color: #fff;
  cursor: default;
}
.boardPaging ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

input.boxStyle[type=checkbox],
input.boxStyle[type=radio] {
  display: none;
}

.checkbox_custom {
  display: flex;
  gap: 0 7px;
}
.checkbox_custom .checkbox {
  position: relative;
  display: block;
  border-radius: 3px;
  border: 1px solid #696969;
  background-color: #fff;
  color: #000;
  width: 19px;
  height: 19px;
  padding: 3.5px;
  background: url("/images/user/common/check.svg") no-repeat center;
  background-size: 72% 72%;
}
.checkbox_custom .text {
  font-size: 15px;
  line-height: 21px;
  color: #363A43;
}

:checked + .checkbox_custom .checkbox {
  border: 0 solid #3c80db;
  background-color: #4d99ff;
  color: #000;
}

.radio_box label {
  font-size: 18px;
  line-height: 2rem;
}
.radio_box label span {
  vertical-align: middle;
}
.radio_box label input[type=radio] {
  vertical-align: middle;
  appearance: none;
  border: 1px solid #696969;
  border-radius: 50%;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  position: relative;
}
.radio_box label input[type=radio]:checked {
  border: 1px solid #305587;
}
.radio_box label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4d99ff;
}

.popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.popup.registeredCopy > .top {
  padding: 0 102px;
}
.popup .btn.btn_close {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border: 1px solid #fff;
  border-radius: 18px;
  color: #fff;
  width: 110px;
  height: 31px;
}
.popup .btn.btn_close > i {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  background: url("/images/user/common/icon_popup_close.svg") no-repeat center;
  background-size: cover;
}
.popup .btn.btn_gray {
  width: 135px;
  height: 50px;
  border-radius: 10px;
  border: 0 solid #363a43;
  background-color: #363a43;
  color: #000;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.031372549);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "Pretendard-Medium";
  font-size: 16px;
  letter-spacing: -0.8px;
}
.popup .btn.btn_red {
  width: 135px;
  height: 50px;
  border-radius: 10px;
  border: 0 solid #bd1c22;
  background-color: #bd1c22;
  color: #000;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.031372549);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "Pretendard-Medium";
  font-size: 16px;
  letter-spacing: -0.8px;
}
.popup_container {
  position: fixed;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  display: none;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}
.popup_precautions_slick {
  position: relative;
  max-width: 1130px;
  width: 100%;
}
.popup_precautions_slick .slide img {
  width: 100%;
  height: 100%;
}
.popup_precautions_arrows {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -55%);
  width: 1202px;
  display: flex;
  justify-content: space-between;
}
.popup_precautions_arrows > .btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #FFE600;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.3);
}
.popup_precautions_arrows > .btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.popup_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
.popup_top h3 {
  font-family: "Pretendard-Medium";
  font-size: 22px;
  color: #FFFFFF;
}
.popup_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-top: calc(var(--vh, 1vh) * 2);
}
.popup_bottom > .btn.btn_download {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 1px solid #fff;
  border-radius: 25px;
  font-size: 20px;
  color: #fff;
  width: 310px;
  height: 50px;
}

/* 헤더 */
header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #bd1c22;
  z-index: 89;
}
@media (max-width: 1023px) {
  header {
    position: fixed;
    left: 0;
    top: 0;
  }
}
@media (max-width: 500px) {
  header.main_view {
    display: none;
  }
}
header > .filter_top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 10;
  border-bottom: 1px solid #DBDBDB;
}
@media (max-width: 1023px) {
  header > .filter_top.open {
    display: flex;
  }
}
header > .filter_top > span {
  font-family: "Pretendard-SemiBold";
  font-size: 18px;
  color: #363a43;
}
header > .filter_top .close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  opacity: 1;
}
header > .list_top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  width: calc(100% - 60px);
  height: 60px;
  background-color: #bd1c22;
  z-index: 9;
}
@media (max-width: 1023px) {
  header > .list_top.open {
    display: flex;
  }
}
@media (max-width: 767px) {
  header > .list_top.open {
    width: calc(100% - 45px);
    justify-content: flex-start;
    padding-left: 45px;
  }
}
header > .list_top > span {
  font-size: 15px;
  color: #fff;
}
header > .list_top .back {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  opacity: 1;
}
header > .inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px 0 15px;
}
@media (max-width: 767px) {
  header > .inner {
    padding: 0 15px 0 10px;
  }
}
header > .inner .menu {
  display: flex;
  align-items: center;
  height: 100%;
}
header > .inner .menu > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
header > .inner .menu > li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: #fff;
  transition: all 0.3s;
}
header > .inner .menu > li.active::before {
  width: 100%;
}
header > .inner .menu > li.active a {
  font-family: "Pretendard-Bold";
}
header > .inner .menu > li span {
  color: #fff;
  font-family: "Pretendard-Light";
  font-size: 18px;
  color: #fff;
  opacity: 0.9;
  cursor: pointer;
}
header > .inner .menu > li a {
  font-family: "Pretendard-Light";
  font-size: 18px;
  color: #fff;
  opacity: 0.9;
}
header > .inner .logo {
  margin-right: 50px;
}
@media (max-width: 1279px) {
  header > .inner .logo {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  header > .inner .logo {
    width: 100px;
  }
}
header > .inner .logo a {
  display: flex;
  align-items: center;
  gap: 0px 8px;
  width: 125px;
}
@media (max-width: 1279px) {
  header > .inner .logo a {
    width: 116px;
  }
}
@media (max-width: 767px) {
  header > .inner .logo a {
    width: 115px;
  }
}
header > .inner .logo a img {
  width: 100%;
}
@media (max-width: 767px) {
  header > .inner .logo a img {
    height: 100%;
    object-fit: cover;
  }
}
header > .inner .gnb {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 767px) {
  header > .inner .gnb {
    display: none;
  }
}
header > .inner .gnb .menu {
  gap: 30px;
}
@media (max-width: 1279px) {
  header > .inner .gnb .menu {
    gap: 12px;
  }
}
header > .inner .gnb .menu > li {
  padding: 0 10px;
}
@media (max-width: 1279px) {
  header > .inner .gnb .menu > li {
    padding: 0 7px;
  }
}
header > .inner .gnb .menu > li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: #fff;
  transition: all 0.3s;
}
header > .inner .gnb .menu > li.active::before {
  width: 100%;
}
header > .inner .gnb .menu > li.active > a {
  position: relative;
  font-family: "Pretendard-Bold";
  color: #fff;
  opacity: 1;
}
header > .inner .gnb .menu > li:hover::before {
  width: 100%;
}
@media (max-width: 1279px) {
  header > .inner .gnb .menu > li > a {
    font-size: 16px;
  }
}
header > .inner .gnb .menu > li > a :hover {
  font-family: "Pretendard-Bold";
  opacity: 1;
}
header > .inner .gnb_common {
  margin-left: auto;
}
header > .inner .gnb_common .menu > li {
  margin-left: 30px;
}
@media (max-width: 1279px) {
  header > .inner .gnb_common .menu > li {
    margin-left: 15px;
  }
}
@media (max-width: 1023px) {
  header > .inner .gnb_common .menu > li {
    display: none;
  }
}
header > .inner .gnb_common .menu > li.mobile_show {
  margin-left: 8px;
}
header > .inner .gnb_common .menu > li.btn_saveus {
  margin-left: 8px;
}
header > .inner .gnb_common .menu > li.join:hover .join_inner {
  pointer-events: visible;
  opacity: 1;
  top: 100%;
  bottom: unset;
  display: block;
}
header > .inner .gnb_common .menu > li.join .join_inner {
  position: absolute;
  left: 0;
  bottom: -64px;
  display: none;
  width: 70px;
  border-radius: 5px;
  border: 1px solid #363a43;
  background-color: #fff;
  color: #000;
  text-align: center;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.0784313725);
  z-index: 5;
  transition: all 0.3s;
}
header > .inner .gnb_common .menu > li.join .join_inner::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid #363a43;
  background-color: #fff;
  z-index: 0;
  transform: rotate(45deg) translateX(-50%);
}
header > .inner .gnb_common .menu > li.join .join_inner > li {
  position: relative;
  border-bottom: 1px solid #EBF0F6;
  background: #fff;
  overflow: hidden;
  padding: calc(5px / 2) 4px;
  z-index: 1;
}
header > .inner .gnb_common .menu > li.join .join_inner > li:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
header > .inner .gnb_common .menu > li.join .join_inner > li:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-width: 0;
}
header > .inner .gnb_common .menu > li.join .join_inner > li a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #363a43;
  text-align: center;
  padding: 3px 0;
  transition: all 0.3s;
}
header > .inner .gnb_common .menu > li.join .join_inner > li a:hover {
  border-radius: 3px;
  background: #363a43;
  color: #fff;
}
header > .inner .gnb_common .menu > li a {
  font-size: 16px;
  opacity: 1;
}
header > .inner .gnb_common .menu > li a.btn_popup_precautions {
  border-radius: 18px;
  background-color: #8D0E13;
  padding: 8px 16px 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
header > .inner .gnb_common .menu > li a.btn_popup_precautions span {
  font-size: 14px;
  line-height: 16px;
  color: #FFE600;
}
header > .inner .gnb_common .menu > li a.btn_popup_precautions span:first-child {
  display: block;
  width: 16px;
  height: 15px;
  background: url("/images/user/common/vuesax-linear-danger.svg") no-repeat center;
  background-size: cover;
}
header > .inner .gnb_common .menu > li a .radius_white {
  border-radius: 18px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  padding: 6px 18px 5px;
}
header > .inner .gnb_common .menu > li.mobile_show {
  display: none;
}
@media (max-width: 1023px) {
  header > .inner .gnb_common .menu > li.mobile_show {
    display: flex;
    align-items: center;
  }
  header > .inner .gnb_common .menu > li.mobile_show a {
    padding: 10px 0px;
  }
  header > .inner .gnb_common .menu > li.mobile_show a:first-child {
    padding: 10px 5px;
  }
  header > .inner .gnb_common .menu > li.mobile_show a:last-of-type {
    margin-left: 15px;
  }
}

.mobile_gnb_wrap {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  overflow: scroll;
  z-index: 99;
  background: #fff;
}
.mobile_gnb_wrap.active {
  display: block;
}
.mobile_gnb_wrap .mobile_gnb {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
}
.mobile_gnb_wrap .mobile_gnb .top {
  position: relative;
  display: block;
  width: 100%;
  background: #bd1c22;
}
.mobile_gnb_wrap .mobile_gnb .top .navi {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 10px 10px 10px 5px;
}
.mobile_gnb_wrap .mobile_gnb .top .navi > a.back_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
}
.mobile_gnb_wrap .mobile_gnb .top .navi > a span {
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  font: 14px "Pretendard-Regular";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 30px;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap {
  position: relative;
  padding: 10px 25px 25px;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .member_info span {
  font-family: "Pretendard-Light";
  font-size: 16px;
  color: #FFA8AB;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .member_info span.member_name {
  font-family: "Pretendard-Medium";
  font-size: 23px;
  color: #fff;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .member_info .off_info {
  display: none;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .member_info .off_info.active {
  display: block;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .member_info .on_info {
  display: none;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .member_info .on_info.active {
  display: flex;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu {
  position: relative;
  display: flex;
  padding-top: 25px;
  gap: 10px 31px;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu li a {
  color: #fff;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu li span {
  color: #fff;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu > li {
  position: relative;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu > li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -15.5px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: calc(50% + 1px);
  background: #fff;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu > li.join_menu_wrap {
  position: relative;
  display: flex;
  gap: 0 9px;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu > li.join_menu_wrap > a {
  font-family: "Pretendard-Medium";
  font-size: 17px;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu > li.join_menu_wrap > ul {
  border-radius: 12px;
  border: 0 solid #363a43;
  background-color: #95060B;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 95px;
  height: 24px;
  gap: 0 19px;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu > li.join_menu_wrap > ul > li {
  position: relative;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu > li.join_menu_wrap > ul > li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -9.5px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 10px;
  background: #fff;
}
.mobile_gnb_wrap .mobile_gnb .top .member_info_wrap .login_menu > li.join_menu_wrap > ul > li > a {
  font-size: 15px;
}
.mobile_gnb_wrap .mobile_gnb .menu_wrap {
  padding: 30px 25px;
}
.mobile_gnb_wrap .mobile_gnb .menu_wrap > ul {
  display: flex;
  flex-direction: column;
  gap: 22px 0;
}
.mobile_gnb_wrap .mobile_gnb .menu_wrap > ul > li {
  position: relative;
  display: flex;
  gap: 6px;
}
.mobile_gnb_wrap .mobile_gnb .menu_wrap > ul > li a {
  font-size: 18px;
  color: #363a43;
}
.mobile_gnb_wrap .mobile_gnb .menu_wrap > ul > li .count {
  border-radius: 4px;
  border: 0 solid transparent;
  background-color: #D4DAE2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 20px;
}
.mobile_gnb_wrap .mobile_gnb footer {
  margin-top: auto;
  overflow: unset;
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer {
    background-color: transparent;
  }
}
.mobile_gnb_wrap .mobile_gnb footer .footer_inner .top_btn {
  display: none;
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con > * {
    color: #363a43;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .ad {
    line-height: 20px;
    padding-left: 5px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .ad {
    padding: 0 10px;
  }
}
.mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .bottom_top::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  display: block;
  width: 100%;
  height: 1px;
  background: #363a43;
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .bottom_top::before {
    top: -17px;
  }
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .bottom_top span a {
    color: #363a43;
  }
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .bottom_top .logo {
    display: none;
  }
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .customer {
    order: -1;
    padding-bottom: 45px;
    padding-left: 5px;
  }
}
@media (max-width: 767px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .customer {
    padding-left: 10px;
  }
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .customer div {
    letter-spacing: 0;
  }
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .customer .tel {
    font-weight: 600;
  }
}
@media (max-width: 1023px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .copyright {
    font: 13px "Pretendard-Light";
    padding-left: 5px;
  }
}
@media (max-width: 767px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .copyright {
    padding: 0 10px;
  }
}
@media (max-width: 500px) {
  .mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .family_site {
    width: 100%;
  }
}
.mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .family_site ul li {
  background-color: #fff;
  border-top: 1px solid #c3c3c3;
}
.mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .family_site ul li:first-child {
  border-top: none;
}
.mobile_gnb_wrap .mobile_gnb footer .footer_inner .wrap_bottom_con .family_site ul li a {
  color: #363a43;
  font-size: 15px;
}

.mobile_search_wrap {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 99;
}
.mobile_search_wrap.active {
  display: block;
}
.mobile_search_wrap .mobile_search {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mobile_search_wrap .mobile_search .top {
  position: relative;
  width: 100%;
  height: 60px;
  background: #bd1c22;
}
.mobile_search_wrap .mobile_search .top .navi {
  display: flex;
  height: 100%;
  padding: 0 13px;
  align-items: center;
  gap: 2px 10px;
}
.mobile_search_wrap .mobile_search .top .navi .logo {
  position: relative;
}
.mobile_search_wrap .mobile_search .top .navi .search_txt {
  color: #fff;
}
.mobile_search_wrap .mobile_search .top .navi > button:first-of-type {
  margin-left: auto;
}
.mobile_search_wrap .mobile_search .top .navi .delete {
  position: relative;
  width: 18px;
  height: 18px;
  background: url("/images/user/common/text_delete_btn.svg") no-repeat center;
  background-color: #D97D80;
  background-size: 5.5px 5.5px;
  border-radius: 50%;
}
.mobile_search_wrap .mobile_search .list_wrap {
  flex: 1;
  background: #fff;
  overflow: scroll;
}
.mobile_search_wrap .mobile_search .list_wrap .search_list {
  position: relative;
  width: 100%;
}
.mobile_search_wrap .mobile_search .list_wrap .search_list > li {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 14px 21px;
  border-bottom: 1px solid #DBDBDB;
}
.mobile_search_wrap .mobile_search .list_wrap .search_list > li > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Pretendard-Medium";
  font-size: 16px;
}
.mobile_search_wrap .mobile_search .list_wrap .search_list > li > span > i {
  font-style: normal;
  color: #3c80db;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .content {
    margin-top: 60px;
  }
}
.content.main_content {
  height: calc(var(--vh, 1vh) * 100 - 60px);
}
@media (max-width: 1023px) {
  .content_popup {
    margin-top: 0;
  }
}

footer {
  position: relative;
  width: 100%;
  background-color: #363a43;
}
footer .footer_inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 45px 96px;
}
@media (max-width: 1023px) {
  footer .footer_inner {
    padding: 40px 25px;
  }
}
@media (max-width: 767px) {
  footer .footer_inner {
    padding: 30px 15px;
  }
}
footer .footer_inner .top_btn {
  position: absolute;
  right: 0;
  top: -19.5px;
}
@media (max-width: 1279px) {
  footer .footer_inner .top_btn {
    right: 20px;
  }
}
footer .footer_inner .top_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background-color: #363a43;
}
footer .footer_inner .top_btn a img {
  margin-top: 15px;
}
footer .footer_inner .search {
  width: 500px;
  height: 55px;
  margin: 0 auto;
  border-radius: 28px;
  border: 0 solid;
  background-color: #FFF;
  color: #000;
}
@media (max-width: 1023px) {
  footer .footer_inner .search {
    display: none;
  }
}
footer .footer_inner .search form {
  display: flex;
}
footer .footer_inner .search form input[type=search] {
  width: 100%;
  height: 55px;
  padding-left: 24px;
  padding-right: 24px;
  color: #363a43;
}
footer .footer_inner .search form input[type=search]::placeholder {
  font: 16px "Pretendard-Light";
  color: #363a43;
}
footer .footer_inner .search form button {
  padding: 15px 24px 15px 15px;
}
footer .footer_inner .wrap_bottom_con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 102px;
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0;
  }
}
footer .footer_inner .wrap_bottom_con > * {
  order: 5;
}
footer .footer_inner .wrap_bottom_con .bottom_top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con .bottom_top {
    gap: 10px 0;
    flex-direction: column;
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con .bottom_top .logo {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con .bottom_top .info_company {
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .footer_inner .wrap_bottom_con .bottom_top .info_company {
    padding-left: 10px;
  }
}
footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 767px) {
  footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span:not(:last-child) {
    margin-right: 12px;
  }
}
footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span.info_personal a {
  font-family: "Pretendard-Medium";
  opacity: 1;
}
footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span a {
  display: inline-block;
  color: #fff;
  font: 16px "Pretendard-Regular";
  opacity: 0.6;
}
@media (max-width: 767px) {
  footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span a {
    font: 15px "Pretendard-Regular";
  }
}
footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span.btn_b_download {
  display: none;
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span.btn_b_download {
    display: block;
  }
  footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span.btn_b_download a {
    color: #000;
    font: 15px "Pretendard-Medium";
    opacity: 1;
    border: 1px solid #535353;
    border-radius: 5px;
    display: inline-flex;
    flex-flow: row;
    padding: 5px 9px;
    margin-top: 12px;
    background: #FFF;
  }
  footer .footer_inner .wrap_bottom_con .bottom_top .info_company > span.btn_b_download a img {
    display: block;
    width: 17px;
    margin-left: 7px;
  }
}
footer .footer_inner .wrap_bottom_con > p {
  position: relative;
  display: flex;
  font: 16px "Pretendard-Regular";
  color: #fff;
  opacity: 0.6;
}
@media (max-width: 767px) {
  footer .footer_inner .wrap_bottom_con > p {
    font-size: 15px;
  }
}
footer .footer_inner .wrap_bottom_con > p.ad {
  line-height: 30px;
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con > p.ad {
    line-height: 26px;
    margin-top: 20px;
  }
}
footer .footer_inner .wrap_bottom_con > p.copyright {
  margin-top: 50px;
  line-height: 25px;
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con > p.copyright {
    margin-top: 20px;
  }
}
footer .footer_inner .wrap_bottom_con .customer {
  width: 60%;
  margin-top: 80px;
  font: 18px "Pretendard-Regular";
  color: #fff;
  text-align: right;
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con .customer {
    width: auto;
    text-align: inherit;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  footer .footer_inner .wrap_bottom_con .customer {
    margin-top: 20px;
  }
}
footer .footer_inner .wrap_bottom_con .customer span:first-of-type {
  font-family: "Pretendard-Medium";
}
footer .footer_inner .wrap_bottom_con .customer .tel {
  font: 25px "Roboto";
  letter-spacing: 1.25px;
  margin-left: 15px;
}
@media (max-width: 1023px) {
  footer .footer_inner .wrap_bottom_con .customer .tel {
    margin-left: 0;
  }
}
footer .footer_inner .wrap_bottom_con .customer div {
  font: 15px "Pretendard-Light";
  letter-spacing: 0.9px;
}
footer .footer_inner .wrap_bottom_con .family_site {
  position: relative;
  display: flex;
  width: 235px;
  height: 35px;
  margin-top: 33px;
  border-radius: 28px;
  border: 0 solid #363a43;
  background-color: #bd1c22;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  footer .footer_inner .wrap_bottom_con .family_site {
    order: 5;
    margin-top: 20px;
  }
}
footer .footer_inner .wrap_bottom_con .family_site ul {
  width: 100%;
  position: absolute;
  bottom: 36px;
  display: none;
}
footer .footer_inner .wrap_bottom_con .family_site ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.612);
  background-color: #363A43;
  padding: 10px 13px;
}
footer .footer_inner .wrap_bottom_con .family_site ul li:first-child {
  border-top: none;
}
footer .footer_inner .wrap_bottom_con .family_site ul li a {
  width: 100%;
  display: inline-block;
  color: #fff;
  font: 16px "Pretendard-Light";
}
footer .footer_inner .wrap_bottom_con .family_site .family_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  line-height: 35px;
  font: 14px "Roboto";
  font-weight: 300;
  color: #fff;
}
footer .footer_inner .wrap_bottom_con .family_site .family_tit span {
  line-height: 35px;
}
footer .footer_inner .wrap_bottom_con .family_site .family_tit img {
  margin-left: auto;
}

.btn {
  cursor: pointer;
}
.btn_round_line {
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  color: #363A43;
}
.btn_round_line.active {
  background-color: #3C80DB;
  border: 1px solid rgba(52, 110, 189, 0.3019607843);
  color: #FFFFFF;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table_wrap.top_bold {
  border-top: 2px solid #363A43;
}
.table_wrap.top_th thead {
  background-color: #9D9EA2;
}
.table_wrap.top_th .table_item.th {
  color: #FFFFFF;
}
.table_wrap.top_th_border thead {
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.0509803922);
}
.table_wrap.top_th_border .table_item.th {
  border-left: 1px solid #E5E5E5;
  border-bottom: 1px solid #363a43;
  border-top: 1px solid #363a43;
}
.table_wrap.top_th_border .table_item.th:first-child {
  border-left-color: #363a43;
}
.table_wrap.top_th_border .table_item.th:last-child {
  border-right: 1px solid #363a43;
}
.table_wrap.top_th_border .table_item.td {
  border-left: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.table_wrap.top_th_border .table_item.td:first-child {
  border-left-width: 0;
}
.table_wrap.thead_border thead {
  border: 1px solid #363a43;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.0509803922);
}
.table_item {
  font-size: 16px;
  line-height: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBDBDB;
}
.table_item.th {
  flex: 0 0 200px;
  font-family: "Pretendard-Medium";
  font-weight: normal;
}
@media (max-width: 767px) {
  .table_item.th {
    flex: 0 0 100%;
    padding: 0;
    padding-top: 10px;
    border-bottom-width: 0;
    line-height: normal;
  }
}
.table_item.td {
  font-family: "Pretendard-Light";
  color: #363A43;
  flex: 1;
}
@media (max-width: 767px) {
  .table_item.td {
    flex: 0 0 100%;
    padding: 0;
    line-height: normal;
    padding-bottom: 10px;
  }
}
.table_tr {
  display: flex;
}
@media (max-width: 767px) {
  .table_tr {
    flex-wrap: wrap;
  }
}

.essential_dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 4px 7px;
  background-color: #f54336;
}

.width140 {
  width: 140px;
}
.width200 {
  width: 200px;
}

.list_num_bracket {
  counter-reset: counterLi 0;
}
.list_num_bracket li {
  counter-increment: counterLi;
}
.list_num_bracket li::before {
  content: counter(counterLi) ")";
  position: relative;
  display: inline-block;
  padding-right: 6px;
}
.list_num_period {
  counter-reset: counterLi 0;
}
.list_num_period li {
  counter-increment: counterLi;
}
.list_num_period li::before {
  content: counter(counterLi) ".";
  position: relative;
  display: inline-block;
  padding-right: 6px;
}/*# sourceMappingURL=layout.css.map */