#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 999;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.on {
  background: var(--white-color);
  border-bottom: 1px solid var(--line-color);
}

#header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  white-space: nowrap;
  user-select: none;
}

#header h1 .left_logo {
  display: block;
  position: relative;
  width: 200px;
  aspect-ratio: 250 / 70;
}

#header h1 .left_logo img {
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  transition: opacity 0.4s;
}

#header h1 .left_logo img:nth-of-type(1) {
  opacity: 1;
}

#header h1 .left_logo img:nth-of-type(2) {
  opacity: 0;
}

#header h1 .left_logo .mobile_logo_img {
  display: none;
}

#header.on h1 .left_logo img:nth-of-type(1) {
  opacity: 0;
}

#header.on h1 .left_logo img:nth-of-type(2) {
  opacity: 1;
}

#header .gnb .mobile_logo_wrap {
  display: none;
}

#header h1 .mobile_header_logo_wrap {
  display: none;
}

#header .gnb .right_logo {
  display: block;
  position: relative;
  width: 100px;
  aspect-ratio: 250 / 70;
}

#header .gnb .right_logo img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  transition: opacity 0.4s;
}

#header .gnb .right_logo img:first-of-type {
  opacity: 1;
}

#header .gnb .right_logo img:last-of-type {
  opacity: 0;
}

#header.on .gnb .right_logo img:first-of-type {
  opacity: 0;
}

#header.on .gnb .right_logo img:last-of-type {
  opacity: 1;
}

#header .hd_wrap {
  display: flex;
  align-items: center;
  height: 12rem;
  width: 100%;
  max-width: 1420px;
  box-sizing: border-box;

  transition: height 0.4s;
}

#header.on .hd_wrap {
  height: 9.8rem;
}

#header.on .sitemap svg {
  filter: invert();
}

#header .gnb_container {
  display: flex;
  margin-left: auto;
}

#header.on .adm.fs {
  color: var(--body-color);
}
#header.on a svg {
  stroke: var(--body-color);
}

#header .adm.fs {
  color: var(--white-color);
}
#header .adm.fs a {
  margin-left: 0.6rem;
}
#header .adm.fs a svg {
  padding-top: 0.2rem;
}

#header .gnb {
  display: flex;
  align-items: center;
  gap: 4rem;
}

#header .gnb > ul {
  display: flex;
  gap: 4rem;
}

#header .gnb .pc_logo_wrap {
  display: block;
  position: relative;
  width: 100px;
  aspect-ratio: 250 / 70;
}

#header .gnb .pc_logo_wrap img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  transition: opacity 0.4s;
}

#header .gnb .pc_logo_wrap img:first-of-type {
  opacity: 1;
}

#header .gnb .pc_logo_wrap img:last-of-type {
  opacity: 0;
}

#header.on .gnb .pc_logo_wrap img:first-of-type {
  opacity: 0;
}

#header.on .gnb .pc_logo_wrap img:last-of-type {
  opacity: 1;
}

#header .gnb > ul > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 12rem;
  text-transform: uppercase;

  transition: line-height 0.4s;

  color: var(--white-color);

  white-space: nowrap;
}

#header.on .gnb > ul > li > a {
  line-height: 9.8rem;
  color: var(--body-color);
}

#header .gnb > ul > li {
  position: relative;
}

#header .gnb > ul > li ul {
  position: absolute;
  top: auto;
  left: 50%;
  z-index: 3;

  transform: translate(-50%, 0);
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-top: 2px solid var(--primary-color);

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  transition: 0.2s;
}

#header .gnb > ul > li:hover ul {
  transform: translate(-50%, -16px);

  opacity: 1;
  visibility: visible;
}

#header .gnb > ul > li:focus-within ul {
  transform: translate(-50%, -16px);

  opacity: 1;
  visibility: visible;
}

#header .gnb > ul > li ul li a {
  display: block;
  padding: 0 4rem 0 2.4rem;
  line-height: 4rem;
  white-space: nowrap;

  min-width: 20rem;

  font-size: 1.4rem;

  white-space: nowrap;
}

#header.on .gnb > ul > li > a {
  line-height: 9.8rem;
  color: var(--body-color);
}

#header .gnb > ul > li ul li a:hover {
  background: var(--lightgray-color);
}

#header .gnb > ul > li ul li ~ li a {
  border-top: 1px solid var(--line-color);
}

.mbtn {
  display: none;
}

@media (max-width: 768px) {
  #header h1 {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  #header h1 .left_logo {
    display: none;
  }

  #header h1 .mobile_header_logo_wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  #header h1 .mobile_header_left_logo {
    position: relative;
    width: 150px;
    aspect-ratio: 250 / 70;
  }

  #header h1 .mobile_header_left_logo img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    transition: opacity 0.4s;
  }

  #header h1 .mobile_header_left_logo img:nth-of-type(1) {
    opacity: 1;
  }

  #header h1 .mobile_header_left_logo img:nth-of-type(2) {
    opacity: 0;
  }

  #header.on h1 .mobile_header_left_logo img:nth-of-type(1) {
    opacity: 0;
  }

  #header.on h1 .mobile_header_left_logo img:nth-of-type(2) {
    opacity: 1;
  }

  #header h1 .mobile_header_right_logo {
    position: relative;
    width: 75px;
    aspect-ratio: 250 / 70;
  }

  #header h1 .mobile_header_right_logo img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    transition: opacity 0.4s;
  }

  #header h1 .mobile_header_right_logo img:nth-of-type(1) {
    opacity: 1;
  }

  #header h1 .mobile_header_right_logo img:nth-of-type(2) {
    opacity: 0;
  }

  #header.on h1 .mobile_header_right_logo img:nth-of-type(1) {
    opacity: 0;
  }

  #header.on h1 .mobile_header_right_logo img:nth-of-type(2) {
    opacity: 1;
  }

  body.mobile_menu_open #header h1 .mobile_header_logo_wrap {
    display: none;
  }

  #header .gnb .mobile_logo_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    order: -2;
    margin-bottom: 2rem;
  }

  #header .gnb .mobile_left_logo {
    position: relative;
    width: 150px;
    aspect-ratio: 250 / 70;
  }

  #header .gnb .mobile_left_logo img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    transition: opacity 0.4s;
  }

  #header .gnb .mobile_left_logo img:nth-of-type(1) {
    opacity: 1;
  }

  #header .gnb .mobile_left_logo img:nth-of-type(2) {
    opacity: 0;
    display: none;
  }

  #header .gnb .mobile_logo_wrap .right_logo {
    position: relative;
    width: 75px;
    aspect-ratio: 250 / 70;
  }

  #header .gnb .mobile_logo_wrap .right_logo img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    transition: opacity 0.4s;
  }

  #header .gnb .mobile_logo_wrap .right_logo img:nth-of-type(1) {
    opacity: 1;
  }

  #header .gnb .mobile_logo_wrap .right_logo img:nth-of-type(2) {
    opacity: 0;
    display: none;
  }

  .mbtn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 4rem;
    right: 1.6rem;
    z-index: 999;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 0;
  }

  .mbtn::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 4px;
    right: 4px;

    height: 2px;
    background: var(--white-color);
    transition: background 0.3s ease;
  }

  #header.on .mbtn::before {
    background: var(--body-color);
  }

  .mbtn.on::before {
    display: none;
  }

  .mbtn::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 4px;
    right: 4px;

    height: 2px;
    background: var(--white-color);
    transition: background 0.3s ease;
  }

  #header.on .mbtn::after {
    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(--white-color);
    transition: background 0.3s ease;
  }

  #header.on .mbtn span::before {
    background: var(--body-color);
  }

  .mbtn.on span::before {
    transform: rotate(45deg);
    background: black;
  }

  #header.on .mbtn.on span::before {
    background: black;
  }

  .mbtn span::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 4px;
    right: 4px;

    height: 2px;
    background: var(--white-color);
    transition: background 0.3s ease;
  }

  #header.on .mbtn span::after {
    background: var(--body-color);
  }

  .mbtn.on span::after {
    transform: rotate(-45deg);
    background: black;
  }

  #header.on .mbtn.on span::after {
    background: black !important;
  }

  #header .gnb_container {
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 999;

    width: 100vw;
    height: 200vh;
    /* background: var(--white-color); */
  }

  #header .gnb_container.on {
    left: 0;
  }

  #header .gnb {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 2.4rem 0 2.4rem;

    width: calc(100vw - 6.4rem);
    height: auto;
    background: var(--primary-color);
  }

  #header .gnb > ul {
    display: flex;
    flex-direction: column;
    gap: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  #header .gnb > ul > li > a {
    line-height: 5.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    font-weight: 500;
    font-size: 1.8rem;
  }

  #header.on .gnb > ul > li > a {
    line-height: 5.6rem;
    color: var(--white-color);
  }

  #header .gnb > ul > li {
    position: relative;
  }

  #header .gnb > ul > li ul {
    position: static;
    top: 12rem;
    left: 50%;
    z-index: 3;

    transform: translate(0, 0);
    background: var(--white-color);
    border: 0 solid var(--lightgray-color);

    opacity: 1;
    visibility: visible;

    transition: none;

    display: none;
  }

  #header .gnb > ul > li:hover ul {
    transform: translate(0, 0);

    opacity: 1;
    visibility: visible;

    display: none;
  }

  #header .gnb > ul > li:focus-within ul {
    transform: translate(0, 0);

    opacity: 1;
    visibility: visible;

    display: none;
  }

  #header .gnb > ul > li ul li a {
    display: block;
    padding: 0 0 0 0.8rem;
    line-height: 4rem;
    white-space: nowrap;

    background: var(--white-color);
  }

  #header .gnb > ul > li ul li ~ li a {
    border-top: 0px solid var(--line-color);
  }

  #header .gnb > ul > li ul li a {
    border-bottom: 1px solid var(--line-color);
  }
  #header .gnb > ul .login_wrapper {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  #header .gnb .pc_logo_wrap {
    display: none;
  }
}

.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: 48rem;
}

.sub_title::before {
  content: '';
  position: absolute;
  inset: 0 0 0 0;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.4) 40%, transparent);
  backdrop-filter: blur(16px);

  animation: blur 0.4s both;
}

@keyframes blur {
  0% {
    backdrop-filter: blur(16px);
  }
  100% {
    backdrop-filter: blur(0);
  }
}

.sub_title::after {
  content: '';
  position: absolute;
  inset: 0 0 0 0;
  z-index: 3;
  background: url(../images/pt-bg01.png);
}

.sub_title .title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, calc(-50% + 4rem));
  margin: 0 0;
  width: calc(100% - 3.2rem);
  text-align: right;
  margin-bottom: 0;
}

.sub_title .title h2 {
  font-size: 8rem;
  font-weight: 800;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.sub_title .title p {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sub_title .title h2 {
    font-size: 4.8rem;
  }
}

.sub_nav {
  position: relative;
  z-index: 5;
  margin-bottom: 8rem;

  background: var(--white-color);
  border-bottom: 1px solid var(--line-color);

  line-height: 6.4rem;
}

.sub_nav .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;
}

.sub_nav .lnb > a {
  display: none;
}

@media (max-width: 1200px) {
  .sub_nav .navigation {
    display: none;
  }
}

@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 .inner {
    display: block;
    margin: 0 0;
  }

  .sub_nav .lnb ul {
    display: none;
  }

  .sub_nav .lnb > a {
    position: relative;
    display: block;
    padding: 0 1.6rem;

    font-size: 2.2rem;
  }

  .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;
}

.sub_content .page_title h3::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;

  width: 12rem;
  height: 1px;

  background: var(--primary-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: 5.6rem;
}

#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 .lnk {
  margin-bottom: 5.6rem;
  padding: 5.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 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 a {
  margin: 0rem 0.5rem;
}

#footer .customer_list a:hover {
  font-weight: 800;
}

#footer .customer_list {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

#footer .customer_list .adm.fs {
  display: flex;
  gap: 2.4rem;
}

#footer .customer_list .adm.fs a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: var(--lightgray-color);
  font-size: 1.5rem;
  transition: color 0.3s;
}

#footer .customer_list .adm.fs a:hover {
  color: var(--white-color);
}

#footer .customer_list .adm.fs svg {
  vertical-align: -2px;
  margin-right: 8px;
  stroke: var(--lightgray-color);
  transition: stroke 0.3s;
}

#footer .customer_list .adm.fs a:hover svg {
  stroke: var(--white-color);
}

@media (max-width: 768px) {
  #footer .lnk {
    display: none;
  }

  #footer .customer_list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }

  #footer .customer_list .adm.fs {
    margin-left: 0;
    width: 100%;
  }
}

#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 .info {
    flex-direction: column;
    gap: 0;
  }

  #footer .info li ~ li::before {
    display: none;
  }
}

.to_top {
  position: fixed;
  left: 50%;
  bottom: 18rem;
  z-index: 998;

  transform: translate(-50%, 0);

  max-width: calc(1610px + 160px);
  width: 100%;

  opacity: 0;
  visibility: hidden;

  transition: 0.5s;
}

.to_top button {
  position: absolute;
  right: 0;
  width: 4rem;
  height: 4rem;

  background: var(--point-color);

  border-radius: 50%;
}

.to_top button svg {
  margin-top: 2px;
}

.to_top.on {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .to_top {
    position: fixed;
    left: auto;
    right: -1.6rem;
    bottom: 14rem;

    width: auto;
  }

  .to_top.on {
    right: 1.6rem;
  }
}
