.adm {
  position: relative;
  display: flex;
  gap: 2.4rem;
  margin-left: 6.4rem;
  white-space: nowrap;
  color: var(--white-color);
}

.adm svg {
  vertical-align: -2px;
  margin-right: 8px;
}

.adm .icon {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--white-color);
  stroke-width: 2;
}

#header {
  position: absolute;
  top: 2.4rem;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid transparent;
}

#header h1 {
  flex: 0 0 auto;
  font-size: 3.2rem;
  font-weight: 800;
  white-space: nowrap;
  user-select: none;
}

/* #header h1 img {
  height: 40px;
} */

#header .hd_wrap {
  display: flex;
  align-items: center;
}

.gnb {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.gnb > ul {
  display: flex;
}

.gnb > ul > li > a {
  position: relative;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 11.2rem;
  padding: 0 3.2rem;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white-color);
}

.gnb > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, 1px);
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.4s;
}

.gnb > ul > li:hover > a::after {
  width: calc(100% - 2.4rem);
}

.gnb > ul > li {
  position: relative;
  border-radius: 1.6rem 1.6rem 0 0;
}

.gnb > ul > li:hover {
  background: var(--primary-color);
}

.gnb > ul > li:hover ul {
  background: var(--primary-color);
}

.gnb > ul > li ul {
  position: absolute;
  top: auto;
  left: 0;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  height: 0;
  border-radius: 0 0 1.6rem 1.6rem;
  transition: 0.2s;
}

.gnb > ul > li:hover ul {
  padding-top: 1.6rem;
  padding-bottom: 2.4rem;
  height: auto;
}

.gnb > ul > li:focus-within ul {
  padding-top: 1.6rem;
  padding-bottom: 2.4rem;
  height: auto;
}

.gnb > ul > li ul li a {
  display: block;
  line-height: 3.2rem;
  white-space: nowrap;
  font-size: 1.4rem;
  text-align: center;
  color: var(--white-color);
}

.gnb > ul > li ul li a:hover {
  color: #ffff00;
}

.mbtn {
  display: none;
}

@media (max-width: 1024px) {
  .mbtn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 4rem;
    right: 1.6rem;
    z-index: 999;
    width: 32px;
    height: 32px;
    background: var(--lightgray-color);
    border: 1px solid var(--line-color);
    border-radius: 4px;
    /* background: rgba(255, 255, 255, 0.25); */
    font-size: 0;
  }



  .mbtn::before {

    content: "";

    position: absolute;

    top: 7px;

    left: 4px;

    right: 4px;



    height: 2px;

    background: var(--body-color);

  }



  .mbtn.on::before {

    display: none;

  }



  .mbtn::after {

    content: "";

    position: absolute;

    bottom: 7px;

    left: 4px;

    right: 4px;



    height: 2px;

    background: var(--body-color);

  }



  .mbtn.on::after {

    display: none;

  }



  .mbtn span::before {

    content: "";

    position: absolute;

    top: 14px;

    left: 4px;

    right: 4px;



    height: 2px;

    background: var(--body-color);

  }



  .mbtn.on span::before {

    transform: rotate(45deg);

  }



  .mbtn span::after {

    content: "";

    position: absolute;

    top: 14px;

    left: 4px;

    right: 4px;



    height: 2px;

    background: var(--body-color);

  }



  .mbtn.on span::after {

    transform: rotate(-45deg);

  }



  #header {

    height: 12rem;

  }



  #header .hd_wrap {

    height: 12rem;

  }



  .gnb {
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 999;
    width: 100vw;
    height: 150vh;
    background: var(--primary-color);
    padding: 12rem 1.6rem 0 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.4rem;
  }

  .gnb.on {
    left: 0;
  }

  .gnb::before {
    display: none;
  }

  .gnb:hover::before {
    display: none;
  }

  .gnb > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: var(--primary-color);
    border-top: 1px solid var(--line-color);
    max-height: 52rem;
    overflow-y: auto;
  }

  .gnb .adm {
    position: relative;
    display: flex;
    gap: 2.4rem;
    margin-left: 0;
    order: -1;
    height: 6.4rem;
    align-items: center;
    width: 100%;
    padding: 0 2.4rem;
    font-size: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  .gnb > ul > li > a {
    line-height: 5.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  .gnb > ul > li {
    position: relative;
  }

  .gnb > ul > li ul {
    position: static;
    top: auto;
    left: 0;
    z-index: 3;
    width: 100%;
    overflow: hidden;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: none;
    display: none;
  }

  .gnb:hover > ul > li ul {
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    border-radius: 0;
  }

  .gnb > ul > li:focus-within ul {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .gnb > ul > li:hover {
    background: var(--primary-color);
  }

  .gnb > ul > li:hover ul {
    background: var(--primary-color);
  }

  .gnb > ul > li > a {
    position: relative;
    line-height: 5.6rem;
    font-size: 1.9rem;
    padding: 0 2.4rem;
  }

  .gnb > ul > li ul li a {
    display: block;
    padding: 0 2.4rem;
    line-height: 4.8rem;
    white-space: nowrap;
    font-size: 1.6rem;
    text-align: left;
    background: #556783;
  }

  .gnb > ul > li ul li ~ li a {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  
}



.sub_title {

  position: relative;



  background-color: var(--primary-color);

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;

  /* border-left: 4px solid var(--point-color); */

  /* border-top: 4px solid var(--point-color); */

  text-transform: uppercase;



  color: var(--white-color);

  /* border-radius: 4rem 0 0 0; */

  overflow: hidden;



  min-height: 56rem;

}



.sub_title::before {

  content: "";

  position: absolute;

  inset: 0 0 0 0;

  background: rgba(0, 0, 0, 0.33) url(../images/pt-bg01.png);

}



.sub_title .title {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, calc(-50% + 2.4rem));



  margin: 0 0;

  width: calc(100% - 1.6rem);

  margin-bottom: 0;



  text-align: center;

}



.sub_title .title h2 {

  font-size: 6.4rem;

  font-weight: 800;

  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);

}

.sub_title .title p {

  margin-top: 1.6rem;

  font-size: 1.6rem;

  font-weight: 300;

}

@media (max-width: 768px) {

  .sub_title .title h2 {

    font-size: 4.8rem;

  }

}



.sub_nav {

  position: relative;

  margin-bottom: 8rem;



  background: var(--white-color);

  border-bottom: 1px solid var(--line-color);

  line-height: 6.4rem;

}



.sub_nav .w_inner {

  display: flex;

  justify-content: space-between;

}



.sub_nav .lnb ul {

  display: flex;

  justify-content: flex-end;

  gap: 0;

}



.sub_nav .lnb ul a {

  display: block;

  background: var(--white-color);



  white-space: nowrap;



  padding: 0 4rem;

}



.sub_nav .lnb ul li ~ li {

  border-left: 1px solid var(--line-color);

}



.sub_nav .lnb ul li.on a {

  border-top: 4px solid var(--point-color);

  margin-top: -4px;

}



.sub_nav .navigation {

  font-size: 1.4rem;

  white-space: nowrap;

}



.sub_nav .navigation .icon {

  width: 12px;

  height: 12px;

  stroke: var(--body-color);

  stroke-width: 2;

}



.sub_nav .lnb > a {

  display: none;

}



@media (max-width: 1200px) {

  .sub_nav .navigation {

    display: none;

  }



  .sub_nav .w_inner {

    justify-content: center;

  }

}



@media (max-width: 768px) {

  .sub_nav {

    position: relative;

    margin: 0 1.6rem;

    margin-top: -4rem;

    margin-bottom: 8rem;



    background: var(--white-color);

    border: 1px solid var(--line-color);



    border-top: 4px solid var(--primary-color);



    line-height: 6.4rem;

  }

  .sub_nav .w_inner {

    display: block;

    margin: 0 0;

  }



  .sub_nav .lnb ul {

    display: none;

  }



  .sub_nav .lnb > a {

    position: relative;

    display: block;

    padding: 0 1.6rem;

  }



  .sub_nav .lnb > a::after {

    content: "";

    position: absolute;

    top: 50%;



    transform: translate(0, -50%);

    right: 1.6rem;

    width: 24px;

    height: 24px;



    background: url(../lib/icon/chevron-down.svg) no-repeat center center/22px;

    opacity: 0.5;

  }



  .sub_nav .lnb > a.on::after {

    background: url(../lib/icon/chevron-up.svg) no-repeat center center/22px;

  }



  .sub_nav .lnb ul li ~ li {

    border-left: 0px solid var(--line-color);

  }

  .sub_nav .lnb ul li {

    border-top: 1px solid var(--line-color);

  }



  .sub_nav .lnb ul a {

    display: block;

    /* background: var(--white-color); */

    background: var(--background-color);

    white-space: nowrap;



    padding: 0 0;

    padding: 0 1.6rem;

  }



  .sub_nav .lnb ul li.on a {

    border-top: 0px solid var(--point-color);

    margin-top: 0px;

  }

}



.sub_content {

  margin-top: 8rem;

  margin-bottom: 12rem;

}



.sub_content .page_title {

  margin-bottom: 2.4rem;

}



.sub_content .page_title h3 {

  position: relative;

  padding: 1.6rem 0;

  /* border-bottom: 1px solid var(--line-color); */

  white-space: nowrap;



  text-align: center;

}



.sub_content .page_title h3::after {

  content: "";

  display: block;

  margin: 2.4rem auto;

  width: 12rem;

  height: 1px;



  background: var(--point-color);

}



.sub_content .page_title h3 strong {

  font-size: 4rem;

  font-weight: 700;

}



@media (max-width: 1440px) {

}



.sub_content .content p {

  font-size: 1.7rem;

  line-height: 2.4rem;

  opacity: 0.9;

}


.sub_content .content .sub_title_desc {
  line-height: 1.5;
  margin-bottom: 8rem;
  font-size: 3rem;
  font-weight: bold;
  color:#505050;
  text-align: center;
}



#footer {

  padding: 4rem 0 5.6rem 0;

  background: var(--footerbg-color);

  /* color: var(--lightgray-color); */

  border-top: 1px solid var(--line-color);



  font-size: 1.5rem;

  line-height: 2.4rem;

}



#footer .f_logo {

  max-width: 24rem;

  margin-bottom: 4rem;

}



#footer .lnk {

  margin-bottom: 5.6rem;

  padding: 5.6rem 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

}



#footer .lnk > ul {

  display: flex;

  gap: 8rem;

}



#footer .lnk > ul > li > a {

  display: block;

  font-size: 1.8rem;

  font-weight: 800;

  margin-bottom: 1.6rem;

}



#footer .lnk > ul ul a {

  display: block;

  line-height: 1.5;

}



#footer .customer_list {

  display: flex;

  gap: 1.6rem;



  margin-bottom: 1.6rem;

}



@media (max-width: 768px) {

  #footer .lnk {

    display: none;

  }



  #footer .customer_list {

    display: flex;

    flex-direction: column;

    gap: 0.8rem;

  }

}



#footer .inner {

  display: flex;

  flex-direction: column;

  /* justify-content: center;

  align-items: center; */

  gap: 8px;

}



#footer .info {

  display: flex;

  gap: 2.4rem;

}



#footer .info li {

  position: relative;

  /* text-align: center; */

  white-space: nowrap;

}



#footer .info li ~ li::before {

  content: "";

  position: absolute;

  top: 50%;

  left: -12px;



  transform: translate(0, -50%);



  width: 1px;

  height: 0.5em;



  background: #ccc;

}



@media (max-width: 768px) {

  #footer .ft_bottom {

    flex-direction: column;

  }

  #footer .info {

    flex-direction: column;

    gap: 0;

  }



  #footer .info li ~ li::before {

    display: none;

  }

}



#side_lnk {

  position: fixed;

  bottom: 12rem;

  right: 1.6rem;

  z-index: 100;



  display: flex;

  flex-direction: column;

  align-items: flex-end;



  opacity: 0;

  visibility: hidden;

}



#side_lnk.on {

  opacity: 1;

  visibility: visible;

}



#side_lnk .d_btn {

  position: relative;

  display: block;

  width: 6.4rem;

  height: 6.4rem;

  background: var(--primary-color);

  border-radius: 3.2em;

  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);

  text-align: center;

}



#side_lnk a {

  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: center;

  width: 6.4rem;

  height: 6.4rem;

  margin-bottom: 1.6rem;

  background: var(--white-color);

  border-radius: 3.2em;

  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);



  line-height: 6.4rem;

  color: var(--white-color);

  font-size: 1.2rem;



  overflow: hidden;

  transition: all 0.3s;

}



#side_lnk a::after {

  content: "";

  position: absolute;

  top: 0;

  right: 0;

  width: 6.4rem;

  height: 6.4rem;

}



#side_lnk a.naver::after {

  background: url(../lib/images/sns_naver.png) no-repeat center center/3.2rem;

}



#side_lnk a.kakao::after {

  background: url(../lib/images/sns_kakao.png) no-repeat center center/3.2rem;

}



#side_lnk a.naver:hover::after {

  background: url(../lib/images/sns_naver_w.png) no-repeat center center/3.2rem;

}



#side_lnk a.kakao:hover::after {

  background: url(../lib/images/sns_kakao.png) no-repeat center center/3.2rem;

}



#side_lnk a:hover {

  width: 22rem;

}



#side_lnk .kakao:hover {

  background: #fee500;

  color: #3c1e1e;

}



#side_lnk .naver:hover {

  background: #03c75a;

  color: #ffffff;

}



#side_lnk a span {

  margin-left: 3.2rem;

  width: 0;



  font-size: 1.4rem;

  white-space: nowrap;

  overflow: hidden;

  transition: all 0.3s;

}



#side_lnk .d_btn .icon {

  width: 32px;

  height: 32px;

  stroke: var(--white-color);

  stroke-width: 2;

}



@media (max-width: 768px) {

  #side_lnk {

    bottom: 4rem;

  }

}



#side_lnk a:hover span {

  width: 16rem;

}



.btel {

  text-align: right;

  overflow: hidden;

}



.btel i {

  font-size: 4rem;

  font-weight: 600;

}



.btel strong {

  display: block;

  font-size: 3.2rem;

  font-weight: 700;

  letter-spacing: -0.015em;

  margin: 0.8rem 0 0.8rem 0;

  white-space: nowrap;

}



@media (max-width: 768px) {

  .btel {

    text-align: left;

    overflow: hidden;

  }

}



#footer .ft_wrap {

  position: relative;

}



#family_link {

  position: absolute;

  top: 8rem;

  right: 0;

  z-index: 5;



  white-space: nowrap;

}



@media (max-width: 768px) {

  #family_link {

    top: 12rem;

  }

}



#family_link .f_link {

  position: relative;

  display: block;

  width: 16rem;

  height: 4rem;

  padding: 0 2.4rem;

  text-align: left;

  font-size: 1.4rem;

  text-align: left;

  color: var(--line-color);

  text-transform: uppercase;

  background: var(--primary-color);



  border-radius: 2rem 2rem 2rem 2rem;

  border: 1px solid rgba(255, 255, 255, 0.25);

}



#family_link .f_link.on {

  border-radius: 0 0 2rem 2rem;

  background: var(--body-color);

}



#family_link .f_link svg {

  position: absolute;

  right: 0.8rem;

  top: 1rem;

}



#family_link .f_link.on svg {

  transform: rotate(180deg);

}



#family_link .f_link .icon {

  width: 1.8rem;

  height: 1.8rem;

  stroke-width: 1;

  stroke: var(--white-color);

}



#family_link ul {

  display: none;

  position: absolute;

  bottom: 4rem;

  width: 100%;



  border: 1px solid rgba(255, 255, 255, 0.25);

  margin-top: -1px;

  z-index: 2;



  background: var(--body-color);



  border-radius: 2rem 2rem 0 0;

  overflow: hidden;

}



#family_link ul > li > a {

  display: block;

  padding: 0 2.4rem;

  font-size: 1.4rem;

  line-height: 3.9rem;

  color: var(--line-color);

}



#family_link ul > li ~ li > a {

  border-top: 1px solid rgba(255, 255, 255, 0.1);

}



#family_link ul > li > a:hover {

  background: var(--point-color);

}

