/* 초기화 */
:root {
  --transition-basic: .3s;
  --transition-custom: .4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-custom2: 1s ease-in-out;
  --transition-custom3: 1.5s ease;
  --transition-custom4: 0.8s ease-in-out;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color: #191919;
  font-family: 'SUIT', sans-serif;
  font-size: 62.5% !important;
  word-break: keep-all;
  word-wrap: break-word;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent !important;
  animation: entry .3s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-size: 1.6rem;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

img {
  max-width: 100%;
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
  -webkit-appearance: none;
  background: none;
}

select {
  outline: none;
  border: 1px solid transparent;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
}

input,
textarea {
  font-family: inherit;
  outline: none;
  border: 1px solid transparent;
}

:focus {
  outline: none;
}

::placeholder {
  color: #A4A4A4;
}

em,
i {
  font-style: normal;
}

@-webkit-keyframes entry {
  to {
    opacity: 1;
  }
}

@keyframes entry {
  to {
    opacity: 1;
  }
}

@media screen and (max-width:1200px) {}

@media screen and (max-width:1024px) {}

@media screen and (max-width:768px) {}

@media screen and (max-width:576px) {}


.hidden {
  overflow: hidden;
}

/* 블라인드 */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}


/* 줄바꿈 */
.mo-only{display: none;}
@media screen and (max-width:1200px) {
  .lg {
    display: none;
  }
}

@media screen and (max-width:1024px) {
  .md {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .sm {
    display: none;
  }
  .mo-only{display: block;}
}

@media screen and (max-width:576px) {
  .xs {
    display: none;
  }
}


/* 블록 */
.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}


.ellip {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-2 {
  -webkit-line-clamp: 2;
}

/* Ele Position */
.ele-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-custom4), transform var(--transition-custom4);
}
.ele-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity var(--transition-custom4), transform var(--transition-custom4);
}

.ele-blur {
  letter-spacing: 0.05em;
  filter: blur(20px);
  transition: letter-spacing var(--transition-custom4), filter var(--transition-custom4);
}

.ele-delay1 {
  transition-delay: .1s;
}

.ele-delay2 {
  transition-delay: .2s;
}

.ele-delay3 {
  transition-delay: .3s;
}

.ele-delay4 {
  transition-delay: .4s;
}

.ele-delay5 {
  transition-delay: .5s;
}

.ele-delay6 {
  transition-delay: .6s;
}

.ele-delay7 {
  transition-delay: .7s;
}

.ele-delay8 {
  transition-delay: .8s;
}

.ele-delay9 {
  transition-delay: .9s;
}

.ele-delay10 {
  transition-delay: 1s;
}

.ele-delay11 {
  transition-delay: 1.1s;
}

.ele-delay12 {
  transition-delay: 1.2s;
}

.ele-up.in-view,
.ele-down.in-view {
  opacity: 1;
  transform: translateY(0);
}

.ele-blur.in-view {
  letter-spacing: 0em;
  filter: blur(0);
}

/* 컨테이너 */
.container {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  position: relative;
}

.container.w1760 {
  max-width: 1760px;
}

.container.w1280 {
  max-width: 1280px;
}


/* 메인 */
#main {}

/* 헤더 */

/*header*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

#header:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .2);
  z-index: 3;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#header .logo {
}

#header .logo img {
  filter: brightness(0) invert(1);
}

#header .gnb {
}

#header .gnb > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  --gnb-height: 0px;
  /* 초기 변수 선언 */
}

#header .gnb > ul > li:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  height: var(--gnb-height);
  background-color: #e7f2f9;
}

#header .gnb > ul>li {
  position: relative;
}

#header .gnb > ul>li>a {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  display: block;
  padding: 35px 0;
  min-width: 178px;
  text-align: center;
}

#header .depth02 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 30px 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

#header .depth02 li a {
  font-size: 1.8rem;
  color: #424242;
  font-weight: 500;
  padding: 7px 0;
  display: block;
}

#header .header-bg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  background: #fff url(/asset/img/common/header_bg01.png)no-repeat left center;
}

#header.down,
#header.hover {
  background-color: #fff;
}
#header.down:before,
#header.hover:before {
  background-color: #d2d2d2;
}
#header.down .logo img,
#header.hover .logo img {
  filter: none;
}

#header.down .gnb > ul>li:hover,
#header.hover .gnb > ul>li:hover {
  background-color: #e7f2f9;
}

#header.hover .depth02,
#header.hover .header-bg,
#header.hover .gnb > ul > li:hover:before {
  opacity: 1;
  visibility: visible;
}
#header.down .gnb > ul > li > a,
#header.hover .gnb > ul > li > a{
  color: #424242;
}
/*moblie*/
#header .m_btn {
  display: none;
  width: 24px;
  text-align: right;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 0;
}

#header .m_btn i {
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: #fff;
  transition: all 0.5s;
}

#header.down .m_btn i{
  background-color: #111;
}
#header .m_btn i:nth-of-type(2) {
  width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
  margin: 11px 0 -2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
  width: 0;
  margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
  margin: 0 0 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.m_menu_bg {
  z-index: 10000;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  cursor: pointer;
}

.m_menu {
  z-index: 10001;
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  max-width: 80%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.5s;
  overflow-y: auto;
}

.m_menu.on {
  right: 0;
}

.m_menu .top_box {
  position: relative;
  padding: 10px;
  height: 45px;
  box-sizing: border-box;
}

.m_menu .top_box .close_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.m_menu .top_box .close_btn i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.m_menu .top_box .close_btn i:first-of-type {
  -webkit-transform: rotate(45deg) translate(9px, 9px);
  -moz-transform: rotate(45deg) translate(9px, 9px);
  -ms-transform: rotate(45deg) translate(9px, 9px);
  -o-transform: rotate(45deg) translate(9px, 9px);
  transform: rotate(45deg) translate(9px, 9px);
}

.m_menu .top_box .close_btn i:last-of-type {
  -webkit-transform: rotate(-45deg) translate(-7px, 8px);
  -moz-transform: rotate(-45deg) translate(-7px, 8px);
  -ms-transform: rotate(-45deg) translate(-7px, 8px);
  -o-transform: rotate(-45deg) translate(-7px, 8px);
  transform: rotate(-45deg) translate(-7px, 8px);
}

.m_menu .login_box {
  padding: 20px 0;
  background-color: #292929;
  text-align: center;
}

.m_menu .login_box a {
  position: relative;
  padding: 0 30px;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.04em;
}

.m_menu .login_box a:first-of-type:before {
  content: '';
  position: absolute;
  right: -1px;
  top: calc(50% - 7px);
  width: 2px;
  height: 15px;
  background-color: #fff;
}

.m_menu .gnb_box {
  border-top: 1px solid #ddd;
}

.m_menu .gnb_box>ul>li {
  border-bottom: 1px solid #dddddd;
}

.m_menu .gnb_box>ul>li>a {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222222;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .gnb_box .depth02 {
  display: none;
  padding: 10px 0;
  background-color: #1881c6;
}

.m_menu .gnb_box .depth02 li a {
  position: relative;
  display: block;
  padding: 5px 15px;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  #header {
    padding: 10px 0;
  }

  #header .m_btn {
    display: flex;
  }

  #header .gnb {
    display: none;
  }

  #header .logo {
  }

  #header .logo img {
    max-height: 43px;
  }

  #header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media all and (max-width:576px){
  #header .logo img{
    max-height: 33px;
  }
}

/* 푸터 */
#footer {
  background-color: #fff;
  padding: 50px 0;
}

#footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footer .foot-info {
  display: flex;
  gap: 15px 45px;
  overflow: hidden;
  flex-wrap: wrap;
}

#footer .foot-info .info-li {
  position: relative;
}

#footer .foot-info .info-li+.info-li:before {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #020202;
  content: '';
}

#footer .foot-img {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

@media all and (max-width:768px) {
  #footer {
    padding: 40px 0;
  }

  #footer .container {
    flex-direction: column;
    gap: 30px;
  }

  #footer .foot-img {
    justify-content: center;
  }

  #footer .foot-info {
    gap: 0px 20px;
  }

  #footer .foot-info .info-li+.info-li:before {
    left: -11px;
  }
}

/* 공통 타이틀 */
.common-tit-box .before-tag {
  position: relative;
  width: fit-content;
}

.common-tit-box.text-center .before-tag {
  margin: 0 auto;
}

.common-tit-box .before-tag:before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: 100%;
  right: 100%;
  border-radius: 50%;
  background-color: #1881c6;
}
.common-tit-box .before-tag.bt-navy:before{
  background-color: #0b3958;
}

@media all and (max-width:1024px) {
  .common-tit-box .before-tag:before {
    width: 8px;
    height: 8px;
    right: auto;
    left: 0;
  }

}

/* 퀵 메뉴 */
.quick-menu-box {
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(31, 59, 104, .3);
  z-index: 3;
  border-radius: 10px;
  padding: 25px 10px;
  border: 1px solid rgba(255, 255, 255, .3);
}

.quick-menu-box .quick-overscroll {
  max-height: 70vh;
  overflow-y: auto;
}

.quick-menu-box .quick-overscroll::-webkit-scrollbar {
  width: 6px;
  /* 세로 스크롤바 너비 */
  height: 6px;
  /* 가로 스크롤바 높이 */
}

.quick-menu-box .quick-overscroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.quick-menu-box .quick-overscroll::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}

.quick-menu-box .quick-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-menu-box .quick-link.no-link {
    cursor: default;
    pointer-events: none; /* 클릭 이벤트 자체를 완전히 차단 */
}

.quick-menu-box .quick-link {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/0.375;
  width: 160px;
}

.quick-menu-box .quick-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.quick-menu-box .quick-link:hover img {
  transform: scale(1.05);
}

.quick-menu-box .menu-trigger {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 60px;
  background: #333;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  /* 왼쪽만 둥글게 */
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
  display: none;

}


.quick-menu-box .menu-trigger svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

/* 메뉴가 열렸을 때 화살표 회전 */
.quick-menu-box.active .menu-trigger{
  background-color: #1881c6;
}
.quick-menu-box.active .menu-trigger svg {
  transform: rotate(180deg);
}

@media all and (max-width:1400px) {
  .quick-menu-box {
    right: 20px;
  }
}

@media all and (max-width:1024px) {
  .quick-menu-box {
    transform: translate(calc(100% + 20px),-50%);
    transition: transform .6s;
  }
  .quick-menu-box .menu-trigger{
    display: flex;
  }
  .quick-menu-box.active{
    transform: translate(0,-50%);
  }
}

@media all and (max-width:768px){
  .quick-menu-box{
    right: 10px;
    padding: 15px 5px;
    transform: translate(calc(100% + 10px),-50%);
  }
  .quick-menu-box .quick-list{
    gap: 5px;
  }
  .quick-menu-box .menu-trigger{
    width: 25px;
    height: 40px;
  }
  .quick-menu-box .quick-link{
    width: 100px;
  }
}


/* 개인정보처리방침 */
.privacy-pop-up {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, .6);
}

.privacy-pop-up.active {
  display: block;
}

.privacy-pop-up .pop-wrap {
  width: 1200px;
  max-width: 95%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 60px;
  border-radius: 10px;
}

.privacy-pop-up .pop-closed {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url(/asset/img/common/btn_close.svg) no-repeat 50% 50%;
  cursor: pointer;
  z-index: 8040;
}

.privacy-pop-up .pop-contents {
  max-height: 65vh;
  overflow-y: auto;
}

/* 1. 스크롤바 전체 너비 설정 */
.privacy-pop-up .pop-contents::-webkit-scrollbar {
  width: 5px;
  /* 세로 스크롤바 너비 */
  height: 5px;
  /* 가로 스크롤바 높이 */
}

/* 2. 스크롤바 트랙(바탕) 설정 */
.privacy-pop-up .pop-contents::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 바탕색 */
  border-radius: 10px;
}

/* 3. 스크롤바 막대(움직이는 부분) 설정 */
.privacy-pop-up .pop-contents::-webkit-scrollbar-thumb {
  background: #ccc;
  /* 막대 색상 */
  border-radius: 10px;
}

/* 4. 막대에 마우스를 올렸을 때(Hover) */
.privacy-pop-up .pop-contents::-webkit-scrollbar-thumb:hover {
  background: #999;
  /* 좀 더 진하게 */
}

@media all and (max-width:1024px) {
  .privacy-pop-up .pop-closed {
    width: 70px;
    height: 70px;
  }
}

@media all and (max-width:650px) {
  .privacy-pop-up .pop-closed {
    width: 55px;
    height: 55px;
  }

  .privacy-pop-up .pop-wrap {
    padding: 40px 30px;
  }
}

@media all and (max-width:576px) {
  .privacy-pop-up .pop-wrap {
    padding: 20px 15px;
  }
}

/* 리스트 스타일 */
/* dashed */
.list-style-dashed {
  padding-left: 16px;
}
.list-style-dashed > li{
  list-style: '- ';
}

@media all and (max-width:1024px){
  .list-style-dashed{
    padding-left: 14px;
  }
}
@media all and (max-width:576px){
  .list-style-dashed{
    padding-left: 11px;
  }
}

.topBtn-quick {
  position: fixed;
  bottom:100px;
  right: 74px;
  z-index:1000;
}
.topBtn-quick button {
  color: #fff;
  text-align: center;
  background: #fff;
  width:50px;
  height:50px;
  border-radius:50%;
  color:#333;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topBtn-quick button p {
	font-weight:500;
	font-size:12px;
	color:#333;
}

.topBtn-quick button:hover {
background: #01b4e5;
}
.topBtn-quick button:hover p {
color:#fff;
}

.topBtn-quick.on button {
border:1px solid #ddd;
}


@media all and (max-width:1024px){
.topBtn-quick {
  bottom: 20px;
  right: 20px;
}

}