@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
@import url('//fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&display=swap');


/* 초기화 */
body, button, dd, dl, dt, fieldset, form, html, input, legend, li, ol, p, select, table, td, textarea, th, ul {
    padding: 0;
    margin: 0;
}
html {overflow:hidden;overflow-y:scroll;}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
}

body {
    font-weight: 400;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
}

body, button, html, input, pre, select, textarea {
   
}

h1, h2, h3, h4, h5, h6, strong {
    margin: 0;
    font-size: 100%;
    font-weight: 400;
    line-height: 1;
    margin-block-end: 0;
    margin-block-start: 0;
}

body, button, input, pre, select, textarea {
    font-family: "Pretendard", Helvetica, Arial, sans-serif;
    color: #666;
}

pre {
    white-space: pre-wrap;
}

button, fieldset, img {
    border: 0;
}

button, img, input {
    vertical-align: top;
}

img {
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    word-break: break-all;
    word-wrap: break-word;
}

address, em {
    font-style: normal;
}

li, ol, ul {
    list-style: none;
}

hr {
    display: none;
}

a {
    color: inherit;
}

a, a:active, a:hover {
    text-decoration: none;
}

legend {
    position: absolute;
    left: -9999px;
    top: 0;
}

caption {
    overflow: hidden;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
}

button {
    background: none;
    cursor: pointer;
    -webkit-appearance: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

textarea {
    resize: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.blind {
    display: none;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    border: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

.hide {
    display: none !important;
    visibility: hidden !important;
}

.swiper-scrollbar-drag {
    cursor: pointer;
}

@media (min-width: 1025px) and (pointer: fine) {
    :root {
        --pointer: fine;
    }
}

@media (max-width: 1024px),
(max-width: 1366px) and (pointer: coarse) {
    :root {
        --pointer: coarse;
    }
}



html {
  --window-w: 100vw;
  --window-h: 100vh;
}
:root {
  --base-ratio: 0.75;
  --base-size: 1536;
  --base-percent: 100vw;
}
@media (max-width:1024px) {
  :root {
    --base-ratio: 1;
    --base-size: 1;
    --base-percent: 1px;
  }
}

/* 스크롤 잠금(필요 시) */
body.overflow,
html.overflow {
  height: 100%;
  min-height: 100%;
  overflow: hidden !important;
  touch-action: none;
}

/* 레이아웃 래퍼 */
#wrap {
  position: relative;
  width: 100%;
}

/* 컨테이너 & 콘텐츠 패딩 */
.container {
  width: 100%;
  max-width: max(
    calc(1920px * var(--base-ratio)),
    calc(calc(1920 / var(--base-size)) * var(--base-percent))
  );
  margin: 0 auto;
}
.container .content {
  padding:
    max(calc(90px * var(--base-ratio)), calc(calc(90 / var(--base-size)) * var(--base-percent))) 0
    max(calc(180px * var(--base-ratio)), calc(calc(180 / var(--base-size)) * var(--base-percent)));
}
@media (max-width:1024px) {
  .container {
    max-width: max(
      calc(1920px * var(--base-ratio)),
      calc(calc(1920 / var(--base-size)) * var(--base-percent))
    );
  }
  .container .content {
    padding:
      max(calc(80px * var(--base-ratio)), calc(calc(80 / var(--base-size)) * var(--base-percent))) 0
      max(calc(120px * var(--base-ratio)), calc(calc(120 / var(--base-size)) * var(--base-percent)));
  }
}
@media (max-width:767px) {
  .container {
    max-width: max(
      calc(1920px * var(--base-ratio)),
      calc(calc(1920 / var(--base-size)) * var(--base-percent))
    );
  }
  .container .content {
    padding:
      max(calc(70px * var(--base-ratio)), calc(calc(70 / var(--base-size)) * var(--base-percent))) 0
      max(calc(120px * var(--base-ratio)), calc(calc(120 / var(--base-size)) * var(--base-percent)));
  }
}

/* sticky 영역 */
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: max(calc(calc(calc(1 / var(--base-size)) * var(--base-percent)) * -1));
  left: 0;
  width: 100%;
  height: calc(100vh + max(calc(2px * var(--base-ratio)), calc(calc(2 / var(--base-size)) * var(--base-percent))));
  overflow: hidden;
}



#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 120vh;
    z-index: 9999999999999;
    background: #21312C;
}

#intro.end {
    opacity: 0;
    transition: 1.2s opacity ease-in-out;
}

#intro .intro_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 115vh;
    text-align: center;
}

#intro .intro_wrap .intro_logo {
    position: relative;
    /* display:none; */
    /* position:absolute;top:50%;left:50%; */
    width: 100%;
    height: 93px;
	margin-top:60px;
    /* opacity:0; */
    z-index: 0;
    /* transform:translate(-50%, -50%); */
}

#intro .intro_wrap .intro_logo.on {
}

#intro .intro_wrap .intro_logo span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    opacity: 0;
    transform: translate(-50% , -75%);
    transition: 1s all;
}

#intro .intro_wrap .intro_logo.move span {
    display: block;
    transform: translate(-50% , -106%);
    transition: 1.5s all;
}

#intro .intro_wrap .intro_logo.on span {
    opacity: 1;
    transition: 1.5s all;
}

/* #intro .intro_wrap .intro_logo.on span{opacity:0;transition:1.5s 3s  all;} */
#intro .intro_wrap .intro_logo img {
    width: 100%;
}

#intro .intro_wrap .intro_text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 68px;
    letter-spacing: 0.6px;
	line-height:1.13;
    color: #CDAF82;
    opacity: 0;
    transform: translate(-50%, -50%);
}

#intro .intro_wrap .intro_text.on {
    opacity: 1;
    transition: 1.5s opacity;
}

#intro .intro_wrap .intro_text.move {
    transform: translate(-50%, 40%);
    transition: 1.5s all;
}

#intro .intro_wrap .loading_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 138px;
    height: 138px;
    transform: translate(-50%,-50%);
    opacity: 0;
}

#intro .intro_wrap .loading_wrap.on {
    opacity: 1;
    transition: 1.5s 2.8s all;
}

#intro .intro_wrap .loading_wrap p {
    position: absolute;
}

#intro .intro_wrap .loading_wrap .loading_logo {
    width: 138px;
    height: 138px;
}

#intro .intro_wrap .loading_wrap .loading_logo img {
    display: block;
    width: 80px;
    margin: 34px auto;
}

#intro .intro_wrap .loading_wrap .loading_circle {
    width: 138px;
}

@keyframes introLogo {
    from {
        opacity: 0;
        transform: transform: translate(-50%,0%);
        -webkit-transform: translate(-50%,0%);
    }

    to {
        opacity: 1;
        transform: transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
}

@keyframes introText {
    from {
        transform: transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }

    to {
        transform: transform: translate(-50%,280px);
        -webkit-transform: translate(-50%,280px);
    }
}


/* Common */
.skip,
.skip a {width:0px;height:0px;line-height:0;border:none;position:fixed;top:0px;left:0px;font-size:0;overflow:hidden;z-index:100000;}
.skip a:focus, .skip a:active {width:100%;height:50px;line-height:50px;background:#21272e;color:#fff;font-size:24px;font-weight:bold;text-align:center;text-decoration:none;}
.hidden{width:0px;height:0px;line-height:0;border:none;position:absolute;top:0;left:0;font-size:0;overflow:hidden;}
.cfix:after{display:block;clear:both;content:"";}
.marno{margin:0}
.blind{ position: absolute; left:-9999px;}
.justify{text-align:justify;}
.justify:after {content:""; display:inline-block;width:100%;}
.ellipsis{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.green{color:#717e56}

.pt160{padding-top:160px !important}
.pb160{padding-bottom:160px !important}

.pt140{padding-top:140px !important}
.pb140{padding-bottom:140px !important}
/* 마진 */
.mb0{margin-bottom:0px !important;}
.mb5{margin-bottom:5px !important;}
.mb10{margin-bottom:10px !important;}
.mb15{margin-bottom:15px !important;}
.mb20{margin-bottom:20px !important;}
.mb25{margin-bottom:25px !important;}
.mb30{margin-bottom:30px !important;}
.mb35{margin-bottom:35px !important;}
.mb40{margin-bottom:40px !important;}
.mb45{margin-bottom:45px !important;}
.mb50{margin-bottom:50px !important;}
.mb55{margin-bottom:55px !important;}
.mb60{margin-bottom:60px !important;}
.mb65{margin-bottom:65px !important;}
.mb70{margin-bottom:70px !important;}
.mb75{margin-bottom:75px !important;}
.mb80{margin-bottom:80px !important;}
.mb85{margin-bottom:85px !important;}
.mb90{margin-bottom:90px !important;}
.mb95{margin-bottom:95px !important;}
.mb100{margin-bottom:100px !important;}
.mb150{margin-bottom:150px !important;}

.mt0{margin-top:0px !important;}
.mt5{margin-top:5px !important;}
.mt10{margin-top:10px !important;}
.mt15{margin-top:15px !important;}
.mt20{margin-top:20px !important;}
.mt25{margin-top:25px !important;}
.mt30{margin-top:30px !important;}
.mt35{margin-top:35px !important;}
.mt40{margin-top:40px !important;}
.mt45{margin-top:45px !important;}
.mt50{margin-top:50px !important;}
.mt55{margin-top:55px !important;}
.mt60{margin-top:60px !important;}
.mt65{margin-top:65px !important;}
.mt70{margin-top:70px !important;}
.mt75{margin-top:75px !important;}
.mt80{margin-top:80px !important;}
.mt85{margin-top:85px !important;}
.mt90{margin-top:90px !important;}
.mt95{margin-top:95px !important;}
.mt100{margin-top:100px !important;}


.flex_row{display: flex; }
.flex_row.fw{flex-wrap:wrap; }
.flex_row.al_fs{display: flex; align-items: flex-start;}
.flex_row.center{display: flex; align-items: center;}
.flex_row.jc_center{justify-content: center;}
.flex_row.jc_fs{justify-content: flex-start;}
.flex_row.jc_fe{justify-content: flex-end;}
.flex_row.sb{justify-content:space-between;}
.flex_row.sa{justify-content:space-around;}
.flex_row.se{justify-content:space-between;}
.w80{width:80%}
.w70{width:70%}

/*
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 100;
  src: url('/assets/fonts/NotoSansKR-Thin.woff2') format('woff2'),
	   url('/assets/fonts/NotoSansKR-Thin.woff') format('woff'),
	   url('/assets/fonts/NotoSansKR-Thin.otf') format('opentype');
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 300;
  src: url('/assets/fonts/NotoSansKR-Light.woff2') format('woff2'),
	   url('/assets/fonts/NotoSansKR-Light.woff') format('woff'),
	   url('/assets/fonts/NotoSansKR-Light.otf') format('opentype');
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 350;
  src: url('/assets/fonts/NotoSans-DemiLight.woff2') format('woff2'),
	   url('/assets/fonts/NotoSans-DemiLight.woff') format('woff'),
	   url('/assets/fonts/NotoSans-DemiLight.otf') format('opentype');
}
@font-face {
   font-family: 'Noto Sans KR';
   font-style: normal;
   font-weight: 400;
   src: url('/assets/fonts/NotoSansKR-Regular.woff2') format('woff2'),
		url('/assets/fonts/NotoSansKR-Regular.woff') format('woff'),
		url('/assets/fonts/NotoSansKR-Regular.otf') format('opentype');
 }
@font-face {
   font-family: 'Noto Sans KR';
   font-style: normal;
   font-weight: 500;
   src: url('/assets/fonts/NotoSansKR-Medium.woff2') format('woff2'),
		url('/assets/fonts/NotoSansKR-Medium.woff') format('woff'),
		url('/assets/fonts/NotoSansKR-Medium.otf') format('opentype');
 }
@font-face {
   font-family: 'Noto Sans KR';
   font-style: normal;
   font-weight: 700;
   src: url('/assets/fonts/NotoSansKR-Bold.woff2') format('woff2'),
		url('/assets/fonts/NotoSansKR-Bold.woff') format('woff'),
		url('/assets/fonts/NotoSansKR-Bold.otf') format('opentype');
 }
@font-face {
   font-family: 'Noto Sans KR';
   font-style: normal;
   font-weight: 900;
   src: url('/assets/fonts/NotoSansKR-Black.woff2') format('woff2'),
		url('/assets/fonts/NotoSansKR-Black.woff') format('woff'),
		url('/assets/fonts/NotoSansKR-Black.otf') format('opentype');
 }

@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 100; 
	src: url('/assets/fonts/scdream1-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdream1-webfont.woff') format('woff');
}
@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 200; 
	src: url('/assets/fonts/scdreamap_con-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdreamap_con-webfont.woff') format('woff');
}
@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 300; 
	src: url('/assets/fonts/scdream3-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdream3-webfont.woff') format('woff');
}
@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 400; 
	src: url('/assets/fonts/scdream4-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdream4-webfont.woff') format('woff');
}
@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 500; 
	src: url('/assets/fonts/scdream5-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdream5-webfont.woff') format('woff');
}
@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 600; 
	src: url('/assets/fonts/scdream6-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdream6-webfont.woff') format('woff');
}
@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 700; 
	src: url('/assets/fonts/scdream7-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdream7-webfont.woff') format('woff');
}
@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 800; 
	src: url('/assets/fonts/scdream8-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdream8-webfont.woff') format('woff');
}
@font-face {
	font-family: 'S Core Dream'; 
	font-style: normal;
	font-weight: 900; 
	src: url('/assets/fonts/scdream9-webfont.woff2') format('woff2'), 
       url('/assets/fonts/scdream9-webfont.woff') format('woff');
}
@font-face {
   font-family: 'Eulyoo';
   font-style: normal;
   font-weight: 400;
   src: url('/assets/fonts/Eulyoo1945-Regular.woff2') format('woff2'),
		url('/assets/fonts/Eulyoo1945-Regular.woff') format('woff'),
		url('/assets/fonts/Eulyoo1945-Regular.eof') format('eot');
}
@font-face {
   font-family: 'Eulyoo';
   font-style: normal;
   font-weight: 600;
   src: url('/assets/fonts/Eulyoo1945-SemiBold.woff2') format('woff2'),
		url('/assets/fonts/Eulyoo1945-SemiBold.woff') format('woff'),
		url('/assets/fonts/Eulyoo1945-SemiBold.eof') format('eot');
}
*/
@font-face {
    font-family: 'KudryashevDisplay-Sans';
    src: url('/assets/fonts/KudryashevDisplay-Sans.woff2') format('woff2');
    src: url('/assets/fonts/KudryashevDisplay-Sans.woff') format('woff');
}
.gl{font-family:'KudryashevDisplay-Sans';}
.nm{font-family:'Nanum Myeongjo'}
.bg_gray{background:#f3f3f3}

@font-face {
   font-family: 'FelixTitling';
   font-style: normal;
   font-weight: 400;
   src: url('/assets/fonts/FelixTitling.woff2') format('woff2'),
		url('/assets/fonts/FelixTitling.woff') format('woff');
}
@font-face {
   font-family: 'Futura Bk Book';
   font-style: normal;
   font-weight: 400;
   src: url('/assets/fonts/Futura-Bk-Book.woff2') format('woff2'),
		url('/assets/fonts/Futura-Bk-Book.woff') format('woff');
}


@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 100; 
	src: url('/assets/fonts/Pretendard-Thin.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-Thin.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 200; 
	src: url('/assets/fonts/Pretendard-ExtraLight.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-ExtraLight.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 300; 
	src: url('/assets/fonts/Pretendard-Light.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-Light.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 400; 
	src: url('/assets/fonts/Pretendard-Regular.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-Regular.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 500; 
	src: url('/assets/fonts/Pretendard-Medium.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-Medium.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 600; 
	src: url('/assets/fonts/Pretendard-SemiBold.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-SemiBold.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 700; 
	src: url('/assets/fonts/Pretendard-Bold.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-Bold.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 800; 
	src: url('/assets/fonts/Pretendard-ExtraBold.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-ExtraBold.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard'; 
	font-style: normal;
	font-weight: 900; 
	src: url('/assets/fonts/Pretendard-Black.woff2') format('font-woff2'), 
       url('/assets/fonts/Pretendard-Black.woff') format('woff');
}

@font-face {
	font-family: 'IvyMode'; 
	font-style: normal;
	font-weight: 300; 
	src: url('/assets/fonts/IvyMode-Light.woff2') format('font-woff2'), 
       url('/assets/fonts/IvyMode-Light.woff') format('woff');
}
@font-face {
	font-family: 'IvyMode'; 
	font-style: normal;
	font-weight: 400; 
	src: url('/assets/fonts/IvyMode-Regular.woff2') format('font-woff2'), 
       url('/assets/fonts/IvyMode-Regular.woff') format('woff');
}
@font-face {
	font-family: 'IvyMode'; 
	font-style: normal;
	font-weight: 600; 
	src: url('/assets/fonts/IvyMode-SemiBold.woff2') format('font-woff2'), 
       url('/assets/fonts/IvyMode-SemiBold.woff') format('woff');
}
/* font-size */
.txt180{font-size:180px;line-height:1.2; letter-spacing:-10px;}
.txt120{font-size:120px;line-height:1.2;}
.txt98{font-size:98px;line-height:1.2;}
.txt88{font-size:88px;line-height:1.2;}
.txt84{font-size:84px;line-height:1.2;}
.txt78{font-size:78px;line-height:1.2;}
.txt74{font-size:74px;line-height:1.2;}
.txt72{font-size:72px;line-height:1.2;}
.txt68{font-size:68px;line-height:1.2;}
.txt66{font-size:66px;line-height:1.2;}
.txt62{font-size:62px;line-height:1.2;}
.txt60{font-size:60px;line-height:1.2;}
.txt58{font-size:58px;line-height:1.2;}
.txt56{font-size:56px;line-height:1.2;}
.txt54{font-size:54px;line-height:1.2;}
.txt53{font-size:53px;line-height:1.2;}
.txt52{font-size:52px;line-height:130%;}
.txt50{font-size:50px;line-height:130%;}
.txt48{font-size:48px;line-height:130%;}
.txt46{font-size:46px;line-height:1.2;}
.txt45{font-size:45px;line-height:1.428;}
.txt44{font-size:44px;line-height:1.428;}
.txt42{font-size:42px;line-height:1.2;}
.txt40{font-size:40px;line-height:1.428;}
.txt38{font-size:38px;line-height:130%;}
.txt36{font-size:36px;line-height:1.428;}
.txt34{font-size:34px;line-height:1.428;}
.txt32{font-size:32px;line-height:1.428;}
.txt30{font-size:30px;line-height:180%;}
.txt28{font-size:28px;line-height:1.33;}
.txt26{font-size:26px;line-height:1.33;}
.txt24{font-size:24px;line-height:1.53;}
.txt22{font-size:22px;line-height:1.33;}
.txt21{font-size:21px;line-height:1.33;}
.txt20{font-size:20px;line-height:1.53;}
.txt19{font-size:19px;line-height:1.53;}
.txt18{font-size:18px;line-height:1.53;}
.txt17{font-size:17px;line-height:1.33;}
.txt16{font-size:16px;line-height:1.33;}
.txt15{font-size:15px;line-height:1.33;}
.txt14{font-size:14px;line-height:1.5;}
.txt13{font-size:13px;line-height:1.5;}
.txt12{font-size:12px;line-height:1.5;}
.txt11{font-size:11px;line-height:1.5;}
.txt10{font-size:10px;line-height:1.5;}
.txt8{font-size:8px;line-height:1.33;}


/* 공통 */
.row {width: 100%; margin:0 auto; position: relative;}
.tly-60{position:absolute;left:0;top:60%;width:100%;transform:translateY(-50%);-moz-transform:translateY(-50%);-webkit-transform:translateY(-50%);-o-transform:translateY(-50%);}
.tly-50{position:absolute;left:0;top:50%;width:100%;transform:translateY(-50%);-moz-transform:translateY(-50%);-webkit-transform:translateY(-50%);-o-transform:translateY(-50%);}
.tly-40{position:absolute;left:0;top:40%;width:100%;transform:translateY(-50%);-moz-transform:translateY(-50%);-webkit-transform:translateY(-50%);-o-transform:translateY(-50%);}
.tly-30{position:absolute;left:0;top:30%;width:100%;transform:translateY(-50%);-moz-transform:translateY(-50%);-webkit-transform:translateY(-50%);-o-transform:translateY(-50%);}
.tly-20{position:absolute;left:0;top:20%;width:100%;transform:translateY(-50%);-moz-transform:translateY(-50%);-webkit-transform:translateY(-50%);-o-transform:translateY(-50%);}



.tlx-50{position:absolute;left:50%;top:0;transform:translateX(-50%);-moz-transform:translateX(-50%);-webkit-transform:translateX(-50%);-o-transform:translateX(-50%);}
.tl-50{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);}

article {position: relative;}
.white {color: #fff;}
.black {color: #151515;}
.gray {color: #666;}
.gray8 {color: #888;}
.gray9 {color: #999;}
.beige {color: #93b19e;}
.blue {color: #6b8aab;}
.bg_yellow{background:#f9f4ee}
.bg_red{background:#faf1ef}


.all_block {display: block;}
.inline_1280 {display: block;}
.inline_1000 {display: block;}
.inline_980 {display: block;}
.inline_820 {display: block;}
.inline_520 {display: block;}
.in820_b520 {display: block;}

.fwn {font-weight: normal;}
.fwb {font-weight: bold;}
.fw100 {font-weight: 100;}
.fw200 {font-weight: 200;}
.fw300 {font-weight: 300;}
.fw350 {font-weight: 350;}
.fw400 {font-weight: 400;}
.fw500 {font-weight: 500;}
.fw600 {font-weight: 600;}
.fw700 {font-weight: 700;}
.fw800 {font-weight: 800;}
.fw900 {font-weight: 900;}
.wk {-ms-word-break: keep-all;word-break: keep-all;}
.tac {text-align: center;}
.tal {text-align: left;}
.tar {text-align: right;}

.pd30{ padding-left:30px;}
.pd18{ padding-left:18px;}
.pd10{ padding-left:10px;}

.lh1 {line-height: 1;}
.lh12 {line-height: 1.2;}
.lh13 {line-height: 1.33;}
.lh15 {line-height: 1.5;}
.lh17 {line-height: 1.7;}
.lh2 {line-height: 2;}
.lh3 {line-height: 3;}

.w2100 {max-width: 2130px; margin: 0 auto; position: relative; padding: 0 15px;}
.w1800 {max-width: 1830px; margin: 0 auto; position: relative; padding: 0 15px;}
.w1600 {max-width: 1630px; margin: 0 auto; position: relative; padding: 0 15px;}
.w1500 {max-width: 1530px; margin: 0 auto; position: relative; padding: 0 15px;}
.w1400 {max-width: 1430px; margin: 0 auto; position: relative; padding: 0 15px;}
.w1300 {max-width: 1330px; margin: 0 auto; position: relative; padding: 0 15px;}
.w1200 {max-width: 1230px; margin: 0 auto; position: relative; padding: 0 15px;}
.w1100 {max-width: 1130px; margin: 0 auto; position: relative; padding: 0 15px;}
.w1000 {max-width: 1030px; margin: 0 auto; position: relative; padding: 0 15px;}
.w900 {max-width: 930px; margin: 0 auto; position: relative; padding: 0 15px;}
.w800 {max-width: 830px; margin: 0 auto; position: relative; padding: 0 15px;}
.w600 {max-width: 630px; margin: 0 auto; position: relative; padding: 0 15px;}

.ali_center{align-items: anchor-center;}

.en {font-family: 'Italiana', sans-serif; }
.ff_eulyoo {font-family: 'Eulyoo'; }
.ff_futura {font-family: 'Futura Bk Book';}
.ff_mont {font-family: 'Montserrat';}
.ff_nSerif {font-family: 'Noto Serif KR', serif;}


.cir_rotate { animation: progress_Rotate 20s linear infinite; }

.full_img {width: 2000px;position: relative; left: 50%; margin-left: -1000px;}
.slick-prev:before,
.slick-next:before {display: none;}

/* ani */
.ani{opacity:0;transition:0.45s;}
.ani.move{opacity:1;}
.ani_top{position:relative;opacity:0;top:25px;transition:1s;-moz-transition:1s;-webkit-transition:1s;-o-transition:1s;}
.ani_top.move{opacity:1;top:0;}
.ani_top{position:relative;opacity:0;top:25px;transition:1s;-moz-transition:1s;-webkit-transition:1s;-o-transition:1s;}
.ani_top.move{opacity:1;top:0;}
.ani_left{position:relative;opacity:0;left:-100px;transition:1s;-moz-transition:1s;-webkit-transition:1s;-o-transition:1s;}
.ani_left.move{opacity:1;left:0;}
.ani_right{position:relative;opacity:0;right:-100px;transition:1s;-moz-transition:1s;-webkit-transition:1s;-o-transition:1s;}
.ani_right.move{opacity:1;right:0;}
.ani_down{position:relative;opacity:0;bottom:5px;transition:1s;-moz-transition:1s;-webkit-transition:1s;-o-transition:1s;}
.ani_down.move{opacity:1;bottom:0;}

.trans_d1{transition-delay:0.15s;}
.trans_d2{transition-delay:0.25s;}
.trans_d3{transition-delay:0.35s;}
.trans_d4{transition-delay:0.45s;}
.trans_d5{transition-delay:0.55s;}
.trans_d6{transition-delay:0.65s;}


#cursor{
	z-index: 99;
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	will-change: transform;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: url("/assets/images/common/cursor_view.png")no-repeat center;
	transition: background 0.4s, width 0.6s, height 0.6s, transform .4s;
	transform: translate(-50%,-50%);
	background-size:cover;
	opacity:0;
}
#cursor.on {
	opacity:1;
	width:130px;
	height:130px;
	transition: background 0.4s, width 0.4s, height 0.4s, transform .4s;
	background-size:cover;
}
#cursor .cursor_cir {display: none;}
#cursor.cir {opacity: 1;width: 45px; height: 45px;pointer-events:none;background: none;mix-blend-mode:difference;will-change:transform;}
#cursor.cir:before {opacity: 1;transform:scale(1);}
#cursor:before {content:''; display: block;border: 2px solid #fff; width: 100%; height: 100%; position: absolute; top: -2px; left: -2px; transform:scale(.2); opacity: 0;border-radius:50%;}
#cursor.cir .cursor_cir {display: block;}
#cursor.cir .cursor_cir span {position: absolute; top: 50%; left: 0; display: block; width: 100%; text-align: center; transform:translateY(-50%);}
#cursor.cir .cursor_cir i {position: absolute; color: #fff;}
#cursor.cir .cursor_cir i.fa-angle-left {left: -40px; top: -9px; transform:translateX(17px)}
#cursor.cir .cursor_cir i.fa-angle-right {right: -40px; top: -9px;transform:translateX(-20px)}


/* 팝업로그인 */
#pop_login {position:fixed; top:0; left:0; width:100%; height:100%; z-index:10000; display:none; }
#pop_login .dimmed{position:absolute; top:0; left:0; background:rgba(0,0,0,0.7); width:100%; height:100%;}
#pop_mb_login {width:450px; height:auto; position:absolute; top:50%; left:50%; -ms-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); transform:translate(-50%,-50%); background:#FFFFFF;  /*overflow: hidden;*/ margin: 0;  border-radius:35px;}
#pop_login .in {padding: 10px 0; min-height:222px; padding:20px 0 0 0;}
#pop_login .in .tit {font-size: 15px; font-weight: 500; margin:0 0 15px; letter-spacing:-1px; line-height:150%;  }
#pop_login .in .tit .mint {color: #1f9f9d;}
.poplogin_btn {cursor: pointer;}
#plogin_fs {vertical-align: middle; width:100%; margin:0 auto; padding:0 45px;}
#login_fs{padding:0 50px}
#pop_mb_login #lpogin_fs .frm_input{margin:0 0 10px;}
#pop_mb_login .frm_input{height: 50px; width: 100%;padding-left: 10px; margin-top:5px; border:1px solid #ddd; }
#pop_mb_login #plogin_fs .btn_submit { height: 50px;  width: 100%; padding: 0; margin: 0;text-align: center; background-color: #333; color:#fff;  border-radius:5px; font-size: 16px; margin-top:20px; border:none; }
#pop_mb_login #plogin_info{background:#f6f6f6;padding:15px 5px;border-top:1px solid #e8e8e8; background-color:#2b3751; margin:10px 45px 20px; }
#pop_mb_login #plogin_info:after {display:block;visibility:hidden;clear:both;content:""}
#pop_mb_login #plogin_info h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#pop_mb_login #plogin_info .btn_wrap a{display:inline-block;width:50%;float:left; text-align:center; padding: 0 25px; color:#fff; font-size:14px; transition:.5s; letter-spacing:-1px;}
#pop_mb_login #plogin_info .btn_wrap a:first-child {text-align: right;}
#pop_mb_login #plogin_info a:hover{color:#ddd;  }
#plogin_password_lost{border-right:1px solid #ddd}
.closeWrap{height:45px; padding:0 10px; color:#949393; background-color:#222; line-height:45px; width:100%; font-size:16px;   border-bottom-right-radius:35px;  border-bottom-left-radius:35px;}

#pop_mb_login_notmb{margin:30px auto;padding:20px 30px }
#pop_mb_login_notmb h2{font-size:1.25em;margin:20px 0 10px}
#guest_privacy{border:1px solid #ccc;text-align:left;line-height:1.6em;color:#666;background:#fafafa;padding:10px;height:150px;margin:10px 0;overflow-y:auto}
#pop_mb_login_notmb .btn_submit{display:block;text-align:center;line-height:45px}

#pop_mb_login_od_wr{margin:30px auto;padding:20px 30px }
#pop_mb_login_od_wr h2{font-size:1.25em;margin:20px 0 10px}
#pop_mb_login_od_wr .frm_input{margin:10px 0 0 }
#pop_mb_login_od_wr p{background:#f3f3f3;margin:20px 0 0 ;padding:15px 20px;line-height:1.5em}



/* -- animation */
@keyframes tt_scrolling_text {
	0% { transform: translateX(0) }
	100% { transform: translateX(-50%) }
}
@keyframes movetxt {
  to { transform: translate(-100%, 0); }
}
@keyframes move_scroll {
    0% { transform:translateY(0); }
   50% { transform:translateY(-10px); }
}
@keyframes rotate_circle{
	100% {transform: rotate(360deg); }
}
@keyframes effect{ 
	0% { top: 50%; }
	100% { top: 60%; }
}
@keyframes bouncing { 	
	0% {  transform:translate(0,-5px); }
	100% { transform:translate(0,5px); }
}
@keyframes progress_Rotate {
  to { transform: rotate(360deg); }
}
@keyframes imgAni_rt {
	0%{transform: scale(0, 1);}
	40%{transform: scale(1, 1);}
	50%{transform: scale(1, 1);}
	100%{transform: scale(1, 1) translateX(100%);}
}
@keyframes imgAni {
	0%{opacity:0;}
	50%{opacity:1;}
	100%{opacity:1;}
}
@keyframes progress {
  0% { stroke-dashoffset: 125.664px; }
  90% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -125.664px; }
}
/* animation -- */

.tt-scrolling-text {
	display: flex;
	position: relative;
	pointer-events: none;
}
.tt-scrolling-text-inner {
	padding-left: 2vw;
	font-size: calc(16px + 4vw);
	line-height: 1;
	font-family: 'Italiana', sans-serif; 
	font-weight: 500;
	color: #eceae9; opacity:1;
	white-space: nowrap;
	animation-name: tt_scrolling_text; 
	animation-timing-function: linear; 
	animation-iteration-count: infinite; 
	animation-play-state: running;
	/* animation-duration is handled by js. */
}
.tt-scrolling-text-inner:after {
	content: attr(data-text);
	/* display: block; */
}



/* Animation direction reverse. */
.tt-scrolling-text.scr-text-reverse .tt-scrolling-text-inner {
	animation-direction: reverse;
}
.tt-scrolling-text.scr-text-stroke .tt-scrolling-text-inner {
	font-weight: normal;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #3b3b3f;
	-webkit-text-fill-color: transparent;
}

.move_txt {position: absolute; bottom: 0; left: 0; width: 200%;}
.move_txt .txt {animation: movetxt 1s linear infinite; animation-play-state: paused; animation-delay: calc(var(--scroll) * -0.4s);animation-iteration-count: 1; animation-fill-mode: both;}

.rection03 {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.swiper-container.re04_container {
    overflow: unset
}

.rection03 .re04_top_tx {
    text-align: center;
    padding-bottom: 70px;
}




.rection03 .swiper-slide {
    width: 328px;
    margin: 0 5px;
    transform: translateY(20px);
    transition: .2s;
    position: relative;
    height: 450px;
    overflow: hidden;
    top: 0
}

.rection03 .swiper-slide:hover {
    transform: translateY(0px);
}

.rection03 .swiper-slide .re04_img {
    width: 328px;
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
}

.rection03 .swiper-slide.swiper-slide-active {
}

.rection03 .re_btn03 {
    margin: 0 auto;
    text-align: center;
}

.rection03 .re_btn03 a span {
    transform: translate3d(-9em, 0, 0);
}

.rection03 .re_btn03 a:hover span {
    transform: translate3d(2em, 0, 0);
}


.cursor_slide_lr02 {
    position: fixed;
    transition: transform .5s cubic-bezier(.75, 1.27, .3, 1.35) .2s,opacity .2s cubic-bezier(.75, -.27, .3, 1.33);
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: scale(0);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px
}

/* .cursor_slide_lr02:before{content:"";width:130%;height:130%;border-radius:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:rgba(231,231,231,.5);z-index:-1} */
.cursor_slide_lr02>img {
    width: 100%
}

.cursor_slide_lr02.active {
    opacity: 1;
    transform: scale(1)
}

.re04_container.hide-cursor {
  cursor: none;
}


.re04_orbit,
.re04_orbit .orbit_svg{
  overflow: visible;
}

/* 살짝 축소해서 안전 여백 확보(애니메이션과 함께 적용) */
.re04_orbit .orbit_svg{
  --orbit-scale: .92; /* 필요시 .9 ~ .96 사이로 조절 */
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: orbit-rotate var(--orbit-speed) linear infinite;
}


.re04_orbit{
  /* 필요시 값만 바꿔 쓰세요 */
  --orbit-size: 200px;       /* 지름 */
  --orbit-speed: 18s;        /* 한 바퀴 도는 시간(작을수록 빠름) */
  --orbit-color: #1c1c1c;    /* 텍스트 색상 */
  --orbit-opacity: 0.25;     /* 전체 투명도 */
  --orbit-weight: 700;       /* 폰트 굵기 */
  --orbit-letter: 0.18em;    /* 자간 */

  position: absolute;
  top: 24%;     /* 섹션 오른쪽 위에 살짝 걸치게 */
  right: 20%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  z-index: 0;             /* 뒤로 */
  pointer-events: none;   /* 클릭 방해 X */
  opacity: var(--orbit-opacity);
}

/* SVG 자체 회전 */
.re04_orbit .orbit_svg{
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: orbit-rotate var(--orbit-speed) linear infinite;
}

/* 텍스트 스타일 */
.re04_orbit .orbit_text{
  font-weight: var(--orbit-weight);
  font-size: 20px;
  letter-spacing: var(--orbit-letter);
  fill: var(--orbit-color);
  text-transform: none; /* 모두 대문자로 바꾸려면 uppercase */
}

/* 가이드 표시하고 싶으면 stroke만 켜세요 */
.re04_orbit .orbit_guide{
  stroke: transparent; /* 디버그 시 #ddd 등으로 변경 */
  stroke-dasharray: 2 6;
}

/* 스와이퍼가 항상 위로 오도록 */
.re04_container { position: relative; z-index: 1; }

/* 회전 키프레임 */
@keyframes orbit-rotate { to { transform: rotate(360deg); } }

/* 반응형 위치/크기 보정 */
@media (max-width: 1200px){
  .re04_orbit{ --orbit-size: 200px; top: -30px; right: -30px; }
  .re04_orbit .orbit_text{ font-size: 14px; }
}
@media (max-width: 767px){
  .re04_orbit{ --orbit-size: 100px; top: 20%; right: -20px; }
  .re04_orbit .orbit_text{ font-size: 12px; }
}




.btn-more{
  --bg:#A7AF98;
  --bg-hover:#9FA78F;
  --bg-active:#929A85;

  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:14px 28px;
  background:var(--bg);
  color:#fff;
  border-radius:9999px;
  letter-spacing:.02em;
  text-decoration:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.15), 0 4px 10px rgba(0,0,0,.08);
  transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
  will-change: transform, box-shadow;
  overflow:hidden; /* 광택 스윕 클리핑 */
}

/* 광택 스윕 레이어 */
.btn-more::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform:translateX(-120%);
  pointer-events:none;
}

/* hover: 리프트 + 그림자 강화 + 광택 스윕 */
.btn-more:hover{
  background:var(--bg-hover);
  transform:translateY(-3px) scale(1.02);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 10px 22px rgba(0,0,0,.16);
}
.btn-more:hover::after{
  animation:btn-shine .9s ease forwards;
}

/* active: 살짝 눌림 */
.btn-more:active{
  background:var(--bg-active);
  transform:translateY(-1px) scale(1.005);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 6px 14px rgba(0,0,0,.14);
}

/* 접근성 포커스 */
.btn-more:focus-visible{
  outline:3px solid rgba(255,255,255,.9);
  outline-offset:2px;
}

/* + 기호 간격 보정(선택) */
.btn-more span{ margin-left:.1em; }

/* 광택 스윕 애니메이션 */
@keyframes btn-shine{
  to { transform:translateX(120%); }
}

/* 모션 최소화 환경 존중 */
@media (prefers-reduced-motion: reduce){
  .btn-more,
  .btn-more:hover,
  .btn-more:active{
    transition:none;
    transform:none;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.15), 0 4px 10px rgba(0,0,0,.08);
  }
  .btn-more::after{ display:none; }
}


.yt-section{
  --bg:#f5f5f5;              /* 라운드 배경색 */
  position:relative;
  padding:120px 0 80px;
}

/* 컨테이너 */
.yt-inner { max-width:1600px; margin:0 auto; position:relative; }

/* 왼쪽은 컨테이너 왼쪽선에 맞추고, 오른쪽은 뷰포트 끝까지 확장.
   (화면이 1600 이하일 때는 0, 그 이상일 때는 (100vw-1600)/2 만큼 밖으로 끌어냄) */
.yt-rail{
  /* 컨테이너 밖으로 왼쪽만 살짝 끌어내기 */
  margin-right: calc(-1 * max(0px, (100vw - 1600px)/2));
  /* 컨테이너 왼쪽에서 시작해서 뷰포트 오른쪽 끝까지 폭 확보 */
  width: calc(100vw - max(0px, (100vw - 1600px)/2));
  /* 왼쪽만 잘리게(오른쪽은 노출) */
  overflow: hidden;
  position: relative;
}
.yt-section::before{
  content:"";
  position: absolute;
  left:50%;
  top: 71%;
  transform:translate(-50%,-72%);
  width:160%;
  height: 100%;
  background:var(--bg);
  border-top-left-radius: 150%;
  border-top-right-radius: 150%;
  z-index:0;
}
.yt-inner{ position:relative; z-index:1; margin:0 auto; padding:0 20px; }

/* 헤더 */
.yt-head{ display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:50px; }

/* 스와이퍼는 레일 너비 100% 사용, 오른쪽으로는 넘쳐 보이게 */
.yt-swiper{ width:100%; overflow:visible; }

.yt-swiper .swiper-slide.yt-card{
  width: 360px;            /* 필요 시 슬라이드 고정폭(또는 Auto) */
}

/* 카드 */
.yt-swiper{ overflow:visible; } /* 그림자가 잘리지 않도록 */
.yt-card{
  display:block; width:360px; /* slidesPerView:'auto'용 */
  overflow:hidden; transform:translateZ(0); transition:transform .25s ease, box-shadow .25s ease;
}
.yt-card .thumb{ position:relative; background:#e9e9e9; overflow:hidden; box-shadow:0 6px 18px rgba(0,0,0,.08); border-radius:10px;}
.yt-card .thumb img{ width:100%; height:100%; object-fit:cover; transform:scale(1); transition:transform .5s ease; display:block; }
.yt-card .caption{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.yt-card:hover{ transform:translateY(-6px); }
.yt-card:hover .thumb img{ transform:scale(1.04); }

/* 스와이퍼 기본 간격 */
.yt-swiper .swiper-wrapper{ align-items:stretch; }
.yt-swiper .swiper-slide{ width:auto; } /* 카드 width로 제어 */

/* 반응형 */
@media (max-width:1200px){
  .yt-title{ font-size:44px; }
  .yt-card{ width:320px; }
}
@media (max-width:767px){
  .yt-section{ padding:90px 0 60px; }
  .yt-title{ font-size:36px; }
  .btn-more{ padding:10px 18px; font-size:16px; }
  .yt-card{ width:260px; }
  .yt-section::before{ width:200%; height:100%; transform:translate(-50%,-80%); top:80% }
}


/* 쇼츠 레이아웃 */

/* 행 구성 */
.shorts-row{
  --aside: 220px;    /* 왼쪽 폭 */
  --gap: 9px;       /* 좌우 간격 */
  display:flex; align-items:flex-start; gap:var(--gap);
  position:relative;
}

/* 왼쪽 고정 */
.shorts-aside{ width:var(--aside); flex:0 0 var(--aside); }
.shorts-title{ line-height:1; margin-bottom:150px; }

/* 오른쪽은 뷰포트 끝까지 */
.shorts-rail{
  flex:1 1 auto;
  position:relative;
  z-index:1;
  /* 컨테이너의 왼쪽 여백만큼 당겨서 풀-블리드, 대신 왼쪽 패딩으로 카드 시작점을 밀어준다 */
  margin-right: calc(-1 * max(0px, (100vw - 1459px)/2));
  width: calc(100vw - max(0px, (100vw - 1600px)/2));
  padding-left: calc(var(--aside) + var(--gap));
  overflow:hidden;
}
.shorts-swiper{ width:100%; overflow:visible; }

/* 카드 스타일(앞서 준 것과 동일) */
.short-card{ width:280px; border-radius:14px; overflow:hidden; position:relative;
  box-shadow:0 6px 18px rgba(0,0,0,.08); transition:transform .35s, box-shadow .35s; }
.short-card:hover{ transform:translateY(-4px); box-shadow:0 12px 26px rgba(0,0,0,.12); }
.short-card .frame{ aspect-ratio:3/5; background:#ddd; position:relative; }
.short-card img{ width:100%; height:100%; object-fit:cover; display:block; }
.short-card .frame::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%); pointer-events:none; }
.short-card .meta{ position:absolute; display:flex; align-items:center; gap:6px; color:#fff; font-weight:600; font-size:13px; z-index:2; }
.short-card .top-left{ top:10px; left:10px; }
.short-card .top-right{ top:8px; right:8px; }
.icon-heart{ width:30px; height:28px; display:block; color:#ff6b6b; }
.icon-ring{ width:26px; height:26px; }
.icon-ring .ring-bg{ fill:none; stroke:rgba(255,255,255,.4); stroke-width:3; }
.icon-ring .ring-fg{ fill:none; stroke:#fff; stroke-width:3; stroke-linecap:round; stroke-dasharray:20 80;
  transform-origin:50% 50%; animation:ringSpin 3.8s linear infinite; }
@keyframes ringSpin{ to{ transform:rotate(360deg); } }
.short-card .caption{ position:absolute; left:19px; bottom:19px; z-index:2; color:#fff; display:flex; flex-direction:column; gap:4px; }
.short-card .caption span{opacity:.85; }



.map_con {padding:0 0;  }
.map_con .map_con_box {display: flex;background-color: #fff; overflow:hidden; border-bottom:1px solid #ddd;}
.map_con .map_con_box .lt {display: flex; justify-content:flex-end; width: 50%; z-index: 0;}
.map_con .map_con_box .lt #map {width: 100%; overflow: hidden;}

.map_con .map_con_box .rt {width: 50%; }
.map_con .map_con_box .list_wrap {max-width:900px;padding-right: 210px;}
.map_con .map_con_box .list_wrap .list {padding: 80px 0  ;}
.map_con .map_con_box .list_wrap .list .img_wrap {display: none;}
.map_con .map_con_box .list_wrap .list .txt_wrap {display: block ;  position: relative; margin-left:17%;}
.map_con .map_con_box .list_wrap .list .txt_wrap .num {width: 200px;font-family: 'Italiana';font-size: 100px; letter-spacing: -2px; font-weight: normal; color: transparent; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #2f4f31; -webkit-text-fill-color: transparent; /* opacity: .45; */}
.map_con .map_con_box .list_wrap .list .txt_wrap .txt {transform:translateY(25px);}
.map_con .map_con_box .list_wrap .list .txt_wrap .txt h4 {margin-bottom: 10px;}
.map_con .map_con_box .list_wrap .list .txt_wrap .txt p {align-items: center;display: flex;}
.map_con .map_con_box .list_wrap .list .txt_wrap .more {position: absolute; bottom: 0; right: 0;}
.map_con .map_con_box .list_wrap .list .txt_wrap .more span {display: inline-block; vertical-align: middle;}
.map_con .map_con_box .list_wrap .list .txt_wrap .more .arr {transform:translateX(50px); transition:.25s;}
.map_con .map_con_box .list_wrap .list .txt_wrap .more:hover .arr {transform:translateX(65px);}
.map_con .map_con_box .list_wrap .list .txt_wrap .more .cir {width: 85px; height: 85px; border-radius:50%; background-color: #4b86d8; }
.map_con .map_con_box .img_slide {display: flex; align-items:center; width: 100%; height: 100vh;}
.map_con .map_con_box .img_slide .img {position: relative; width: 100%; height: 100%;}
.map_con .map_con_box .img_slide .img img {position: absolute; top: 0; left: 0; width: 100%; height: 100%;object-fit:cover; opacity: 0;}
.map_con .map_con_box .list_wrap .list .kakao { transition:.25s; margin-bottom: 10px;}
.map_con .map_con_box .list_wrap .list .kakao:hover{transform:translateX(10px);}
.map_con .map_con_box .list_wrap .btn { position:relative; background-color:#d6d6d6; width:190px; padding:10px 0 10px; color: #666; font-size:18px; text-align:center;  border-radius:50px; margin-top:10px;  display: block !important; transition:.25s;}


.map_con .map_con_box .list_wrap .hours_box {font-weight: 300; background-color: #f9f9f9; padding: 30px;}
.map_con .map_con_box .list_wrap .hours_box p {line-height: 2; }
.map_con .map_con_box .list_wrap .hours_box li {display: flex;}
.map_con .map_con_box .list_wrap .hours_box li .lt_txt {width:95px;}
.map_con .map_con_box .list_wrap .hours_box li .rt_txt {font-weight: 500; color: #222; font-family: 'Lato', sans-serif; }
.cont{display:none}
.root_daum_roughmap .wrap_controllers{display:none}
.root_daum_roughmap{width:100% !important}




/* 반응형 조정 */
@media (min-width:1400px){ .short-card{ width:320px; } }
@media (max-width:1024px){
  .shorts-row{ --aside: 220px; --gap: 16px; }
  .shorts-rail{ margin-left:0; width:auto; padding-left:0; } /* 모바일은 컨테이너 안에서 */
  .short-card{ width:240px; }
}



.contact-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/landing/assets/img/contact_bg.jpg'); /* ��� �̹��� ��� ���� */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: bgScroll 15s ease-in-out infinite;
  z-index: -1;
}

@keyframes bgScroll {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-10px); }
  100% { transform: scale(1) translateY(0); }
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-left .title {
  font-weight: 500;
  line-height: 1.2;
}

.contact-left .desc {
  line-height: 1.8;
  opacity: 0.9;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 12px 14px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}

.form-row input,
.contact-right textarea {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #fff;
  background: none;
  color: #fff;
  font-size: 14px;
  border-radius:10px
}

.contact-right textarea {
  width: 100%;
  height: 100px;
  resize: none;
  margin-bottom: 15px;
}



::placeholder {
  color: #000;
  opacity: 0.6;
}

.form-check {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

.submit-btn {
  background-color: #fdf7aa;
  color: #000;
  padding: 15px 20px;
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}



@media all and (max-width:1230px){
	.txt98,
	.txt88,
	.txt84,
	.txt78,
	.txt72,
	.txt74{font-size:60px;}
	.txt68,
	.txt66{font-size:54px;}
	.txt62,
	.txt60{font-size:52px;}
	.txt58,
	.txt56,
	.txt54{font-size:48px;}
	.txt53,
	.txt52,
	.txt50{font-size:42px;}
	.txt48{font-size:38px;}
	.txt46{font-size:37px;}
	.txt45,
	.txt44{font-size:36px;}
	.txt42,
	.txt40{font-size:32px;}
	.txt38{font-size: 30px;}
	.txt36,
	.txt34{font-size:28px;}
	.txt32{font-size:26px;}
	.txt30{font-size:24px;}
	.txt28,
	.txt26{font-size:20px;}
	.txt24{font-size: 19px;}
	.txt22,
	.txt21{font-size:18px;}
	.txt20,
	.txt19{font-size:17px;}
	.txt18,
	.txt17{font-size:16px;}
	.txt16{font-size:15px;}
	.txt15{font-size:14px;}
	.txt14{font-size:13px;}
	.txt12{font-size:11px;}
	.txt11{font-size:10px;}

	img {max-width:100%;}
	.inline_1230 {display: inline;}
	.block_1230 {display: block;}
}

@media all and (max-width:820px){
	.txt98,
	.txt88,
	.txt84,
	.txt78,
	.txt72,
	.txt74{font-size:42px;}
	
	.ani_left{left: auto;top:25px;}
	.ani_left.move{left: auto;top:0;}
	.ani_right{right: auto;top: 25px;}
	.ani_right.move{ right: auto;top:0;}
	.ani_top1.move{opacity:1;top:auto; bottom: 40px;}
	.trans_d1,
	.trans_d2,
	.trans_d3,
	.trans_d4,
	.trans_d5,
	.trans_d6{transition-delay:0.2s;}
	.inline_820 {display: inline;}
	.no_820 {display: none;}
	.block_820 {display: block;}
	.in820_b520 {display: inline;}
	.mt30{margin-top:15px !important;}

	
	
#pop_login {position:fixed; top:0; left:0; width:100%; height:100%; z-index:10000; display:none; }
#pop_login .dimmed{position:absolute; top:0; left:0; background:rgba(0,0,0,0.7); width:100%; height:100%;}
#pop_mb_login {width: 90%;height:auto;position:absolute;top: 53%;left:50%;-ms-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#FFFFFF;/*overflow: hidden;*/margin: 0;border-radius:35px;/* scale: .9; */}
#pop_login .in {padding: 10px 0; min-height:222px; padding:20px 0 0 0;}
#pop_login .in .tit {font-size: 15px; font-weight: 500; margin:0 0 15px; letter-spacing:-1px; line-height:150%;  }
#pop_login .in .tit .mint {color: #1f9f9d;}
.poplogin_btn {cursor: pointer;}
#plogin_fs {vertical-align: middle;width:100%;margin:0 auto;padding: 0 25px;}
#login_fs{padding:0 50px}
#pop_mb_login #lpogin_fs .frm_input{margin:0 0 10px;}
#pop_mb_login .frm_input{height: 35px;width: 100%;padding-left: 10px;margin-top:5px;}
#pop_mb_login #plogin_fs .btn_submit {height: 40px;width: 100%;padding: 0;margin: 0;text-align: center;background-color: #333;color:#fff;border-radius:5px;font-size: 13px;margin-top:20px;border:none;}
#pop_mb_login #plogin_info{background:#f6f6f6;padding:15px 5px;border-top:1px solid #e8e8e8;background-color:#2b3751;margin: 10px 25px 20px;}
#pop_mb_login #plogin_info:after {display:block;visibility:hidden;clear:both;content:""}
#pop_mb_login #plogin_info h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#pop_mb_login #plogin_info .btn_wrap a{display:inline-block;width: -webkit-fill-available;float:left;text-align:center;padding: 0 5px;color:#fff;font-size: 12px;transition:.5s;letter-spacing:-1px;}
#pop_mb_login #plogin_info .btn_wrap a:first-child {text-align: right;}
#pop_mb_login #plogin_info a:hover{color:#ddd;  }
#plogin_password_lost{border-right:1px solid #ddd}
.closeWrap{height:45px; padding:0 10px; color:#949393; background-color:#222; line-height:45px; width:100%; font-size:16px;   border-bottom-right-radius:35px;  border-bottom-left-radius:35px;}





}
@media all and (max-width:520px){ 
	.txt98,
	.txt88{font-size:72px;}
	.txt84{font-size:60px;}
	.txt78,
	.txt74,
	.txt72{font-size:35px;}
	.txt68,
	.txt66{font-size:32px;}
	.txt62,
	.txt60{font-size:30px;}
	.txt58,
	.txt56,
	.txt54{font-size:30px;}
	.txt53,
	.txt52,
	.txt50{font-size:28px;}
	.txt48,
	.txt46{font-size:24px;}
	.txt45,
	.txt44{font-size:24px;}
	.txt42,
	.txt40{font-size:24px;}
	.txt38,
	.txt36,
	.txt34{font-size:20px;}
	.txt32{font-size:22px;}
	.txt30,
	.txt28{font-size:18px;}
	.txt26{font-size:17px;}
	.txt24,
	.txt22,
	.txt21{font-size:16px;}
	.txt20,
	.txt19{font-size:15px;}
	.txt18,
	.txt17,
	.txt16{font-size:14px;}
	.txt15{font-size:13px;}
	.txt14{font-size:12px;}
	.txt12{font-size:10px;}

	.inline_520 {display: inline;}
	.no_520 {display: none;}
	.block_520 {display: block;}
	.in820_b520 {display: block;}
}

#wrap{width: 100%; min-width:320px; font: 16px/1 'Pretendard', sans-serif; font-weight: 400; letter-spacing: 0; color: #222;}
.tit_ani_wrap { position:relative; margin-bottom:70px;}
.tit_ani_wrap .txt_ani_box { overflow:hidden; display:block; }
.tit_ani_wrap .txt_ani_box:nth-child(2) .txt-ani { transition-delay:.2s; }
.tit_ani_wrap .txt_ani_box:nth-child(3) .txt-ani { transition-delay:.4s; }
.tit_ani_wrap .txt_ani_box:nth-child(4) .txt-ani { transition-delay:.6s; }
.tit_ani_wrap .txt_ani { display:block; transition-duration:.5s; transition-property:transform; transform:translateY(100%); word-break:keep-all; }
.tit_ani_wrap.on .txt_ani { transform:translateY(0); }
.tit_ani_wrap h3 {text-transform:uppercase; word-break:keep-all; }
.tit_ani_wrap .txt  {text-transform:uppercase; letter-spacing:5px; font-weight:700; opacity:.3; word-break:keep-all; }

@keyframes fadeInUp {
    0% {
        transform:translateY(20px);
        opacity:0;
    }
    100% {
        transform:translateY(0);
        opacity:1;
    }
}

@keyframes rotate_circle{
	100% {transform: rotate(360deg); }
}



.slider_nav {display: flex; justify-content:space-between;align-items:center; margin-top: 0; width:85%;}
.slider_nav .slider_progress {position: relative; width: calc(100% - 165px); height: 4px;background-color: #efefef;margin: 0;}
.slider_nav .slider_progress .swiper-pagination-progressbar-fill { background: #222; }
.slider_nav .slider_arrow {width: 165px; text-align: right;}
.slider_nav .slider_arrow button {width: 44px; height: 13px; margin: 0 5px; background-color: transparent; border: none; padding: 0; text-indent: -9999px;}
.slider_nav .slider_arrow .prev_btn {background-image: url('/assets/images/main/slider_prev.png');}
.slider_nav .slider_arrow .next_btn {background-image: url('/assets/images/main/slider_next.png');}



.slick_nav {width: 240px; display: flex; flex-wrap:wrap;justify-content:space-between; position: absolute; bottom: 145px; left: 50%; transform:translate(-690px,0);  }
/* 슬라이드 arrow */
.slick_arrow {position: absolute; top: 3px; left: 0;}
.slick_arrow .prev_btn,
.slick_arrow .next_btn {width: 20px; height: 7px; background-color: transparent; padding: 0; border: none; background-repeat: no-repeat; background-image: url('/assets/images/main/sm_arr_prev.png'); text-indent: -9999px; position: absolute; top: 0; left: 10px; }
.slick_arrow .next_btn {background-image: url('/assets/images/main/sm_arr_next.png'); left: 105px;}

/* 슬라이드 play */
.slider_play_btn { /* position: absolute; bottom: 140px; left: 50%; transform:translateX(-510px); */ padding-right: 5px;	}
.slider_play_btn button {width: 8px; height: 12px; background-color: transparent; background-repeat: no-repeat; background-size:cover; border: none; padding: 0; margin: 0 8px; text-indent: -9999px;}
.slider_play_btn .slider_pause {background-image: url('/assets/images/main/visual_pause_grey.png');}
.slider_play_btn .slider_play {background-image: url('/assets/images/main/visual_play_grey.png');}

/* 슬라이드 counter */
.slick_counter {/* position: absolute; bottom: 135px; left: 50%; transform:translateX(-655px);  */font-family: 'Eulyoo';  font-size: 15px;  color: #cdcdcd; padding: 0 50px;}
.slick_counter span {padding: 0 3px; font-weight: 600;}
.slick_counter .current {color: #000;}
/* 슬라이드 progress */
.slider_progress{ /* position: absolute; left: 50%; bottom: 110px; transform:translateX(-700px); */width: 100%; height: 2px; background-color: #cdcdcd; position: relative; width: 100%; margin-top: 25px;}
.slider_progress span{ position: absolute; left: 0; bottom: 0; display: block; width: 0px; height: 100%; background-color: #000; transition: all 0s linear; }
.slider_progress span.active { width: 100%; }



/* 레이아웃 크기 지정 */
#hd, #wrapper, #ft {min-width:1200px}

#hd_pop,
#hd_wrapper,
#tnb .inner,

#gnb .gnb_wrap,
#container_wr,
#ft_wr {width:1200px}

/* 팝업레이어 */
#hd_pop {z-index:98;position:relative;margin:0 auto;height:0}
#hd_pop h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid #e9e9e9;background:#fff}
.hd_pops img {max-width:100%}
.hd_pops_con {}
.hd_pops_footer {padding:0;background:#000;color:#fff;text-align:left;position:relative}
.hd_pops_footer:after {display:block;visibility:hidden;clear:both;content:""}
.hd_pops_footer button {padding:10px;border:0;color:#fff}
.hd_pops_footer .hd_pops_reject {background:#000;text-align:left}
.hd_pops_footer .hd_pops_close {background:#393939;position:absolute;top:0;right:0}

/* 상단 레이아웃 */
#hd {background:#212020}
#hd_h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#tnb {border-bottom:1px solid #383838;margin:0 auto}
#tnb:after {display:block;visibility:hidden;clear:both;content:""}
#tnb .inner {margin:0 auto}

#hd_wrapper {position:relative;margin:0 auto;height:140px;zoom:1}
#hd_wrapper:after {display:block;visibility:hidden;clear:both;content:""}

/* #logo {float:left;padding:30px 0 0} */

.hd_sch_wr {float:left;padding:30px 0;width:445px;margin-left:65px}
#hd_sch h3 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#hd_sch {border-radius:30px;overflow:hidden}
#hd_sch #sch_stx {float:left;width:385px;height:45px;padding-left:10px;border-radius:30px 0 0 30px;background:#2c2c2c;border:0;border-right:0;font-size:1.25em;color:#fff}
#hd_sch #sch_submit {float:left;width:60px;height:45px;border:0;background:#2c2c2c;color:#fff;border-radius:0 30px 30px 0;cursor:pointer;font-size:16px}

#hd_define {float:left}
#hd_define:after {display:block;visibility:hidden;clear:both;content:""}
#hd_define li {float:left;font-size:1.083em;line-height:14px;border-right:1px solid #4a4a4a;position:relative;text-align:center;margin:15px 10px 15px 0;padding-right:10px}
#hd_define li:last-child {padding-right:0;margin-right:0;border-right:0}
#hd_define li a {display:inline-block;color:#919191}
#hd_define li.active a {color:#fff}

#hd_qnb {float:right;text-align:right}
#hd_qnb:after {display:block;visibility:hidden;clear:both;content:""}
#hd_qnb li {float:left;font-size:1.083em;line-height:14px;border-right:1px solid #4a4a4a;position:relative;text-align:center;margin:15px 10px 15px 0;padding-right:10px}
#hd_qnb li:last-child {padding-right:0;margin-right:0;border-right:0}
#hd_qnb li span {display:block;margin-top:5px;font-size:0.92em}
#hd_qnb li a {display:inline-block;color:#919191}
#hd_qnb .visit .visit-num {display:inline-block;line-height:16px;padding:0 5px;margin-left:5px;border-radius:10px;background:#da22f5;color:#fff;font-size:10px}


.hd_login {position:absolute;right:0;top:60px}
.hd_login li {float:left;margin:0 5px;border-left:1px solid #616161;padding-left:10px;line-height:13px}
.hd_login li:first-child {border-left:0}
.hd_login a {color:#fff}



.pc { display:block !important;}	
.m { display:none !important;}
.mobile { display:none;}

#progresscir.stiky {opacity: 1;}
#progresscir { opacity: 0; transition:.25s; position: fixed; bottom: 15%; left: 3.5%; margin-left: 0;  z-index: 3;}
#progresscir .circle {width: 140px; height: 140px; background: url('/assets/images/common/progress_cir.png') 0 0 no-repeat; animation: progress_Rotate 1s linear infinite; animation-play-state: paused; animation-delay: calc(var(--scroll) * -1s);animation-iteration-count: 1; animation-fill-mode: both;}
#progresscir .percent_txt {position: absolute; top: 0; left: 0; width: 100%; height: 100%;  display: flex; align-items:center; justify-content:center; font-family: 'Cormorant Garamond'; font-size: 22px; font-weight: 600; color: #d0d0d0; transform:translateY(-5px);}
#progresscir .percent_txt p {display: flex; align-items:flex-end;}
#progresscir .percent_txt span {font-size: 32px; transform:translateY(5px);     font-variant: lining-nums;}



#header {position: fixed; top: 0; left: 0; width: 100%;  background: transparent; /* 기본적으로 배경 투명 */   transition: background-color 0.3s ease, box-shadow 0.3s ease; z-index: 99; /*border-bottom: 1px solid rgba(255,255,255,.1);*/ transition:.25s; padding:0 5%;}
#header.scrolled { background-color: rgba(147, 177, 158, .9);  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }

#header .inner {display: flex; align-items:center; justify-content:space-between;}
#header #logo {margin-right: 2%; }
#header #logo a {display: inline-block;   line-height: 90px;}
#header #logo img {vertical-align: middle; width:90%;}
#header #logo img:nth-child(2) {display: none;}
#header #gnb_wrap {position: relative;  margin-right: 15%;}
#header #gnb_wrap .dep1_wrap {}
#header #gnb_wrap .dep1_con {float: left; position: relative;}
#header #gnb_wrap .dep1_con .dep1 {position: relative; display: inline-block; padding: 0 20px;font-size: 18px; color: #fff; line-height: 90px; transition:.25s;}
#header #gnb_wrap .dep1_con .dep1:hover{color:#fdebd2; }
#header #gnb_wrap .dep1_con .dep1.active{color:#fdebd2; }


#header #gnb_wrap .dep1_con .dep1_1 {position: relative; display: inline-block; padding: 0 2;font-size: 18px; color: #fff; line-height: 90px; transition:.25s;}
#header #gnb_wrap .dep1_con .dep1_1:hover{color:#fdebd2; }
#header #gnb_wrap .dep1_con .dep1_1.active{color:#fdebd2; }



#header.ov #gnb_wrap .dep1_con .dep1:after { content:''; position:absolute; left:50%; bottom:0; width:80px; height:2px; margin-left:-40px; background:#ddd; }
#header #gnb_wrap .dep1_con:hover .dep1:after { background:#5baefe; } 

#header #gnb_wrap .dep2_wrap { display: none; position: absolute; top: calc(100% - 1px); left: 50%; transform:translateX(-50%); background-color: #93b19e;  padding: 15px 0;  z-index: 1; border-radius:0 0 20px 20px; }
#header #gnb_wrap .dep2_con {width: 10em; padding:7px 0;	}
#header #gnb_wrap .dep1_con:nth-child(1) .dep2_con {width: 12em;}

#header #gnb_wrap .dep2_con .dep2 {display: block; padding: 0.2em 1.1em; font-size: 15px; color: #fff; transition:.5s; word-break:keep-all; line-height:140%;}
#header #gnb_wrap .dep2_con .dep2:hover {color: #fdebd2; font-weight:400;}
#header #gnb_wrap .dep2_con .dep2.active {color: #fdebd2; font-weight:400;}


.gnb_bg {position: absolute; top: 0; left: 0; width: 100%; height: 0; background-color: #fff;box-shadow:3px 3px 3px rgba(0, 0, 0, 0.1); z-index: -1; transition:.2s;}
#header.ov .gnb_bg {height: 320px;}


#header .top_util {position: absolute; top:33px; right:6%;  font-family: 'Montserrat', sans-serif; }
#header .top_util li {display: inline-block; padding: 0 4px; text-align: center; position: relative;    z-index:2; letter-spacing:-1px;}
#header .top_util a {display:  inline-block;  transition:.25s; z-index:9999; color:#fff;}
#header .top_util a:hover { opacity: 1;}

#header.stiky .top_util a{color:#fff; font-weight:500;}

#header .link_box {display: flex; align-items:center; width: 155px; height: 40px; line-height: 40px; right:3%;  border-radius:50px; border: 1px solid #fff; position: relative;}
#header .link_box > a {position: relative; display: block; width: 100%; height: 100%; padding: 0 0 0 20px; color: #fff; font-size: 15px; font-weight: 300;}
#header .link_box > a:after {content:''; display: block; width: 10px; height: 7px; position: absolute; top: 47%; right: 20px; background: url('/assets/images/common/arrow.png') 0 0 no-repeat; transition:.3s; filter: invert(1);}
#header .link_box > a.active {}
#header .link_box > a.active:after {transform:translateY(-50%) rotate(180deg); animation:effect .5s alternate infinite;}

#header .link_box .links {display: none;padding: 8px 0; position: absolute; left: 0; right: 0; top: 42px; background-color: #f0f0f0; border-radius:5px; z-index: 9;	}
#header .link_box .links a {display: block; padding: 0 0 0 28px; color: #222; font-size: 14px; font-weight: 400; transition:.3s; height:30px; line-height:30px;}
#header .link_box .links a:hover {text-decoration: underline;}


.open_sitemap {position: fixed; top: 20px; right: 5%;  width: 50px; height: 50px; margin-right: 0; z-index: 999; cursor: pointer; background-color: #111; border-radius:50%; display: flex; align-items:center; justify-content:center;}
.open_sitemap div {width: 20px; height: 20px; border: none; background: none; position: relative;}
.open_sitemap i {position: absolute; width: 6px; height: 6px; background-color: #fff; transition: background-color 300ms ease-in-out;}
.open_sitemap i:nth-child(1) {left: 0; top: 0;}
.open_sitemap i:nth-child(2) {right: 0; top: 0;}
.open_sitemap i:nth-child(3) {left: 0; bottom: 0;}
.open_sitemap i:nth-child(4) {right: 0; bottom: 0;}
.open_sitemap.active i {transform: rotate(180deg);}
.open_sitemap.active i {width: 130%; height: 4px; border-radius: 10px; background-color: #fff;}
.open_sitemap.active i:nth-child(1) {left: auto;top: 8px;right: -3px;transform: rotate(135deg);}
.open_sitemap.active i:nth-child(2) {top: 8px;right: -3px;transform: rotate(45deg);}
.open_sitemap.active i:nth-child(3) {width: 0;}
.open_sitemap.active i:nth-child(4) {width: 0;}


/* 전체메뉴 */
.all_menu_wrap { display: flex; align-items:center; position: fixed; top: 0; right: -110%; bottom: 0; width: 60%; padding: 50px 5%;overflow-x:hidden;overflow-y:auto; z-index: 998; background-color: #333;box-shadow:-1px 0px 5px rgba(0,0,0,.3); transition:.7s;}
.all_menu_wrap.active {right: 0;}
.all_menu_wrap .all_menu_logo {width: 22%; text-align: center;  display: flex;flex-direction:column; align-items:center; justify-content:flex-start; background-color:#93b19e; color:#fff; height:100%; padding:90px 30px; border-radius:20px;}
.all_menu_wrap .all_menu_logo img { width:75%}
.all_menu_wrap #all_menu {width: 78%; position: relative;}
.all_menu_wrap #all_menu:after {content:''; display: block; width: 0px; height: 100%; background-color: rgba(0,0,0,.3); position: absolute; top: 0; left: 0;}
.all_menu_wrap .dep1_wrap {display: block;}
.all_menu_wrap .dep1_con {width: 110%;margin-bottom: 0;text-align: left;opacity:1;transition:.25s;display: flex; align-items: center;}
.all_menu_wrap .dep1_con:hover {opacity: 1;}

.all_menu_wrap .dep1_con .dep1 {display: block;padding: 18px 5%;color: #fff;font-size: 18px;;word-break: keep-all;line-height: 1.2;position: relative; transition:.25s; width:18%}
/*.all_menu_wrap .dep1_con .dep1:after {content:'';display: block;width: 90%;height: 1px;background-color: #ddd;position: absolute;bottom: 0;left: 50%;transform:translateX(-50%);transition:.25s;}
.all_menu_wrap .dep1_con:hover .dep1:after {background-color: #5baefe;}*/
.all_menu_wrap .dep1_con .dep1:hover {color: #d6b9a3;}
.all_menu_wrap .dep2_wrap {padding: 40px 0;}
.all_menu_wrap .dep2_con {}
.all_menu_wrap .dep2_con .dep2 {color: #fff; font-size: 18px; line-height: 2; position: relative; transition:.25s; margin-right: 20px; opacity: .5; font-weight:300}
.all_menu_wrap .dep2_con .dep2:hover {color: #d6b9a3; opacity:1;}
.all_menu_wrap .all_menu_bottom {width: 70%; margin: 0 auto 20px;}
.all_menu_wrap .all_menu_bottom p {color: #fff;  font-family: 'Montserrat'; opacity: .2; font-weight: 200; letter-spacing:0;}

.all_menu_wrap .dep1_con .dep1_1 {display: block;padding: 18px 5%;color: #fff;font-size: 18px;;word-break: keep-all;line-height: 1.2;position: relative; transition:.25s; width:25%}
.all_menu_wrap .dep1_con .dep1_1:hover {color: #d6b9a3;}

.dim {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,.7); z-index: 9; display: none;}

/* 메인메뉴 */
#gnb {position:relative;background:#fff}
#gnb > h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#gnb .gnb_wrap {margin:0 auto;position:relative}
#gnb .gnb_wrap:hover, #gnb .gnb_wrap:focus, #gnb .gnb_wrap:active{z-index:3}
#gnb #gnb_1dul {font-size:1.083em;padding:0;border-bottom:1px solid #e0e2e5;zoom:1}
#gnb ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb .gnb_1dli {float:left;line-height:55px;padding:0px;position:relative}
#gnb .gnb_1dli:hover > a {color:#3a8afd;
-webkit-transition:background-color 2s ease-out;
-moz-transition:background-color 0.3s ease-out;
-o-transition:background-color 0.3s ease-out;
transition:background-color 0.3s ease-out}

.gnb_1dli .bg {position:absolute;top:24px;right:8px;display:inline-block;width:10px;height:10px;overflow:hidden;background:url('./images/gnb_bg2.gif') no-repeat 50% 50%;text-indent:-999px}
.gnb_1da {display:block;font-weight:bold;padding:0 15px;color:#080808;text-decoration:none}
.gnb_1dli.gnb_al_li_plus .gnb_1da{padding-right:25px}
.gnb_2dli:first-child {border:0}
.gnb_2dul {display:none;position:absolute;top:54px;min-width:140px;padding-top:2px}
.gnb_2dul .gnb_2dul_box {border:1px solid #e0e2e5;border-top:0;padding:0;
-webkit-box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2);
-moz-box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2);
box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2)}
.gnb_2da {display:block;padding:0 10px;line-height:40px;background:#fff;color:#080808;text-align:left;text-decoration:none}
a.gnb_2da:hover {color:#3a8afd;background:#f7f7f8;
-moz-transition:all 0.3s ease-out;
-o-transition:all 0.3s ease-out;
transition:all 0.3s ease-out}

.gnb_1dli_air .gnb_2da {}
.gnb_1dli_on .gnb_2da {}
.gnb_2da:focus, .gnb_2da:hover {color:#fff}
.gnb_1dli_over .gnb_2dul {display:block;left:0}
.gnb_1dli_over2 .gnb_2dul {display:block;right:0}
.gnb_wrap .gnb_empty {padding:10px 0;width:100%;text-align:center;line-height:2.7em;color:#080808}
.gnb_wrap .gnb_empty a {color:#3a8afd;text-decoration:underline}
.gnb_wrap .gnb_al_ul .gnb_empty, .gnb_wrap .gnb_al_ul .gnb_empty a {color:#555}

#gnb .gnb_menu_btn {background:#4158d1;color:#fff;width:50px;height:55px;border:0;vertical-align:top;font-size:18px}
#gnb .gnb_close_btn {background:#fff;color:#b6b9bb;width:50px;height:50px;border:0;vertical-align:top;font-size:18px;position:absolute;top:0;right:0}
#gnb .gnb_mnal {float:right;padding:0}

#gnb_all {display:none;position:absolute;border:1px solid #c5d6da;width:100%;background:#fff;z-index:1000;-webkit-box-shadow:0 2px 5px rgba(0,0,0,0.2);
-moz-box-shadow:0 2px 5px rgba(0,0,0,0.2);
box-shadow:0 2px 5px rgba(0,0,0,0.2)}
#gnb_all h2 {font-size:1.3em;padding:15px 20px;border-bottom:1px solid #e7eeef}
#gnb_all .gnb_al_ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb_all .gnb_al_ul > li:nth-child(5n+1) {border-left:0}
#gnb_all .gnb_al_li {float:left;width:20%;min-height:150px;padding:20px;border-left:1px solid #e7eeef}
#gnb_all .gnb_al_li .gnb_al_a {font-size:1.2em;display:block;position:relative;margin-bottom:10px;font-weight:bold;color:#3a8afd}
#gnb_all .gnb_al_li li {line-height:2em}
#gnb_all .gnb_al_li li a {color:#555}
#gnb_all_bg {display:none;background:rgba(0,0,0,0.1);width:100%;height:100%;position:fixed;left:0;top:0;z-index:999}

#header.stiky {position: fixed; /*background-color: #fff; box-shadow:3px 3px 3px rgba(0, 0, 0, 0.1); margin-top:-90px;*/ background-color: #5baefe;}
#header.stiky #logo img:nth-child(1),
#header.ov #logo img:nth-child(1) {display: inline;}
#header.stiky #logo img:nth-child(2),
#header.ov #logo img:nth-child(2){display: none ;}
#header.stiky #gnb_wrap:after {opacity: 0;}
#header.ov #gnb_wrap .dep1_con .dep1,
#header.stiky #gnb_wrap .dep1_con .dep1 {/*color: #222;*/}
#header.stiky #gnb_wrap .dep1_con .dep1:hover,
#header.ov #gnb_wrap .dep1_con .dep1:hover,
#header.stiky #gnb_wrap .dep1_con .dep1.active,
#header.ov #gnb_wrap .dep1_con .dep1.active{ /*color:#5baefe;*/ }



/* 중간 레이아웃 */
#wrapper {}
#container_wr:after {display:block;visibility:hidden;clear:both;content:""}
#container_wr {margin:0 auto;zoom:1}
#aside {float:right;width:235px;padding:0;height:100%;margin:20px 0 20px 20px}


#container_title {font-size:1.333em;margin:0 auto;font-weight:bold}
#container_title span {margin:0 auto 10px;display:block;line-height:30px}

.lt_wr {width:32%}
.lt_wr:nth-child(3n+1) {clear:both}
.latest_wr {margin-bottom:20px}
.latest_wr:after {display:block;visibility:hidden;clear:both;content:""}
.latest_top_wr {margin:0 -10px 20px}
.latest_top_wr:after {display:block;visibility:hidden;clear:both;content:""}

/* 하단 레이아웃 */
#ft {background:#212020;margin:0 auto;text-align:center}
#ft h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ft_wr {max-width:1240px;margin:0;padding:40px 0;position:relative;display:inline-block;text-align:left}
#ft_wr:after {display:block;visibility:hidden;clear:both;content:""}
#ft_wr .ft_cnt {width:25%;float:left;padding:0 20px}

#ft_link {text-align:left}
#ft_link a {display:block;color:#fff;line-height:2em;font-weight:bold}
#ft_company h2 {font-size:1.2em;margin-bottom:20px}
#ft_company {font-weight:normal;color:#e3e3e3;line-height:2em}
#ft_catch {margin:20px 0 10px}
#ft_copy {text-align:center;width:1200px;margin:0 auto;padding:20px 0;color:#5b5b5b;font-size:0.92em;border-top:1px solid #383838}
#top_btn {position:fixed;bottom:20px;right:20px;width:50px;height:50px;line-height:46px;border:2px solid #333;color:#333;text-align:center;font-size:15px;z-index:90;background:rgba(255,255,255,0.5)}
#top_btn:hover {border-color:#3059c7;background:#3059c7;color:#fff}





/*.slider_arrow {padding: 0; background-color: transparent;  width: 60px; height: 60px; cursor: pointer; background-repeat: no-repeat; background-position: 50% 50%; border: 1px solid #222; border-radius:50%; position: absolute; top: 50%; transform:translateY(-50%); text-indent: -9999px; z-index: 1;}
.slider_arrow.prev { left: 0; background-image: url('/assets/images/common/slider_prev_b.png');}
.slider_arrow.next { right: 0; background-image: url('/assets/images/common/slider_next_b.png');}

.slider_arrow.w {border-color: #fff;}
.slider_arrow.w.prev {background-image: url('/assets/images/common/slider_prev_w.png');}
.slider_arrow.w.next {background-image: url('/assets/images/common/slider_next_w.png');}*/

.scroll_down{position: absolute;bottom:0;left:50%;transform:translate(-47%);cursor:pointer; z-index: 1; }
.scroll_down span{display: block;position: relative;font-size:16px;color:#fff;font-weight:400;font-family:"Italiana", serif;text-align:center;padding-bottom:90px;letter-spacing:0.07em;}
.scroll_down span:before{width:1px;height:70px;content:'';background: #fff;opacity:0.5;position: absolute;bottom:0;left:calc(50% - 1px);}
.scroll_down span:after{width:10px;height:10px;content:'';box-sizing:border-box;border-radius:100%;background: #d6b9a3;position: absolute;left:49%;bottom:20%;transform:translate(-50%);animation:scroll 2s ease-in Infinite Alternate;}

@keyframes scroll{
	0%{bottom:50%;}
	50%{bottom:7%;}
	100%{bottom:50%;}
}



.t_gray_bg {position: relative;}
.t_gray_bg:after {content:''; display: block; width: 100%; height: 500px; background-color: #eaeaea; position: absolute; top: 0; left: 0; z-index: -1;}

.bf {padding: 0 0;}
.bf .tit_wrap h3 {font-family: 'Futura Std', sans-serif; color:#5baefe; }
.bf .slider_wrap {margin-bottom: 10px;}
.bf .slider_wrap .list {width: 600px; margin: 0 50px; text-align: center;}
.bf .slider_wrap .list .box1 {position:absolute;display:block;z-index:2;width:600px;height:50%; background: rgba(0,0,0,.3) url('/skin/board/beaf2/img/btn_thumb_login1.png') 50% 50% no-repeat; text-indent: -9999px;  z-index: 1; cursor:pointer;}
.bf .slider_wrap .list .box2 {position:absolute;display:block;z-index:2;width:300px;height:405px; background: rgba(0,0,0,.3) url('/skin/board/beaf2/img/btn_thumb_login1.png') 50% 50% no-repeat; text-indent: -9999px;  z-index: 1; cursor:pointer;}


.bf .slider_wrap .list .thumb_wrap { margin-bottom: 20px; overflow: hidden; position: relative;}
.bf .slider_wrap .list .thumb_wrap:after {content:''; display: block; width: 100%; height: 100%; background-color: #222; opacity: .35; position: absolute; top: 0; left: 0; transition:.25s;}
.bf .slider_wrap .list h4 {transition:.25s;}
.bf .slider_wrap .list:hover h4 {color: #5baefe;}
.bf .slider_wrap .list.slick-current .thumb_wrap:after {opacity: 0;}
.bf .slider_arrow.prev {left: 50%; margin-left: -375px; display:none !important;}
.bf .slider_arrow.next {right: 50%; margin-right: -375px; display:none !important;}

.bf .slider_wrap .slick_nav {position: relative;bottom: -50px !important;margin: 0 auto;left: 0;transform: translate(0, 0);}  



.youtube_wrap {padding: 180px 0; text-align: center; background-color:#9ba4b0;}
.youtube_wrap .tit_wrap h3 { letter-spacing:2px;}
.youtube_wrap .youtube_list_wrap {position: relative; margin: 0 70px;}
.youtube_wrap .youtube_list {padding: 0 80px;}
.youtube_wrap .youtube_list .list {margin: 0 5px; transition:.25s; padding-top:10px;}
.youtube_wrap .youtube_list .list img { border-radius:10px; margin:0 auto; transition:.25s}
.youtube_wrap .youtube_list .txt {margin-top: 25px; overflow: hidden;text-overflow: ellipsis;   transition:.25s; color:#d7d8db;}
.youtube_wrap .youtube_list a:hover .txt {color: #fff;}
.youtube_wrap .youtube_list .list:hover { margin-top:-10px}
.youtube_wrap .slider_arrow {top: 45%;}

.youtube_wrap .slider_arrow {padding: 0; background-color: transparent;  width: 60px; height: 60px; cursor: pointer; background-repeat: no-repeat; background-position: 50% 50%; border: 1px solid #222; border-radius:50%; position: absolute; top: 50%; transform:translateY(-50%); text-indent: -9999px; z-index: 1;}
.youtube_wrap .slider_arrow.prev { left: 0; background-image: url('/assets/images/common/slider_prev_b.png'); filter: invert(1);}
.youtube_wrap .slider_arrow.next { right: 0; background-image: url('/assets/images/common/slider_next_b.png'); filter: invert(1);}


/* 하단 지도 */
.company_info_wrap {padding:160px 0; background-color: #fff;}
.company_info_wrap .tit_wrap {padding: 0 15px; margin-bottom: 60px;}
.company_info_bot { display: flex;}
.company_info_bot .company_info_lt {width: 25%;/* display: flex; */justify-content:flex-end;/* align-items:center; */}
.company_info_bot .company_info_rt {position: relative;width:35%;}
.company_info_bot .company_info_form {position: relative;width:40%; padding:0 7% 0 5%;}

.counsel-form-area {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
}

.counsel-form-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 2px 2px 10px rgba(55, 55, 55, 0.25);
  background: #fff;
  box-sizing: border-box;
}

.counsel-text1 {
  padding-top: 18%;
}

/* Form layout */
.counsel-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* All input elements */
.counsel-form-inputs input,
.counsel-form-inputs select,
.counsel-form-inputs textarea {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.4;
  border: 1px solid #333;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #fff;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

/* Textarea specific */
.counsel-form-inputs textarea {
  min-height: 150px;
  resize: vertical;
}

/* Submit Button */
.counsel-form-box .ft_form_btn {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 100px;
  background-color: #333;
  border: 0;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 50px;
  cursor: pointer;
  transition: background-color 0.25s;
}

.counsel-form-box .ft_form_btn:hover {
  background-color: #93b19e;
}

/* iOS Safari spacing fix */
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  font-family: inherit;
  box-sizing: border-box;
}


.company_info_bot .info_txt_box {width:100%; padding-right: 0;}
.company_info_bot .tit_wrap1 {margin-bottom:35px;}
.company_info_bot .info_btn1 {display: flex; align-items:center;}
.company_info_bot .info_btn1 .btn {display: flex; align-items:center; justify-content:center; text-align: center; width:160px; height:160px; border-radius:160px; transition:.25s;}
.company_info_bot .info_btn1 .btn11 {background-color: #f4db18; color: #3c1d1e; margin-right:10px; display: block; padding-top: 9%;}
.company_info_bot .info_btn1 .btn22 {background-color: #222; color: #fff; display: block; padding-top: 9%;}
.company_info_bot .info_btn1 .btn11:hover {background-color: #3c1d1e; color:#f4db18;}
.company_info_bot .info_btn1 .btn11:hover img {filter: invert(.5);}
.company_info_bot .info_btn1 .btn22:hover {background-color: #6c6463;}
.company_info_bot .info_btn1 .btn11 .icon {transition:.5s;}
.company_info_bot .info_btn1 .btn22 .icon {transition:.5s;}
.company_info_bot .info_btn1 .btn11:hover .icon { transform:rotate(360deg)}
.company_info_bot .info_btn1 .btn22:hover .icon { transform:rotate(360deg)}
 
.company_info_bot .info_btn {display: flex; align-items:center;}
.company_info_bot .info_btn .btn {display: flex; align-items:center; justify-content:center; text-align: center; width:-webkit-fill-available; height: 50px;transition:.25s;}
.company_info_bot .info_btn .btn1 {background-color: #6c6463; color: #fff; }
.company_info_bot .info_btn .btn2 {background-color: #222; color: #fff;}
.company_info_bot .info_btn .btn1:hover {background-color: #333;}
.company_info_bot .info_btn .btn2:hover {background-color: #f4db18; color:#3c1d1e;}
.company_info_bot .txt_wrap {}
.company_info_bot .txt_wrap .txt_cont1 {display: flex; align-items:center;}
.company_info_bot .txt_wrap .txt_cont1 h5 {margin-right: 10px;}
.company_info_bot .txt_wrap .hours {display: flex; flex-wrap:wrap; align-items: center;}
.company_info_bot .txt_wrap .hours dt,
.company_info_bot .txt_wrap .hours dd {margin-bottom: 13px;}
.company_info_bot .txt_wrap .hours dt {width: 120px;}
.company_info_bot .txt_wrap .hours dd {width: calc(100% - 120px); font-family: 'Ivy Mode'; font-weight: 400;}
.company_info_bot .company_map {position: relative; }
.company_info_bot .company_map #map {width: 100%; height: 495px; overflow: hidden;}


#footer {padding: 75px 0 100px;background-color: #eaeced;}
#footer .inner {display:flex; flex-direction:row-reverse;}
#footer .inner > div {width: 50%;}
#footer .f_menu {text-align: end; padding-top:30px; }
#footer .f_menu a {display: inline-block; padding: 0 15px; color: #222;font-weight: 300; opacity: 1; position: relative; transition:.25s;}
#footer .f_menu a:hover { color:#6c6463; }
#footer .f_menu a:after {content:''; display: block; clear: both; position: absolute; top: 10%; left: 0; width: 1px; height: 80%; background-color: rgba(0,0,0,.3);}
#footer .f_menu a:first-child:after {display: none;}
#footer .f_logo {margin-bottom: 30px; opacity:.7;}
#footer .f_bot {color: #222; opacity: 1;}
#footer .f_bot .copyr {font-family: 'Montserrat'; opacity: .7; letter-spacing:0;}

#footer .sns_link {display: flex;vertical-align: middle;position: absolute;align-items: end;width: 410px !important;bottom: 0;}
#footer .sns_link a {display: inline-block;margin: 0 3px;  width: 50px; height: 50px; border-radius:50%; transition:.25s;}
#footer .sns_link a:hover { opacity:.5}


.quick_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  right: 36px;
  bottom: 45px;
  z-index: 10000;
  animation: floatUpDown 1.5s ease-in-out infinite;
}

.quick_wrap li {
  margin-bottom: 14px;
  flex-shrink: 0; /* 줄어들지 않게 */
}

.quick_wrap li a {
  display: flex;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
  white-space: nowrap;
  width: 60px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quick_wrap li:hover a {
  width: 140px;
  background: #f4f4f4;
}



.quick_wrap li a img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.quick-label {
  color: #333;
  font-size: 14px;
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quick_wrap li:hover .quick-label {
  opacity: 1;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.quick_wrap li:last-child:hover a {
  width: 60px; /* 고정 */
  background: #fff; /* 기존 배경 유지 */
}

.quick_wrap li:last-child .quick-label {
  display: none; /* 라벨 숨김 */
}

.wechat-layer {position:fixed;right:-260px;bottom:100px;width:220px;background:#fff;border:1px solid #ddd;box-shadow:0 4px 12px rgba(0,0,0,0.15);border-radius:12px;padding:20px;transition:all .4s ease;z-index:9999;}
.wechat-layer.open {right:8%;}
.wechat-inner {position:relative;text-align:center;}
.wechat-inner img {width:180px;height:auto;}
.wechat-close {position:absolute;top:-10px;right:-10px;width:28px;height:28px;background:#333;color:#fff;border:none;border-radius:50%;font-size:18px;cursor:pointer;line-height:1;}

#top {width: 70px;height: 70px;line-height: 70px;text-align: center;background-color: #2f4f31;cursor: pointer;border-radius:50px;color: #fff;font-size: 16px;font-weight: 500; margin:0 5px;}
#top  {display: inline-block; animation:bouncing 1s infinite alternate; overflow: hidden;}

#top  {position: relative;}
#top::before {position: absolute;top: 0;left: -75%;z-index: 2;display: block;content: '';width: 50%;	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg); opacity: 0;}
#top:hover::before {-webkit-animation: shine .75s;animation: shine .75s;}

.map-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn.map {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn.map::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.4s ease;
}

.btn.naver {
  background-color: #03c75a;
}

.btn.kakao {
  background-color: #ffcc00;
  color: #3a1d1d;
}

.btn.naver::before {
  background-color: #029c46;
}

.btn.kakao::before {
  background-color: #d9a300;
}

.btn.map:hover::before {
  left: 0;
}

.btn.map:hover {
  color: #fff;
}

/* QUICK
#quick {position: fixed; top: 22%; right:4%;   width: 80px; z-index: 9;}
#quick.stiky {}
#quick .quick_list {margin-bottom: 10px; padding: 30px 0 10px; background-color:#fafafa; border-radius:50px; }
#quick .quick_list li {margin-bottom: 20px;}
#quick .quick_list li:after {content:'';display: block;width: 6px;height: 6px;border-radius:10px;background-color:#5baefe;top: 8px;left: 50%;position: relative;margin-left: -3px;}
#quick .quick_list li:nth-child(6):after { display:none;}

#quick .quick_list li a {display: flex; align-items:center; justify-content:center;flex-direction:column; }
#quick .quick_list li a .icon {opacity: 1; transition:.4s; filter: brightness(0.1);}
#quick .quick_list li a .txt {margin-top: 8px; font-size: 14px; color: #222;}
#quick .quick_list li a:hover .icon { filter: brightness(1);}

#quick .quick_list li:nth-child(2) a .icon {opacity: 1; transition:.4s;filter: grayscale(1);}
#quick .quick_list li:nth-child(2) a:hover .icon { filter: grayscale(0);} */

#top {width: 70px;height: 70px;line-height: 70px;text-align: center;background-color: #5baefe;cursor: pointer;border-radius:50px;color: #fff;font-size: 16px;font-weight: 500; margin:0 5px;}
#top  {display: inline-block; animation:bouncing 1s infinite alternate; overflow: hidden;}

#top  {position: relative;}
#top::before {position: absolute;top: 0;left: -75%;z-index: 2;display: block;content: '';width: 50%;	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg); opacity: 0;}
#top:hover::before {-webkit-animation: shine .75s;animation: shine .75s;}

@-webkit-keyframes shine {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		left: 125%;
		opacity: 0;
	}
}
@keyframes shine {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		left: 125%;
		opacity: 0;
	}
}


#progress_circle {width: 149px; height: 149px; position: fixed; bottom: 40px; right:5%; /*right: 50%; transform:translateX(980px);*/ cursor: pointer; overflow: hidden; z-index: 9;}
#progress_circle .progress_circle_bg {width: 100%; height: 100%; background: url('/assets/images/common/progress_circle.png') 50% 50% no-repeat; animation: progress_Rotate 1s linear infinite; animation-play-state: paused; animation-delay: calc(var(--scroll) * -1s);animation-iteration-count: 1;
  animation-fill-mode: both;}
#progress_circle .progress_circle_logo {position: absolute; top: 0; left: 0; transition:.5s; }
#progress_circle .progress_circle_logo img {display: inline-block; max-width:100%; }
#progress_circle .progress_circle_logo:hover {top: -100%;}

@keyframes progress_Rotate {
  to {
    transform: rotate(360deg);
  }
}
/* 게시물 선택복사 선택이동 */
#copymove {}
#copymove .win_desc {text-align:center;display:block}
#copymove .tbl_wrap {margin:20px}
#copymove .win_btn {padding:0 20px 20px}
.copymove_current {float:right;background:#ff3061;padding:5px;color:#fff;border-radius:3px}
.copymove_currentbg {background:#f4f4f4}

/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;font-size:0;line-height:0;overflow:hidden}
.msg_sound_only, .sound_only {display:inline-block !important;position:absolute;top:0;left:0;width:0;height:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}

/* 본문 바로가기 */
#skip_to_container a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skip_to_container a:focus, #skip_to_container a:active {width:100%;height:75px;background:#21272e;color:#fff;font-size:2em;font-weight:bold;text-align:center;text-decoration:none;line-height:3.3em}

/* ie6 이미지 너비 지정 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {display:inline-block;position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#captcha #captcha_img {height:40px;border:1px solid #898989;vertical-align:top;padding:0;margin:0}
#captcha #captcha_mp3 {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../img/captcha2.png') no-repeat;text-indent:-999px;border-radius:3px}
#captcha #captcha_reload {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px;border-radius:3px}
#captcha #captcha_key {margin:0 0 0 3px;padding:0 5px;width:90px;height:40px;border:1px solid #ccc;background:#fff;font-size:1.333em;font-weight:bold;text-align:center;border-radius:3px;vertical-align:top}
#captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {display:block;margin:0 0 5px;width:187px}
#captcha.m_captcha #captcha_img {width:160px;height:60px;border:1px solid #e9e9e9;margin-bottom:3px;margin-top:5px;display:block}
#captcha.m_captcha #captcha_reload {position:static;margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px}
#captcha.m_captcha #captcha_reload span {display:none}
#captcha.m_captcha #captcha_key {margin:0;padding:0 5px;width:115px;height:29px;border:1px solid #b8c9c2;background:#f7f7f7;font-size:1.333em;font-weight:bold;text-align:center;line-height:29px;margin-left:3px}
#captcha.m_captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}
#captcha.m_captcha #captcha_mp3 {width:31px;height:31px;background:url('../img/captcha2.png') no-repeat 0 0 ; vertical-align:top;overflow:hidden;cursor:pointer;text-indent:-9999px;border:none}

/* ckeditor 단축키 */
.cke_sc {margin:0 0 5px;text-align:right}
.btn_cke_sc {display:inline-block;padding:0 10px;height:23px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:1.9em;vertical-align:middle;cursor:pointer}
.cke_sc_def {margin:0 0 5px;padding:10px;border:1px solid #ccc;background:#f7f7f7;text-align:center}
.cke_sc_def dl {margin:0 0 5px;text-align:left;zoom:1}
.cke_sc_def dl:after {display:block;visibility:hidden;clear:both;content:""}
.cke_sc_def dt, .cke_sc_def dd {float:left;margin:0;padding:5px 0;border-bottom:1px solid #e9e9e9}
.cke_sc_def dt {width:20%;font-weight:bold}
.cke_sc_def dd {width:30%}


/* 새창 기본 스타일 */
.new_win {position:relative}
.new_win .tbl_wrap {margin:0 20px}
.new_win #win_title {font-size:1.3em;height:50px;line-height:30px;padding:10px 20px;background:#fff;color:#000;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);
-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);
box-shadow:0 1px 10px rgba(0,0,0,.1)}
.new_win #win_title .sv {font-size:0.75em;line-height:1.2em}
.new_win .win_ul {margin-bottom:15px;padding:0 20px}
.new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_ul li {float:left;background:#fff;text-align:center;padding:0 10px;border:1px solid #d6e9ff;border-radius:30px;margin-left:5px}
.new_win .win_ul li:first-child {margin-left:0}
.new_win .win_ul li a {display:block;padding:8px 0;color:#6794d3}
.new_win .win_ul .selected {background:#3a8afd;border-color:#3a8afd;position:relative;z-index:5}
.new_win .win_ul .selected a {color:#fff;font-weight:bold}
.new_win .win_desc {position:relative;margin:10px;border-radius:5px;font-size:1em;background:#f2838f;color:#fff;line-height:50px;text-align:left;padding:0 20px}
.new_win .win_desc i {font-size:1.2em;vertical-align:baseline}
.new_win .win_desc:after {content:"";position:absolute;left:0;top:0;width:4px;height:50px;background:#da4453;border-radius:3px 0 0 3px}
.new_win .frm_info {font-size:0.92em;color:#919191}
.new_win .win_total {float:right;display:inline-block;line-height:30px;font-weight:normal;font-size:0.75em;color:#3a8afd;background:#f6f6f6;padding:0 10px;border-radius:5px}
.new_win .new_win_con {margin:20px 0;padding:20px}
.new_win .new_win_con:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .new_win_con2 {margin:20px 0}
.new_win .btn_confirm:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_btn {text-align:center}
.new_win .cert_btn {margin-bottom:30px;text-align:center}
.new_win .btn_close {padding:0 20px;height:45px;overflow:hidden;cursor:pointer}
.new_win .btn_submit {padding:0 20px;height:45px;font-weight:bold;font-size:1.083em}

/* 검색결과 색상 */
.sch_word {color:#fff;background:#ff005a;padding:2px 5px 3px;line-height:18px;margin:0 2px}

/* 자바스크립트 alert 대안 */
#validation_check {margin:100px auto;width:500px}
#validation_check h1 {margin-bottom:20px;font-size:1.3em}
#validation_check p {margin-bottom:20px;padding:30px 20px;border:1px solid #e9e9e9;background:#fff}

/* 사이드뷰 */
.sv_wrap {position:relative;font-weight:normal}
.sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;font-size:0.92em;background:#333;
-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}
.sv_wrap .sv:before {content:"";position:absolute;top:-6px;left:15px;width:0;height:0;border-style:solid;border-width:0 6px 6px 6px;border-color:transparent transparent #333 transparent}
.sv_wrap .sv a {display:inline-block;margin:0;padding:0 10px;line-height:30px;width:100px;font-weight:normal;color:#bbb}
.sv_wrap .sv a:hover {background:#000;color:#fff}
.sv_member {color:#333}
.sv_on {display:block !important;position:absolute;top:23px;left:0px;width:auto;height:auto}
.sv_nojs .sv {display:block}

/* 페이징 */
.pg_wrap {clear:both;float:left;display:inline-block;margin: 0 auto;width: -webkit-fill-available;text-align: center;margin-top: 30px;}
.pg_wrap:after {display:block;visibility:hidden;clear:both;content:""} 
.pg {text-align:center}
.pg_page, .pg_current {display:inline-block;vertical-align:middle;background:#eee;border:1px solid #eee}
.pg a:focus, .pg a:hover {text-decoration:none}
.pg_page {color:#959595;font-size:1.083em;height:30px;line-height:28px;padding:0 5px;min-width:30px;text-decoration:none;border-radius:3px}
.pg_page:hover {background-color:#fafafa}
.pg_start {text-indent:-999px;overflow:hidden;background:url('../img/btn_first.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_prev {text-indent:-999px;overflow:hidden;background:url('../img/btn_prev.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_end {text-indent:-999px;overflow:hidden;background:url('../img/btn_end.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_next {text-indent:-999px;overflow:hidden;background:url('../img/btn_next.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_start:hover,.pg_prev:hover,.pg_end:hover,.pg_next:hover {background-color:#fafafa}

.pg_current {display:inline-block;background:#5baefe;border:1px solid #5baefe;color:#fff;font-weight:bold;height:30px;line-height:30px;padding:0 10px;min-width:30px;border-radius:3px}





/* cheditor 이슈 */
.cheditor-popup-window *, .cheditor-popup-window :after, .cheditor-popup-window :before {
-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;
box-sizing:content-box;
}

/* 글자 단위 페이드 인 기본 */
.js_heading_text{
  display:inline-block;
  white-space:pre;
  opacity:.3;
  transition:opacity 1s cubic-bezier(.25,.46,.45,.94);
}
.js_heading_text .char{
  display:inline-block;
  opacity:0.3;
  /* 글자 한 개가 뜨는 시간(기본 0.9s). 엘리먼트에 data-dur로 변경 가능 */
  transition:opacity var(--dur, .9s) ease;
  will-change:opacity;
}
.js_heading_text.is-show{ opacity:1; }
.js_heading_text.is-show .char{ opacity:1; }


/* Mobile화면으로 */
#device_change {display:block;margin:0.3em;padding:0.5em 0;border:1px solid #eee;border-radius:2em;background:#fff;color:#000;font-size:2em;text-decoration:none;text-align:center}

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

}

@media all and (max-width:2000px){
	#progress_circle { right: 15px; transform:translateX(0); }
	#header #gnb_wrap .dep1_con .dep1 {padding: 0 25px; font-size: 18px;}
	.all_menu_wrap { width: 65%;}
	.open_sitemap {right: 3%;}
	#header .top_util {right:6%;}
	#header #gnb_wrap {margin-right: 15%;}
	#quick {right: 15px; transform: translateX(0);  margin-left: 0;   left: auto;}
}
@media all and (max-width:1800px){
	#header { padding:0 3%;}
	#header #gnb_wrap .dep1_con .dep1 {padding: 0 15px; font-size: 18px;}
	
	#header .link_box {right: 9%;}
	#header #gnb_wrap {margin-right: 16%;}
	#header #gnb_wrap .dep1_con .dep1 {padding: 0 15px; font-size: 17px;}
    #header .top_util { right:7%;}
	.company_info_wrap:after {width: 40%; border-radius:0 100px 0 0;}
	
	.company_info_wrap {padding: 160px 30px;background-color: #fff;}

	
	

}
@media all and (max-width:1600px){
	#header #logo {margin-right: 30px; margin-top:0;}
    #header #gnb_wrap .dep1_con .dep1 {padding: 0 10px;font-size: 16px;}
	.all_menu_wrap { width: 85%;} 
	 
	.youtube_wrap .youtube_list_wrap {margin: 0;}
}
@media all and (max-width:1500px){
     #header #logo a {line-height: 80px;}
	.all_menu_btn {padding: 18px 25px;}
}
@media all and (max-width:1430px){ 
	img,
	.slick-slide img {max-width:100%;}
	.slick_nav {left: 15px; transform:translate(0,0)} 
	.company_info_bot .info_txt_box {width: 100%; padding: 0 30px;}
	

}
@media all and (max-width:1300px){
	#header #gnb_wrap {display: none;}
	#header #gnb_wrap .dep1_con .dep1 {padding: 0 10px;}
	#header .top_util { right: 10%; top:33px;}
}
@media all and (max-width:1230px){ 

	body{overflow:hidden}
	.all_menu_wrap .dep1_con {margin-bottom: 25px;}
	.all_menu_wrap .all_menu_logo {  width: 50%;}
	.all_menu_wrap #all_menu,
	.all_menu_wrap .all_menu_bottom  {width: 50%; padding: 0 0;}
	.all_menu_wrap .dep1_con .dep1 {font-size: 20px;}
	.all_menu_wrap .dep1_con .dep1_1 {font-size: 20px;}
	.all_menu_wrap .dep2_con .dep2 {font-size: 16px;}

	.company_info_bot .way_box {padding-right: 15px;}
	
	.all_menu_wrap .top_util_mobile {position: absolute; top: 10%; right: 3%;;  font-family: 'Montserrat', sans-serif; display:block; }
	.all_menu_wrap .top_util_mobile li {display: inline-block; padding: 0 7px; text-align: center; position: relative; z-index:2; letter-spacing:-0.5px; }
	.all_menu_wrap .top_util_mobile a {display:  inline-block;  transition:.25s; z-index:9999;  color:#fff; font-weight:600;	}
	.all_menu_wrap .top_util_mobile a:hover { opacity: 1;}

	.company_info_wrap {}
	.company_info_wrap .inner {flex-direction:column;}
	.company_info_wrap .lt {width: 100%;}
	.company_info_wrap .company_map #map {height: 500px;}
	.company_info_wrap .rt {width: 100%; padding: 0 15px; margin-top: 80px;}
	.company_info_wrap:after {width: 85%; height: 47%; }

	#quick {scale: .9; right: 0; bottom: 2%; top: auto;}
	#quick.stiky {bottom: 10%;}
	#quick .quick_list li a .txt {display: none;}
	
	
	
    #progresscir { display:none; bottom: 20%;}
	#progresscir .circle {width: 100px; height: 100px; background-size:cover;}
	#progresscir .percent_txt {font-size: 16px;}
	#progresscir .percent_txt span {font-size: 32px;}

	#footer {padding: 50px 0 70px;}
	#footer:after {width: 200%; margin-left: -50%;border-radius:0 0;}
	#footer .inner {flex-direction:column;}
	#footer .f_menu {position: static; margin-bottom: 20px;}
	#footer .f_menu a:first-child {padding-left: 0;}
	#footer .f_info {width: 100%; margin-top: 20px;}

	.cir_rotate {width: 220px;}
	
	
.scroll_down{position: absolute;bottom:0;left:50%;transform:translate(-47%);cursor:pointer; z-index: 1;}
.scroll_down span{display: block;position: relative;font-size: 13px;color:#fff;font-weight:400;font-family:"Italiana", serif;padding-bottom: 75px;letter-spacing:0.07em;}
.scroll_down span:before{width:1px;height: 60px;content:'';background: #fff;opacity:0.5;position: absolute;bottom:0;left:calc(50% - 1px);}
.scroll_down span:after{width:10px;height:10px;content:'';box-sizing:border-box;border-radius:100%;background: #d6b9a3;position: absolute;left:49%;bottom:20%;transform:translate(-50%);animation:scroll 2s ease-in Infinite Alternate;}


	
}
 @media all and (min-width:821px){
	.all_menu_wrap .dep2_wrap {display: flex !important; margin: 0!important; padding: 0!important; height: auto !important;}
	

}
@media all and (max-width:820px){ 
	.quick_wrap{bottom:10px; right:15px}
	.quick_wrap li a img{width:35px; height:35px}
	.quick_wrap li a{width:35px}
	.quick_wrap li:hover a{width:35px}

	.pt140{padding-top:80px !important}
	.pb140{padding-bottom:80px !important}
	#header #logo a {line-height: 70px;}
	#header #logo img {width: 65%; }
	.open_sitemap {width: 35px; height: 35px; top: 18px;}
	.open_sitemap div {width: 17px; height: 17px;}
	.open_sitemap i {width: 5px; height: 5px;}
     #header .top_util {  right: 23%; top:25px;}
	 #header .top_util a {font-size: 13px;}
	 
	.all_menu_wrap {flex-direction:column; padding: 0 0; width:85%;}
	.all_menu_wrap .all_menu_logo {width: 100%; margin-bottom: 20px; padding:20px 75px; height: auto; border-radius:0;}
	.all_menu_wrap .all_menu_logo .tel {display: none;}
	.all_menu_wrap #all_menu {padding: 0 20px; width: -webkit-fill-available;}
	.all_menu_wrap .dep1_con:first-child {border-top: 1px solid #666;}
	.all_menu_wrap .dep1_con {flex-wrap:wrap;width: 100%; margin-bottom: 0; text-align: left; border-bottom: 1px solid #666; opacity: 1; border-left:none;}
	.all_menu_wrap .dep1_con .dep1 {width: 100%; line-height: 45px;padding: 0 0 0 10px; font-size: 16px; position: relative; margin: 0; font-weight:400; }
	.all_menu_wrap .dep1_con .dep1:after,
	.all_menu_wrap .dep1_con .dep1:before {content: ''; position: absolute; top: 50%; right: 0; width: 0.8em; height: 1px; background: transparent; transition: background 0.5s, transform 0.5s;}
	.all_menu_wrap .dep1_con .dep1:after {transform: translate(0,-50%) rotate(90deg); left: auto; right: 0;}
	.all_menu_wrap .dep1_con .dep1:before {transform:translate(0,-50%);}
	.all_menu_wrap .dep1_con.active .dep1:after,
	.all_menu_wrap .dep1_con.active .dep1:before { height: 1px;}
	.all_menu_wrap .dep1_con.active .dep1:after {transform: translate(0,-50%) rotate(0);}
	.all_menu_wrap .dep1_con.active .dep1 {color: #fff;}

	.all_menu_wrap .dep1_con .dep1_1 {width: 100%; line-height: 45px;padding: 0 0 0 10px; font-size: 16px; position: relative; margin: 0; font-weight:400; }
	.all_menu_wrap .dep1_con .dep1_1:after,
	.all_menu_wrap .dep1_con .dep1_1:before {content: ''; position: absolute; top: 50%; right: 0; width: 0.8em; height: 1px; background: transparent; transition: background 0.5s, transform 0.5s;}
	.all_menu_wrap .dep1_con .dep1_1:after {transform: translate(0,-50%) rotate(90deg); left: auto; right: 0;}
	.all_menu_wrap .dep1_con .dep1_1:before {transform:translate(0,-50%);}
	.all_menu_wrap .dep1_con.active .dep1_1:after,
	.all_menu_wrap .dep1_con.active .dep1_1:before { height: 1px;}
	.all_menu_wrap .dep1_con.active .dep1_1:after {transform: translate(0,-50%) rotate(0);}
	.all_menu_wrap .dep1_con.active .dep1_1 {color: #fff;}


	.all_menu_wrap .dep2_wrap {display: none; width: 100%; padding: 15px; background-color: #555;}
	.all_menu_wrap .dep2_wrap.active {/* height: auto !important; */ padding: 15px !important; flex-wrap:wrap; }
	.all_menu_wrap .dep2_con {width: 100%;}
	/* .all_menu_wrap .dep2_wrap.active .dep2_con .dep2, */
	.all_menu_wrap .dep2_con .dep2 {display: block; width: 100%; line-height: 28px; font-size: 14px; margin: 0; color: #fff; opacity:1;}
	.all_menu_wrap .dep2_con:hover .dep2 {color: #ebd4c5;}
	.all_menu_wrap .dep2_con .dep2:after {display: none;}

	/* .all_menu_wrap .dep2_con .dep2:hover {color: #d9b391;}
	.all_menu_wrap .dep2_con .dep2:hover:after {background-color: #d9b391;} */

	.slick_nav  {position: static; width: 100%; padding: 0 15px; margin-top: 40px;}
	.slick_arrow .prev_btn,
	.slick_arrow .next_btn {left: 25px;}
	.slick_arrow .next_btn {left: 125px;}

	.slider_arrow {width: 40px; height: 40px;}

	.more {padding: 12px 36px; letter-spacing: 0;}
	
	.bf {padding: 80px 0;}
	.bf .slider_wrap {padding: 0 20px;}
	.bf .slider_wrap .list {margin: 0 15px;}
	.bf .slider_wrap .list .thumb_wrap img {width: 100%;}
	.bf .slider_arrow {top: 45%;}
	.bf .slider_arrow.prev {left: 15px; margin-left: 0;}
	.bf .slider_arrow.next {right: 15px; margin-right: 0;}
	
.bf .slider_wrap .list {width: -webkit-fill-available; margin: 0 20px; text-align: center;}
.bf .slider_wrap .list .box1 {position:absolute;display:block;z-index:2;width:729px ;height:91%; background: rgba(0,0,0,.5) url('/skin/board/beaf2/img/btn_thumb_login.png') 50% 50% no-repeat; text-indent: -9999px;  z-index: 1; cursor:pointer;}
.bf .slider_wrap .list .box2 {position:absolute;display:block;z-index:2;width:364px;height:91%; background: rgba(0,0,0,.5) url('/skin/board/beaf2/img/btn_thumb_login.png') 50% 50% no-repeat; text-indent: -9999px;  z-index: 1; cursor:pointer;}
	
	.mt50{margin-top:25px !important;}

	.txt120{font-size: 73px;line-height:1.2;}


	.youtube_wrap {padding: 80px 0;}
	.youtube_wrap .youtube_list {padding: 0 10px;}
	.youtube_wrap .tit_wrap h3 { padding:0 35px;}
	.youtube_wrap .slider_arrow {top: 91%; scale: .7;}
	.company_info_wrap .info_box {flex-direction:column;}
	.company_info_wrap .info_box .box {width: 100%;}
	.company_info_wrap .info_box .box:first-child {margin-bottom: 20px;}
	
	.tit_ani_wrap {position:relative;margin-bottom: 30px;}
	.tit_ani_wrap .txt  {text-transform:uppercase;letter-spacing: 4px;font-weight:700;opacity:.3;}


	.company_info_wrap {padding: 80px 0;}
	.company_info_wrap .company_map #map {height: 300px;}
	.company_info_wrap .tit_wrap {margin:0 0 35px;}

.company_info_bot {display: block;}
.company_info_bot .company_info_lt {width: -webkit-fill-available;/* display: flex; */justify-content:flex-end;/* align-items:center; */}
.company_info_bot .company_info_rt {position: relative;width: -webkit-fill-available; margin-top:50px;}
.company_info_bot .company_info_form {position: relative;width: -webkit-fill-available;padding: 50px 0;}
.counsel-form-box{position:relative;width: 100%;height: auto;margin:0 auto;z-index:0;border: 1px solid #ddd;border-radius: 20px;padding: 0 25px 50px;box-shadow: 2px 2px 10px rgba(55,55,55,.25);}
.counsel__mh_hp textarea, select { width: 100%; border: 1px solid #333;/* box-shadow: 2px 2px 10px rgba(55,55,55,.25); */line-height: 1.5;width: 100%;height: 45px;font-size: 0.95rem;padding: 0 15px;}

.counsel-form-box .ft_form_btn {width: -webkit-fill-available;height: 45px;border-radius: 100px;background-color: #333;border:0;color: #fff;font-size: 16px;line-height: 1.5;cursor:pointer;position: relative;transition:.25s}

.company_info_bot .info_txt_box {width:100%; padding: 0;}
.company_info_bot .tit_wrap1 {margin-bottom:35px;}

.company_info_bot .info_btn1 .btn11 {background-color: #f4db18;color: #3c1d1e;margin-right:10px;display: block;padding-top: 40px;}
.company_info_bot .info_btn1 .btn22 {background-color: #222; color: #fff; display: block; padding-top: 40px;}

	

	#footer .f_logo {width: 130px;margin-top: 30px; margin-left:2%;}
	
	.mt100 {margin-top: 50px !important;}
	.mobile { display:block;}
	.m { display:block !important;}	
	.pc { display:none !important;}
	
	.bf {padding: 80px 0 0;}
	.bf .slider_wrap {padding: 0 20px; margin-bottom:30px;}
	.bf .slider_wrap .list {margin: 0 15px;}
	.bf .slider_wrap .list .thumb_wrap img {width: 100%;}
	.bf .slider_arrow {top: 41%;}
	.bf .slider_arrow.prev {left: 15px; margin-left: 0;}
	.bf .slider_arrow.next {right: 15px; margin-right: 0;}
	
.bf .slider_wrap .list {width: 332px; margin: 0 20px 45px; text-align: center; position:relative;}
.bf .slider_wrap .list .box1 {position:absolute;display:block;z-index:2;width:100% ;height:50%; background: rgba(0,0,0, .5) url('/skin/board/beaf2/img/btn_thumb_login1.png') 50% 50% no-repeat; text-indent: -9999px;  z-index: 1; cursor:pointer;}
.bf .slider_wrap .list .box2 {position:absolute;display:block;z-index:2;width:50%;height:100%; background: rgba(0,0,0, .5) url('/skin/board/beaf2/img/btn_thumb_login1.png') 50% 50% no-repeat; text-indent: -9999px;  z-index: 1; cursor:pointer;}
.bf .slider_wrap .list .box3 {position:absolute;display:block;z-index:2;width:100%;height:50%; background: rgba(0,0,0, .5) url('/skin/board/beaf2/img/btn_thumb_login1.png') 50% 50% no-repeat; text-indent: -9999px;  z-index: 1; cursor:pointer; background-size:35%;}
.bf .slider_wrap .list .box4 {position:absolute;display:block;z-index:2;width:50%;height:100%; background: rgba(0,0,0, .5) url('/skin/board/beaf2/img/btn_thumb_login1.png') 50% 50% no-repeat; text-indent: -9999px;  z-index: 1; cursor:pointer;  background-size:70%;}
.bf .slider_wrap .list h4 {transition:.25s;background-color:#fff;position: absolute;height:45px;line-height:45px;width: -webkit-fill-available;}
.bf .slider_wrap .list .thumb_wrap {margin-bottom: 0;overflow: hidden;position: relative;}

.rection03{max-width:100%}
.pt160{padding-top:80px !important}
.pb160{padding-bottom:80px !important}

.mt20{margin-top:10px !important;}

.shorts-aside{width:100%}
.shorts-row{display:block}
.js_heading_text{width:100%}
.shorts-title{width:60%}
.more_btn {width:100%}
.shorts-title{margin-bottom:40px}

.map_con {padding: 0 0;}
.map_con .map_con_box { display: block;}
.map_con .map_con_box .lt #map {width: 100%;height: 450px;overflow: hidden;}
.map_con .map_con_box .lt {display: flex;justify-content:flex-end;width: -webkit-fill-available;z-index: 0;}
.map_con .map_con_box .rt {width: 100%; padding:40px 0 80px 0}
.map_con .map_con_box .list_wrap{padding:initial; max-width:100%; padding:0 15px}
.map_con .map_con_box .list_wrap .list {padding: 0 0;}
.map_con .map_con_box .list_wrap .list .img_wrap {display: block; margin-bottom: 40px;}
.map_con .map_con_box .list_wrap .list .txt_wrap {padding-bottom: 0;}
.map_con .map_con_box .list_wrap .list .txt_wrap .num {margin-bottom: 10px;}
.map_con .map_con_box .list_wrap .list .txt_wrap .txt {transform:translateY(0)}
.map_con .map_con_box .list_wrap .list .txt_wrap .more .arr {width: 65px; transform:translateX(30px)}
.map_con .map_con_box .list_wrap .list .txt_wrap .more .cir {width: 50px; height: 50px;}
.map_con .map_con_box .list_wrap .list .txt_wrap .more:hover .arr {transform:translateX(40px)}
.map_con .map_con_box .list_wrap .list .txt_wrap { padding-bottom: 0px; margin-left: 0;}

.map_con .map_con_box .list_wrap .btn { display:none !important;}
.contact-section{padding:80px 0}
.form-row input, .contact-right textarea{width:100%}
#intro .intro_wrap .intro_text {font-size:22px}

#intro .intro_wrap .intro_logo{margin-top:15px}
.wechat-layer.open{right:20%}
.wechat-layer{bottom:10px}
.park_img img{width:5% !important}
}
@media all and (max-width:520px){
    .tit_ani_wrap .txt_ani_box { padding: 0 20px;}
	.case_slide_wrap .case_slide .list span {padding: 10px;}
	.case_slide_wrap .case_slide .list .img {border-radius:0 30px 0 0}
	.company_info_bot .way_box {padding: 0 5px 0 40px;}
	.company_info_bot .way_box .subway_info:before,
	.company_info_bot .way_box .bus_info:before {width: 30px; height: 30px; left: -40px;}
	.company_info_bot .way_box .bus_info dt {width: 65px;}
	.company_info_bot .way_box .bus_info dt,
	.company_info_bot .way_box .bus_info dd {margin-bottom: 5px; font-size: 14px;}
	.company_info_bot .way_box .parking_info:before  {width: 30px; height: 30px; left: -40px;}



	.company_info_bot .map_btn a {padding: 15px;font-size: 12px;}
	.company_info_bot .company_map .map {height: 350px;}
	.company_info_bot .company_map .map .wrap_map {height: 330px !important;}

	#footer .inner > div {width: -webkit-fill-available;display: flow; margin-bottom:0}
	#footer .f_menu a:after {display: none;}
	#footer .f_menu{padding-top:0}

	#footer .f_menu a {padding: 0 5px 5px;}
	#progresscir .circle {width: 60px; height: 60px; }
	#progresscir .percent_txt {font-size: 12px;}
	#progresscir .percent_txt span {font-size: 24px;}

	.cir_rotate {width: 120px;}
	
	#hd_pop { width: -webkit-fill-available !important;  margin: 0 10px;} 
	.hd_pops_con {     width: -webkit-fill-available !important;  height:-webkit-fill-available !important;}
	.hd_pops { left:0 !important;}

}


