@charset "utf-8";



html[data-dark=false] .light-mode-image {
    display: block;
}
html[data-dark=false] .dark-mode-image {
    display: none;
}




.wrap {
    position: relative;
    max-width: 1740px;
    margin: 0 auto;
    overflow: hidden;
}
@media screen and (max-width:1280px) {
    .wrap {
        margin: 0 4%;
        max-width: 100%;
    }
}







/* mouse custom */
.cursor {position: fixed; left: 0; top: 0; pointer-events: none;}
.cursor-small {width: 20px; height: 20px; left: -10px; top: -10px; border-radius: 50%; z-index: 99999; background: #1C69FF; }
.cursor-small span {color: rgba(0,0,0,0); }
.cursor-small.more span {color: #333; display: block; line-height: 100px; text-align: center; text-transform: uppercase; font-weight: 600; font-size: 13px; letter-spacing: 0.5px; }
@media (hover: none) {
    /* 터치스크린용 미디어쿼리 1 */
    .cursor{ display: none !important; }
}
@media screen and (any-pointer: coarse) {
	/* 터치스크린용 미디어쿼리 2 */
    .cursor {display: none !important;}
}







/* scr-none : 모바일 메뉴 사용 시, body scroll 금지 */
.scr-none {
    overflow: hidden;
    height: 100%;
    touch-action: none;
}



/* 배경 그리드 */
.bg-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: -1;
}
.bg-grid span {
    position: absolute;
    top: 0;
    width: 1px; height: 100%;
    /* background: #f5f5f5; */
    background-color: var(--color-gray-100);
    animation-name: grid; animation-duration: 2s;
}
.bg-grid .vert-line-01 {
    left: 25%;
}
.bg-grid .vert-line-02 {
    left: 50%;
}
.bg-grid .vert-line-03 {
    left: 75%;
}
@keyframes grid {
	from { height: 0%; }
	to { height: 100%; }
}


@media screen and (max-width:1540px) {

}

@media screen and (max-width:1280px) {
    .bg-grid .vert-line-01 {
        left: 33.333%;
    }
    .bg-grid .vert-line-02 {
        left: 66.666%;
    }
    .bg-grid .vert-line-03 {
        display: none;
    }
}

@media screen and (max-width:1024px) {

}

@media screen and (max-width:860px) {

}

@media screen and (max-width:640px) {

}

@media screen and (max-width:460px) {

}





/* header */
header {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%; height: 120px;
    box-sizing: border-box;
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
header .wrap {
    width: 100%; height: 100%;
    max-width: none; margin: 0;
}
header h1.logo {
    position: absolute;
    top: 50%; left: 4%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
header h1.logo img {
    height: 36px;
}
header h1.logo > a {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
}
header h1 svg.gng {
    width:90px; /*height:36px;*/
}
header h1 svg.gng path.st0 {
    /* fill:#111111; */
    fill: var(--cod-gray);
}
header h1 svg.gng path.st1 {
    fill: var(--gray); opacity:0.3;
}
header h1.logo svg.media {
    display: none;
}
header h1.logo svg.media path.st0{
    fill: var(--cod-gray);
}
header h1.logo.media svg.media {
    display: block;
    width: 60px;
}


header.active {
    height: 85px;
}
header.active::before {
    content: ''; display: block; width:100%; height: 100%; z-index: 0;
    background: linear-gradient(180deg, rgb(220, 220, 220, 0.5) 0%, rgb(220, 220, 220, 0) 100%);
    position: absolute; top: 0; left: 0;
    backdrop-filter: blur(4px);
    mask: linear-gradient(black, black, transparent);

}
header.active .lnb > ul > li > a {
    line-height: 85px;
}

html[data-dark=true] header.active::before {
    background: linear-gradient(180deg, rgb(0, 0, 0, 0.5) 0%, rgb(0, 0, 0, 0) 100%);
}
html[data-dark=true] header.active .lnb > ul > li > a {
    color: #fff;
}



/* header - 1차 depth */
.lnb{position: absolute; z-index: 1; top: 0; left: 50%; transform: translateX(-50%);}
.lnb.hide{top: -10px; transition: 0.2s; opacity: 0; pointer-events: none;}
.lnb > ul{display: flex; gap: 4.5rem;}
.lnb > ul:after{display: none;}
.lnb > ul > li{position: relative; transition: 0.2s; vertical-align: top;}
.lnb > ul > li:nth-child(5){display: none;}
.lnb > ul > li > a{position: relative; display: block; font-size: 17px; /*padding: 0px 37px;*/ line-height: 120px; letter-spacing: 0; font-weight: 700; color: var(--black000);}
.lnb > ul > li > a:hover,
.lnb > ul > li > a:focus{/*font-weight: 500;*/}
.lnb > ul > li > a span{display: none;}
@media screen and (max-width:1280px) {
    header {
        height: 80px;
    }
    header.active {
        height: 80px;
    }
    header h1.logo {
        left: 3.5%;
    }
    header h1.logo > a{
        gap: 0.5rem;
    }
    header h1.logo a svg.gng {
        height: 30px;
        width: auto;
    }
    header h1.logo.media svg.media{
        height: 16px;
        width: auto;
    }

    .lnb > ul > li > a{display: none; line-height: 80px;}
}

@media screen and (max-width:1024px) {

}

@media screen and (max-width:860px) {
    header {
        height: 70px;
    }
    header.active {
        height: 70px;
    }
    header h1.logo a svg.gng {
        height: 25px;
    }
    header h1.logo.media svg.media{
        height: 13px;
    }
}

@media screen and (max-width:640px) {

}

@media screen and (max-width:460px) {

}



/* header 마우스 오버 일때 */
header.active .lnb > ul > li > a {
    color: #222;
}


/* header - 스크롤 일때 */
header.small {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
  background: #fff;
}
html[data-dark=true] header.small {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
  background: #161616;
}


/* header - snb - 오른쪽 상단메뉴 */
.snb {
  position: absolute;
  right: 4%;
  height: 100%;
}


/* header - snb - 언어선택 */
.snb .lang_area {
    position: relative;
    float: left;
    top: 50%; transform: translateY(-50%);
    background: #fff;
}
.snb .lang_area .btn_lang {
    position: relative;
    padding-right: 24px;
    font-weight: 600;
    font-size: 14px;
}
.snb .lang_area .btn_lang:after {
    content: "";
    display: block;
    position: absolute;
    right: 0; top: 5px;
    width: 10px; height: 6px;
    background: url('../img/common/ico-down-black.gif') 0 0 no-repeat;
}
.snb .lang_area .btn_lang.active:after {
    content: "";
    display: block;
    position: absolute;
    right: 0; top: 5px;
    width: 10px; height: 6px;
    background: url('../img/common/ico-down-black-on.gif') 0 0 no-repeat;
}
.snb .lang_area .lang_open {
    display: none;
    position: absolute;
    left: -16px; top: 38px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #1f1f1f;
}
.snb .lang_area .lang_open a {
    position: relative;
    display: block;
    padding-right: 10px; font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}
.snb .lang_area .lang_open a:last-child {
    margin-bottom: 0px;
}


/* header - snb - 언어선택 */
.snb .login_area {
    position: relative;
    float: left;
    top: 50%; transform: translateY(-50%);
    background: #fff;
    margin-left: 20px;
}
.snb .login_area .login_btn {
    position: relative;
    vertical-align: middle;
    padding-right: 24px;
    font-weight: 600;
    font-size: 14px;
    width: 30px; height: 30px;
    background: url('../img/common/ico-login-black.png') no-repeat center center / 26px auto;
}

.snb .login_area .login_open {
    display: none;
    position: absolute;
    left: -16px; top: 40px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #1f1f1f;
}
.snb .login_area .login_open a {
    position: relative;
    display: block;
    padding-right: 23px; font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}
.snb .login_area .login_open a:last-child {
    margin-bottom: 0px;
}

.snb .login_area .login_open.active {
    display: block;
}


/* header - snb - color mode */
/* .snb .color-mode {
    position: relative;
    float: left;
    top: 50%; transform: translateY(-50%);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 15px 0 0;
}
.snb .color-mode .color-mode-box{
    animation: dark_mode_hint 7s ease infinite both;
}
@keyframes dark_mode_hint{
    0%{transform: rotate(0deg);}
    84%{transform: rotate(0deg);}

    86%{transform: rotate(20deg);}
    90%{transform: rotate(-20deg);}

    94%{transform: rotate(20deg);}
    98%{transform: rotate(-20deg);}
    100%{transform: rotate(0deg);}
}
.snb .color-mode a.color-mode-btn {
    display:block; width:30px; height:30px;
    -webkit-transform :rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    -o-transform:rotate(90deg);
    transform:rotate(90deg);
    -webkit-transition: all 1s;
    -moz-transition: all 1s
    -ms-transition: all 1s;
    -o-transition:all 1s;
    transition: all 1s;
    border-radius:100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    overflow: hidden;
}
.snb .color-mode a.color-mode-btn span {
    display:block; width:100%; height:50%;
-webkit-border-radius : 100px 100px 0 0 ;
-moz-border-radius : 100px 100px 0 0 ;
-o-border-radius : 100px 100px 0 0 ;
 border-radius:100px 100px 0 0 ;
 border:1px solid var(--mine-shaft); box-sizing:border-box;
}
.snb .color-mode a.color-mode-btn span:first-child {
    background: rgba(0,0,0,0);
}

.snb .color-mode a.color-mode-btn span:last-child {
    -webkit-transform :rotate(180deg);
    -moz-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    transform:rotate(180deg);
    background: var(--mine-shaft);
}

.snb .color-mode a.color-mode-btn.on {
    -webkit-transform :rotate(270deg); -moz-transform:rotate(270deg); -ms-transform:rotate(270deg);  -o-transform:rotate(270deg); transform:rotate(270deg);
} */

.snb .color-mode {
    position: relative;
    float: left;
    top: 50%; transform: translateY(-50%);
    overflow: hidden;
    margin: 0 15px 0 0;

    background: var(--mine-shaft);
    box-sizing:border-box;
    width: 75px; height: 38px;
    border-radius: 50px;
}
.snb .color-mode .color-mode-box {
    padding: 5px;
    /* background: #fff; */
}
.snb .color-mode a.color-mode-btn {
    display:block;
    /* -webkit-transform :rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    -o-transform:rotate(90deg);
    transform:rotate(90deg); */
    -webkit-transition: all 1s;
    -moz-transition: all 1s
    -ms-transition: all 1s;
    -o-transition:all 1s;
    transition: all 1s;
    /* border-radius:100%; */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    overflow: hidden;
    /* background: pink; */
    border-radius: 15px;
    height: 28px;
    background-image: url('../img/common/color-mode-light.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 28px 28px;
}
.snb .color-mode a.color-mode-btn span {
    display: inline-block;
    width: 28px; height: 28px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s
    -ms-transition: all 1s;
    -o-transition:all 1s;
    transition: all 1s;
    background-color: var(--white);
    position: absolute;
    left: 5px;
    border-radius: 100%;


}

/* .snb .color-mode a.color-mode-btn span:last-child {
    -webkit-transform :rotate(180deg);
    -moz-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    transform:rotate(180deg);
    background: var(--mine-shaft);
} */

.snb .color-mode a.color-mode-btn.on {
    background-image: url('../img/common/color-mode-dark.png');
    background-position: center left;
}
.snb .color-mode a.color-mode-btn.on span{

    left: 41px;
}






/* header - snb - 사이트맵 / 모바일 메뉴 */
/* button */
.menu_all_btn {
    position: relative;
    /* z-index: 3; */
    float: left;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    cursor: pointer;
    width: 32px; height: 28px;
    margin-left: 10px;
}
.menu_all_btn span {
    display: block;
    position: absolute;
    width: 32px; height: 2px;
    /* background: #222;  */
    background: var(--mine-shaft);
    border-radius: 9px;
    opacity: 1;
    right: 0;
    /* left: 50%;
    -webkit-transform: translateX(-50%) rotate(0deg);
    -moz-transform: translateX(-50%) rotate(0deg);
    -o-transform: translateX(-50%) rotate(0deg);
    transform: translateX(-50%) rotate(0deg); */
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.menu_all_btn span:nth-child(1) {
    top: 0px;
}
.menu_all_btn span:nth-child(2),
.menu_all_btn span:nth-child(3) {
    top: 13px; right: 0;
    width: 22px;
}
.menu_all_btn span:nth-child(4) {
    bottom: 0px;
}

/* 오픈했을때 button */
.menu_all_btn.open span {
    /*background: #333;*/
    background: var(--black);
}
.menu_all_btn.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}
.menu_all_btn.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: -10px;
    top: 13px;
    width: 35px;
}
.menu_all_btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: -10px;
    top: 13px;
    width: 35px;
}
.menu_all_btn.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}

/* 사이트맵 / 모바일 메뉴 */
#sitemapBG {
    position: fixed;
    width: 100%; height: 100%;
    top: 0; left: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    background: #f5f5f5;
    z-index: 1000; opacity: 0;
    transition: 0.5s ease-in-out;
    will-change: transform;
    pointer-events: none;
}
#sitemapNAV{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1001; opacity: 0;
    background: transparent;
    transition: all 0.5s ease-in-out;
}
#sitemapNAV .wrap {
    width: 100vw; height: 100vh;
    min-width: 320px; max-width: none;
    display: table-cell; vertical-align: middle;
    text-align: center;
}

ul.sitemap_list {
    width: 100%; min-width: 110px; max-width: 860px;
    display: inline-block;
    text-align: left;
}
ul.sitemap_list > li {
    display: block;
    width: 100%;
    opacity: 0; vertical-align: top;
    transform: translateX(50%);
    transition: 0.4s cubic-bezier(0.365, 0.84, 0.44, 1);
}


ul.sitemap_list > li:nth-child(1){
  transition-delay: 0.05s;
}
ul.sitemap_list > li:nth-child(2){
  transition-delay: 0.1s;
}
ul.sitemap_list > li:nth-child(3){
  transition-delay: 0.15s;
}
ul.sitemap_list > li:nth-child(4){
  transition-delay: 0.2s;
  margin-top:3rem;
}
ul.sitemap_list > li:nth-child(5){
  transition-delay: 0.25s;
}
ul.sitemap_list > li:nth-child(6){
  transition-delay: 0.3s;
}
ul.sitemap_list > li:nth-child(7){
  transition-delay: 0.35s;
}
ul.sitemap_list > li:nth-child(1):before {content:'ABOUT'; display:block; font-size:0.8rem; font-weight:500; letter-spacing:1px; color:#999; position:relative;}
ul.sitemap_list > li:nth-child(4):before {content:'CONTACT'; display:block; font-size:0.8rem; font-weight:500; letter-spacing:1px; color:#999; position:relative;}
ul.sitemap_list > li > a {
    display: inline-block; position: relative;
    text-decoration: none;
    font-weight: 600; font-size: 4.5rem; line-height: 1.3em;
    transition: 0.25s;
    /* pointer-events: none; */
}
ul.sitemap_list > li > a:hover {
    color: var(--point-color);
}
ul.sitemap_list > li.work a span {
    display: inline-block;
    font-size: 0.9rem; font-weight:800;
    color: #fff; background: var(--point-color);
    position: absolute; top: 0; right: -48px;
    width: 48px; height:48px; line-height: 48px; text-align:center;
    border-radius: 50%;
}


ul.sitemap_list .sub_menu{
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
ul.sitemap_list .sub_menu li{
  margin: 5px 0;
}
ul.sitemap_list .sub_menu li a{
  display: inline-block; vertical-align: middle;
  color: #333;
  font-size: 1.1rem;
  white-space: nowrap;
}
ul.sitemap_list .sub_menu li a::before{
  content: '';
  display: inline-block; vertical-align: middle;
  width: 2px; height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin-right: 7px;
}

/* 오픈했을때 */
#sitemapBG.open{
    display: block; opacity: 1;
    pointer-events: auto;
}
#sitemapNAV.open{
    pointer-events: auto;
    opacity: 1;
}
#sitemapNAV.open ul.sitemap_list > li{
  opacity: 1;
  transform: translateX(0);
}

/* 사이트맵 내 sns */
#sitemapNAV .wrap .sns-ico {
    display: block; height: 30px;
    width: 100%; min-width: 110px; max-width: 860px;
    margin: 0 auto;
    text-align: left;
    vertical-align: middle;
}
#sitemapNAV .wrap .sns-ico > .sns-ico-wrap {
    transform: translateX(50%);
    opacity: 0;
    transition-delay: 0.25s;
    transition: 0.4s cubic-bezier(0.365, 0.84, 0.44, 1);
}
#sitemapNAV.open .wrap .sns-ico > .sns-ico-wrap{
    opacity: 1;
    transform: translateX(0);
}
#sitemapNAV .wrap .sns-ico > .sns-ico-wrap > .ico {
    display:inline-block;
    width: 30px; height: 30px;
    margin: 0 15px 0 0;
}
#sitemapNAV .wrap .sns-ico > .sns-ico-wrap > .ico > a {
    display: block;
    width: 30px; height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
}
#sitemapNAV .wrap .sns-ico > .sns-ico-wrap > div.ico-facebook a {
    background-image: url('../img/common/ico-sns-facebook.png');
}
#sitemapNAV .wrap .sns-ico > .sns-ico-wrap > div.ico-instagram a {
    background-image: url('../img/common/ico-sns-insta.png');
}
#sitemapNAV .wrap .sns-ico > .sns-ico-wrap > div.ico-blog a {
    margin-right: 0;
    background-image: url('../img/common/ico-sns-blog.png');
}



/* 모바일 메뉴 */
.m-gnb {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100%; max-width: 500px;
    background: #fff;
}
.m-gnb .gnb-top {
    color: #fff; background: #222;
    padding: 22px 35px; ;
}
.m-gnb .gnb-top h2 img {
    height: 30px;
}
.m-gnb .gnb-top .gnb-quick {
    padding: 15px 0 0 0; margin: 20px 0 0 0;
    border-top: 1px solid #555;
    overflow: hidden;
}
.m-gnb .gnb-top .gnb-quick a {
    float: left;
    position: relative;
    display:block; width: 50%;
    text-align: center;
}
.m-gnb .gnb-top .gnb-quick a::after {
    content: '';
    display: block;
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px; height: 15px;
    background: #555;
}
.m-gnb .gnb-top .gnb-quick a:last-child::after {
    content: none;
}

.m-gnb ul.sitemap_list {
    position: relative;
    top: 0; transform: translateY(0);
    width: auto;
    padding: 0 35px;
}
.m-gnb ul.sitemap_list > li {
    width: 100%;
    padding-left: 0;
    padding: 10px 0px; margin: 0;
    border-bottom: 1px solid #e8e8e8;
}
.m-gnb ul.sitemap_list > li > a {
    display: block;
    font-size: 1.2rem;
    color: #222;
    margin: 10px 0;
    pointer-events: auto;
}
.m-gnb ul.sitemap_list > li > a::after {
    background: url('../img/common/ico-down-black.gif') 0 0 no-repeat;
    width: 10px; height: 6px;
    top: 50%; bottom: auto;
    left: auto; right: 0;
    z-index: 9;
    display: block;
    transform-origin: center;
    transform: none;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* .m-gnb ul.sitemap_list > li:hover > a::after {
    content: none;
} */
.m-gnb ul.sitemap_list > li.active > a::after {
    background: url('../img/common/ico-down-black-on.gif') 0 0 no-repeat;
}
.m-gnb ul.sitemap_list .sub_menu {
    display: none;
    margin-top: 0; padding-top: 0; border-top: 0;
}
.m-gnb ul.sitemap_list .sub_menu li a {
    color: #222;
}
.m-gnb ul.sitemap_list .sub_menu li a::before {
    content: none;
}

.m-gnb ul.sitemap_list > li.active {

}



@media screen and (max-width:1280px) {
    ul.sitemap_list {
        width: auto; max-width: none;
    }
    ul.sitemap_list > li > a {
        font-size: 70px; line-height: 1.5em;
    }

    .snb {
        right: 3.5%;
    }
    .menu_all_btn {
        width: 30px; height: 28px;
    }
    .menu_all_btn span {
        width: 30px;
    }
    .menu_all_btn span:nth-child(2),
    .menu_all_btn span:nth-child(3) {
        width: 20px; top: 13px;
    }
    .snb .color-mode a.color-mode-btn {
        /*width: 28px; height: 28px;*/
    }
    #sitemapNAV .wrap .sns-ico{max-width: 417px;}
}

@media screen and (max-width:1024px) {

}

@media screen and (max-width:860px) {
    .snb .color-mode a.color-mode-btn {
        /*width: 24px; height: 24px;*/
    }
    .snb .color-mode{
        width: 65px; height: 32px;
    }
    .snb .color-mode .color-mode-box{
        padding: 4px;
    }
    .snb .color-mode a.color-mode-btn{
        height: 24px; background-size: 24px;
    }
    .snb .color-mode a.color-mode-btn span{
        width: 24px; height: 24px;
    }
    .snb .color-mode a.color-mode-btn.on span{
        left: 36px;
    }
    .menu_all_btn {
        width: 25px; height: 22px;
        margin-left: 0;
    }
    .menu_all_btn span {
        width: 25px;
    }
    .menu_all_btn span:nth-child(2),
    .menu_all_btn span:nth-child(3) {
        top: 10px;
        width: 16px;
    }
    .menu_all_btn.open span:nth-child(2),
    .menu_all_btn.open span:nth-child(3) {
        width: 29px; top: 10px;
    }
    ul.sitemap_list > li > a {
        font-size: 52px; line-height: 1.5em;
    }
    ul.sitemap_list > li.work a span {
        right: -45px; width:42px; height:42px; line-height:42px;
    }
    #sitemapNAV .wrap .sns-ico{max-width: 319px;}
}

@media screen and (max-width:640px) {

}

@media screen and (max-width:460px) {
    ul.sitemap_list > li > a {
        font-size: 42px; line-height: 1.7em;
    }
    ul.sitemap_list > li.work a span {
        right: -45px;
    }
    #sitemapNAV .wrap .sns-ico{max-width: 256px;}
    #sitemapNAV .wrap .sns-ico > .sns-ico-wrap > .ico{margin: 0 5px 0 0;}
}














@media screen and (max-width:1280px) {

}

@media screen and (max-width:1024px) {

}

@media screen and (max-width:860px) {

}

@media screen and (max-width:640px) {

}

@media screen and (max-width:460px) {

}






/* Sub Visual */
.sub_visual {
    position: relative; overflow: hidden;
    width: 100%; height: 320px;
    margin: 0 auto; margin-top: 90px;
    transition:all .1s linear; z-index:8;
}
.sub_visual .wrap {
    position: absolute;
    width: 100%; height: 100%; max-width: 1280px;
    top: 0; left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin:0 !important;
    z-index: 5;
}
.sub_visual .text{
    position: absolute;
    width: 100%;
    top: 50%; left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
    padding: 0; margin-top: -30px;
    color: #fff;
}
.sub_visual h2 {
    font-size: 40px; font-weight: 500;
}
.sub_visual p {
    color: #aaa;
}


/* Sub nav - PC */
.subdepth {
    position: relative;
    width: 100%; height: 65px; max-width: 1280px;
    margin: 0 auto; margin-top: -65px;
    background: #fff;
    z-index: 10;
}
.subdepth .inner{
    width: 1280px; margin: auto;
}
.subdepth .bgn {
    position: relative;
    text-align: center;
}
.subdepth .bgn span {
    display: inline-block;
    line-height: 65px;
}
.subdepth .bgn span a {
    display: block; position: relative;
    margin: 0 25px;
    white-space: nowrap;
    transition: 0.2s;
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
.subdepth .bgn span a.on {
    color: #cc0000;
    font-weight: 600;
}
.subdepth .bgn span a.on::after {
    content: '';
    display: block; position: absolute;
    bottom: 0;
    width: 100%;  height: 3px;
    background: #cc0000;
}


/* Sub nav - Mobile */
.submenu_select {
    display: none;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.submenu_select .inner {
    width: 100%;
}
.submenu_select .home {
    display: inline-block;
    width: 60px; height: 52px;
    vertical-align: middle;
    position: relative;
}
.submenu_select .main_menu {
    display: inline-block;
    width: 250px;
    vertical-align: middle;
    position: relative;
    height: 52px;
}
.submenu_select .sub_menu {
    display: inline-block;
    width: 250px;
    vertical-align: middle;
    position: relative;
}

.submenu_select .home::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select .home a {
    display: block; text-indent: -9999px; margin: 0 auto;
    width: 100%; height: 100%; background: url('../img/sub/home_ic.png') no-repeat center;
}

.submenu_select .main_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select .sub_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select button {
    border: none; outline: none; cursor: pointer;
    font-size: 14px; color: #222; letter-spacing: -0.8px;
    background: url('../img/sub/submenu_arr.png') transparent no-repeat 88% center;
    width: 100%; text-align: left; box-sizing: border-box;
    padding: 0 20px;
    line-height: 52px;
}
.submenu_select .main_menu ul,
.submenu_select .sub_menu ul {
    background: #fff;
    position: absolute;
    top: 58px;
    z-index: 9;
    width: 98%;
    padding: 10px 0;
    box-sizing: border-box;
    text-align: left;
    border-top: 1px solid #eee;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.submenu_select .main_menu ul li:hover,
.submenu_select .sub_menu ul li:hover{
    background: #f7f7f7;
}
.submenu_select .main_menu ul li a,
.submenu_select .sub_menu ul li a{
    display: block;
    font-size: 14px; color: #222; letter-spacing: -0.8px;
    box-sizing: border-box; padding: 5px 20px;
}

.sub_visual .visual_img {
    display:block;
    position:absolute;
    z-index:3;
    width: 100%;
    height:100%;
    margin:0 0 0 -50%;
    left:50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sub_visual .visual_img img{
    animation:ani_slide1 3s ease-in-out;
    display:block;
    margin:0 auto;
    z-index:8;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes ani_slide1 {
    0% {margin-top: 0px;}
    50% {margin-top: -40px;}
    100% {margin-top: 0;}
}

@media screen and (max-width:1280px) {
    .sub_visual {
        margin-top: 80px;
    }
    .subdepth {
        width: 95%;
    }
    .subdepth .inner {
        width: 100%;
    }
}

@media screen and (max-width:1024px) {
    .sub_visual {
      height: auto;
      padding-bottom: 20%;
      margin-top: 80px;
    }
    .subdepth {
        display: none;
    }
    .submenu_select {
        display: block;
    }
    .sub_visual .text {
        margin-top: 0;
    }
    .sub_visual h2 {
        font-size: 32px;
    }
}

@media screen and (max-width:860px) {
    .sub_visual {
        margin-top: 70px;
    }
    .sub_visual .text {
        display: none;
    }
    .submenu_select .home {
        width: 10%;
    }
    .submenu_select .main_menu {
        width: 42%;
    }
    .submenu_select .sub_menu {
        width: 42%;
    }
    .submenu_select .sub_menu::after {
        content: none;
    }
}

@media screen and (max-width:640px) {

}

@media screen and (max-width:460px) {

}



















/* Sub Layout */
.sub_container {
    clear: both; position: relative;
    min-height: 400px;
    overflow: hidden;
    padding: 80px 0; margin: 80px auto 0;
    z-index: 1;
}
.sub_contents {
    z-index: 10;
}
.sub_contents .wrap {
    max-width: 1400px;
    box-sizing: border-box;
}

@media screen and (max-width: 1540px) {
    .sub_contents .wrap {
        max-width: 100%;
        margin: 0 4%; padding: 0;
    }
}
@media screen and (max-width: 1280px) {
    .sub_container {
        margin: 80px auto 0;
    }
    .sub_contents .wrap {
        max-width: 100%;
        margin: 0 3.5%; padding: 0;
    }
}
@media screen and (max-width:860px){
    .sub_container {
        margin: 70px auto 0;
    }
}
@media screen and (max-width:425px){
    .sub_container {
        padding: 55px 0 4rem;
    }
}


/* mobile depth navigation */
.m_page_navi {display:none;}
.m_button {display:none;}

@media screen and (max-width:640px){
.m_page_navi {display:block; position:absolute; z-index:12; width:100%; margin:132px 0 0 0;}
.m_page_navi:after {clear:both; display:block; content:"";}
.m_page_navi ul li {width:50%; float:left;}
.m_page_navi ul li.prv {text-align:left;}
.m_page_navi ul li.nxt {text-align:right;}
.m_page_navi ul li.prv dl {padding:0 0 0 4%; }
.m_page_navi ul li.nxt dl {padding:0 4% 0 0;}
.m_page_navi ul li dl a {display:block;}
.m_page_navi ul li dl dd {font-size:13px; color:#fff; line-height:1em; padding:7px 0 0 0; letter-spacing:0.5px;}

.m_button {display:block; position:absolute; z-index:12; width:100%; margin:132px 0 0 0; text-align:center;}
.m_button a {display:inline-block; line-height:33px; vertical-align:middle; border:1px solid rgba(255,255,255,.8); color:#fff; font-size:14px; padding:0 20px;}
}

















/****************** footer ******************/
footer {
    position: relative; z-index: 2;
    padding: 50px 0 80px 0;
    font-size: 15px;

}
body.main footer{
    background-color: #f5f5f5;
}
footer .wrap {
    overflow: hidden;
    width: 92%; max-width: none;

}
footer .wrap .left-info {
    float: left;
    vertical-align: top;
}
footer .wrap .left-info .address {
    overflow: hidden;
}
footer .wrap .left-info .address li {
    float: left; margin-right: 100px;
}
footer .wrap .left-info .address li:last-child {
    margin-right: 0;
}
footer .wrap .left-info .address li div.tit {
    color: #888888; font-weight: 800;
    margin: 0 0 20px 0;
}
footer .wrap .left-info .address li p{}
footer .wrap .left-info .address li p .ico{vertical-align: middle; margin: 0 0 0 3.5px;}
footer .wrap .left-info .address li p .ico.dark{display: none;}

footer .wrap .left-info .sns-ico{display: flex; gap: 1.625rem; margin: 2.813rem 0 0;}
footer .wrap .left-info .sns-ico > .ico {}
footer .wrap .left-info .sns-ico > .ico > a{display: block; background-repeat: no-repeat; background-position: center center; font-size: 0;}
footer .wrap .left-info .sns-ico > .ico > a img.dark{display: none;}



footer .wrap .right-info {
    float: right;
}
footer .wrap .right-info > div > img:nth-child(1),
footer .wrap .right-info > div > img:nth-child(2),
footer .wrap .right-info > div > img:nth-child(3),
footer .wrap .right-info > div > img:nth-child(4) {
    margin-right: 15px;
}
footer .wrap .right-info .light-mode-image {
    display: inline-block;
}

footer .wrap .right-info > div > img:nth-child(5),
footer .wrap .right-info > div > img:nth-child(6) {
    height: 52px;
}


@media screen and (max-width:1280px) {
    footer {
        font-size: 14px;
    }
    footer .wrap{
        width: 93%; margin: 0 auto; max-width: none;
    }
    footer .wrap .left-info .address li {
        margin-right: 60px;
    }
    footer .wrap .right-info div img:nth-last-of-type(1) {
        height: 32px;
    }
    footer .wrap .right-info div img:nth-last-of-type(2) {
        height: 32px;
    }
    footer .wrap .left-info {
        float: none;
    }
    footer .wrap .right-info {
        float: none;
        margin-top: 50px;
    }
}

@media screen and (max-width:1024px) {

}

@media screen and (max-width:768px) {
    footer {
        padding: 30px 0 60px 0;
    }

    footer .wrap .left-info{
        position: relative;
    }
    footer .wrap .left-info .address li {
        float: none;
        margin-right: 0; margin-bottom: 20px;
    }
    footer .wrap .left-info .address li:last-child{
        margin-bottom: 0;
    }
    footer .wrap .left-info .address li div.tit {
        margin: 0 0 10px 0;
    }

    footer .wrap .left-info .sns-ico{

    }
}

@media screen and (max-width:560px) {
    footer .wrap .right-info div img:nth-last-of-type(1),
    footer .wrap .right-info div img:nth-last-of-type(2) {
        height: 32px;
        margin-top: 15px;
    }
}

@media screen and (max-width:320px) {
    footer .wrap .right-info div img:nth-last-of-type(1),
    footer .wrap .right-info div img:nth-last-of-type(2) {
        height: 32px;
        margin-top: 0;
    }

}










.aside-right {
    position: fixed;
    bottom: 5%; right: 4%;
    z-index: 9999;
}
.aside-right .contact-round {
    display: block; text-align: right;
    margin-bottom: 60px;
}
.aside-right .contact-round span {
    display: block;
}
.aside-right .contact-round span.round {
    position: relative; display: inline-block;
    width: 135px; height: 135px;
    transition: all .2s linear;
    padding: 5px; border-radius: 50%;
 }
.aside-right .contact-round span.round::before {
    content: ''; display: block;
    position: absolute; width: 80px; height: 80px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 50%;
}
.aside-right .contact-round svg {
    position: relative; fill: currentColor;
     width: 100%; height: 100%;
    transform-origin: center;
    animation: rotate 8s linear infinite both;
}
.aside-right .contact-round svg text {
    font-family: 'Pretendard'; letter-spacing: 1px;
    font-size: 0.43rem; font-weight: 900; text-transform: uppercase;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.aside-right .contact-round span.round {
    /* color: #fff; background: #111; */
    color: var(--white); background: var(--cod-gray);
}
.aside-right .contact-round span.round::before {
    background: url("../img/main/gng-white.svg") center center no-repeat;
    background-size: 30px;
}
.aside-right > .sns-ico {
    display: inline-block; height: 30px;
    vertical-align: middle;
}
.aside-right > .sns-ico > .ico {
    display:inline-block;
    width: 30px; height: 30px;
    margin: 0 15px 0 0;
}
.aside-right > .sns-ico > .ico > a {
    display: block;
    width: 30px; height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
}
.aside-right > .sns-ico > div.ico-facebook a {
    background-image: url('../img/common/ico-sns-facebook.png');
}
.aside-right > .sns-ico > div.ico-instagram a {
    background-image: url('../img/common/ico-sns-insta.png');
}
.aside-right > .sns-ico > div.ico-blog a {
    margin-right: 0;
    background-image: url('../img/common/ico-sns-blog.png');
}
.aside-right > .company-brief {
    display: inline-block;
    vertical-align: middle;
}
.aside-right > .company-brief > a {
    text-transform: uppercase;
    font-size: 12px; font-weight: 900; letter-spacing: 0.25px;
}


@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


@media screen and (max-width:1280px) {
    .aside-right {
        right: 2.5%; bottom: 2.5%;
    }
    .aside-right .contact-round {
        margin-bottom: 0;
    }
    .aside-right .contact-round span.round {
        width: 100px; height: 100px;
    }
    .aside-right .contact-round span.round::before {
        width: 50px; height: 50px;
        background-size: 24px;
    }
    .aside-right .contact-round svg text {
        font-size: 0.45rem;
    }
    .aside-right > .sns-ico {
        display: none;
    }
    .aside-right > .company-brief {
        display: none;
    }
}

@media screen and (max-width:1024px) {

}

@media screen and (max-width:860px) {
    .aside-right .contact-round span.round {
        width: 65px; height: 65px;
    }
    .aside-right .contact-round span.round::before {
        width: 50px; height: 50px;
        background-size: 16px;
    }
    .aside-right .contact-round svg text {
        font-size: 0.49rem;
    }
}

@media screen and (max-width:560px) {

}

@media screen and (max-width:320px) {

}













.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 99999;
}
.popup .close {
    position: fixed;
    top: 20px; right: 20px;
    top: 12%; right: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-right: -345px;
    display: block;
    font-size: 20px;
    color: #000;
    z-index: 999999;
    width: 40px; height:40px;
}
.popup .close span {
    position: absolute;
    width: 40px; height: 2px;
    background: #000;
    z-index: 9999999;
}
.popup .close span:nth-child(1) {
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    -moz-transform: translate(-50%,-50%) rotate(45deg);
    -o-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg);
}
.popup .close span:nth-child(2) {
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    -moz-transform: translate(-50%,-50%) rotate(-45deg);
    -o-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg);
}

.popup .popup-con {
    background: rgba(0,0,0,.7);
    position: fixed;
    width: 100vw; height: 100vh;
}
.popup .popup-layer-wrap {
    display: block;
    padding: 50px;
    width: 650px; height: 75%; min-width: 280px;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #fff;
    overflow: hidden;
    color: #333;
}
.popup .popup-layer-wrap h5 {
    font-size: 30px; font-weight: 700;
    text-align: center;
}



@media all and (max-width:1024px){

}
@media all and (max-width:768px){

}
@media all and (max-width:640px){

}


.progress-bar {height: 2px; background: #1C69FF; position: fixed; z-index:99999; top: 0; left: 0;}

#contact_us{position: fixed; z-index: 5; bottom: 25px; right: 25px; display: flex; flex-direction: column; gap: 1rem;}
#contact_us .btn_contact{display: flex; justify-content: center; align-items: center; width: 112px; height: 60px; border-radius: 60px; font-size: 0.938rem; font-weight: 700; filter: drop-shadow(0 4px 4px rgba(0,0,0,0.25));}
#contact_us .btn_contact.estimate{background-color: #1C69FF; color: #fff;}
#contact_us .btn_contact.ch_launcher{background-color: #fff; color: #111;}
#contact_us .btn_contact span{display: inline-flex; gap: 0.5rem; align-items: center;}
#contact_us .btn_contact span:before{content: ""; display: inline-block; margin: 0 0 0 0; vertical-align: middle; width: 18px; height: 19px; background-repeat: no-repeat; background-size: contain;}
#contact_us .btn_contact.estimate span:before{background-image: url("../img/common/ico_estimate.png");}
#contact_us .btn_contact.ch_launcher span:before{background-image: url("../img/common/ico_consult.png");}
@media (max-width: 768px){
    #contact_us{gap: 0.5rem;}
    #contact_us .btn_contact{width: 96px; height: 44px; font-size: 13px;}
    #contact_us .btn_contact span{gap: 0.4rem;}
    #contact_us .btn_contact span:before{width: 14px; height: 15px;}
}
@media (max-width: 460px){
    #contact_us{bottom: 15px; right: 15px;}
    #contact_us .btn_contact{width: 55px; height: 55px; border-radius: 50%; font-size: 0;}
    #contact_us .btn_contact span{display: inline-block;}
    #contact_us .btn_contact span:before {width: 18px; height: 20px;}
}
