@charset "UTF-8";
@import url(/_css/account.css);
/* layout */
html,
body {
  width: 100%;
  height: 100%;
}

body.fixed {
  overflow-y: hidden;
}

.main {
  width: 100%;
  height: 100%;
  padding-top: 88px;
}

#wrap {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding-bottom: 346px;
}

.container {
  width: 100%;
  max-width: 1314px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 101;
  background-color: #fff;
  transition: 0.6s;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
}

.header .logo {
  display: inline-block;
  width: 142px;
  height: 40px;
  background: url(/_img/common/logo.png) no-repeat center / contain;
}

.header__gnb,
.header__gnb nav.gnb {
  height: 100%;
}

.header__gnb nav.gnb>ul {
  display: flex;
  height: 100%;
  gap: 48px;
}

nav.gnb li.li_1depth {
  position: relative;
}

nav.gnb li.li_1depth>a {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  height: 100%;
  display: flex;
  align-items: center;
}

nav.gnb li.li_1depth.arrow>a,
.header__link li.li_1depth>a {
  padding-right: 24px;
  position: relative;
}

nav.gnb li.li_1depth.arrow>a::after,
.header__link li.li_1depth>a::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/_img/icon/icon_gnb_arrow.svg) no-repeat center / contain;
}

nav.gnb li.li_1depth>ul.ul_2depth,
.header__link li.li_1depth>ul.ul_2depth {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  padding-top: 20px;
}

nav.gnb li.li_1depth>ul.ul_2depth li,
.header__link li.li_1depth>ul.ul_2depth li {
  margin-bottom: 16px;
  width: 100%;
}

nav.gnb li.li_1depth>ul.ul_2depth li a,
.header__link li.li_1depth>ul.ul_2depth li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-align: center;
}

nav.gnb li.li_1depth>ul.ul_2depth li a:hover,
.header__link li.li_1depth>ul.ul_2depth li a:hover {
  color: var(--color-primary);
}

nav.gnb li.li_1depth>ul.ul_2depth li:last-child,
.header__link li.li_1depth>ul.ul_2depth li:last-child {
  margin-bottom: 0px;
}

.header__link {
  height: 100%;
}

.header__link>ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  height: 100%;
  min-width: 142px;
}

.header__link>ul>li {
  position: relative;
  padding-right: 8px;
  height: 100%;
}

.header__link>ul>li::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5E5EC;
}

.header__link>ul>li a {
  font-size: 18px;
  font-weight: 600;
  color: #202020;
  display: flex;
  height: 100%;
  align-items: center;
}

.header__link>ul>li:last-child {
  padding: 0px;
}

.header__link>ul>li:last-child:after {
  content: none;
}

.header.transparent:not(.open) {
  background: linear-gradient(to bottom, rgb(0, 0, 0, 0.4), rgba(145, 152, 229, 0));
}

.header.transparent:not(.open) .logo {
  background-image: url(/_img/common/footer_logo.png);
}

.header.transparent:not(.open) nav.gnb li.li_1depth>a { 
  color: #fff;
}

.header.transparent:not(.open) nav.gnb li.li_1depth.arrow>a::after,
.header.transparent:not(.open) .header__link li.li_1depth.arrow>a::after {
  background-image: url(/_img/icon/icon_gnb_arrow_white.svg);
}

.header.transparent:not(.open) .header__link ul li a {
  color: #fff;
}

.btn_mo_menu {
  display: none;
}

.header_bg {
  display: none;
  width: 100%;
  height: 158px;
  position: absolute;
  top: 88px;
  left: 0;
  border-top: 1px solid #ddd;
  background-color: #fff;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.sidebar {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  visibility: hidden;
}

.sidebar.open {
  visibility: visible;
}

.sidebar .sidebar__inner {
  position: absolute;
  right: -100%;
  width: 240px;
  top: 0;
  height: 100%;
  transition: 0.35s;
  background-color: #fff;
}

.sidebar.open .sidebar__inner {
  right: 0;
}

.sidebar__close {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.sidebar__close .btn_close_sidebar {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/_img/icon/icon_sidebar_close.svg) no-repeat center / contain;
}

.sidebar__gnb {
  width: 100%;
}

.sidebar__gnb>ul li.sidebar_1depth {
  width: 100%;
}

.sidebar__gnb>ul li.sidebar_1depth>a {
  width: 100%;
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 16px;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #202020;
}

.sidebar__gnb>ul li.sidebar_1depth.arrow>a::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/_img/icon/icon_sidebar_arrow.svg) no-repeat center / contain;
}

.sidebar__gnb>ul li.sidebar_1depth.arrow>a.active::after {
  transform: translateY(-50%) scaleY(-1);
}

.sidebar__gnb ul.sidebar_2depth {
  display: none;
  background-color: #FAFAFA;
}

.sidebar__gnb ul.sidebar_2depth li a {
  display: flex;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #202020;
}

.sidebar__link {
  width: 100%;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  gap: 8px;
}

.sidebar__link li {
  position: relative;
  padding-right: 8px;
}

.sidebar__link li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: var(--color-line);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar__link li a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Footer */
.footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -346px;
  height: 346px;
  transform: translateY(-100%);
  background-color: #202020;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
  padding-top: 48px;
  color: #fff;
}

.footer_left {
  display: flex;
  gap: 56px;
}

.footer_logo {
  display: inline-block;
  width: 142px;
  height: 40px;
}

.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .footer_info ul.footer_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  row-gap: 8px;
  margin-bottom: 24px;
}

.footer .footer_info ul.footer_link li a {
  font-size: 16px;
  font-weight: 500;
}

.footer .footer_info ul.footer_link li.privacy a {
  font-weight: 600;
}

.footer .company_info ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}

.footer .company_info ul li {
  font-size: 14px;
  color: #999;
}

.footer .company_info ul li span {
  display: inline-block;
  margin-right: 6px;
}

.footer .company_info ul li span::after {
  content: '·';
  margin-left: 4px;
  display: inline-block;
}

.footer p.copyright {
  font-size: 14px;
  color: #505050;
}

.footer_right {
  display: flex;
  align-self: flex-start;
  gap: 24px;
}

.footer_right .footer_sns_link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer_sns_link li.facebook {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/_img/common/footer_facebook.svg) no-repeat center / contain;
}

.footer_sns_link li.insta {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/_img/common/footer_insta.svg) no-repeat center / contain;
}

.footer_sns_link li.youtube {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/_img/common/footer_youtube.svg) no-repeat center / contain;
}

.footer_sns_link li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

select.select_family_site::-ms-expand {
  display: none;
}

.select_family_site {
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 180px;
  height: 40px;
  border-radius: 500px;
  background: url(/_img/common/footer_familysite_arrow.svg) no-repeat center right 16px / 16px;
  padding: 0px 16px;
  border: 1px solid #fff;
  color: #fff;
}

.select_family_site option {
  background: #fff;
  color: #111;
}

/* Form */
.input--typeA:not(:last-of-type) {
  margin-bottom: 24px;
}

.input--typeA .input_label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #202020;
}

.input--typeA .input_label span.info_txt {
  display: inline-block;
  margin-top: 0px;
  margin-left: 12px;
}

span.asterisk {
  color: #FF0000;
}

.input_btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input_btn .btn {
  width: 120px;
  flex-shrink: 0;
}

.input_btn input[type="file"] {
  display: none;
}

.input_check {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.input_check p.info_txt {
  margin-top: 0;
}

.input_flex {
  display: flex;
  gap: 24px;
}

.input_flex .input--typeA {
  flex: 1;
}

.radio_box {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 페이지 레이아웃 */
.page {
  padding-top: 80px;
  padding-bottom: 160px;
}

.page__inner {
  max-width: 1472px;
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
}

.page_title {
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5EC;
}

.page_title h1 {
  font-size: 32px;
  font-weight: 700;
  color: #202020;
}

.page_content {
  margin-top: 80px;
}

/* 데이터 없는 경우 */
.no_data {
  margin-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.no_data .info_img {
  display: inline-block;
  width: 64px;
  height: 64px;
}

.no_data .info_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.no_data p {
  text-align: center;
  font-size: 18px;
  color: #202020;
}

/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 80px;
}

.pagination .pages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.pagination .pages>div {
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
}

.pagination .pages a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  width: 100%;
  height: 100%;
  color: #999;
  text-align: center;
}

.pagination .pages> div.active a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.pagination .prev {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/_img/icon/icon_pagination_prev.svg) no-repeat center / contain;
}

.pagination .next {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/_img/icon/icon_pagination_next.svg) no-repeat center / contain;
}

.pagination .prev.disabled,
.pagination .next.disabled {
  opacity: 0.4;
}

.pagination .prev a,
.pagination .next a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.tbl_list table {
  width: 100%;
}

.tbl_list thead th {
  height: 48px;
  background-color: #FAFAFA;
  border-bottom: 1px solid var(--color-line);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #202020;
}

.tbl_list tbody td {
  height: 48px;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid var(--color-line);
  font-size: 16px;
  font-weight: 400;
  color: #202020;
}

.tbl_list tbody tr.notice td {
  background-color: #F4F5F9;
}

.tbl_list a.title {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4;
  height: auto;
}

.mo_list .mo_item {
  padding: 12px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 8px;
}

.mo_list .mo_item:last-child {
  margin-bottom: 0;
}

.mo_list a.title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4;
  height: auto;
  font-size: 16px;
  font-weight: 600;
}

.mo_list ul.item_info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-line);
}

.mo_list ul.item_info li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.mo_list ul.item_info li:last-child {
  margin-bottom: 0; 
}

.mo_list ul.item_info li span.info_tit {
  font-size: 12px;
  font-weight: 500;
  color: #767676;
  display: inline-block;
  width: 50px;
  position: relative;
  padding-right: 8px;
}

.mo_list ul.item_info li span.info_tit::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: var(--color-line);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mo_list ul.item_info li p {
  font-size: 12px;
  font-weight: 500;
  color: #767676;
}

.no_table_data {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  color: #767676;
}

.hover_underline:hover {
  text-decoration: underline;
}
/* Mobile */
@media screen and (max-width:768px) {
  .main {
    padding-top: 52px;
  }
  #wrap {
    padding-bottom: 384px;
  }
  .container {
    padding: 0 16px;
  }
  .header {
    height: 52px;
  }
  .header__inner {
    padding: 0 16px;
  }
  .header .logo {
    width: 90px;
    height: 24px;
  }
  .header__gnb,
  .header__link {
    display: none;
  }
  .btn_mo_menu {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(/_img/icon/icon_mo_menu.svg) no-repeat center / contain;
  }
  .header.transparent .btn_mo_menu {
    background-image: url(/_img/icon/icon_mo_menu_white.svg);
  }
  .footer {
    bottom: -384px;
    height: 384px;
  }
  .footer__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
    padding: 0 16px;
    padding-top: 24px;
  }
  .footer_left {
    flex-direction: column;
    gap: 24px;
  }
  .footer_logo {
    width: 100px;
    height: 26px;
  }
  .footer .footer_info ul.footer_link {
    gap: 8px 20px;
  }
  .footer .footer_info ul.footer_link li a {
    font-size: 14px;
  }
  .footer .company_info ul {
    margin-bottom: 4px;
    gap: 12px;
  }
  .footer .company_info ul li {
    font-size: 12px;
  }
  .footer .company_info ul li span {
    margin-right: 2px;
  }
  .footer .company_info ul li span::after {
    margin-left: 2px;
  }
  .footer p.copyright {
    font-size: 12px;
  }
  .footer_right {
    width: 100%;
  }
  .select_family_site {
    flex: 1;
  }
  .input--typeA:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .input--typeA .input_label {
    margin-bottom: 4px;
    font-size: 14px;
  }
  .input--typeA .input_label span.info_txt {
    margin-top: 4px;
    margin-left: 0px;
  }
  .input_btn {
    flex-direction: column;
    row-gap: 4px;
  }
  .input_btn .btn {
    width: 100%;
  }
  .input_check {
    gap: 4px;
  }
  .input_txt {
    font-size: 14px;
  }
  .input_flex {
    flex-direction: column;
    row-gap: 0px;
    margin-bottom: 12px;
  }
  .page {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .page_title {
    padding-bottom: 8px;
  }
  .page_title h1 {
    font-size: 20px;
  }
  .page_content {
    margin-top: 40px;
  }
  .no_data {
    margin-top: 30px;
    gap: 16px;
  }
  .no_data .info_img {
    width: 40px;
    height: 40px;
  }
  .no_data p {
    font-size: 14px;
  }
  .pagination {
    margin-top: 40px;
    gap: 8px;
  }
  .pagination .pages>div {
    width: 24px;
    height: 24px;
  }
  .pagination .pages a {
    font-size: 12px;
  }
  .pagination .pages>div.active a {
    font-size: 12px;
  }
  .no_table_data {
    font-size: 14px;
    height: 80px;
  }
}