@charset "utf-8";
/* *******************************************************
 * filename : layout_responsive.css
 * date : 2026-06-20
******************************************************** */
/* ========================================================
 * SETTING
======================================================== */
@media all and (max-width:1024px) {
  :root {
    --header-height:70px;
  }
}
@media all and (max-width:800px) {
  :root {
    --area-padding: 5vw;
    --sub-visual-height: 30rem;
    --header-height:70px;
  }
}
@media all and (max-width: 480px) {
  :root {
    --sub-menu-height: 45px;
  }
}
/* ========================================================
 * FONT SIZE
======================================================== */
@media all and (max-width:1536px) {
  html {
    font-size: 0.6510vw;
  } /* 10 */
}
@media all and (max-width:1280px) {
  html {
    font-size: 0.8594vw;
  } /* 10 -> 11*/
}
@media all and (max-width:800px) {
  html {
    font-size: 1.375vw
  } /* 10 -> 11*/
}
@media all and (max-width:640px) {
  html {
    font-size: 1.7188vw
  } /* 10 -> 11*/
}
@media all and (max-width: 480px) {
  html {
    font-size: 2.2vw
  } /* 10 */
}
@media all and (max-width: 412px) {
  html {
    font-size: 2.4272vw
  } /* 10 */
}
@media all and (max-width:390px) {
  html {
    font-size: 2.1795vw
  } /* 10 -> 8.5 */
}
/* ========================================================
 * LAYOUT
======================================================== */
/* ****************** 공통클래스 ********************** */
@media all and (max-width:1780px) {
  .area-wrap {
    padding: 0 var(--area-padding);
    max-width: none;
  }
}
@media all and (max-width:1600px) {
  .area-box {
    padding: 0 var(--area-padding);
    max-width: none;
	  width:calc(100% - var(--area-padding) * 2);
  }
}
@media all and (max-width:1280px) {
  .m-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
  .display-m {
    display: block;
  }
  .display-pc {
    display: none;
  }
}
@media all and (max-width:800px) {
  .pc-middle-br {
    display: none;
  }
}
/* ****************** HEADER ********************** */
@media all and (min-width:1281px) {
  #headerInnerWrap {
    transform: translateY(calc(-1 * (var(--header-hesight) + var(--header-top))));
    transition-property: transform;
  }
}
@media all and (max-width: 1280px) {
	#header.header-top #headerInnerWrap {
    top: 0
}
	 #header:not(.header-top) #headerInnerWrap {
        position: fixed;
        z-index: 99;
		 top:0!important;
		 backdrop-filter: blur(8px);
    background: rgba(3, 3, 3, 0.4);
    box-shadow: inset 0px 1px 16px 0px rgba(255, 255, 255, 0.2);
}

  #headerInnerWrap {
    position: fixed;
    z-index: 99;
  }
	#header.black .logo span {
    background-image: url(../images/logo.png);
}
  /* -------- Header :: GNB(Pc) -------- */
  #gnb {
    display: none;
  }
  /* -------- Header :: GNB(Mobile/기본스타일) -------- */
  .gnb-overlay-bg-m {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }
  #gnbM {
    display: block;
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transition: var(--transition-custom);
    visibility: hidden;
  }
  #gnbM.open {
    top: 0px;
    visibility: visible;
  }
  /* GNB Mobile :: 레이아웃 */
  .gnb-navigation-wrapper {
    box-sizing: border-box;
    overflow-y: auto;
    width: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0;
    padding-top: 0;
  }
  .gnb-navigation-inner {
    display: table;
    width: 100%;
    height: 100%;
  }
  /* GNB Mobile :: 메뉴영역 :: 1차 */
  #navigation {
    display: table-cell;
    vertical-align: middle;
  }
  #navigation > li {
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0s 0s;
  }
  #navigation > li > a {
    position: relative;
    display: block;
    padding: 2rem var(--area-padding);
    color: #333;
    font-size: 3.5rem;
    font-weight: 500;
	      text-transform: uppercase;
  }
  #navigation > li.active > a {
    color: var(--main-color);
  }
  /* -------- GNB Mobile :: 스타일2 (Full Style) -------- */
  #gnbM.open #navigation > li {
    opacity: 1.0;
    transform: translateY(0px);
    transition: transform 0.8s, opacity 0.8s;
  }
  #gnbM.open #navigation > li:nth-child(1) {
    transition-delay: 0.3s;
  }
  #gnbM.open #navigation > li:nth-child(2) {
    transition-delay: 0.4s;
  }
  #gnbM.open #navigation > li:nth-child(3) {
    transition-delay: 0.5s;
  }
  #gnbM.open #navigation > li:nth-child(4) {
    transition-delay: 0.6s;
  }
  #gnbM.open #navigation > li:nth-child(5) {
    transition-delay: 0.7s;
  }
  #gnbM.open #navigation > li:nth-child(6) {
    transition-delay: 0.8s;
  }
  #gnbM.open #navigation > li:nth-child(7) {
    transition-delay: 0.9s;
  }
  /* -------- Header :: 네비게이션 오픈 버튼 -------- */
  .nav-open-btn {
    display: block;
    position: fixed;
    top: 32px;
    right: var(--area-padding);
    z-index: 10000;
    height: 30px;
    margin-top: calc(-1 * (var(--header-height) + var(--header-top)));
    transition: all 0.8s ease-in-out;
    transition-property: margin-top;
  }
  .nav-open-btn .line {
    display: block;
    width: 6rem;
    height: 4px;
    background-color: #fff;
    margin: 8px auto;
    transition: var(--transition-custom);
  }
  .nav-open-btn .line:nth-child(1) {
    background: var(--main-color)
  }
	.nav-open-btn.active {top:70px;}
  .nav-open-btn.active .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-open-btn.active .line:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #header .nav-open-btn .line {
    background-color: #888
  }
  #header .nav-open-btn .line:nth-child(1) {
    background-color: var(--main-color) !important;
  }
}

@media all and (max-width: 480px) and (max-width: 700px) { 
	.nav-open-btn.active {top:32px;}
	    .nav-open-btn .line {
        width: 3rem
    }
}

@media all and (max-width: 1024px) {
    .nav-open-btn {
        top: 20px;
    }
 }

@media all and (max-width: 480px) {
  #header .logo a span {
    background-size: auto 20px;
	  
    width: 147px;
    height: 20px;
}
  /* Header :: GNB(Mobile) */
  #navigation > li > a {
    font-size: 16px;
	  padding: 1.5rem var(--area-padding);
  }
}
/* ****************** FOOTER ********************** */
@media all and (max-width:800px) {
  /* -------- FOOTER  -------- */
  #footer {
    padding: 4rem 0;
  }
  .footer-menu {
    margin-bottom: 1.4rem;
  }
  .footer-menu a {
    padding: 0 6px;    font-size: 1.4rem;
  }
  .footer-menu a:before {
    height: 6px;
    margin-top: -3px;
  }
  .footer-address-con p {
    margin: 3px 0;
  }
  .footer-address-con p span {
    margin-right: 6px;font-size: 1.4rem;line-height: 2.1rem;
  }
	.footer-address-con p.copyright {
    font-size: 1.2rem;
}
}

@media all and (max-width: 480px) and (max-width: 700px) { 
	.footer-address-con p span {
        font-size: 1.3rem;
        line-height: 1.6rem;
    }
}