#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 32rem;
  height: 150vh;

  background: var(--white-color);

  white-space: nowrap;
}

#header .hd_wrap {
  display: flex;
  height: 100%;
  border-right: 1px solid var(--line-color);
}

#header .hd_wrap .left {
  flex: 0 0 56px;
  order: -1;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 8rem 0 0 0;
  background: var(--primary-color);
}

#header .hd_wrap .left .icon {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--white-color);
  stroke-width: 2;
}

#header .hd_wrap .right {
  flex: 1 1 0;

  display: flex;
  flex-direction: column;
  padding: 0 2.4rem;
}

#header .hd_wrap h1 {
  margin: 8rem 0 8rem 0;
}

#header .hd_wrap h1 a {
  display: block;
}
#header .hd_wrap h1 img {
  width: 100%;
}

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

#header .gnb > ul > li > a {
  display: block;
  border-bottom: 1px solid var(--line-color);
  line-height: 4.8rem;

  font-size: 1.6rem;
  font-weight: 500;

  white-space: nowrap;
}

#header .gnb > ul > li > ul {
  position: absolute;
  top: -4px;
  left: 100%;
  background: var(--white-color);
  border: 2px solid var(--primary-color);

  display: none;
  min-width: 24rem;
}

#header .gnb > ul > li > ul::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -6px;
  width: 20px;
  height: 20px;
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  transform: rotate(45deg);
}

#header .gnb > ul > li > ul > li {
  position: relative;
  padding: 0 1.6rem;
  background: var(--white-color);
}

#header .gnb > ul > li > ul > li a {
  display: block;
  line-height: 4rem;
  padding: 0 2.4rem;
  white-space: nowrap;
  font-size: 1.4rem;
}

#header .gnb > ul > li > ul > li:not(:last-child) a {
  border-bottom: 1px solid var(--line-color);
}

#header .gnb > ul > li:hover > ul {
  display: block;
}

#header .adm {
  position: relative;
  display: flex;
  gap: 2.4rem;

  margin-top: 4rem;

  color: var(--body-color);
}

#header .adm svg {
  vertical-align: -2px;
}

#header .adm .icon {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--body-color);
  stroke-width: 2;
  vertical-align: -0.2rem;
}

#header .util_area {
  margin-top: 24rem;
}

#header .util_area strong {
  display: block;
  padding: 0.8rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line-color);
  margin-bottom: 1.6rem;
}

#header .util_area .call {
  position: relative;
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
}

#content {
  margin: 0 0 0 32rem;
}

@media (max-width: 1440px) {
  #header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 12rem;
    background: var(--white-color);
    border-bottom: 1px solid var(--line-color);
  }

  #header .hd_wrap {
    border-right: none;
    height: auto;
  }

  #header .hd_wrap .left {
    display: none;
  }

  #header .hd_wrap .right {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 2.4rem 0 2.4rem;
    height: 12rem;
  }

  #header .hd_wrap h1 {
    flex: 0 0 auto;
    margin: 0 0 0 0;

    display: flex;
    align-items: center;
    padding: 0 1.6rem;
  }

  #header .gnb {
    display: flex;
    gap: 6.4rem;
  }
  #header .gnb > ul {
    display: flex;
    gap: 4rem;
  }

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

  #header .gnb > ul > li > a {
    border-bottom: none;
    line-height: 12rem;
  }

  #header .gnb > ul > li > ul {
    top: 11.2rem;
    left: 50%;
    transform: translate(-50%, 0);
  }

  #header .gnb > ul > li > ul::before {
    top: -5px;
    left: 50%;
    transform: translate(-50%, 0) rotate(45deg);
  }

  #header .gnb > ul > li > ul > li {
    position: relative;
    padding: 0 1.6rem;
    background: var(--white-color);
  }

  #header .gnb > ul > li > ul > li a {
    display: block;
    line-height: 4rem;
    padding: 0 2.4rem;
    white-space: nowrap;
    font-size: 1.4rem;
  }

  #header .gnb > ul > li > ul > li:not(:last-child) a {
    border-bottom: 1px solid var(--line-color);
  }

  #header .gnb > ul > li:hover .depth2 {
    display: block;
  }

  #header .adm {
    display: flex;
    align-items: center;
    margin-top: 0;
  }

  #header .util_area {
    margin: auto 0;
  }

  #header .util_area strong {
    display: none;
  }

  #header .util_area .call::before {
    display: none;
  }

  #content {
    margin: 0 0 0 0;
  }
}
@media (max-width: 1202px) {
  #header .util_area {
    display: none;
  }
}

@media (max-width: 768px) {
  #header {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 12rem;
  }

  #header h1.on {
    position: fixed;
    left: 1.6rem;
    top: 4rem;
    z-index: 1000;

    max-width: 24rem;
  }

  #header .hd_wrap {
    border-right: none;
    height: auto;
    height: 12rem;
  }

  #header .hd_wrap .left {
    display: none;
  }

  #header .hd_wrap {
    border-right: none;
  }

  #header .hd_wrap .gnb {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 999;
    background: var(--white-color) url(../images/bar_01.png) no-repeat left
      top/100% 2px;
    width: 100%;
    height: 100vh;
  }

  #header .hd_wrap .gnb.on {
    left: 0;
  }

  #header .hd_wrap .right {
    padding: 0 0 0 0;
    height: 12rem;
  }

  #header .gnb {
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 999;

    width: 100vw;
    height: 150vh;

    padding: 12rem 1.6rem 0 1.6rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 6.4rem;
  }

  #header .gnb.on {
    left: 0;
  }

  #header .gnb > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    border-top: 1px solid var(--line-color);

    max-height: 32rem;
    overflow-y: auto;
  }

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

  #header .gnb > ul > li > a {
    display: block;
    padding: 0 2.4rem;
    line-height: 4.8rem;
    white-space: nowrap;

    text-align: left;
    border-bottom: 1px solid var(--line-color);
  }

  #header .gnb > ul > li > ul {
    position: static;
    transform: translate(0, 0);
    background: var(--background-color);
    border: none;

    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    border-radius: 0;
  }

  #header .gnb > ul > li > ul::before {
    display: none;
  }

  #header .gnb > ul > li > ul > li {
    position: relative;
    padding: 0 1.6rem;
    background: var(--background-color);
  }

  #header .gnb > ul > li > ul > li:not(:last-child) a {
    border-bottom: 1px solid var(--line-color);
  }

  #header .gnb > ul > li:hover ul {
    display: none;
  }

  #header .gnb > ul > li:focus-within ul {
    transform: translate(0, 0);

    opacity: 1;
    visibility: visible;

    display: none;
  }

  #header .adm {
    position: relative;
    display: flex;
    gap: 2.4rem;
    margin-left: 0;

    order: -1;

    height: 6.4rem;
    align-items: center;
    width: 100%;
    padding: 0 1.6rem;
    font-size: 1.6rem;

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

  #header .util_area {
    display: none;
  }

  #header .util_area.on {
    position: fixed;
    left: 2.4rem;
    right: 2.4rem;
    bottom: 4rem;
    z-index: 999;
    display: block;
  }

  #header .util_area strong {
    display: block;
  }
}

@media (max-width: 500px) {
}

.mbtn {
  display: none;
}

@media (max-width: 768px) {
  .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);
  }
}

.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: 44rem;
}

.sub_title::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: rgba(0, 0, 0, 0.2) url(../images/pt-bg01.png);
}

.sub_title .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: calc(100% - 3.2rem);
  margin: 0 0;
  margin-bottom: 0;

  text-align: right;
}

.sub_title .title h2 {
  font-size: 6.4rem;
  font-weight: 800;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.sub_title .title h2::after {
  content: "";
  display: block;
  margin: 1.6rem 0 1.6rem auto;
  width: 8rem;
  height: 1px;

  background: var(--point-color);
}
.sub_title .title p {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 300;
  /* opacity: 0.75; */
}
@media (max-width: 768px) {
  .sub_title .title h2 {
    font-size: 4.8rem;
    font-weight: 800;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  }
}

.sub_nav {
  position: relative;
  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 {
  padding-left: 1.6rem;
  font-size: 1.4rem;
  white-space: nowrap;
}

.sub_nav .navigation .icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--body-color);
  stroke-width: 2;
  vertical-align: -0.1rem;
  margin: 0 0.4rem;
}

.sub_nav .lnb > a {
  display: none;
}

@media (max-width: 1640px) {
  .sub_nav .navigation {
    display: none;
  }

  .sub_nav .inner {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sub_nav {
    position: relative;
    margin-top: -4rem;
    margin-bottom: 8rem;

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

    border-top: 4px solid var(--primary-color);
    border-bottom: 1px solid var(--line-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;
  }

  .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;

  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;

  margin-left: 32rem;
}

@media (max-width: 1440px) {
  #footer {
    margin-left: 0;
  }
}

#footer .f_logo {
  max-width: 24rem;
  margin-bottom: 4rem;
}

#footer .lnk {
  padding: 5.6rem 0;
}

#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 .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;
  }
}

#footer .ft_top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

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

#footer #family_link {
  margin-top: 4rem;
}
#footer .ft_bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 5.6rem;
}

#family_link {
  white-space: nowrap;
  text-align: right;

  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 768px) {
  #footer .ft_top {
    flex-direction: column;
    border-bottom: none;
    align-items: flex-end;
  }
  #footer .ft_bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

#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 .d_btn .icon {
  width: 3.2rem;
  height: 3.2rem;
  stroke: var(--white-color);
  stroke-width: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#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_w.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;
}

@media (max-width: 768px) {
  #side_lnk {
    bottom: 4rem;
  }
}

#side_lnk a:hover span {
  width: 16rem;
}

#sns_link {
  margin-bottom: 2.4rem;
  text-align: right;
}

#sns_link a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 4rem;
  height: 4rem;

  border-radius: 50%;

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

  font-size: 1.8rem;
}
#flnk {
  position: relative;
  height: 3.2rem;
  line-height: 3.2rem;
  padding: 0 4rem 0 2.4rem;
  border: 1px solid var(--line-color);
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 1.4rem;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.f_lnk {
  position: relative;
}

.f_lnk::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;

  background: url(../lib/icon/chevron-down.svg) no-repeat center center/1.6rem;
  filter: invert(100%);

  transform: translate(0, -50%);
}

.f_lnk #flnk option {
}
.btel {
  text-align: right;
  overflow: hidden;
}

.btel i {
  font-size: 4rem;
  font-weight: 600;
}

.btel i .icon {
  width: 3.2rem;
  height: 3.2rem;
  stroke: var(--white-color);
  stroke-width: 1;
}

.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;
  }
}

#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 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);
}
