#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;



  height: 12rem;
  overflow: hidden;

  transition: 0.4s;
}

#header.on {

}
#header:hover {
  height: 40rem;
  background: #fff;
      box-shadow:
        0 10px 30px rgba(0,0,0,0.05),
        0 1px 0 rgba(0,0,0,0.04);
}

#header .hd_wrap {
  display: flex;
  align-items: flex-start;
  height: 11.2rem;
  padding-top:5px;

  transition: height 0.4s;
}

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

#header h1 a {
    display:block;
    width:9.5rem;
    height:9.5rem;
    transform: translateY(1.5rem);
}

#header h1.logo-jba a {
    background:url(../images/jba_logo.svg) no-repeat center center / contain;
}

#header h1.logo-jbs a {
    background:url(../images/jbs_logo.svg) no-repeat center center / contain;
}



@media (max-width: 1024px) {

    #header h1 a {
        display: block;
        width: 6rem;
        height: 9.5rem;
        transform: translateY(0rem);
    }

    #header h1.logo-jba a {
        background: url(../images/jba_logo.svg) no-repeat center center / contain;
    }

    #header h1.logo-jbs a {
        background: url(../images/jbs_logo.svg) no-repeat center center / contain;
    }

}

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

  height: 11.2rem;

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

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

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

#header .adm .icon {
  vertical-align: -2px;
  margin-right: 0.8rem;
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 2;
  stroke: var(--white-color);
}

#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;
  border-left: 1px solid rgba(255, 255, 255, 0);
}
#header .gnb > ul > li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0);
}
#header:hover .gnb > ul > li {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
#header:hover .gnb > ul > li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 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.7rem;
  line-height: 11.2rem;
  text-transform: uppercase;
  font-weight:700;
  padding: 0 2.4rem;
  color: var(--white-color);

  white-space: nowrap;
}

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

  width: 0;
  height: 1px;

  background: var(--point-color);

  transition: 0.3s;
}

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

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

#header .gnb > ul > li ul li a {
  display: block;
  padding: 0 3.2rem;
  line-height: 3.2rem;
  white-space: nowrap;
  text-align: center;
  font-size: 1.6rem;
  font-weight:500;
  white-space: nowrap;


}

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

  #header .adm {
    margin-left: 4rem;
  }
}

.mbtn {
  display: none;
}

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

    position: fixed;
    top: 3.2rem;
    right: 1.6rem;
    z-index: 999;

    width: 32px;
    height: 32px;



    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: 11.2rem;
    overflow: vi;

    transition: 0.4s;
  }

  #header.on {
    background: var(--white-color);
    border-bottom: 1px solid var(--line-color);
  }

  #header.on h1 a {
    display: block;
    background: url(../images/jba_logo.svg) no-repeat left center/contain;
  }
  #header:hover h1 a {
    display: block;
    background: url(../images/jba_logo.svg) no-repeat left center/contain;
  }
  #header:hover {
    height: 11.2rem;
    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: 16rem 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.8rem;
    padding: 0 0 0 0.8rem;
    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.8rem;
    line-height: 4rem;
    white-space: nowrap;

    background: var(--lightgray-color);
    color: var(--body-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: 6.4rem;

    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 .icon {
    vertical-align: -2px;
    margin-right: 0.8rem;
    filter: invert();
    width: 1.4rem;
    height: 1.4rem;
    stroke-width: 2;
  }
  #header.on .adm .icon {
    filter: invert();
  }
}
.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: 42rem;
}

.sub_title::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  z-index: 2;
  background: linear-gradient(25deg, rgba(173, 97, 116, 0.733) 5%, transparent);
  backdrop-filter: blur(16px);

  animation: blur 0.8s 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: left;
  margin-bottom: 0;
}

.sub_title .title h2 {
  font-family: "Noto Serif Display", serif;
  font-size: 6.4rem;
  font-weight: 600;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}


.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: 3.8rem;
    font-weight: 800;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  }
}

.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 .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;
  font-weight: 700;
}

.sub_nav .navigation {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sub_nav .navigation .icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2;
  stroke: var(--body-color);
}

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

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

    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;
font-weight:700;
    font-size: 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: 8rem;
  margin-bottom: 12rem;
}

.sub_content .page_title {
  margin-bottom: 6rem;

}

.sub_content .page_title h2 {
  position: relative;
  padding: 1.6rem 0;
  white-space: nowrap;
  font-weight:800;
  font-size:1.8em;


}

.sub_content .section_title {
    position: relative;
    display: inline-block;
    padding: 0 0 0 20px;
    margin: 0 0 20px;

    font-size: 1.6em;
    font-weight: 800;
    line-height: 0.9;
}

.sub_content .section_title::after {
    content: none;
}

.sub_content .section_title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 5px;
    background: #ec788f;
}

.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: 1.6;
  opacity: 0.9;
  letter-spacing: 0 !important;
}

.sub_content .content .sub_title_desc {
  line-height: 1.6;
  margin-bottom: 5.6rem;
  font-weight:600;
  font-size:1.5em;
  font-family: "Noto Serif KR", serif;
  letter-spacing: -1.3px;
}

@media (max-width: 768px) {

.sub_content .content .sub_title_desc {

  font-size:1.2em;
}


}


.sub_content .content .sub_title_desc span{
  display: block;
  line-height: 1.5;

  font-weight:500;
  font-size:0.8em;
}


#footer {
  padding: 4rem 0 5.6rem 0;
  background: var(--footerbg-color);
  color: var(--body-color);
  border-top: 1px solid var(--line-color);

  font-size: 1.5rem;
  line-height: 2.4rem;
}

#footer .lnk {
  margin-bottom: 3rem;
  padding: 3rem 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 {
  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 .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;
  display: flex;
  align-items: center;
  justify-content: center;
}

#side_lnk .d_btn .icon {
  width: 3.2rem;
  height: 3.2rem;
  stroke-width: 2;
  stroke: var(--white-color);
}

#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: 8rem;
  right: 0;

  white-space: nowrap;
}

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

#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: #ffffffd5;
  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.8rem;
  top: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  stroke-width: 1;
}

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

#footer .ft_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  #footer .ft_info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

#customer {
}

#customer .customer_wrap {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  justify-content: center;
  align-items: flex-end;

  text-align: right;
}

@media (max-width: 768px) {
  #customer .customer_wrap {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    justify-content: flex-start;
    align-items: flex-start;

    text-align: left;

    margin-top: 8rem;
  }
}

#customer .s_lnk img {
    padding: 0.8rem;
    width: 2.8rem;
    height: auto;
    background: #ec788f;
    box-sizing: content-box;
    border-radius: 3.8rem;
}

#customer .s_lnk {
  margin-top: 1.6rem;
}
#customer .tel strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 4rem;
  font-weight: 800;
  color:#ec788f;
}






/* 메뉴 텍스트 블랙 */
#header:hover .gnb > ul > li > a {
    color: #111;
}

/* 2depth도 블랙 */
#header:hover .gnb .sub a {
    color: #555;
}

/* SNS 아이콘도 블랙 */
#header:hover .snsbtn a {
    color: #111;
}

/* 햄버거 버튼 */
#header:hover .mbtn {
    color: #111;
}

#header,
#header .gnb > ul > li > a,
#header .snsbtn a,
#header .mbtn {
    transition: all .3s ease;
}



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












.sitemap {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    height: 11.2rem;
    margin-left: 8rem;
}

.sitemap.on {
    position: relative;
    z-index: 1000;
}

@media (max-width: 1280px) {
    .sitemap.on {
        position: fixed;
        right: 1.6rem;
    }
}


@media (max-width: 1280px) {
    .sitemap {
        display: none !important;
    }
}

#siteMap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

@media (max-width: 1280px) {
    #siteMap {
        display: none !important;
    }
}

#siteMap .inbox {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24rem;
    right: 0;
    background: var(--primary-color);
    padding: 12rem 8rem;
}

#siteMap .inbox::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    background: url(/home/theme/jb_v2/images/index_bg01.jpg) no-repeat center center/cover;
    filter: grayscale(1);
    opacity: 0.05;
}

#siteMap .inbox>ul {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 4rem;
}


#siteMap .inbox>ul>li {
    min-height: 24rem;
    padding: 2rem;
    min-width: 24rem;
}

#siteMap .inbox>ul>li>a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 6.4rem;
    font-weight: 500;
    font-size: 2.0rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    color: var(--white-color);
}

#siteMap .inbox>ul ul a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 4rem;
    font-size: 1.6rem;
    color: var(--white-color);
}


.sitemap .sitemap_btn {
    width: 4rem;
    height: 4rem;

    background: url(/home/theme/jb_v2/lib/icon/menu.svg) no-repeat center center / 24px;

    /* 기본 흰색 */
    filter: brightness(0) invert(1);

    cursor: pointer;
    font-size: 0;

    transition: all .3s ease;
}

/* hover 시 검정 */
#header:hover .sitemap .sitemap_btn {
    filter: brightness(0);
}

/* 스크롤 상태 */
#header.on .sitemap .sitemap_btn {
    filter: brightness(0);
}

/* 사이트맵 열린 상태 */
.sitemap .sitemap_btn.on {
    background: url(/home/theme/jb_v2/lib/icon/x.svg) no-repeat center center / 24px;

    /* X 버튼은 흰색 유지 */
    filter: brightness(0) invert(1);
}



.youtube-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}


.youtube-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2); /* 숫자가 클수록 더 어두움 */
  z-index: 1;
}

.youtube-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}


/* 전체 어둡게 */
.youtube-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
  pointer-events: none;
}



.swiper-slide iframe {
  opacity: 0;
}

.swiper-slide-active iframe {
  opacity: 1;
}



.video-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.video-bg video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-bg::after{
    content:'';
    position:absolute;
    inset:0;
    /* background:rgba(94, 54, 72, 0.1); */
}





.info{
    margin:0;
    padding:0;
    list-style:none;
}

.info li{
    line-height:1.8;
    color:#666;
    font-size:15px;
}

.info .company{
    margin-top:18px;
    font-weight:700;
    color:#222;
}

.info .company:first-child{
    margin-top:0;
}

.info .line{
    height:1px;
    background:#e5e5e5;
    margin:18px 0;
    padding:0;
}

.info span{
    color:#b7b7b7;
    margin:0 10px;
}

.info a{
    color:inherit;
    text-decoration:none;
}

.info a:hover{
    text-decoration:underline;
}

/* =========================================================
   푸터 3개 사업자 정보
========================================================= */
#footer .company_info {
  display: block;
  width: 100%;
  max-width: 110rem;
  margin-top: 1.8rem;
  padding: 0;
  color: #666;
  font-size: 1.5rem;
  line-height: 1.65;
}

#footer .company_item {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 1.4rem 0;
  border-bottom: 1px solid #e5e5e5;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

#footer .company_item:first-child {
  padding-top: 0;
}

#footer .company_item:last-child {
  border-bottom: 0;
}

#footer .company_title,
#footer .company_detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-width: 0;
  white-space: normal;
}

#footer .company_title {
  margin-bottom: 0.2rem;
  color: #222;
}

#footer .company_title strong {
  font-weight: 700;
}

#footer .company_detail {
  margin-top: 0.1rem;
}

#footer .company_info .divider {
  display: inline-block;
  flex: 0 0 auto;
  margin: 0 1rem;
  color: #b7b7b7;
}

#footer .company_info a {
  color: inherit;
  text-decoration: none;
}

#footer .company_info a:hover {
  text-decoration: underline;
}

#footer address {
  margin-top: 1.6rem;
}

@media (max-width: 1024px) {
  #footer .company_info {
    max-width: 100%;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  #footer .company_title,
  #footer .company_detail {
    display: block;
  }

  #footer .company_info .divider {
    margin: 0 0.5rem;
  }

  #footer .company_item {
    padding: 1.6rem 0;
  }
}

/* 푸터 상담 전화 */
#customer .tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;

    min-width: 25rem;
}

#customer .tel > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
font-weight:600;

    width: 100%;
    padding: 1rem 1.4rem;



    background: #fff;

    color: #555;
    font-size:1em !important;
    line-height: 1.4;
    text-decoration: none;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

#customer .tel > a:hover {
    border-color: #ec788f;
    background: #fff8fa;
    transform: translateX(-0.4rem);
}

#customer .tel > a span {
    color: #ec788f;
    font-size:1.5em !important;
    font-weight: 700;
    white-space: nowrap;
}

#customer .tel > p {
    width: 100%;
    margin: 0.4rem 0 0;
    padding-top: 1rem;

    border-top: 1px solid #e8e8e8;

    color: #888;
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: right;
}

/* 모바일 */
@media (max-width: 768px) {
    #customer .tel {
        width: 100%;
        min-width: 0;
        align-items: stretch;
    }

    #customer .tel > a {
        width: 100%;
        padding: 1.2rem 1.4rem;
    }

    #customer .tel > a:hover {
        transform: none;
    }

    #customer .tel > p {
        text-align: left;
    }
}




/* =========================================================
   푸터 사업자 카드
========================================================= */

#footer .ft_info {
    display: block;
}

#footer .left {
    width: 100%;
}

#footer .footer_business {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    margin-top: 2rem;
}

#footer .footer_business_item {
    min-width: 0;
    padding: 2.4rem;

    border-top: 2px solid #999;

    background: rgba(255, 255, 255, 0.45);
}

#footer .footer_business_head {

    padding-bottom: 1.6rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid #e6e6e6;
}

#footer .footer_branch {
    display: none;
    margin-bottom: 0.4rem;

    color: #ec788f;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

#footer .footer_business_head strong {
    display: block;

    color: #222;
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 700;
}

#footer .footer_business_item dl {
    margin: 0;
}

#footer .footer_business_item dl > div {
    display: grid;
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: 1rem;
    margin-top: 0.7rem;
}

#footer .footer_business_item dt {
    color: #999;
    font-size: 1.3rem;
    font-weight: 500;
}

#footer .footer_business_item dd {
    min-width: 0;
    margin: 0;

    color: #555;
    font-size: 1.35rem;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#footer .footer_business_item a {
    color: inherit;
}

#footer .footer_business_item a:hover {
    color: #ec788f;
}


/* 상담 연락처 바 */
#footer .footer_contact_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;

    margin-top: 2rem;
    padding: 2rem 2.4rem;

    border-radius: 4px;
    background: #f8f4f5;
}

#footer .footer_tel_list {
    display: flex;
    align-items: center;
    gap: 0;
}

#footer .footer_tel_list a {
    display: flex;
    align-items: center;
    gap: 1rem;

    padding: 0 2.2rem;
    white-space: nowrap;
}

#footer .footer_tel_list a:first-child {
    padding-left: 0;
}

#footer .footer_tel_list a + a {
    border-left: 1px solid #ddd;
}

#footer .footer_tel_list span {
    color: #555;
    font-size: 1.35rem;
    font-weight: 600;
}

#footer .footer_tel_list strong {
    color: #ec788f;
    font-size: 1.8rem;
    font-weight: 700;
}

#footer .footer_contact_right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#footer .footer_contact_right p {
    margin: 0;
    color: #777;
    font-size: 1.3rem;
    white-space: nowrap;
}

#footer .footer_sns {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

#footer .footer_sns a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 4rem;
    height: 4rem;

    border-radius: 50%;
    background: #ec788f;
}

#footer .footer_sns img {
    width: 2rem;
    height: 2rem;
    padding: 0;
    background: none;
    border-radius: 0;
}

#footer address {
    margin-top: 2rem;
    color: #777;
    font-size: 1.3rem;
}


/* 태블릿 */
@media (max-width: 1200px) {
    #footer .footer_business {
        grid-template-columns: 1fr;
    }

    #footer .footer_business_head {
        min-height: 0;
    }

    #footer .footer_contact_bar {
        align-items: flex-start;
        flex-direction: column;
    }

    #footer .footer_contact_right {
        width: 100%;
        justify-content: space-between;
    }
}


/* 모바일 */
@media (max-width: 768px) {
    #footer {
        padding: 3rem 0 4rem;
    }

    #footer .customer_list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem 1.6rem;
    }

    #footer .footer_business_item {
        padding: 1.8rem;
    }

    #footer .footer_business_item dl > div {
        grid-template-columns: 9rem minmax(0, 1fr);
    }

    #footer .footer_tel_list {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    #footer .footer_tel_list a {
        justify-content: space-between;
        width: 100%;
        padding: 1.2rem 0;
    }

    #footer .footer_tel_list a + a {
        border-left: 0;
        border-top: 1px solid #ddd;
    }

    #footer .footer_contact_right {
        align-items: flex-start;
        flex-direction: column;
    }

    #footer .footer_tel_list strong {
        font-size: 1.6rem;
    }
}


/* =========================================================
   상담 연락처 바
========================================================= */

#footer .footer_contact_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;

    width: 100%;
    margin-top: 2rem;
    padding: 2rem 2.4rem;

    border-radius: 3px;
    background: #f8f4f5;
}

#footer .footer_contact_group {
    display: flex;
    align-items: center;
    min-width: 0;
}

#footer .footer_tel_list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

#footer .footer_tel_list a {
    display: flex;
    align-items: center;
    gap: 1rem;

    padding: 0 2.2rem;

    color: #555;
    white-space: nowrap;
}

#footer .footer_tel_list a:first-child {
    padding-left: 0;
}

#footer .footer_tel_list a + a {
    border-left: 1px solid #ddd;
}

#footer .footer_tel_list span {
    color: #555;
    font-size: 1.35rem;
    font-weight: 600;
}

#footer .footer_tel_list strong {
    color: #ec788f;
    font-size: 1.8rem;
    font-weight: 700;
}


/* 상담시간: 전화번호 바로 우측 */
#footer .footer_time {
    flex: 0 0 auto;

    margin: 0 0 0 2.4rem;
    padding-left: 2.4rem;

    border-left: 1px solid #ddd;

    color: #777;
    font-size: 1.3rem;
    line-height: 1.5;
    white-space: nowrap;
}


/* SNS는 우측 끝 */
#footer .footer_sns {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0.8rem;
    margin-left: auto;
}

#footer .footer_sns a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 4rem;
    height: 4rem;

    border-radius: 50%;
    background: #ec788f;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

#footer .footer_sns a:hover {
    transform: translateY(-0.3rem);
    background: #df617a;
}

#footer .footer_sns img {
    display: block;
    width: 2rem;
    height: 2rem;
    padding: 0;
    background: none;
    border-radius: 0;
}


/* 태블릿 */
@media (max-width: 1200px) {
    #footer .footer_contact_bar {
        align-items: flex-start;
    }

    #footer .footer_contact_group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
    }

    #footer .footer_time {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }
}


/* 모바일 */
@media (max-width: 768px) {
    #footer .footer_contact_bar {
        flex-direction: column;
        align-items: stretch;
        padding: 1.8rem;
    }

    #footer .footer_contact_group {
        width: 100%;
    }

    #footer .footer_tel_list {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    #footer .footer_tel_list a {
        justify-content: space-between;
        width: 100%;
        padding: 1.2rem 0;
    }

    #footer .footer_tel_list a + a {
        border-left: 0;
        border-top: 1px solid #ddd;
    }

    #footer .footer_time {
        width: 100%;
        margin-top: 0.4rem;
        padding-top: 1.4rem;
        border-top: 1px solid #ddd;
    }

    #footer .footer_sns {
        margin-left: 0;
    }
}



/* =========================================================
   카카오톡 실시간 상담 지점 메뉴
========================================================= */

#side_lnk {
    overflow: visible !important;
}

#side_lnk .kakao_wrap {
    position: relative;
    overflow: visible !important;
}

/* 상담 메인 버튼 */
#side_lnk .kakao_wrap > .kakao {
    position: relative;
    z-index: 2;
}

/* 지점 선택 박스 */
#side_lnk .kakao_menu {
    position: absolute;
    top: 50%;
    right: calc(100% + 14px);

    width: 230px;
    padding: 10px;

    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(12px, -50%);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;

    z-index: 999;
}

/* 버튼과 메뉴 사이 마우스 연결 영역 */
#side_lnk .kakao_menu::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;

    width: 20px;
    height: 100%;
}

/* 말풍선 화살표 */
#side_lnk .kakao_menu::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;

    width: 16px;
    height: 16px;

    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);

    transform: translateY(-50%) rotate(45deg);
    z-index: 0;
}

/* 마우스 오버 시 메뉴 열기 */
#side_lnk .kakao_wrap:hover .kakao_menu,
#side_lnk .kakao_wrap:focus-within .kakao_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
}

/* 기존 side_lnk 공통 a 스타일 강제 초기화 */
#side_lnk .kakao_menu > a {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;

    width: 100% !important;
    height: 68px !important;
    min-width: 0 !important;
    min-height: 68px !important;

    margin: 0 !important;
    padding: 10px 52px 10px 18px !important;

    background: transparent !important;
    color: #222 !important;

    border: 0 !important;
    border-radius: 12px !important;

    box-sizing: border-box !important;
    text-align: left !important;
    text-decoration: none !important;
    white-space: normal !important;

    overflow: hidden !important;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease !important;
}

#side_lnk .kakao_menu > a + a {
    margin-top: 5px !important;
}

/* 지점명 */
#side_lnk .kakao_menu > a strong {
    display: block !important;

    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    color: #222 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
}

/* 상담하기 텍스트 */
#side_lnk .kakao_menu > a span {
    display: block !important;

    width: auto !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;

    color: #888 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
}

/* 우측 노란 화살표 */
#side_lnk .kakao_menu > a::after {
    content: "→";

    position: absolute;
    top: 50%;
    right: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    background: #fee500;
    color: #191919;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

/* 지점 항목 오버 */
#side_lnk .kakao_menu > a:hover,
#side_lnk .kakao_menu > a:focus {
    background: #fff8c5 !important;
    transform: translateX(-3px);
}

#side_lnk .kakao_menu > a:hover::after,
#side_lnk .kakao_menu > a:focus::after {
    transform: translateY(-50%) translateX(3px);
}

/* 모바일 */
@media (max-width: 768px) {

    #side_lnk .kakao_menu {
        top: auto;
        right: 0;
        bottom: calc(100% + 12px);

        width: 220px;

        transform: translateY(10px);
    }

    #side_lnk .kakao_wrap:hover .kakao_menu,
    #side_lnk .kakao_wrap:focus-within .kakao_menu {
        transform: translateY(0);
    }

    #side_lnk .kakao_menu::after {
        top: auto;
        right: 0;
        bottom: -18px;

        width: 100%;
        height: 18px;
    }

    #side_lnk .kakao_menu::before {
        top: auto;
        right: 28px;
        bottom: -8px;

        transform: rotate(135deg);
    }

    #side_lnk .kakao_menu > a {
        height: 62px !important;
        min-height: 62px !important;
    }
}








/* ===============================
   러시아어 통역 경력
================================= */

.jb-interpreter{
    margin:60px 0 0px;
    padding:32px 36px;
    background:#f8f5f1;
    border:1px solid #e8dfd4;
    border-radius:12px;
}

.jb-interpreter h3{
    margin:0 0 18px;
    font-size:2.2rem;
    font-weight:700;
    color:#8c6b46;
}

.jb-interpreter p{
    margin:0 0 20px;
    line-height:1.9;
    color:#444;
}

.jb-interpreter ul{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px 40px;
    margin:0;
    padding:0;
    list-style:none;
}

.jb-interpreter li{
    position:relative;
    padding-left:18px;
    line-height:1.8;
    color:#333;
}

.jb-interpreter li::before{
    content:"•";
    position:absolute;
    left:0;
    color:#b58b53;
    font-weight:bold;
}


/* ===============================
   안내문
================================= */

.jb-course-message{
    margin:30px auto 50px;
    text-align:center;
    max-width:900px;
}

.jb-course-message p{
    margin:0 0 18px;
    line-height:2;
    font-size:1.75rem;
    color:#444;
}

.jb-course-message .quote{
    margin-top:45px;
    font-size:2.8rem;
    line-height:1.6;
    font-weight:600;
    color:#a77b46;
    font-family:'Nanum Myeongjo', serif;
}


/* ===============================
   Mobile
================================= */

@media (max-width:768px){

    .jb-interpreter{
        padding:24px;
        margin:40px 0;
    }

    .jb-interpreter ul{
        grid-template-columns:1fr;
        gap:10px;
    }

    .jb-interpreter h3{
        font-size:1.9rem;
    }

    .jb-course-message{
        margin:50px auto 60px;
    }

    .jb-course-message p{
        font-size:1.55rem;
        line-height:1.8;
    }

    .jb-course-message .quote{
        font-size:2.2rem;
    }

}


.jb-course-message blockquote{
    margin:30px auto 70px;
    padding:0;
    border:0;

   font-family: "Noto Serif KR", serif;
    font-size:3.2rem;
    font-weight:600;
    line-height:1.5;
    text-align:center;

    color:#b48756;
    letter-spacing:-0.02em;
}


.jb-schedule dl{
    display:grid;
    grid-template-columns:120px 1fr;
    row-gap:28px;
    column-gap:20px;
    align-items:start;
}

.jb-schedule dt{
    margin:0;
    font-weight:700;
    color:#b58b53;
    line-height:1.8;
}

.jb-schedule dd{
    margin:0;
    line-height:1.8;
    color:#333;
}




/* 모바일 */
@media (max-width:768px){

.sub_title {
    position: relative;
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-position: 85% center;
    background-size: cover;
    text-transform: uppercase;
    color: var(--white-color);

    overflow: hidden;
    min-height: 26rem;
}


.sub_title .title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    transform: translate(-50%, calc(-50% + 3rem));
    width: 100%;
    text-align: left;
    margin-bottom: 0;
}

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

.sub_content .page_title {
    margin-bottom: 2rem;
}



.sub_content .page_title h3 strong {
    font-size: 3rem;
    font-weight: 700;
}

.sub_content .section_title {
    position: relative;
    display: inline-block;
    padding: 0 0 0 20px;
    margin: 0 0 20px;
    font-size: 1.2em;
    font-weight: 800;
    line-height: 0.9;
}


hr.hr_line {
    display: block;
    border: 1px solid transparent;
    border-top: 1px solid var(--line-color);
    margin: 4rem 40%;
}

.jn_member table td:first-child {
    width: 70px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    white-space: nowrap;
}











}