@charset "utf-8";

/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
mobile : 767px ~
         480px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/* Font
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');

/* 본고딕 */
@font-face {
    font-family:'Noto Sans KR';
	font-weight:300;
    src: url('/tpl/webfont/NotoSansKR-Light.eot');
    src: url('/tpl/webfont/NotoSansKR-Light.eot?#iefix') format('embedded-opentype'),
         url('/tpl/webfont/NotoSansKR-Light.woff') format('woff'),
         url('/tpl/webfont/NotoSansKR-Light.ttf') format('truetype');
}
@font-face {
    font-family:'Noto Sans KR';
	font-weight:400;
    src: url('/tpl/webfont/NotoSansKR-Regular.eot');
    src: url('/tpl/webfont/NotoSansKR-Regular.eot?#iefix') format('embedded-opentype'),
         url('/tpl/webfont/NotoSansKR-Regular.woff') format('woff'),
         url('/tpl/webfont/NotoSansKR-Regular.ttf') format('truetype');
}
@font-face {
    font-family:'Noto Sans KR';
	font-weight:bold;
    src: url('/tpl/webfont/NotoSansKR-Bold.eot');
    src: url('/tpl/webfont/NotoSansKR-Bold.eot?#iefix') format('embedded-opentype'),
         url('/tpl/webfont/NotoSansKR-Bold.woff') format('woff'),
         url('/tpl/webfont/NotoSansKR-Bold.ttf') format('truetype');
}

/* 출처 : 이 사이트에는 네이버에서 제공한 나눔글꼴이 적용되어 있습니다. */
/* 나눔스퀘어 */
@font-face {
    font-family:'Nanum Square';
    src: url('/tpl/webfont/NanumSquareR.eot');
    src: url('/tpl/webfont/NanumSquareR.eot?#iefix') format('embedded-opentype'),
         url('/tpl/webfont/NanumSquareR.woff') format('woff'),
         url('/tpl/webfont/NanumSquareR.ttf') format('truetype');
}
@font-face {
    font-family:'Nanum Square';
	font-weight:bold;
    src: url('/tpl/webfont/NanumSquareB.eot');
    src: url('/tpl/webfont/NanumSquareB.eot?#iefix') format('embedded-opentype'),
         url('/tpl/webfont/NanumSquareB.woff') format('woff'),
         url('/tpl/webfont/NanumSquareB.ttf') format('truetype');
}




/* Reset
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,textarea,p,blockquote,th,td,input,select,textarea,button{margin:0; padding:0; font-family:"Noto Sans KR", sans-serif;}
dl,ul,ol,menu,li {list-style:none;}
body{font-family:"Noto Sans KR", sans-serif; font-size:14px; font-weight:300; color:#555;}
*, *:before, *:after{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;}
:focus{outline:0 !important;}
iframe{border:none; width:100%;}
a{font-family:"Noto Sans KR", sans-serif; color:inherit; -webkit-transition:all .2s ease-out; -moz-transition:all .2s ease-out; transition:all .2s ease-out; color:#555;}
a:hover, a:active{text-decoration:none; color:#1766b6;}
img{max-width:100%;}
textarea{max-width:100%; resize:none;}

@media only screen and (min-width: 320px){
	body{min-width:320px; overflow-x:hidden;}
}

.hidden{margin:0; padding:0; font-size:0; line-height:0; text-indent:-9999em; overflow:hidden;}
#divWMSSLLoading {display:none;}

/* Parallax
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.parallax{background-position:0 0; background-repeat:no-repeat; background-size:100% auto; width:100%; background-size:cover; background-attachment:fixed;}


/* Preloader
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.animationload{position: fixed; top:0; left:0; right:0; bottom:0; background-color:#fff; z-index:999999;}
.loader {width:200px; height:200px; font-size: 24px; text-align: center; position:absolute; left:50%; top:50%; background-image:url(/images/basic_resp/img/preloader.gif); background-repeat:no-repeat; background-position:center; margin:-100px 0 0 -100px;}


/* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.back-to-top{width:40px; height:40px; position:fixed; bottom:10px; right:20px; display:none; text-align: center; z-index: 10000; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius:50%; background:#222;}
.back-to-top i{color: #fff; font-size: 15px; display: block; line-height: 33px;}


/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper{position:relative; min-width:1180px;}

#header{z-index:10000; position:fixed; top:0; left:0; width:100%; box-sizing:border-box; height:96px; border-bottom:1px solid rgba(255,255,255,0.2); background:none; transition:all .2s ease-out;}
#header.header-bg{background:#222; box-shadow:2px 3px 15px rgba(0,0,0,0.2);}
.header-area{padding:0 25px; margin:0 auto; width:1200px; box-sizing:border-box;}
.header-area:after{content:"";display:block;clear:both;}

/* 로고: float 유지 + margin 없이 세로 중앙정렬 */
#L_SITE_LOGO{float:left;height:96px;}
#L_SITE_LOGO h1{margin:0;height:100%;line-height:0;font-size:0;}
#L_SITE_LOGO a{height:100%;display:flex;align-items:center;line-height:0;font-size:0;padding:8px 0;box-sizing:border-box;}
#L_SITE_LOGO img{display:block;max-width:none;max-height:70px;height:auto;width:auto;}

@media only screen and (max-width:1590px) {
}

@media only screen and (max-width: 1200px){
	#wrapper{min-width:320px;}
	.header-area{width:100%;}
}


@media only screen and (max-width: 980px){
	#header{height:72px;}
	.header-area{position:relative; padding:0; height:72px;}
	/* #L_SITE_LOGO a{padding:6px 0;} */
	#L_SITE_LOGO{height:72px;padding:0 25px;}
  	#L_SITE_LOGO img{max-height:50px;width:auto;}
}

@media only screen and (max-width: 768px){
	#header{height:56px;}
	.header-area{height:56px;}

  	#L_SITE_LOGO{height:56px;padding:0 20px;}
  	#L_SITE_LOGO img{max-height:38px;width:auto;}
}


/* Navigation (상단 메뉴)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#gnb{z-index:999;}
#menuArea {float:right;}
.navigation {text-align: center;}
.navigation li {display: inline-block;}
.navigation .menu-item > a{display:inline-block; font-family:"Arial"; font-size:16px; color:#fff;}
.navigation .menu-item.on > a{color:#ff4c5f;}
.navigation .menu-item > a:hover, .navigation .menu-item > a:active, .navigation .menu-item > a:focus{text-decoration:none; color:#ff4c5f;}
.navigation .menu-item.top-btn {position:relative; top:-5px;}

@media only screen and (min-width: 981px){
	#gnb{display:block !important;}

	.navigation{margin:40px 0 0;}
	.navigation:after{content:""; display:block; clear:both;}
	.navigation .menu-item{position:relative; float:left; font-size:14px;}
	.navigation .menu-item:before{display:inline-block; content:"|"; color:#fff;margin:0 21px;}
	.navigation .menu-item:first-child:before{display:none;}
	.navigation .menu-item > a{letter-spacing:0.2px;}
}

@media only screen and (max-width: 980px){
	#gnb{display:none; width:100%; height:auto; box-sizing:border-box; background:#fff;}
	#gnb {position: absolute; top:65px; border-bottom: 1px solid #ddd; }
	/*#gnb .navigation .menu-item:last-child a { border-bottom: 0; }*/

	#menuArea{width:100%; height:100%;}
	nav [data-type='menu-btn'] {z-index:1000; position:absolute; right:25px; top:calc(50% - 12px); width:24px; height:24px; border-radius:5px; cursor:pointer; transition:.4s all linear;}
	nav [data-type='menu-btn'] span {display:block; position:absolute; left:1px; width:22px; height:3px;  transition:.3s all linear; background:#fff;}
	nav [data-type='menu-btn'] span:nth-child(1) {top:4px; transform: rotate(0deg);}
	nav [data-type='menu-btn'] span:nth-child(2),
	nav [data-type='menu-btn'] span:nth-child(3) {top:11px; transform: rotate(0deg);}
	nav [data-type='menu-btn'] span:nth-child(4) {top:18px;}
	nav.open [data-type='menu-btn'] span:nth-child(1) {left:50%; width:0;}
	nav.open [data-type='menu-btn'] span:nth-child(2) {transform: rotate(45deg);}
	nav.open [data-type='menu-btn'] span:nth-child(3) {transform: rotate(-45deg);}
	nav.open [data-type='menu-btn'] span:nth-child(4) {left:50%; width:0;}

	.navigation .menu-item > a{padding:0 25px; text-align:center; width:100%; line-height:40px; font-size:15px; transition:none; border-bottom:1px solid #ddd; color:#000;}
	.navigation .menu-item:first-child > a{border-top:1px solid #ddd;}
	.navigation .menu-item.on > a{color:#fff;}
}

@media only screen and (max-width: 767px){
	#gnb {top:50px;}
	#btnMenuOpen{right:20px;}
	nav [data-type='menu-btn']{right:20px;}
	.navigation .menu-item > a{padding:0 20px;}
}

.navigation .menu-item.top-btn > a{border-radius:5px; width:128px; height:38px; line-height:38px; font-size:14px; text-align:center; border:1px solid #fff;}
.navigation .menu-item.top-btn > a:hover{background:#fff;}
.navigation .menu-item.top-btn:before{content:"";}


@media only screen and (min-width: 981px) and (max-width:1180px) {
	ul.navigation{
  	      width: 100%;
  	      align-items: center;
  	      margin: 40px 0 0;   /* 스샷에 있던 값 유지(원하면 0으로) */
	}

	.navigation{margin: 40px 0 0;}

	.navigation .menu-item > a{font-size:15px;}
	.navigation .menu-item.top-btn > a{width:110px; height:38px; line-height:38px; font-size:13px;}
	.navigation .menu-item:before{margin:0 10px;}
}

@media only screen and (max-width: 980px){
	.navigation .menu-item.top-btn > a{width:140px; color:#ff4c5f; border:1px solid #ff4c5f; margin:0 auto;}
	.navigation .menu-item.top-btn > a:hover{background:#ff4c5f; border:1px solid #ff4c5f; color:#fff;}
	.navigation .menu-item.top-btn{padding:10px 25px; text-align:center;}

}

/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.btn{font-family:"Malgun Gothic", sans-serif; text-transform:uppercase; border-radius:0; line-height:24px;}
.btn:focus, .btn:active{outline:none; color:#fff;}

.btn-custom{border-radius:3px; padding:0.8em 1.8em; -webkit-transition:all .2s ease-out; -moz-transition:all .2s ease-out; transition:all .2s ease-out; text-transform:uppercase; background-color:#003aaf; border-color: #003aaf; color:#fff;}
.btn-custom:hover, .btn-custom:focus{background-color: #00208e; border-color: #00208e; color:#fff;}

.btn-custom-outline{border-radius:3px; padding:0.8em 1.8em; color:#fff; -webkit-transition:all .2s ease-out; transition:all .2s ease-out; text-transform:uppercase; background-color:transparent; border-color:#fff;}
.btn-custom-outline:hover, .btn-custom-outline:focus{color:#fff; background-color:rgba(255,255,255,.5);}
.btn-bar a{margin-right:10px;}

.form-control{box-shadow:none; -webkit-box-shadow:none; border-radius:3px; height:38px;}
.form-control:focus{outline:none; box-shadow:none; -webkit-box-shadow:none; border-color: #003aaf;}



/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#footer {
    position: relative;
    width: 100%;
    background: #121212;
    padding: 50px 0;
}

#footer:after {
    content: '';
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    height: 1px;    
}

.footer-area {
    position: relative;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-area:after {
    content: "";
    display: block;
    clear: both;
}

.footer-sns {
    position: absolute;
    top: 0;
    right: 0;
    padding: 22px 0;
}

.footer-sns li {
    float: left;
    display: inline;
    margin-left: 10px;
}

.footer-sns li:first-child {
    margin-left: 0;
}

.footer-sns li a {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #ffa800;
}

#footer p,
#footer li {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0;
    text-align: center;
	word-break:keep-all;
}

.foot-logo {
    float: left;
    margin: 22px 50px 0 0;
}

.foot-info {
    float: left;
    width: calc(100% - 150px);
}

.footer-menu {
    margin: 0 auto 20px;
    line-height: 0;
    font-size: 0;
    text-align: center;
}

.footer-menu li {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    vertical-align: middle;
    line-height: 36px;
    color: #fff;
}

.footer-menu li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.footer-menu li:before {
    content: '';
    position: absolute;
    top: 33px;
    left: 0;
    width: 1px;
    height: 10px;    
}

.footer-menu li:first-child:before {
    display: none;
}

.footer-menu li a {
    line-height: 10px;
    font-size: 16px;
    color: #bbb;
}

.footer-info {
    line-height: 30px;
    margin-bottom: 20px;
    color: #bbb;
	text-align:center;
}

.footer-info li{display:inline-block;}
.footer-info span {
	margin:0 3px;
	font-size:13px; 
	color:#666;
}

.footer-info a {
   color:#bbb;
}

.footer-copy, .footer-copy a {
    color: #bbb;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-info br {
    display: none;
}

@media only screen and (min-width: 1201px) {
    .footer-area {
        width: 1200px;
    }
    #footer p,
    #footer li {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1200px) {
    .footer-area {
        padding: 0 20px;
    }
    .footer-sns {
        right: 20px;
    }
    .footer-info {
        width: 100%;
    }
}

@media only screen and (max-width:768px) {
    #footer p,
    #footer li {
        white-space: normal;
        font-size: 13px;
    }
    .footer-area {
        padding: 0 10px;
        text-align: center;
    }
    .footer-sns {
        display: none;
    }
	.footer-menu{margin:0 auto 15px;}
    .footer-menu li {
        margin-left: 5px;
        padding-left: 5px;
    }
    .footer-menu li a {
        font-size: 13px;
    }
    .foot-info {
        float: none;
        width: 100%;
    }
    .footer-info {
        width: 100%;
        line-height: 17px;
		margin-bottom:15px;
    }
    .footer-copy {
        white-space: pre-line;
    }
    .foot-logo {
        float: none;
        margin: 0 0 20px 0;
    }
	.footer-logo img {width:50px;}
    .footer-info br {
        display: block;
    }

	.footer-info span {font-size:0}
}


/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
    .main_visual{position:relative;}
	.main_visual .visual_slide{width:100%;height:930px;}
	.main_visual .visual_slide .item{height:930px;}
	.visual_slide .item.main-img01{background:url("/images/kor01r-17-0386/main_visual_01.jpg") no-repeat center center/cover;}
	.visual_slide .item.main-img02{background:url("/images/kor01r-17-0386/main_visual_02.jpg") no-repeat center center/cover;}
    .visual_slide .item.main-img03{background:url("/images/kor01r-17-0386/main_visual_03.jpg") no-repeat center center/cover;}
	.visual_slide .item.main-img04{background:url("/images/kor01r-17-0386/main_visual_04.jpg") no-repeat center center/cover;}

	.main_visual .carousel-caption {
		position: relative;
		top: 38%;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		width: 100%;
		text-shadow: none;
		color: #fff;
	}
	
	.main_visual .carousel-caption .slogan {
		padding: 0;
		text-align: center;
		line-height: 1.3;
		color: #fff;
		word-break: keep-all;
		text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
	}

	.main_visual .carousel-caption .slogan p{font-size:26px; font-weight:300; }
	.main_visual .carousel-caption .slogan span{font-size:70px; margin-bottom:15px; display:block; font-family: 'Playfair Display', serif; font-weight:600;}
	.main_visual .carousel-caption .slogan span.mid-font{font-size:45px; margin-bottom:15px; display:block; font-family: 'Playfair Display', serif; font-weight:600;}


	.visual_slide .slick-dots{position:absolute;bottom:30px;left:50%;margin-left:-640px;display:-webkit-inline-box;display:-moz-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:inline-flex;}
	.visual_slide .slick-dots li button{width:50px;height:3px;font-size:13px;font-weight:bold;color:#fff;background:#ddd;outline:none;border:none;}
	.visual_slide .slick-dots li.slick-active button{background:#000;}
	
	.vis_progress{display:flex; position: absolute; left: 0; bottom:20%; right: 0; flex-direction: row; justify-content: center; z-index: 60;}
	.vis_progress div{display:flex;align-items:center;cursor:pointer;color:#fff; max-width: 180px; padding: 0 10px; white-space: nowrap; text-align: left;}
	.vis_progress div h6{}
	.vis_progress div span.progressBar{display:block;width:70px;margin-left:5px;height:4px;background-color:rgba(255,255,255,0.33);}
	.vis_progress div span.progressBar .inProgress{display:block;width:0%;height:4px;background-color:rgba(255,255,255,1);}
	.en{font-family:'Montserrat', sans-serif; font-size:15px;}

	@keyframes slickAni{
	  from {transform:scale(1.3) translate(0px);}
	  to {transform:scale(1.0) translate(0px);}
	}
	@-webkit-keyframes slickAni {
	  from {transform:scale(1.3) translate(0px);}
	  to {transform:scale(1.0) translate(0px);}
	}
	
	@media screen and (min-width:1281px){
		.main-visual .carousel-caption {width: 1200px;}
	}

	@media screen and (max-width:1280px){
	}

	@media screen and (max-width:980px){
		.main_visual .visual_slide,.main_visual .vis_cont{height:800px;}
		.main_visual .visual_slide{height:800px;}
		.main_visual .visual_slide .item{height:800px;}
		.main_visual .vis_cont{top:40%;left:auto;right:auto;bottom:auto;padding:unset;}
		.main_visual .carousel-caption .slogan p{font-size:22px;}
		.main_visual .carousel-caption .slogan span{font-size:56px;}
		.main_visual .carousel-caption .slogan span.mid-font{font-size:35px;}

	}

	@media screen and (max-width:768px){
		.main_visual .visual_slide,.main_visual .vis_cont{height:560px;}
		.main_visual .visual_slide{height:560px;}
		.main_visual .visual_slide .item{height:560px;}
		.main_visual .vis_cont{top:40%;}
		.main_visual .carousel-caption .slogan p{font-size:20px;}
		.main_visual .carousel-caption .slogan span{font-size:48px;}
		.main_visual .carousel-caption .slogan span.mid-font{font-size:25px;}

		
		.vis_progress div{max-width:100px;}
		.vis_progress div span.progressBar{width:55px;}

	}


	@media screen and (max-width:500px){
		.main_visual .carousel-caption{top:35%;}
		.main_visual .visual_slide, .main_visual .vis_cont, .main_visual .visual_slide .item{height:auto; min-height:520px}
		.main_visual .visual_slide{height:450px;}
		.main_visual .visual_slide .item{height:450px;}
		.main_visual .carousel-caption{top:50%; transform:translateY(-50%);}
		.main_visual .carousel-caption .slogan p{font-size:15px;}
		.main_visual .carousel-caption .slogan span{font-size:28px;}
		.main_visual .carousel-caption .slogan span.mid-font{font-size:16px;}
		.vis_progress div{padding:0 5px; max-width:80px;}
		.vis_progress div span.progressBar{width:clamp(45px, 14vw, 72px);}
		.en{font-size:13px;}
	}




/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#mainContents{z-index:88;}
#mainContents .section-title{font-family:'Nanum Square';}
#mainContents h2{font-family:'Montserrat', sans-serif; font-weight:600; color:#222; margin-bottom:10px; line-height:1; font-size:40px;}
#mainContents h2 + p{font-size:15px;}

#toc-content02, #toc-content03, #toc-content04, #toc-content05, #toc-content06 { display:none; }
#toc-toggle02, #toc-toggle03, #toc-toggle04, #toc-toggle05, #toc-toggle06 { cursor:pointer; }


#mainContents a.go-shop{margin:60px 0 auto; border-radius:50px; display:inline-block; width:200px; height:60px; line-height:60px; font-size:24px; color:#fff; font-family:'Montserrat', sans-serif; font-weight:500; background:#4b351f;  }
#mainContents a.go-shop:hover{background:#000; color:#ff4c5f; -webkit-transition:all .3s ease-out; -moz-transition:all .3s ease-out; transition:all .3s ease-out;}

/* --- 모든 섹션 공통 레이아웃 (PC & 모바일 통합) --- */
.section02 .section-top-intro .title-bar,
.section03 .section-top-intro .title-bar,
.section04 .section-top-intro .title-bar,
.section05 .section-top-intro .title-bar,
.section06 .section-top-intro .title-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    top: 50% !important; /* 화면 중앙 정렬 */
    transform: translateY(-50%) !important;
    padding-top: 0 !important;
    height: auto !important;
}

/* 로고 위치 및 크기 표준화 (PC) */
.section-top-intro .title-bar span {
    position: relative !important; /* absolute로 인한 겹침 방지 */
    top: 0 !important;
    display: block !important;
    margin-bottom: 25px !important; /* 로고 아래 여백 */
}

.section-top-intro .title-bar img {
    width: 280px !important; /* PC 기준 로고 크기 */
    height: auto !important;
}

/* 설명 문구(p) 정렬 (PC) */
.section-top-intro .title-bar p {
    position: relative !important;
    margin-top: 0 !important; /* 개별 마진 초기화 */
    top: 0 !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
    text-shadow: 0 0 5px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,1);
    padding:5px 15px;
    border-radius:30px;
}


.section-top-intro .title-bar p:before {
    top: -25px !important; /* 텍스트 위 선 위치 */
}

.section-top-intro{height:820px; position:relative;}
.section-top-intro .title-bar{position:relative;  background:rgba(0,0,0,0); text-align:center; padding:60px 0;}
.section-top-intro .title-bar p{position:relative; font-size:30px; color:#fff; font-family:'Montserrat', sans-serif; font-weight:500; margin-top:60px;}
.section-top-intro .title-bar p:before{position:absolute; content:""; margin:0 auto; top:-20px; left:0; right:0; width:58px; height:0; background:#fff;}
.section-top-intro .btn-bar {position:absolute; left:0; right:0; bottom:100px;font-size:20px;font-weight:300; font-family:'Montserrat', sans-serif;}
/* 버튼 리디자인: 기존 폰트 크기 유지 */
.section-top-intro .btn-bar > div {
    cursor: pointer;
    display: block;
    margin: 0 auto;
    width: 200px;         /* 너비를 살짝 줄여 더 세련되게 조정 */
    height: 56px;         /* 높이를 살짝 줄여 둔탁함 제거 */
    line-height: 54px;    /* 테두리 포함 중앙 정렬 */
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4); /* 촌스러운 회색 대신 반투명 블랙 */
    text-align: center;
    color: #fff;
    transition: all 0.3s ease; /* 부드러운 호버 전환 */
}

/* Hover 상태: 깨끗한 화이트 반전 */
.section-top-intro .btn-bar > div:hover {
    background: #fff;
    border-color: #fff;
}

/* Hover 시 내부 텍스트 색상 검정으로 변경 */
.section-top-intro .btn-bar > div:hover.btn-more {
    color: #000 !important;
}
.section-top-intro .btn-bar > div .plus{font-size:30px; position:relative; top:3px;}

.brand-title{position:relative; text-align:center; margin-bottom:130px; }
.brand-title:after{position:absolute; content:""; left:0; right:0; display:block; margin:50px auto 0; width:194px; height:32px; background:url('/images/kor01r-17-0386/cont_title_bg.png') no-repeat}
.brand-title h3{font-size:38px; line-height:1.3;  font-weight:500; color:#67320c; word-break:keep-all; padding-top:50px; letter-spacing:-0.02em}
.brand-title h3 span{font-family:'Montserrat', sans-serif; font-weight:600; display:block; color:#a67a2e; font-size:26px; margin-top:10px; letter-spacing:0;}

.cont-wrap{width:1200px; margin:0 auto; padding:120px 0; text-align:center;}
.cont-wrap p{font-size:19px; font-weight:400; margin-bottom:30px; color:#555; line-height:1.6; word-break:keep-all;}
.cont-wrap p strong{font-weight:600; color:#333;}

.brand-img{margin-top:80px;}
.brand-img ul{margin:0 -20px;}
.brand-img ul:after{content:""; display:block; clear:both;}
.brand-img li{float:left; margin:0 20px; width:calc(33.33% - 40px);}
.brand-img li img{width:100%;}


@media only screen and (max-width:1200px) {
	.cont-wrap{width:100%; padding:120px 30px;}
	.brand-img ul{margin:0 -5px;}
	.brand-img li{margin:0 5px; width:calc(33.33% - 10px);}
}

@media only screen and (max-width:980px) {
	.cont-wrap{padding:100px 20px;}
	.cont-wrap p br {display: none;} /* 모바일에서 어색한 줄바꿈 제거 */
	.section-top-intro {height: 500px !important;} /* 높이를 조금 줄임 */
	.section-top-intro .title-bar{padding:40px 0 !important; top:15% !important; background:rgba(0, 0, 0, 0) !important;}
	.section-top-intro .title-bar p{font-size:22px; margin-top:40px;}
	.section-top-intro .btn-bar {bottom:50px;}
	.section-top-intro .btn-bar > div{width:200px; height:60px;}
	.section-top-intro .btn-bar > div.btn-more{line-height:54px; font-size:20px; }
	.section-top-intro .btn-bar > div span.plus{font-size:28px;}

	.brand-title h3{font-size:30px; padding-top:40px;}
	.brand-title h3 span{font-size:20px;}
	.brand-img{margin-top:40px;}

}


@media only screen and (max-width:768px) {
	.section-top-intro { height: 450px !important; }

	#mainContents h2{font-size:28px;}
}


/* --- 모바일 미디어쿼리 (620px 이하) --- */
@media only screen and (max-width: 620px) {
    .section-top-intro { height: 450px !important; }

    .section-top-intro .title-bar {
        top: 45% !important; /* 버튼 공간 확보를 위해 살짝 위로 */
        transform: translateY(-50%) !important;
    }

    .section-top-intro .title-bar img {
        width: 180px !important; /* 모바일 로고 크기 통일 */
    }

    .section-top-intro .title-bar p {
        font-size: 16px !important;
        margin-top: 20px !important;
        padding: 0 20px !important;
        word-break: keep-all;
    }

    .section-top-intro .title-bar p:before {
        width: 40px !important;
        top: -12px !important;
    }

    .section-top-intro .btn-bar {
        bottom: 50px !important; /* 하단 버튼 위치 고정 */
    }

	/* 버튼 박스 크기 축소 */
    	.section-top-intro .btn-bar > div {
        width: 130px !important;     /* 가로폭 축소 */
        height: 38px !important;     /* 높이 축소 */
        line-height: 36px !important; /* 텍스트 세로 중앙 정렬 */
    }

    	/* 버튼 내부 폰트(VIEW MORE) 크기 축소 */
    	.section-top-intro .btn-bar > div.btn-more {
        font-size: 12px !important;  /* 폰트 크기 대폭 축소 */
        letter-spacing: 0 !important;
    }

    	/* + 기호 크기 축소 */
    	.section-top-intro .btn-bar > div .plus {
        font-size: 14px !important;  /* + 기호 크기도 폰트에 맞춰 축소 */
        margin-right: 2px !important;
        top: 0 !important;
    }
		

}

/* section02
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.section02 .section-top-intro .title-bar img{width:360px;}
.section02 .sect02-bg{background:url('/images/kor01r-17-0386/sect02_bg.jpg') no-repeat center center/cover}

.section02 .txt-block{display:block;}


@media only screen and (max-width:980px) {
	.section02 .section-top-intro .title-bar img{width:270px;}
}

@media only screen and (min-width:621px) {
	.section02 .brand-title h3 br{display:none;}
}



/* section03
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.section03 .section-top-intro .title-bar img{width:300px;}
.section03 .sect03-bg{background:url('/images/kor01r-17-0386/sect03_bg.jpg') no-repeat center center/cover}

.section03 .section-top-intro .title-bar p{margin-top:270px;}
.section03 .section-top-intro .btn-bar{bottom:73px;}

@media only screen and (max-width:980px) {
	.section03 .section-top-intro .title-bar img{width:220px;}
}

@media only screen and (min-width:621px) {
	.section03 .brand-title h3 br{display:none;}
}



/* section04
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.section04 .section-top-intro .title-bar img{width:360px;}
.section04 .sect04-bg{background:url('/images/kor01r-17-0386/sect04_bg.jpg') no-repeat center center/cover}

.section04 .txt-block{display:block;}




@media only screen and (min-width:621px) {
	.section04 .brand-title h3 br{display:none;}
}



/* section05
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.section05 .section-top-intro .title-bar img{width:360px;}
.section05 .sect05-bg{background:url('/images/kor01r-17-0386/sect05_bg.jpg') no-repeat center center/cover}

.section05 .txt-block{display:block;}




@media only screen and (min-width:621px) {
	.section05 .brand-title h3 br{display:none;}
}





/* section06
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.section06 .section-top-intro .title-bar img{width:300px;}
.section06 .sect06-bg{background:url('/images/kor01r-17-0386/sect06_bg.jpg') no-repeat center center/cover}

.section06 .section-top-intro .btn-bar{bottom:73px;}

@media only screen and (max-width:980px) {
	.section06 .section-top-intro .title-bar img{width:220px;}
}

@media only screen and (min-width:621px) {
	.section06 .brand-title h3 br{display:none;}
}











/* NOTICE */
.section07{background:#faf7f1;}
.section07 > div{padding:100px 50px; margin:0 auto; width:1200px; box-sizing:border-box;}
.section07 .section-title{margin-bottom:50px; text-align:center;}
.section07 h2{color:#333;}
.section07 h2 + p{color:#777;}

@media only screen and (max-width:1200px) {
	.section07 > div{width:100%;}
}

@media only screen and (max-width:980px) {
	.section07 > div{padding:50px 25px;}
}

@media only screen and (max-width:767px) {
	.section07 > div{padding:50px 20px;}
	.section07 .section-title{margin-bottom:30px;}
}


/* CONTACT */
.section08{display:table; width:100%; background:#3a2817;}
.section08:after{content:""; display:block; clear:both;}
.section08 > div{display:table-cell; width:50%; box-sizing:border-box; vertical-align:middle;}

.section08 .section-title{margin-bottom:50px; text-align:left; color:#fff;}
#mainContents .section08 h2, .section08 h2 + p, .section08 a{color:#fff;}

.section08 .info-area{text-align:left; color:#3a2817;}
.section08 .info-area > div{float:right; padding:50px; width:600px; box-sizing:border-box;}
.section08 .info-area dl{margin-top:30px;}
.section08 .info-area dl:first-child{margin-top:0;}
.section08 .info-area dt{font-family:'Montserrat', sans-serif; font-weight:500; font-size:24px; color:#fff;}
.section08 .info-area dt img{margin:-5px 10px 0 0;}
.section08 .info-area dd{font-size:18px; color:#fff;}
.section08 .map-area .root_daum_roughmap{width:100%;}
@media only screen and (max-width:1200px) {
	.section08 .info-area > div{float:none; width:100%;}
}

@media only screen and (max-width:980px) {
	.section08 .info-area > div{padding:50px 25px;}
	.section08 .map-area .root_daum_roughmap .wrap_map{height:583px !important;}
}

@media only screen and (max-width:768px) {
	.section08 .section-title{margin-bottom:30px; text-align:center;}
	.section08 .info-area > div{padding:50px 20px;}
	.section08 .info-area dl{margin-top:15px;}
	.section08 .info-area dt{font-size:18px;}
	.section08 .info-area dt img{margin:-3px 10px 0 0; width:15px;}
	.section08 .info-area dd{font-size:14px;}
	.section08 .info-area dd br{display:none;}

	.section08 .map-area .root_daum_roughmap{width:100%;}
	.section08 .map-area .root_daum_roughmap .wrap_map{height:443px !important;}
}
@media only screen and (max-width:680px) {
	.section08{display:block; width:100%;}
	.section08 > div{display:block; width:100%;}
	.section08 .map-area .root_daum_roughmap .wrap_map{height:300px !important;}
}


		