.strong {font-weight:bold;}

#header {
  position: fixed;
  background: var(--white-color);
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;

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

  height: 9rem;
  overflow: hidden;

  transition: 0.4s;
}

#header.on {
  background: var(--white-color);
  border-bottom: 1px solid var(--line-color);
}
#header:hover {
  height: 40rem;
  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 a {
  display: block;
  width: 228px;
  height: 9rem;

  background: url(../images/logo.png) no-repeat left center;
  background-size: contain;
}

#header.on h1 a {
  background: url(../images/logo.png) no-repeat left center;
  background-size: contain;
}
#header:hover h1 a {
  background: url(../images/logo.png) no-repeat left center;
  background-size: contain;
}

#header .hd_wrap {
  display: flex;
  align-items: flex-start;
  height: 9rem;

  transition: height 0.4s;
}

#header.on .sitemap svg {
  filter: invert();
}
#header:hover .sitemap svg {
  filter: invert();
}

/* Sitemap Icon */
.sitemap_btn .icon {
  width: 2.4rem;
  height: 2.4rem;
  stroke: var(--body-color);
  stroke-width: 2;
  fill: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#header.on .sitemap .icon,
#header:hover .sitemap .icon {
  filter: invert();
}

#header .adm {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.4rem;

  height: 9rem;

  margin-left: 7.2rem;
  align-self: flex-start;

  color: var(--body-color);
}
#header.on .adm {
  color: var(--body-color);
}
#header:hover .adm {
  color: var(--body-color);
}

#footer .adm {
  font-weight:bold;
  color: var(--footer-color);
}
#footer.on .adm {
  color: var(--footer-color);
}
#footer:hover .adm {
  color: var(--footer-color);
}

#header .adm a {
  white-space: nowrap;
}

#header .adm svg {
  vertical-align: -2px;
  margin-right: 8px;
}
#header.on .adm svg {
  filter: invert();
}
#header:hover .adm svg {
  filter: invert();
}

#header .adm .icon {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--body-color);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -2px;
  margin-right: 8px;
}
#header.on .adm .icon,
#header:hover .adm .icon {
  filter: invert();
}

/* Sitemap Icon */
.sitemap_btn .icon {
  width: 2.4rem;
  height: 2.4rem;
  stroke: var(--white-color);
  stroke-width: 2;
  fill: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#header.on .sitemap .icon,
#header:hover .sitemap .icon {
  filter: invert();
}

#header .gnb_container {
  display: flex;
  align-items: flex-start;

  margin-left: auto;
}

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

#header .gnb > ul {
  display: flex;
  height: 12rem;
  overflow: hidden;
}
#header:hover .gnb > ul {
  height: 40rem;
}

#header .gnb > ul > li {
  position: relative;
  width: 14.5rem; /* 가장 긴 메뉴 기준으로 조절 */
  flex: 0 0 14.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0);
}
#header .gnb > ul > li:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0);
}
#header:hover .gnb > ul > li {
  position: relative;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}
#header:hover .gnb > ul > li:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

#header .gnb > ul > li:hover {
  background: rgba(0, 0, 0, 0.01);
}

#header .gnb > ul > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.9rem;
  line-height: 9rem;
  text-transform: uppercase;
  padding: 0 2.4rem;
  color: var(--body-color);

  white-space: nowrap;
}

#header .gnb > ul > li > a::after {
  content: "";
  position: absolute;
  top: 6.6rem;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, 0);

  width: 0;
  height: 1px;

  background: var(--primary-color);

  transition: 0.3s;
}

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

#header.on .gnb > ul > li > a {
  color: var(--body-color);
}

#header:hover .gnb > ul > li > a {
  color: var(--body-color);
}

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

#header .gnb > ul > li ul li a {
  display: block;
  width: 100%;
  padding: 0 1rem;
  line-height: 3.2rem;
  white-space: nowrap;
  text-align: center;
  font-size: 1.5rem;
  box-sizing: border-box;
}

/* =========================
   태블릿 / 아이패드 프로 대응
   1025px ~ 1366px 구간 메뉴폭 조정
========================= */
@media (min-width: 1025px) and (max-width: 1366px) {

  #header h1 a {
    width: 190px;
  }

  #header .gnb > ul > li {
    width: 11.5rem;
    flex: 0 0 11.5rem;
  }

  #header .gnb > ul > li > a {
    padding: 0 1.2rem;
    font-size: 1.65rem;
  }

  #header .gnb > ul > li ul li a {
    padding: 0 0.6rem;
    font-size: 1.35rem;
  }

  #header .adm {
    margin-left: 2.4rem;
    gap: 1.2rem;
  }
}

/*#header .gnb > ul > li:nth-child(4) ul li a {
    padding: 0 1rem;
    font-size: 1.5rem;
}*/


@media (max-width: 1280px) {
  #header .gnb > ul > li ul li a {
    padding: 0 0.8rem;
  }
}

#header.on .gnb > ul > li > a {
  color: var(--body-color);
}

.mbtn {
  display: none;
}

@media (max-width: 1024px) {
  .mbtn {
    display: flex;
    align-items: center;

    position: fixed;
    top: 3rem;
    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 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;

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

    height: 9rem;
    overflow: visible;

    transition: 0.4s;
  }

  #header.on {
    background: var(--white-color);
    border-bottom: 1px solid var(--line-color);
  }
  #header:hover {
    height: 9rem;
    overflow: visible;
    background: var(--white-color);
    border-bottom: 1px solid var(--line-color);
  }
  #header .gnb_container {
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 999;

    width: 100vw;
    height: 200vh;
    background: var(--white-color);

    background: rgba(0, 0, 0, 0.75);
  }

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

  #header .gnb {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    /*gap: 4rem;*/
    padding: 2rem 2.4rem 0 2.4rem;

    width: calc(100vw - 6.4rem);
    height: 150vh;
    background: var(--white-color);
  }

  #header .gnb > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #header .gnb > ul > li > a {
    line-height: 5.6rem;
    border-bottom: 1px solid var(--line-color);
    color: var(--body-color);
    font-weight: 500;
    font-size: 1.9rem;
    padding: 0 0 0 0.9rem;
    text-align: left;
  }

  #header.on .gnb > ul > li > a {
    line-height: 5.6rem;
    color: var(--body-color);
  }

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

  #header .gnb > ul {
    display: flex;
    height: 12rem;
    overflow: hidden;

    overflow: visible;
  }
  #header:hover .gnb > ul {
    height: auto;
    border-top: 1px solid var(--primary-color);
  }

  #header .gnb > ul > li {
    position: relative;
    border-left: none;
  }
  #header .gnb > ul > li:last-child {
    border-right: none;
  }
  #header:hover .gnb > ul > li {
    position: relative;
    border-left: none;
  }
  #header:hover .gnb > ul > li:last-child {
    border-right: none;
  }

  #header .gnb > ul > li:hover {
    background: none;
  }
  #header .gnb > ul > li:focus-within {
    background: none;
  }
  #header .gnb > ul > li ul {
    position: static;

    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 ul li a {
    display: block;
    padding: 0 0 0 0.9rem;
    line-height: 4rem;
    white-space: nowrap;

    background: var(--lightgray-color);

    text-align: left;
  }

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

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

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

    align-self: stretch;

    margin-left: 0;

    height: 7.2rem;

    color: var(--body-color);
    padding: 1.6rem 0;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
  }

  #header.on .adm {
    color: var(--body-color);
  }

  #header .adm svg {
    vertical-align: -2px;
    margin-right: 8px;
    filter: invert();
  }
  #header.on .adm svg {
    filter: invert();
  }
  
  /* 모바일 메뉴에서는 PC 고정폭 해제 */
    #header .gnb > ul {
	  width: 100%;
	}

	#header .gnb {
	  overflow-y: auto;
	}
	
	#header .gnb > ul > li {
	  width: 100%;
	  flex: none;
	}

	#header .gnb > ul > li > a {
	  width: 100%;
	  box-sizing: border-box;
	}

	#header .gnb > ul > li ul li a {
	  width: 100%;
	  box-sizing: border-box;
	}
  
}

.sub_title {
    background-image: url(<?= !empty($html_sub_bg)
        ? G5_THEME_URL.'/images/'.$html_sub_bg
        : G5_THEME_URL.'/images/_sub_bg0'.$html_cate_num.'.jpg' ?>);
}


.sub_title {
  position: relative;

  background-color: var(--primary-color);
  background-repeat: no-repeat;
  /*background-position: center center;*/
  background-position: top 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;
  z-index: 2;
  background: linear-gradient(to bottom, 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));

  width: 100%;
  text-align: center;
  margin-bottom: 0;
}

.sub_title .title h2 {
  font-size: 5rem;
  font-weight: 600;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.sub_title .title h2::after {
  content: "";
  display: block;
  margin: 1.6rem auto 1.6rem auto;
  width: 4rem;
  height: 2px;
  background: var(--point-color);
}
.sub_title .title p {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 1;
}
@media (max-width: 768px) {
  .sub_title .title {
    margin: 0 0;
    padding: 0 1.6rem;
  }

  .sub_title .title h2 {
    font-size: 4.9rem;
    font-weight: 800;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  }
}

.sub_nav {
  position: relative;
  z-index: 5;
  margin-bottom: 9rem;

  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 .navigation .icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--body-color);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

    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_nav .navigation {
    display: none;
  }
}

.sub_content {
  margin-top: 9rem;
  margin-bottom: 12rem;
}

.sub_content .page_title {
  margin-bottom: 2.4rem;
  text-align: center;
}

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

  display: block;
  margin: 2.4rem auto;
  width: 1.2rem;
  height: 1.2rem;

  background: var(--point-color);
  transform: rotate(45deg);
}

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

#footer .lnk > ul > li > a {
  display: block;
  font-size: 1.9rem;
  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.9rem;
  }
}

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

#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(--point-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;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

#footer .ft_wrap {
  position: relative;
}

#family_link {
  position: absolute;
  top: 9rem;
  right: 0;

  white-space: nowrap;
}

@media (max-width: 768px) {
  #family_link {
    top: 0;
  }
}

#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 .icon {
  position: absolute;
  right: 0.9rem;
  top: 1rem;
  width: 1.9rem;
  height: 1.9rem;
  stroke: var(--white-color);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -2px;
}

#family_link .f_link.on .icon {
  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);
}

/* Customer Icon */
.customer_wrap .tb_r .icon {
  width: 3.2rem;
  height: 3.2rem;
  stroke: var(--white-color);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}



/* =========================
   아이패드등 터치기기 전용 GNB 보완
   아이패드/갤럭시탭에서 대메뉴 터치 시
   링크 이동보다 서브메뉴 노출 우선
========================= */
@media (hover: none) and (pointer: coarse) {

  #header.tablet_open {
    height: 40rem;
    overflow: visible;
  }

  #header.tablet_open .gnb > ul {
    height: 40rem;
    overflow: visible;
  }

  #header .gnb > ul > li.tablet_on {
    background: rgba(0, 0, 0, 0.01);
  }

  #header .gnb > ul > li.tablet_on > a::after {
    width: calc(100% - 3.2rem);
  }

}



/* ========================================
   상단 SNS 버튼 최종 수정
   커뮤니티 다음, 메뉴 영역 안에 고정
======================================== */

#header .sitemap,
#header .sitemap_btn {
  display: none !important;
}

#header .gnb {
  display: flex;
  align-items: flex-start;
  margin-left: auto;
}

#header .gnb > ul {
  order: 1;
}

#header .gnb .header_sns {
  order: 2;

  width: 14.5rem;
  flex: 0 0 14.5rem;
  height: 9rem;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;

  align-self: flex-start;
  overflow: hidden;
  
  margin-left:10px;
}

#header .gnb .header_sns a {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.25s;
}

#header .gnb .header_sns a:hover {
  transform: translateY(-3px);
}

#header .gnb .header_sns svg {
  width: 2rem;
  height: 2rem;
  display: block;
}

#header .gnb .header_sns .sns_blog {
  background: #03c75a;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

#header .gnb .header_sns .sns_youtube {
  background: #ff0000;
}

#header .gnb .header_sns .sns_youtube svg path:first-child {
  fill: #ff0000;
}

#header .gnb .header_sns .sns_kakao {
  background: #fee500;
}

#header .gnb .header_sns .sns_kakao svg path {
  fill: #3c1e1e;
}

#header .gnb .header_sns .sns_instagram {
  background: linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}

#header .gnb .header_sns .sns_instagram svg path,
#header .gnb .header_sns .sns_instagram svg circle {
  fill: #fff;
}


/* 아이패드 / 태블릿 */
@media (min-width: 1025px) and (max-width: 1366px) {
  #header .gnb .header_sns {
    width: 12.2rem;
    flex: 0 0 12.2rem;
    gap: 0.45rem;
  }

  #header .gnb .header_sns a {
    width: 2.7rem;
    height: 2.7rem;
  }

  #header .gnb .header_sns svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  #header .gnb .header_sns .sns_blog {
    font-size: 1.2rem;
  }
}


/* 모바일 */
@media (max-width: 1024px) {
  #header .gnb {
    display: flex;
    flex-direction: column;
  }

  #header .gnb .header_sns {
    order: -1;

    width: 100%;
    flex: none;
    height: auto;

    justify-content: flex-start;
    gap: 0.6rem;

    margin: 0 0 1.6rem 0;
    padding: 0 0 1.2rem 0;

    /*border-bottom: 1px solid rgba(0,0,0,0.15);*/
  }

  #header .gnb .header_sns a {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 0;
  }

  #header .gnb .header_sns svg {
    width: 2rem;
    height: 2rem;
  }
}


/* 전체 게시판 목록 날짜 숨김 
#bo_list .td_datetime,
#bo_list .td_date,
#bo_gall .gall_date,
#bo_gall .td_datetime,
#bo_gall .td_date {
    display: none !important;
}*/

/* 전체 게시판 보기 날짜 숨김 */
#bo_v_info .if_date,
#bo_v_info .bo_v_date,
#bo_v_info .date,
#bo_v_info .wr_datetime {
    display: none !important;
}



/* 모바일 메뉴 최종 보정 */
@media (max-width: 1024px) {

  #header {
    height: 9rem !important;
    overflow: visible !important;
  }

  #header:hover {
    height: 9rem !important;
  }

  #header .gnb_container {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

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

  #header .gnb {
    width: calc(100vw - 6.4rem);
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 18rem !important;
    box-sizing: border-box;
  }

  #header .gnb > ul {
    height: auto !important;
    overflow: visible !important;
  }

  #header .gnb > ul > li {
    width: 100% !important;
    flex: none !important;
  }

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