@charset "utf-8";

/* CSS Document */


@font-face { 
  font-family: 'Pretendard'; 
  font-weight: 400; 
  font-style: normal;
  src:url(../fonts/Pretendard-Regular.woff2) format('woff2'), 
      url(../fonts/Pretendard-Regular.woff) format('woff'); 
}
@font-face { 
  font-family: 'Pretendard'; 
  font-weight: 500; 
  font-style: normal;
  src:url(../fonts/Pretendard-Medium.woff2) format('woff2'), 
      url(../fonts/Pretendard-Medium.woff) format('woff'); 
}
@font-face { 
  font-family: 'Pretendard'; 
  font-weight: 600; 
  font-style: normal;
  src:url(../fonts/Pretendard-SemiBold.woff2) format('woff2'),  
      url(../fonts/Pretendard-SemiBold.woff) format('woff'); 
}
@font-face { 
  font-family: 'Pretendard'; 
  font-weight: 700; 
  font-style: normal;
  src:url(../fonts/Pretendard-Bold.woff2) format('woff2'),  
      url(../fonts/Pretendard-Bold.woff) format('woff'); 
}


body, div, dl, dt, dd, ul, ol, li, 
h1, h2, h3, h4, h5, h6, 
pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {margin:0; padding:0;}

* {box-sizing:border-box; color: #1a1a1a; letter-spacing:-0.025em;}
body {font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;-webkit-text-size-adjust:100%;}
html, body {width:100%; height:100%; font-size:15px;  line-height:1.4; letter-spacing:-0.5px;}
ul {list-style:none;}
ol {margin-left:20px;}
a { text-decoration:none;}
/* a:hover {-webkit-transition:all 0.5s; -moz-transition:all 0.5s; -o-transition:all 0.5s; -ms-transition:all 0.5s; transition:all 0.5s;} */
h1, h2, h3, h4, h5, h6, address, caption {font-weight:500;}
table {border-collapse:collapse; border-spacing:0;}

img, fieldset {border:0;}
img, input, button, select, textarea {vertical-align:middle; font-family:'Pretendard', Arial, tahoma, Helvetica, sans-serif, Dotum;}
legend, caption {width:1px; height:1px; text-indent:100%; overflow:hidden; font-size:0; line-height:0;} 
/* visibility:hidden;나 display:none는 스크린리더기가 읽을수 없으므로 사용하지 않도록 한다 */

address {font-style:normal; -webkit-text-size-adjust:100%;}

/* etc ------------------------------- */
.tc, .btn_center {text-align:center !important;}
.tl, .btn_left {text-align:left !important;}
.tr, .btn_right {text-align:right !important;}

.btn_center, .btn_left, .btn_right {margin:20px 0;}

.cboth {clear:both;}
.hidden {overflow:hidden;}
.bdnone {border:0;}

.inblock {display:inline-block;}
.dblock {display:block;}

.fl {float:left;}
.fr {float:right;}

th, .fontb, strong {font-weight:500;}

i {font-style:normal;}


body::-webkit-scrollbar,
.table_1024px::-webkit-scrollbar {
  width: 8px;  /* 스크롤바의 너비 */
}

body::-webkit-scrollbar-thumb,
.table_1024px::-webkit-scrollbar-thumb  {
  height: 30%; /* 스크롤바의 길이 */
  background: #B9B9B9; /* 스크롤바의 색상 */
  
  border-radius: 10px;
}

body::-webkit-scrollbar-track,
.table_1024px::-webkit-scrollbar-track {
  background: #D6D6D6;  /*스크롤바 뒷 배경 색상*/
  border-radius: 10px;
}

/* input ------------------------------- */
/* 모바일에서 스타일 제거 */
input[type=text], input[type="password"], input[type="button"], input[type="image"], input[type="submit"], input[type="search"], input[type="email"], input[type="url"], input[type="number"], input[type="tel"], /* select, */ textarea {-webkit-appearance:none; -moz-appearance:none; appearance:none; -webkit-border-radius:0; -moz-box-size:border-box; box-sizing:border-box;}
button::-moz-focus-inner, input::-moz-focus-inner {border:0; padding:0;} /* button 태그 속성 reset하기 */
/* 기본스타일 정의 */
input[type=text], input[type="password"], input[type="search"], input[type="email"], input[type="url"], input[type="number"], input[type="tel"], select, textarea {border:solid 1px #ccc; padding:5px; border-radius:1px;}
input[type="button"] {cursor:pointer; overflow:visible; white-space:nowrap; border-radius:1px;}
/* select {padding-right:7px; background:#fff url(../DR0001IMG/board/icon_arrow_select.png) 94% 50% no-repeat; background-size:8px;}
select::-ms-expand {display:none;} */ /* IE 10, 11의 네이티브 화살표 숨기기 */
textarea {width:100%; height:auto;}
/* input[type=text]:focus, input[type="password"]:focus, select:focus, textarea:focus {border:1px solid #999; box-shadow:0px 0px 3px #a3a3a3;} */
/* 배경으로 지정해둔 이미지랑 겹칠때 해당 select 박스의 css에 속성을 추가해준다. select {-webkit-appearance:listbox;} */

input:focus{background-color: #f4f5f7; border: 1px solid #EDEDED;}
textarea:focus{background-color: #f4f5f7; border: 1px solid #EDEDED;}

/* 공통 체크박스 */
.b_checkbox{display: none}
.b_check_txt{cursor: pointer;display: inline-block;padding-left: 5px;}
.b_check{display: inline-block;width: 20px;  height: 20px;  border: 1px solid #dddddd;vertical-align: middle;cursor: pointer;text-align: center;border-radius: 6px;}
input.b_checkbox:checked + label.b_check{background-color: var(--color-Main-Color-red); border: none;}
.b_check i{opacity: 0;color: #fff;vertical-align: text-top;}
input.b_checkbox:checked + label.b_check i{opacity: 1;font-size: 18px;}

#black_bg{position: fixed;top: 0;left: 0;right: 0;z-index: 20;bottom: 0;background-color: rgba(0, 0, 0, 0.5);}




:root {
  --header-side-padding: 120px;
  --header-height: 72px;
}


/* ========================================
   헤더
======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  width: 100%;
  height: var(--header-height);

  color: #fff;
  background-color: transparent;

  isolation: isolate;

  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    backdrop-filter 0.3s ease,
    transform 0.35s ease;
    
}
.header.is-header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 100%;
  padding-inline: var(--header-side-padding);
}

/* ========================================
   로고
======================================== */

.header-logo {
  position: relative;

  display: flex;
  align-items: center;
  flex-shrink: 0;

  width: 164px;
}

.header-logo img {
  display: block;
  width: 164px;
  height: auto;

  transition: opacity 0.3s ease;
}

/* 기본 상태: 흰색 로고 표시 */
.header-logo .logo-white {
  opacity: 1;
}

/* 컬러 로고를 흰색 로고 위에 겹침 */
.header-logo .logo-color {
  position: absolute;
  top: 50%;
  left: 0;

  opacity: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ========================================
   오른쪽 영역
======================================== */

.header-right {
  display: flex;
  align-items: center;
  gap: 54px;
}

/* ========================================
   메뉴
======================================== */

.gnb {
  display: flex;
  align-items: center;
  gap: 54px;
}

.gnb a {
  position: relative;

  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.gnb a:hover {
  opacity: 0.65;
}

/* ========================================
   언어 선택
======================================== */

.language {
  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 16px;
}

.language-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.language-link:hover,
.language-link.active {
  color: #30cacb;
  font-weight: 600;
}

.language-divider {
  color: rgba(255, 255, 255, 0.35);

  transition: color 0.3s ease;
}

/* ========================================
   영상 위 헤더 가독성
======================================== */

.header::after {
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0) 100%
    );

  content: "";
  pointer-events: none;

  transition: opacity 0.3s ease;
}

/* ========================================
   밝은 섹션 위 컬러 헤더
======================================== */

.header.is-colored {
  color: #1a1a1a;

  background-color: rgba(255, 255, 255, 0.72);

  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
/* 영상용 그라데이션 제거 */
.header.is-colored::after {
  opacity: 0;
}

/* 흰색 로고 숨김 */
.header.is-colored .logo-white {
  opacity: 0;
}

/* 컬러 로고 표시 */
.header.is-colored .logo-color {
  opacity: 1;
}

/* 메뉴 색상 변경 */
.header.is-colored .gnb a {
  color: #1a1a1a;
}

.header.is-colored .gnb a:hover {
  color: #30cacb;
  opacity: 1;
}

/* 언어 선택 색상 변경 */
.header.is-colored .language-link {
  color: rgba(26, 26, 26, 0.45);
}

.header.is-colored .language-link:hover,
.header.is-colored .language-link.active {
  color: #30cacb;
}

.header.is-colored .language-divider {
  color: rgba(26, 26, 26, 0.2);
}

/* ========================================
   태블릿
======================================== */

@media (max-width: 1024px) {
  :root {
    --header-side-padding: 32px;
  }

  .header-right,
  .gnb {
    gap: 30px;
  }
}

/* ========================================
   모바일
======================================== */

@media (max-width: 767px) {
  :root {
    --header-side-padding: 20px;
    --header-height: 64px;
  }

  .header-logo,
  .header-logo img {
    width: 130px;
  }

  .header-right {
    gap: 18px;
  }

  .gnb {
    gap: 16px;
  }

  .gnb a,
  .language {
    font-size: 14px;
  }
}

@media (max-width: 580px) {
  .gnb {
    display: none;
  }
}

/* ========================================
   모바일 햄버거 버튼
======================================== */

.mobile-menu-button {
  position: relative;
  z-index: 310;

  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  width: 40px;
  height: 40px;
  padding: 0;

  border: 0;
  background-color: transparent;

  cursor: pointer;
}

.mobile-menu-button span {
  display: block;

  width: 24px;
  height: 2px;
  margin-left: auto;

  background-color: #fff;

  transform-origin: center;
  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-menu-button span:nth-child(2) {
  width: 18px;
}

/* 밝은 헤더일 때 햄버거 색상 */
.header.is-colored .mobile-menu-button span {
  background-color: #1a1a1a;
}

/* 메뉴가 열린 상태 */
.header.is-menu-open .mobile-menu-button span {
  background-color: #1a1a1a;
}

.header.is-menu-open .mobile-menu-button span:nth-child(1) {
  width: 24px;
  transform: translateY(8px) rotate(45deg);
}

.header.is-menu-open .mobile-menu-button span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header.is-menu-open .mobile-menu-button span:nth-child(3) {
  width: 24px;
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   모바일 메뉴 오버레이
======================================== */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;

  visibility: hidden;

  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  height: 100vh;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.header.is-menu-open .mobile-menu-overlay {
  visibility: visible;
  opacity: 1;
}

/* ========================================
   모바일 메뉴 패널
======================================== */

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 220;

  width: min(86vw, 420px);
  height: 100vh;
  height: 100dvh;

  visibility: hidden;

  background-color: rgba(255, 255, 255, 0.96);

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);

  transform: translateX(100%);

  transition:
    transform 0.45s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0.45s ease;

  will-change: transform;
}

.header.is-menu-open .mobile-menu-panel {
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  height: 100%;
  padding:
    calc(var(--header-height) + 54px)
    32px
    44px;
}

/* ========================================
   모바일 메뉴 목록
======================================== */

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 24px 0;

  border-bottom: 1px solid rgba(26, 26, 26, 0.1);

  color: #1a1a1a;
  font-size: 34px;
  font-weight: 600;
  text-decoration: none;

  opacity: 0;
  transform: translateX(35px);

  transition:
    color 0.3s ease,
    opacity 0.45s ease,
    transform 0.45s ease;
}

.mobile-menu-nav a span {
  color: rgba(26, 26, 26, 0.35);
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu-nav a:hover {
  color: var(--color-Main);
}

.header.is-menu-open .mobile-menu-nav a {
  opacity: 1;
  transform: translateX(0);
}

.header.is-menu-open .mobile-menu-nav a:nth-child(1) {
  transition-delay: 0.16s;
}

.header.is-menu-open .mobile-menu-nav a:nth-child(2) {
  transition-delay: 0.22s;
}

/* ========================================
   모바일 언어 선택
======================================== */

.mobile-language {
  padding-top: 24px;

  border-top: 1px solid rgba(26, 26, 26, 0.1);

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.4s ease 0.28s,
    transform 0.4s ease 0.28s;
}

.header.is-menu-open .mobile-language {
  opacity: 1;
  transform: translateY(0);
}

.mobile-language-title {
  display: block;
  margin-bottom: 14px;

  color: rgba(26, 26, 26, 0.45);
  font-size: 12px;
}

.mobile-language-list {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(26, 26, 26, 0.25);
}

.mobile-language-link {
  color: rgba(26, 26, 26, 0.45);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-language-link.active,
.mobile-language-link:hover {
  color: var(--color-Main);
}

/* 메뉴가 열렸을 때 컬러 로고 */
.header.is-menu-open .logo-white {
  opacity: 0;
}

.header.is-menu-open .logo-color {
  opacity: 1;
}

/* 메뉴가 열렸을 때 헤더 배경 */
.header.is-menu-open {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: none;

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header.is-menu-open::after {
  opacity: 0;
}

/* 스크롤 잠금 */
body.is-menu-open {
  overflow: hidden;
}

/* ========================================
   모바일
======================================== */

@media (max-width: 768px) {
  :root {
    --header-side-padding: 20px;
    --header-height: 64px;
  }

  .header-logo,
  .header-logo img {
    width: 132px;
  }

  .header-right {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu-overlay,
  .mobile-menu-panel {
    display: none;
  }
}

.site-footer {
  width: 100%;
  padding: 50px 0 64px;
  background-color: #111;
}

.site-footer .wrapper {
  width: 100%;
  padding: 0 60px;
  height:inherit;
}

.site-footer .inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* 상단 */

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: 220px;
  height: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--color-Main);
}

/* 하단 */

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;

  padding-top: 26px;
}

.footer-information {
  flex: 1;
  min-width: 0;
}

.footer-address {
  color: #9a9a9a;
  font-size: 16px;
  font-style: normal;
}

.footer-address p {
  margin: 0;
  color: #9a9a9a;

}


.footer-address p + p {
  margin-top: 5px;
}

.footer-company {
  margin-top: 28px;
}

.footer-company dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;

  margin: 0;
}

.footer-company dl > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-company dt {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.footer-company dd {
  margin: 0;

  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
}

.footer-company a {
  color: inherit;
  text-decoration: none;
}

.footer-copyright {
  margin: 14px 0 0;

  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
}

/* Family Site */

.footer-family {
  flex: 0 0 200px;
}

.family-select {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  outline: none;

  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;

  appearance: none;
  cursor: pointer;
}

.family-select:focus {
  border-color: var(--color-Main);
}

.family-select option {
  color: var(--font-main);
  background-color: #fff;
}

/* 접근성 숨김 */

.blind {
  position: absolute;

  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;

  border: 0;

  clip: rect(0, 0, 0, 0);
}

/* 태블릿 */

@media (max-width: 1024px) {
  .site-footer .wrapper {
    padding: 0 40px;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer-nav {
    gap: 26px;
  }
}

/* 모바일 */

@media (max-width: 767px) {
  .site-footer {
    padding: 42px 0 50px;
  }

  .site-footer .wrapper {
    padding: 0 20px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-nav {
    width: 100%;
    gap: 24px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .footer-address {
    font-size: 13px;
  }

  .footer-company dl {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-family {
    position: relative;
    flex: 0 0 auto;
  }

  .footer-family .nice-select .list {
    top: auto;
    bottom: calc(100% + 8px);

    margin-top: 0;
    margin-bottom: 0;

    max-height: 180px;
    overflow-y: auto;
  }
}



.go-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  border: 0;
  border-radius: 50%;

  background-color: #fff;
  color: #1a1a1a;

  font-size: 24px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  border:1px solid #ddd;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

.go-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



@media (max-width: 767px) {
  .go-top {
    right: 20px;
    bottom: 20px;

    width: 46px;
    height: 46px;

    font-size: 21px;
  }
}

.nice-select span{color: #fff;}

.footer-family select.family-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: none;
}

/* ========================================
   Footer Family Select
======================================== */

.footer-family {
  position: relative;
  width: 200px;
}

/* 원본 select 기본 화살표 제거 */
.footer-family .family-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Nice Select 본체 */
.footer-family .nice-select {
  width: 100%;
  height: 46px;
  padding: 0 44px 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;

  background-color: rgba(255, 255, 255, 0.03);

  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  line-height: 44px;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* hover / open */
.footer-family .nice-select:hover,
.footer-family .nice-select.open {
  border-color: #30cacb;
  background-color: rgba(48, 202, 203, 0.06);

  box-shadow:
    0 0 0 3px rgba(48, 202, 203, 0.08);
}

/* 현재 선택 텍스트 */
.footer-family .nice-select .current {
  display: block;

  overflow: hidden;

  color: rgba(255, 255, 255, 0.88);
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 기본 세모 제거 후 커스텀 */

/* 옵션 리스트 */
.footer-family .nice-select .list {
  left: 0;

  width: 100%;
  margin-top: 8px;
  padding: 8px 0;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;

  background-color: #111;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.38);

  overflow: hidden;
}

/* 옵션 */
.footer-family .nice-select .option {
  min-height: 40px;
  padding: 0 18px;

  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 40px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

/* 옵션 hover */
.footer-family .nice-select .option:hover,
.footer-family .nice-select .option.focus,
.footer-family .nice-select .option.selected.focus {
  background-color: rgba(48, 202, 203, 0.1);

  color: #fff;
}

/* 선택된 옵션 */
.footer-family .nice-select .option.selected {
  color: #30cacb;
  font-weight: 500;
}

/* disabled 옵션 */
.footer-family .nice-select .option.disabled {
  display: none;
}

/* 모바일 */
@media (max-width: 767px) {
  .footer-family {
    width: 100%;
    max-width: 220px;
  }

  .footer-family .nice-select {
    height: 44px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .footer-family .nice-select {
    position: relative;
    overflow: visible;
  }

  .footer-family .nice-select .list {
    top: auto !important;
    bottom: calc(100% + 8px) !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    transform-origin: 50% 100%;
  }

  .footer-family .nice-select.open .list {
    top: auto !important;
    bottom: calc(100% + 8px) !important;
  }
}

.footer-ai-notice {
  margin: 2px 0 0px;

  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

@media (max-width: 767px) {
  .footer-ai-notice {
    margin-bottom: 6px;

    font-size: 12px;
    line-height: 1.45;
  }
}