      body.hidden {
          overflow: hidden;
      }

      body {
          overflow: auto;
      }

      /*header*/
      .header {
          position: relative;
          width: 100%;
          height: var(--header-height);
          box-sizing: border-box;
          top: 0;
          left: 0;
          z-index: 9999;
      }

      .header .headerInnerWrap {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: var(--header-height);
          display: flex;
          justify-content: center;
          align-items: flex-start;
          z-index: 100;
      }

      /*헤더 이너*/
      .headerInnerWrap .headerInner {
          position: absolute;
          width: 100%;
          max-width: 1640px;
          display: flex;
          align-items: flex-start;
          justify-content: space-between;
          padding: 0 var(--area-padding);
          box-sizing: border-box;
          z-index: 100;
      }

      /*로고*/
      .headerInner .logo {
          width: 150px;
          height: var(--header-height);
          display: flex;
          align-items: center;
      }

      .headerInner .logo a {
          width: 150px;
          height: 100%;
          display: block;
          background-image: url(/images/logo.png);
          background-size: 100%;
          background-repeat: no-repeat;
          background-position: center;
          transition: var(--transition-custom);
      }

      /*로고:on*/
      /*
      .headerInner .logo a.view {
          background-image: url(/images/logo_hover.png);
      }
*/

      /*언어선택 박스 , 사이트맵 박스*/
      .headerInner .header-util-box {
          height: var(--header-height);
          display: flex;
          align-items: center;
      }

      /* 언어선택 박스*/
      .headerInner .header-util-box ul.header-lang-list {
          position: relative;
          display: flex
      }

      .headerInner .header-util-box ul.header-lang-list li {
          position: relative;
          width: 50%;
          font-size: 14px;
          font-weight: 500;
          color: #262D32;
          ;
      }

      .headerInner .header-util-box ul.header-lang-list li > a {
          display: block;
          position: relative;
          opacity: 0.4;
          color: #262D32;
          padding: 0 10px;
          transition: var(--transition-custom);
      }

      .headerInner .header-util-box ul.header-lang-list li.en::before {
          position: absolute;
          content: '';
          top: 3px;
          left: 0;
          width: 1px;
          height: 10px;
          background: rgba(0, 0, 0, 0.2);
      }

      /*언어선택:hover*/
      .headerInner .header-util-box ul.header-lang-list li.kr > a,
      .headerInner .header-util-box ul.header-lang-list li.en > a:hover {
          opacity: 1.0;
      }

      /*사이트맵 버튼*/
      .headerInner .header-util-box .sitemap-btn > a {
          position: relative;
          display: flex;
          width: 35px;
          height: 25px;
          flex-wrap: wrap;
          justify-content: space-between;
          margin: -4px 0 -4px 20px;
          box-sizing: border-box;
      }

      .headerInner .header-util-box .sitemap-btn > a span,
      .headerInner .header-util-box .sitemap-btn > a span::before,
      .headerInner .header-util-box .sitemap-btn > a span::after {
          position: absolute;
          width: 100%;
          height: 4px;
          left: 0;
          display: block;
          background: #ffa208;
          transition: var(--transition-custom);
      }

      .headerInner .header-util-box .sitemap-btn > a span {
          top: 50%;
          transform: translteY(-50%, -50%);
      }

      .header-util-box .sitemap-btn > a > span:before {
          content: '';
          top: -13px;
      }

      .headerInner .header-util-box .sitemap-btn > a span:after {
          content: '';
          top: 13px;
      }

      /*사이트맵 버튼:hover*/
      .headerInner .header-util-box .sitemap-btn:hover > a span:before,
      .headerInner .header-util-box .sitemap-btn:hover > a span:after {
          width: 70%;
      }

      /*사이트맵 버튼 ON*/
      .headerInner .header-util-box .sitemap-btn.view > a span {
          background: transparent;
      }

      .headerInner .header-util-box .sitemap-btn.view > a span:before {
          top: 0;
          transform: rotate(45deg);
      }

      .headerInner .header-util-box .sitemap-btn.view > a span:after {
          top: 0;
          transform: rotate(-45deg);
      }

      /*사이트맵*/
      .sitemap-wrap {
          position: fixed;
          display: none;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100%;
          opacity: 0;
          justify-content: center;
          align-items: center;
          transition: var(--transition-custom);
          background-color: rgba(0, 0, 0, 0.9);
          box-sizing: border-box;
          overflow-y: scroll;
      }

      .sitemap-wrap .sitemap-area {
          width: 100%;
          max-width: var(--area-wrap-width);
          padding: 0 var(--area-padding);
          box-sizing: border-box;
      }

      .sitemap-wrap .sitemap-area > ul {
          width: 100%;
          display: flex;
          flex-wrap: nowrap;
          margin-top: -30px;
          opacity: 0;
          transition: all 0.8s;
      }

      .sitemap-wrap.view .sitemap-area > ul {
          opacity: 1;
          transition: all 0.8s;
          margin-top: 0px;
      }

      .sitemap-wrap .sitemap-area > ul > li {
          position: relative;
          width: 12.5%;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: center;
      }


      .sitemap-wrap .sitemap-area > ul > li.view {
          background-color: #ffff;
          padding: 10px var(--area-padding);
      }

      .sitemap-wrap .sitemap-area > ul > li > h2 {
          display: block;
          position: relative;
          width: 100%;
          max-width: 150px;
          font-size: 18px;
          font-weight: 500;
          color: #fff;
          letter-spacing: -1;
          line-height: 50px;
      }

      .sitemap-wrap .sitemap-area > ul > li > h2.view {
          color: #ffa208;
          transition: var(--transition-custom);
      }

      .sitemap-wrap .sitemap-area > ul > li > h2::after {
          content: "";
          position: absolute;
          top: -30px;
          left: 0;
          width: 12px;
          height: 7px;
          background-color: #ffa208;
          border-radius: 3px;
          opacity: 0;
      }

      .sitemap-wrap .sitemap-area > ul > li > h2.view::after {
          top: 0px;
          opacity: 1;
          transition: var(--transition-custom);
      }

      .sitemap-wrap .sitemap-area > ul > li .sitemap-2dep {
          width: 100%;
          max-width: 150px;
      }

      .sitemap-wrap .sitemap-area > ul > li .sitemap-2dep li > a {
          font-size: 14px;
          line-height: 40px;
          color: rgba(255, 255, 255, 0.7);
          letter-spacing: -1;
          font-weight: 300;
      }

      /*사이트맵 ON*/
      .sitemap-wrap.view {
          display: flex;
          opacity: 1;
          transition: var(--transition-custom);
      }

      /*사이트맵 항목 hover 이벤트 */
      .sitemap-wrap .sitemap-area > ul > li .sitemap-2dep li:hover a {
          color: #ffa208;
      }

      .sitemap-wrap .sitemap-area > ul > li .sitemap-2dep li.view2 a {
          color: #fff;
      }

      .gnb-wrap.view {
          display: none;
          opacity: 0;
      }

      .headerInner .header-util-box ul.header-lang-list li.view > a {
          color: #fff;
      }

      /*상단 메뉴 백그라운드*/
      .gnb-overlay-bg {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 0;
          background-color: #fff;
          border-bottom: 1px solid #dddddd;
          z-index: 95;
          opacity: 0;
          transition: height 0.3s ease-in-out, opacity 0.2s ease-in-out;
      }

      .headerInner .header-util-box ul.header-lang-list li.view > a {
          color: #ffffff;
      }

      /*상단메뉴 백그라운드 ON*/
      .gnb-overlay-bg.view {
          opacity: 1;
          height: 480px;
      }

      /*상단메뉴*/
      .gnb-wrap {
          width: 100%;
          box-sizing: border-box;
          transition: var(--transition-custom);
      }

      .gnb-wrap .gnb-box {
          display: flex;
          justify-content: flex-end;
          box-sizing: border-box;
      }

      .gnb-wrap .gnb-box ul.gnb {
          display: flex;
          justify-content: flex-end;
      }

      .gnb-wrap .gnb-box ul.gnb > li {
          word-break: keep-all;
          transition: var(--transition-custom);
          display: flex;
          flex-direction: column;
      }

      .gnb-wrap .gnb-box ul.gnb > li > a {
          display: block;
          line-height: var(--header-height);
          padding: 0 15px;
          text-align: center;
          color: #262D32;
          font-size: 16px;
          letter-spacing: -1px;
          font-weight: 600;
          transition: var(--transition-custom);
          pointer-events: none;
      }

      .gnb-wrap .gnb-box ul.gnb > li .gnb-2dep {
          width: 100%;
          height: 0;
          opacity: 0;
          display: none;
          padding-bottom: 20px;
      }

      .gnb-wrap .gnb-box ul.gnb > li .gnb-2dep ul {
          width: 100%;
      }

      .gnb-wrap .gnb-box ul.gnb > li .gnb-2dep ul li {
          width: 100%;
      }

      .gnb-wrap .gnb-box ul.gnb > li .gnb-2dep ul li a {
          display: block;
          width: 100%;
          color: rgba(0, 0, 0, 0.7);
          font-size: 14px;
          line-height: 40px;
          font-weight: 400;
          transition: var(--transition-custom);
          text-align: center;
          letter-spacing: -1px;
      }

      /*상단메뉴:hover*/
      .gnb-wrap .gnb-box ul.gnb > li:hover {
          background: #ffa208;
      }

      .gnb-wrap .gnb-box ul.gnb:hover > li > a {
          padding: 0 30px;
          color: rgba(0, 0, 0, 0.7);
      }

      .gnb-wrap .gnb-box ul.gnb:hover > li .gnb-2dep {
          opacity: 1;
          visibility: visible;
          height: 100%;
          display: block;
      }

      .gnb-wrap .gnb-box ul.gnb > li .gnb-2dep ul > li:hover > a {
          color: #ffffff;
      }


      /** 데스크탑 */
      @media screen and (max-width:1600px) {
          .gnb-wrap .gnb-box ul.gnb > li > a {
              padding: 0 10px;
          }

          .gnb-wrap .gnb-box ul.gnb:hover > li > a {
              padding: 0 19px;
          }

          .sitemap-wrap .sitemap-area > ul > li > h2::after {
              display: none;
          }

          .sitemap-wrap {
              padding-top: 100px;
          }

          .sitemap-wrap .sitemap-area > ul {
              flex-wrap: wrap;
          }

          .sitemap-wrap .sitemap-area > ul > li {
              width: 25%;
          }

          .sitemap-wrap .sitemap-area > ul > li:nth-of-type(-n+4) {
              padding-bottom: 20px;
          }

          .sitemap-wrap .sitemap-area > ul > li .sitemap-2dep li > a {
              line-height: 30px;
          }
      }

      /** 타블렛 가로, 노트북 */
      @media screen and (max-width:1280px) {
          .gnb-wrap {
              opacity: 0;
              display: none;
          }

      }

      /** 타블렛 가로, 노트북 */
      @media screen and (max-width: 1024px) {}

      /** 모바일 가로, 타블렛 세로 */
      @media screen and (max-width: 768px) {
          .headerInnerWrap .headerInner.view {
              background-color: rgba(0, 0, 0, 0.2);
          }

          .sitemap-wrap {
              justify-content: center;
              align-items: flex-start;
          }

          .sitemap-wrap .sitemap-area {
              padding: 0 0;
          }

          .sitemap-wrap .sitemap-area > ul > li {
              width: 100%;
              padding: 0 var(--area-padding) 10px;
          }

          .sitemap-wrap .sitemap-area > ul > li:nth-of-type(-n+4) {
              padding-bottom: 10px;
          }

          .sitemap-wrap .sitemap-area > ul > li > h2 {
              text-align: center;
          }

          .sitemap-wrap .sitemap-area > ul > li .sitemap-2dep li > a {
              line-height: 30px;
              color: var(--main-color);
          }

          .sitemap-wrap .sitemap-area > ul > li .sitemap-2dep {
              display: none;
          }
          .sitemap-wrap .sitemap-area > ul > li.view .sitemap-2dep {
              display: block;
          }
          .sitemap-wrap .sitemap-area > ul > li.view > h2 {
              color: #262D32;
          }

          .sitemap-wrap .sitemap-area > ul > li .sitemap-2dep li {
              text-align: center;
          }
      }

      @media screen and (max-width: 480px) {
          /** 모바일 세로 */
      }

      /*푸터*/
      .footer {
          width: 100%;
          padding: 30px 0;
          background-color: #ffa208;
      }

      .footer .footer-inner {
          width: 100%;
          max-width: var(--area-box-width);
          margin: 0 auto;
          padding: 0 var(--area-padding);
          box-sizing: border-box;
          background-color: #ffa208;
          display: flex;
          justify-content: space-between;
      }

      .footer .footer-inner .lft-box {
          width: 100%;
          max-width: calc(100% - 200px);
      }
      .footer .footer-inner .lft-box a {
          color: #ffffff;
      }
      .footer .footer-inner .lft-box .footer-top {
          width: 100%;
          overflow: hidden;
          display: flex;
          align-items: center;
          margin-bottom: 15px;
      }

      .footer .footer-inner .lft-box .footer-top .footer-logo {
          width: 137px;
      }

      .footer .footer-inner .lft-box .footer-top .footer-logo img {
          width: 100%;
      }

      .footer .footer-inner .lft-box .footer-top ul.link-wrap {
          width: calc(100% - 137px);
          display: flex;
          padding-left: 20px;
          box-sizing: border-box;
      }

      .footer .footer-inner .lft-box .footer-top ul.link-wrap li {
          padding: 0 20px;
          font-size: 16px
      }

      .footer .footer-inner .lft-box .footer-top ul.link-wrap li a {
          color: rgba(255, 255, 255, 0.8);

      }

      .footer .footer-inner .lft-box .footer-top ul.link-wrap li:first-child a {
          color: #ffffff;
      }

      .footer .footer-inner .lft-box .footer-num {
          width: 100%;
          display: flex;
          margin-bottom: 7px;
      }

      .footer .footer-inner .lft-box .footer-num > span {
          font-size: 16px;
          color: #ffffff;
      }

      .footer .footer-inner .lft-box .footer-num > p {
          font-size: 16px;
          color: #ffffff;
          margin-left: 20px;
      }

      .footer .footer-inner .lft-box ul.contact {
          width: 100%;
          overflow: hidden;
          display: flex;
          margin-bottom: 25px;
      }

      .footer .footer-inner .lft-box ul.contact li {
          display: flex;
          margin-right: 30px;
      }

      .footer .footer-inner .lft-box ul.contact span {
          font-size: 16px;
          color: rgba(255, 255, 255, 0.8);
      }

      .footer .footer-inner .lft-box ul.contact p {
          font-size: 16px;
          color: #ffffff;
          margin-left: 10px;
      }

      .footer .footer-inner .lft-box .reserved {
          width: 100%;
          font-size: 14px;
          color: rgba(255, 255, 255, 0.8);
      }

      .footer .footer-inner .rgt-box {
          width: 200px;
          display: flex;
          flex-direction: column;
          align-items: flex-end;
          box-sizing: border-box;
      }

      .family {
          position: relative;
          width: 160px;
          background-color: #ffa208;
          border-bottom: 1px solid #ffffff;
          margin-bottom: 15px;
      }

      .family .tap-clik {
          display: block;
          position: relative;
          z-index: 10;
          height: 29px;
          font-size: 16px;
          font-weight: 700;
          color: #fff;
          line-height: 27px;
          transition: all .2s;
          text-decoration: none;
          cursor: pointer;
      }

      .family .icon {
          position: relative;
          display: inline-block;
          width: 26px;
          height: 17px;
          overflow: hidden;
          vertical-align: middle;
      }

      .family .icon:before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          width: 8px;
          height: 8px;
          -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
          margin-top: 2px;
          border-top: 1px solid #fff;
          border-left: 1px solid #fff;
      }

      .family .icon.rotate:before {
          transform: translate(-50%, -50%) rotate(-135deg);
          -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          margin-top: -4px;
      }

      .family ul {
          position: absolute;
          bottom: -10px;
          width: 160px;
          padding: 5px 10px;
          margin-bottom: 29px;
          background: #ffffff;
          opacity: 0;
          box-sizing: border-box;
      }

      .family ul li a {
          display: block;
          position: relative;
          padding: 7px 0;
          font-size: 14px;
          color: var(--main-color);
          text-decoration: none;
          letter-spacing: -1px;
      }

      .family ul li a:hover {
          color: #2879fe
      }

      .family ul.opacity {
          opacity: 1;
          transition: bottom 0.4s;
          bottom: 0px;
      }


      .footer .footer-inner .rgt-box ul.sns {
          width: 200px;
          overflow: hidden;
          display: flex;
      }

      .footer .footer-inner .rgt-box ul.sns li {
          width: 40px;
          margin: 5px;
      }

      .footer .footer-inner .rgt-box ul.sns li img {
          width: 100%;
      }


      @media screen and (max-width:1028px) {
          .footer {
              padding: var(--inner-padding80) 0;
          }

          .footer .footer-inner {
              flex-direction: column;
          }

          .footer .footer-inner .lft-box {
              max-width: 100%;
          }

          .footer .footer-inner .lft-box .footer-num {
              flex-direction: column;
          }

          .footer .footer-inner .lft-box .footer-num > p {
              margin-top: 5px;
              margin-left: 0px;

          }

          .footer .footer-inner .lft-box ul.contact {
              flex-direction: column;
          }

          .footer .footer-inner .lft-box ul.contact li {
              margin-bottom: 5px;
          }

          .footer .footer-inner .lft-box ul.contact span {
              margin-right: 5px;
          }

          .footer .footer-inner .rgt-box {
              max-width: 100%;
              width: 100%;
              margin-bottom: 30px;
          }

          .family {}
      }

      @media screen and (max-width:678px) {
          .footer .footer-inner {
              flex-direction: column;
          }

          .footer .footer-inner .lft-box .footer-top {
              flex-direction: column;
          }

          .footer .footer-inner .lft-box .footer-top ul.link-wrap {
              width: 100%;
              justify-content: center;
              margin-top: 35px;
              padding-left: 0px;
          }

          .footer .footer-inner .lft-box .footer-top ul.link-wrap li {
              width: 100%;
              max-width: 105px;
              text-align: center;
              font-size: 14px;
              padding: 0 0;
          }

          .footer .footer-inner .lft-box .footer-num {
              align-items: center;
              margin-bottom: 15px;
              margin-top: 35px;
          }

          .footer .footer-inner .lft-box .footer-num > span {
              font-size: 14px;
          }

          .footer .footer-inner .lft-box .footer-num > p {
              text-align: center;
              font-size: 14px;
          }

          .footer .footer-inner .lft-box ul.contact {
              align-items: center;
          }

          .footer .footer-inner .lft-box ul.contact li {
              flex-direction: column;
              align-items: center;
              margin-bottom: 20px;
              margin-right: 0px;
              font-size: 14px;
          }

          .footer .footer-inner .lft-box ul.contact span {
              font-size: 14px;
          }

          .footer .footer-inner .lft-box ul.contact p {
              font-size: 14px;
              margin-top: 5px;
              margin-left: 0;
          }

          .footer .footer-inner .lft-box .reserved {
              text-align: center;
          }

          .footer .footer-inner .rgt-box {
              align-items: center;
              margin-bottom: 0;
              margin-top: 30px;
          }

      }
