.user-wrap header {
  width: calc(100% - 40px);
  max-width: 1480px;
  padding: 1rem 2rem;
  background-color: #fff1;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
}

.pc-header {
  align-content: center;
  height: 60px;
}

.pc-header h1 a img {
  height: 40px;
}

.pc-header .login-action {
  min-height: unset;
  font-weight: 300;
  font-size: 1.4rem;
}

.pc-header .login-action a {
  color: var(--new-light);

}

.pc-header .user-dropdown {
  position: absolute;
  top: 100%;
  left: -50%;
  background: #141414;
  border: 1px solid #303030;
  border-radius: 4px;
  width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.pc-header .user-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-header .user-dropdown li {
  padding: 10px;
  cursor: pointer;
}

.pc-header .user-dropdown li:hover {
  background-color: #252525;
}

.header-scrolled {
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  background-color: var(--new-dark);
  z-index: 999;
  /* 아래 살짝 그림자 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.landing-logo {
  color: var(--new-light);
  font-size: 2rem;
}

.user-wrap header nav {
  display: flex;
  margin-left: auto;
  margin-right: 10rem;
}

.user-wrap header.black-menu .landing-logo,
.user-wrap header.black-menu nav ul li a,
.user-wrap header.black-menu nav ul li span,
.user-wrap header.black-menu .login-action,
.user-wrap header.black-menu .user-info span,
.user-wrap header.black-menu .user-info button {
  color: var(--new-light);
}

.user-wrap nav ul li a {
  display: block;
  color: var(--new-light);
}

.user-wrap nav ul li a.router-link-active {
  font-weight: 900;
}

.user-wrap nav ul li span {
  display: block;
  padding: .5rem 2rem;
  color: var(--new-light);
  position: relative;
}

.user-wrap nav ul li span::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--purple);
  transition: .3s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 50% 50%;
}

.user-wrap nav ul li:hover span::before {
  transform: scale3d(1, 1, 1);
}

.user-wrap nav ul li span.router-link-active {
  font-weight: bold;
}

.user-wrap .user-info {
  margin-left: 5rem;
  position: relative;
}

.user-wrap .user-info span,
.user-wrap .user-info button {
  color: #ffffff;
}

.user-info.sub-page span,
.user-info.sub-page button {
  color: #ffffff;
}

.login-action {
  color: var(--new-light);
  background-color: transparent;
  margin-left: auto;
}

.sub-menu {
  width: 100%;
  height: 0;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .5s ease-in-out;
}

.user-wrap nav ul li:hover .sub-menu {
  height: auto;
  opacity: 1;
  background-color: #141414;
}

.sub-menu>li {
  white-space: nowrap;
  padding: 1rem;
  text-align: center;
}

.sub-menu>li:hover {
  background-color: #303030;
}

/* 모바일 헤더 css */
.mobile-header {
  width: 100vw;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: var(--new-dark);
  color: var(--new-light);
  padding: 0 2.4rem;
}

.mobile-header h1 a img {
  height: 40px;
}

.mobile-header .mobile-menu {
  width: 32px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: auto;
}

.mobile-header .mobile-menu span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 1rem;
  background-color: var(--new-light);
}



/* 모바일 menu슬라이더 css */
.mobile-header .mobile-header-ul {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: fixed;
  top: -10px;
  right: -20px;
  height: 100%;
  width: calc(100% + 40px);
  height: 100vh;
  padding: 2rem;
  background-color: var(--new-dark);
  box-shadow: -2px 0 10px #000;
  transform: translateX(100%);
  transition: .3s ease-in-out;
  z-index: 1000
}

.mobile-header .mobile-header-ul * {
  color: var(--new-light);
}

.mobile-header .mobile-header-ul .mobile-menu-closeBtn {
  width: 24px;
  height: 24px;
  display: block;
  margin-left: auto;
}

.mobile-header .mobile-header-ul .mobile-menu-subMenuWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header .mobile-header-ul .mobile-menu-triangle {
  width: 14px;
  min-height: unset;
  display: inline-block;
  transform: translateY(2.5px) rotate(27deg);
  transform-origin: center center;
  transition: .3s ease-in-out;
}

.mobile-header .mobile-header-ul .mobile-menu-triangle.open {
  transform: translateY(2.5px) rotate(180deg);
}

.mobile-header .mobile-header-ul.open {
  transform: translateX(0);
}

.mobile-header .mobile-header-ul .mobile-menu-sub-ul {
  display: none;
  width: 100%;
  height: 0px;
  transition: .3s ease;
  padding: 0 1.6rem;
}

.mobile-header .mobile-header-ul .mobile-menu-sub-ul a {
  display: block;
  width: 100%;
  padding: 1rem 0;
}

.mobile-header .mobile-header-ul .mobile-menu-sub-ul.open {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  height: fit-content;
  padding: 1.6rem;
  margin-top: 2rem;
}

@media(max-width:767px) {
  .mobile-header {
    padding: 0 1.2rem;
  }
}

/* 모바일 menu슬라이더 css */


/* footer Css */

footer {
  width: 100%;
  background-color: #000;
}

footer .footer-wrap {
  padding: 2rem;
  gap: 5rem;
}

footer .footer-wrap .top img {
  width: 200px;
}

footer .footer-wrap .bottom {
  gap: 1rem;
}

footer .footer-wrap .bottom .footer-information p {
  font-size: 1.3rem;
  color: #ffffff80;
}

footer .footer-wrap .bottom .footer-information .bar {
  width: 1px;
  height: 12px;
  display: block;
  background-color: #ffffff80;
}

footer .footer-wrap .bottom .familySite-wrap {
  width: 160px;
  height: fit-content;
  padding: 1.5rem 0;
  border: 1px solid #424242;
  display: flex;
  justify-content: center;
  position: relative;
  color: #fff;
}

footer .footer-wrap .bottom .familySite-wrap .familySite-modal {
  width: 160px;
  position: absolute;
  bottom: 110%;
  left: 0;

}

footer .footer-wrap .bottom .familySite-wrap .familySite-modal li {
  padding: 1rem;
  border: 1px solid #424242;
  background-color: #141414;
  transition: .2s;
}

footer .footer-wrap .bottom .familySite-wrap .familySite-modal li:hover {
  background-color: #252525;
}

footer .footer-wrap .bottom .familySite-wrap .familySite-modal li:not(:last-child) {
  margin-bottom: .5rem;
}


/*footer .footer-wrap .left img {
  width: 200px;
}

footer .footer-wrap .center {
  position: absolute;
  left: 30%;
}


footer .footer-wrap .right .familySite-wrap {
  width: 160px;
  padding: 1.5rem 0;
  margin-left: auto;
  margin-bottom: 2rem;
  border: 1px solid #c9c9c9;
  display: flex;
  justify-content: center;
  position: relative;
}

footer .footer-wrap .right .familySite-modal {
  width: 160px;
  position: absolute;
  bottom: 110%;
  left: 0;
  border: 1px solid #c9c9c9;
  transition: .2s;
}

footer .footer-wrap .right .familySite-modal:hover {
  background-color: #efefef;
  color: #000;
}

footer .footer-wrap .right .familySite-modal li a {
  display: inline-block;
  width: 100%;
  width: 100%;
  height: 100%;
  padding: 1rem .5rem;
} */








/* footer .footer-logoImgBox {
  width: fit-content;
  margin: 0 auto;
}

footer .footer-infoWrap {
  padding: 0 10rem 5rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
}

footer .footer-infoWrap .footer-ul {
  height: fit-content;
}

footer .footer-infoWrap .footer-ul-wrap .footer-ul {
  gap: .3rem;
}

footer .footer-infoWrap .footer-ul-wrap .footer-ul .footer-ul-li-mainTitle {
  display: flex;
}

footer .footer-infoWrap .footer-ul-wrap .footer-ul:not(:last-child) .footer-ul-li-mainTitle::after {
  content: '';
  display: block;
  align-self: center;
  width: 1px;
  height: 12px;
  margin-left: 2rem;
  background-color: var(--new-gray);
}

footer .footer-infoWrap .footer-ul-wrap .footer-ul li a {
  display: inline-block;
  width: 100%;
  color: #afafaf;
}

footer .footer-infoWrap .footer-ul-wrap .footer-ul li:not(:first-child) a {
  transition: .2s;
}

footer .footer-infoWrap .footer-ul-wrap .footer-ul li:not(:first-child):hover a {
  color: var(--new-light);
}

footer .footer-information {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

footer .footer-infoWrap .footer-information div:last-child span {
  display: inline-block;
  margin-left: 5rem;
}

footer .footer-infoWrap .footer-information .address>div {
  padding-left: 3.8rem;
} */


/* 아이디 비밀번호 찾기 */
.findAccount-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.findAccount-wrap .arrow-icon {
  width: 20px;
  position: absolute;
  top: -4rem;
  left: -3rem;
  rotate: 180deg;
}

.findAccount-wrap .findAccount-notice {
  text-align: center;
}

.findAccount-wrap .find-btn-wrap button {
  color: #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
  padding: 2rem 10rem;
  transition: .2s ease;
}

.findAccount-wrap .find-btn-wrap button.isClicked {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.findAccount-wrap .find-id-btn,
.find-pw-btn {
  border-radius: 2rem;
  background-color: #7051d3;
  color: #fff;
}

.form-wrap {
  width: 100%;
  min-height: 320px;
}

.form-wrap .find-id-formWrap>div input,
.form-wrap .find-pw-formWrap>div input {
  background-color: transparent;
  border: 1px solid #808080;
  padding: 2rem 1rem;
  color: #fff;
}

.form-wrap .find-id-formWrap>div input:focus,
.form-wrap .find-pw-formWrap>div input:focus {
  border: 1px solid #fff;
}

.findAccount-wrap .success-id-find,
.findAccount-wrap .success-pw-find {
  margin-top: 5rem;
}

.findAccount-wrap .success-id-find p {
  font-size: 1.6rem;
}

.findAccount-wrap .success-id-find .find-id-wrap {
  border: 1px solid #ccc;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.findAccount-wrap .success-id-find .find-id-wrap input {
  margin-right: 1rem;
  cursor: pointer;
}

.findAccount-wrap .success-id-find .find-id-wrap label {
  font-weight: 900;
  cursor: pointer;
}

.findAccount-wrap .success-pw-find .findAccount-notice {
  text-align: left;
}

.findAccount-wrap .success-pw-find .form-group {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.findAccount-wrap .success-pw-find .form-group input {
  flex: 1 1 0;
  max-width: 290px;
}

/* 회원가입 */
.signUp-wrap .arrow-icon {
  width: 20px;
  position: absolute;
  top: -1rem;
  left: 1rem;
  rotate: 180deg;
}